]> dev.renevier.net Git - syj.git/blob - application/controllers/IdxController.php
caad6a1595bb51f09562d3e5698640973a013f69
[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/utils.js');
14         $this->view->headScript()->appendFile('js/syj.js');
15         $this->view->headLink()->appendStylesheet('css/openlayers/style.css');
16         $this->view->headLink()->appendStylesheet('css/generic.css');
17         $this->view->headLink()->appendStylesheet('css/syj.css');
18     }
19
20     public function indexAction() {
21         $url = $this->getRequest()->getUserParam('url');
22
23         $geomform = new Syj_Form_Geom(array('name' => 'geomform', 'action' => 'path'));
24         $loginform = new Syj_Form_Login(array('name' => 'loginform', 'action' => 'login'));
25         $userform = new Syj_Form_User(array('name' => 'userform', 'action' => 'user'));
26         $newpwdform = new Syj_Form_Newpwd(array('name' => 'newpwdform', 'action' => 'newpwd'));
27
28         if (isset($url)) {
29             $pathMapper = new Syj_Model_PathMapper();
30             $path = new Syj_Model_Path();
31             if (!$pathMapper->findByUrl($url, $path)) {
32                 if (is_numeric($url) and $pathMapper->hasexisted($url)) {
33                     throw new Syj_Exception_NotFound('Gone', 410);
34                 } else {
35                     throw new Syj_Exception_NotFound('Not Found', 404);
36                 }
37             }
38             $title = $path->displayTitle;
39             $this->view->path = $path;
40             $geomform->geom_title->setValue($path->title);
41             $geomform->geom_data->setValue((string)$path->geom);
42             $geomform->geom_id->setValue((string)$path->id);
43             $loginform->login_geom_id->setValue((string)$path->id);
44         } else {
45             $extent = new phptojs\JsObject('gMaxExtent', $this->_helper->syjGeoip($this->getRequest()->getClientIp(true)));
46             $this->view->headScript()->prependScript((string) $extent);
47             $title = "Show your journey";
48         }
49
50         $this->_jsLoggedInfo(isset($url) ? $path: null);
51         $this->_jsLocaleStrings();
52         $this->view->headTitle($title);
53         $this->view->geomform = $geomform;
54         $this->view->loginform = $loginform;
55         $this->view->userform = $userform;
56         $this->view->newpwdform = $newpwdform;
57         $this->view->loggedUser = $this->_helper->SyjSession->user();
58     }
59
60     protected function _jsLoggedInfo(Syj_Model_Path $path = null) {
61         $loggedinfo = new phptojs\JsObject('gLoggedInfo', array('connections' => 0));
62
63         $user = $this->_helper->SyjSession->user();
64         if ($user) {
65             $loggedinfo->logged = true;
66         } else {
67             $loggedinfo->logged = false;
68         }
69
70         if (isset($path)) {
71             $loggedinfo->iscreator = $path->isCreator($user);
72             if ($path->creator) {
73                 $loggedinfo->creatorname = $this->view->escape((string)$path->creator->pseudo);
74             }
75         } else {
76             $loggedinfo->iscreator = true;
77         }
78
79         $this->view->headScript()->prependScript((string) $loggedinfo);
80     }
81
82     protected function _jsLocaleStrings() {
83         $this->view->jslocales = array(
84             'saveSuccess' => __("save took place successfully"),
85             'requestError' => __("server did not understood request. That's probably caused by a bug in SYJ"),
86             'UnreferencedError' => __("path did not exist in the server. May be it has been already deleted"),
87             'uniquePathError' => __("similar path seems to already exist. Please do not create two exactly identical paths"),
88             'notReachedError' => __("server could not be reached"),
89             'serverError' => __("there was a server error"),
90             'unknownError' => __("there was an unknown error"),
91             'userEmptyWarn' => __("you must enter a login name"),
92             'loginSuccess' => __("Login correct"),
93             'loginFailure' => __("Wrong login/password"),
94             'passwordEmptyWarn' => __("you must enter a password"),
95             'passwordNoMatchWarn' => __("Password do not match"),
96             'acceptTermsofuseWarn' => __("You must accept terms of use"),
97             'emailEmptyWarn' => __("you must enter an email"),
98             'emailInvalidWarn' => __("invalid email"),
99             'invalidPseudo' => __("pseudo must only contain letters, digits, dots or underscores"),
100             'uniqueUserError' => __("unavailable pseudo"),
101             'uniqueEmailError' => __("an user is already registered with this email"),
102             'userSuccess' => __("Account created"),
103             'newpwdSuccess' => __("A link to reset your password has been emailed to you"),
104             'canResubmit' => __("Now, you can retry to save"),
105             'routeBy' => __("route by"),
106             'osmAttribution' => __("Map by <a href='http://openstreetmap.org/'>OpenStreetMap</a>")
107             );
108     }
109
110 }