]> dev.renevier.net Git - syj.git/blob - application/controllers/IdxController.php
version 0.1
[syj.git] / application / controllers / IdxController.php
1 <?php
2 /*  This file is part of Syj, Copyright (c) 2010 Arnaud Renevier,
3     and is published under the AGPL license. */
4
5 class IdxController extends Zend_Controller_Action
6 {
7
8     public function init() {
9         $this->view->headScript()->appendFile('js/OpenLayers.js');
10         $this->view->headScript()->appendFile('js/ModifiablePath.js');
11         $this->view->headScript()->appendFile('js/prototype.js');
12         $this->view->headScript()->appendFile('js/simplebox.js');
13         $this->view->headScript()->appendFile('js/closebtn.js');
14         $this->view->headScript()->appendFile('js/deck.js');
15         $this->view->headScript()->appendFile('js/ajaxize.js');
16         $this->view->headScript()->appendFile('js/message.js');
17         $this->view->headScript()->appendFile('js/syj.js');
18         $this->view->headLink()->appendStylesheet('css/openlayers/style.css');
19         $this->view->headLink()->appendStylesheet('css/generic.css');
20         $this->view->headLink()->appendStylesheet('css/syj.css');
21     }
22
23     public function indexAction() {
24         $url = $this->getRequest()->getUserParam('url');
25
26         $geomform = new Syj_Form_Geom(array('name' => 'geomform', 'action' => 'path'));
27         $loginform = new Syj_Form_Login(array('name' => 'loginform', 'action' => 'login'));
28         $userform = new Syj_Form_User(array('name' => 'userform', 'action' => 'user'));
29         $newpwdform = new Syj_Form_Newpwd(array('name' => 'newpwdform', 'action' => 'newpwd'));
30
31         if (isset($url)) {
32             $pathMapper = new Syj_Model_PathMapper();
33             $path = new Syj_Model_Path();
34             if (!$pathMapper->findByUrl($url, $path)) {
35                 if (is_numeric($url) and $pathMapper->hasexisted($url)) {
36                     throw new Syj_Exception_NotFound('Gone', 410);
37                 } else {
38                     throw new Syj_Exception_NotFound('Not Found', 404);
39                 }
40             }
41             $title = $path->displayTitle;
42             $this->view->path = $path;
43             $geomform->geom_title->setValue($path->title);
44             $geomform->geom_data->setValue((string)$path->geom);
45             $geomform->geom_id->setValue((string)$path->id);
46             $loginform->login_geom_id->setValue((string)$path->id);
47         } else {
48             $extent = new phptojs\JsObject('gMaxExtent', $this->_helper->syjGeoip($this->getRequest()->getClientIp(true)));
49             $this->view->headScript()->prependScript((string) $extent);
50             $title = "Show your journey";
51         }
52
53         $this->_jsLoggedInfo(isset($url) ? $path: null);
54         $this->_jsLocaleStrings();
55         $this->view->headTitle($title);
56         $this->view->geomform = $geomform;
57         $this->view->loginform = $loginform;
58         $this->view->userform = $userform;
59         $this->view->newpwdform = $newpwdform;
60     }
61
62     protected function _jsLoggedInfo(Syj_Model_Path $path = null) {
63         $loggedinfo = new phptojs\JsObject('gLoggedInfo', array('connections' => 0));
64
65         $sessionStorage = Zend_Auth::getInstance()->getStorage();
66         $sessionData = $sessionStorage->read();
67
68         if ($sessionStorage->isEmpty()) {
69             $loggedinfo->logged = false;
70         } else {
71             $userMapper = new Syj_Model_UserMapper();
72             $obj = new Syj_Model_User();
73             if ($userMapper->find($sessionData['user'], $obj)) {
74                 $loggedinfo->logged = true;
75             } else {
76                 // non existent user
77                 Zend_Session::start();
78                 Zend_Session::destroy();
79                 $loggedinfo->logged = false;
80             }
81         }
82
83         if (isset($path)) {
84             if ($path->owner->id == $sessionData['user']) {
85                 $loggedinfo->isowner = true;
86             } else {
87                 $loggedinfo->isowner = false;
88             }
89             $loggedinfo->ownername = $this->view->escape((string)$path->owner->pseudo);
90         } else {
91             $loggedinfo->isowner = true;
92         }
93
94         $this->view->headScript()->prependScript((string) $loggedinfo);
95     }
96
97     protected function _jsLocaleStrings() {
98         $this->view->jslocales = array(
99             'saveSuccess' => __("save took place successfully"),
100             'requestError' => __("server did not understood request. That's probably caused by a bug in SYJ"),
101             'UnreferencedError' => __("path did not exist in the server. May be it has been already deleted"),
102             'uniquePathError' => __("similar path seems to already exist. Please do not create two exactly identical paths"),
103             'notReachedError' => __("server could not be reached"),
104             'serverError' => __("there was a server error"),
105             'unknownError' => __("there was an unknown error"),
106             'userEmptyWarn' => __("you must enter a login name"),
107             'loginSuccess' => __("Login correct"),
108             'loginFailure' => __("Wrong login/password"),
109             'loginNeeded' => __("You need to login before retrying to save"),
110             'cookiesNeeded' => __("You need to have cookies enabled to login to SYJ"),
111             'passwordEmptyWarn' => __("you must enter a password"),
112             'passwordNoMatchWarn' => __("Password do not match"),
113             'acceptTermsofuseWarn' => __("You must accept terms of use"),
114             'emailEmptyWarn' => __("you must enter an email"),
115             'emailInvalidWarn' => __("invalid email"),
116             'invalidPseudo' => __("pseudo must only contain letters, digits, dots or underscores"),
117             'uniqueUserError' => __("unavailable pseudo"),
118             'uniqueEmailError' => __("an user is already registered with this email"),
119             'userSuccess' => __("Account created"),
120             'newpwdSuccess' => __("A link to reset your password has been emailed to you"),
121             'canResubmit' => __("Now, you can retry to save"),
122             'routeBy' => __("route by"),
123             'osmAttribution' => __("Map by <a href='http://openstreetmap.org/'>OpenStreetMap</a>")
124             );
125     }
126
127 }