]> dev.renevier.net Git - syj.git/blob - application/controllers/IdxController.php
read initial geom from js object instead of form input
[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'));
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             $geomform->setAction('path/' . (string)$path->id . '/update');
39             $title = $path->displayTitle;
40             $this->view->path = $path;
41             $geomform->geom_title->setValue($path->title);
42             $loginform->login_geom_id->setValue((string)$path->id);
43             $jsgeom = new phptojs\JsObject('gInitialGeom', array('data' => (string) $path->geom));
44             $this->view->headScript()->prependScript((string) $jsgeom);
45         } else {
46             $geomform->setAction('path');
47             $extent = new phptojs\JsObject('gMaxExtent', $this->_helper->syjGeoip($this->getRequest()->getClientIp(true)));
48             $this->view->headScript()->prependScript((string) $extent);
49             $title = "Show your journey";
50         }
51
52         $this->_jsLoggedInfo(isset($url) ? $path: null);
53         $this->_jsLocaleStrings();
54         $this->view->headTitle($title);
55         $this->view->geomform = $geomform;
56         $this->view->loginform = $loginform;
57         $this->view->userform = $userform;
58         $this->view->newpwdform = $newpwdform;
59         $this->view->loggedUser = $this->_helper->SyjSession->user();
60     }
61
62     protected function _jsLoggedInfo(Syj_Model_Path $path = null) {
63         $loggedinfo = new phptojs\JsObject('gLoggedInfo', array('connections' => 0));
64
65         $user = $this->_helper->SyjSession->user();
66         if ($user) {
67             $loggedinfo->logged = true;
68         } else {
69             $loggedinfo->logged = false;
70         }
71
72         if (isset($path)) {
73             $loggedinfo->iscreator = $path->isCreator($user);
74             if ($path->creator) {
75                 $loggedinfo->creatorname = $this->view->escape((string)$path->creator->pseudo);
76             }
77             $loggedinfo->pathid = (string)$path->id;
78         } else {
79             $loggedinfo->iscreator = true;
80         }
81
82         $this->view->headScript()->prependScript((string) $loggedinfo);
83     }
84
85     protected function _jsLocaleStrings() {
86         $this->view->jslocales = array(
87             'saveSuccess' => __("save took place successfully"),
88             'requestError' => __("server did not understood request. That's probably caused by a bug in SYJ"),
89             'gonePathError' => __("route not referenced on the server. It has probably been deleted."),
90             'uniquePathError' => __("similar path seems to already exist. Please do not create two exactly identical paths"),
91             'notReachedError' => __("server could not be reached"),
92             'serverError' => __("there was a server error"),
93             'unknownError' => __("there was an unknown error"),
94             'userEmptyWarn' => __("you must enter a login name"),
95             'loginSuccess' => __("Login correct"),
96             'loginFailure' => __("Wrong login/password"),
97             'passwordEmptyWarn' => __("you must enter a password"),
98             'passwordNoMatchWarn' => __("Password do not match"),
99             'acceptTermsofuseWarn' => __("You must accept terms of use"),
100             'emailEmptyWarn' => __("you must enter an email"),
101             'emailInvalidWarn' => __("invalid email"),
102             'uniqueEmailError' => __("an user is already registered with this email"),
103             'userSuccess' => __("Account created"),
104             'newpwdSuccess' => __("A link to reset your password has been emailed to you"),
105             'canResubmit' => __("Now, you can retry to save"),
106             'routeBy' => __("route by"),
107             'osmAttribution' => __("Map by <a href='http://openstreetmap.org/'>OpenStreetMap</a>"),
108             'pseudoChecking' => __("checking availibilty"),
109             'availablePseudo' => __("available pseudo"),
110             'unavailablePseudo' => __("unavailable pseudo"),
111             'editAction' => __("edit"),
112             'createAction' => __("create"),
113             'cloneAction' => __("duplicate"),
114             'unsavedConfirmExit' => __("You have an unsaved route"),
115             );
116     }
117
118 }