2 /* This file is part of Syj, Copyright (c) 2010 Arnaud Renevier,
3 and is published under the AGPL license. */
5 class IdxController extends Zend_Controller_Action
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', "all");
16 $this->view->headLink()->appendStylesheet('css/generic.css', "all");
17 $this->view->headLink()->appendStylesheet('css/syj.css', "all");
20 public function rawmode(Syj_Model_Path $path) {
21 $this->_helper->SyjReset->resetPlaceHolders();
23 $this->view->headLink()->appendStylesheet('css/generic.css', 'all');
24 $this->view->headLink()->appendStylesheet('css/syjraw.css', 'all');
25 $this->view->headScript()->appendFile('js/OpenLayers.js');
26 $this->view->headScript()->appendFile('js/syjraw.js');
27 $this->view->headTitle($path->displayTitle);
29 $this->_jsRawLocaleStrings();
31 $this->view->jslocales['geomAttribution'] =
32 $this->view->translate('route by <strong>%s</strong>', (string)$path->creator->pseudo);
34 $jsgeom = new phptojs\JsObject('gInitialGeom', array('data' => (string) $path->geom));
35 $this->view->headScript()->prependScript((string) $jsgeom);
37 $this->view->rawmode = true;
38 $this->_helper->ViewRenderer->setViewScriptPathSpec(':controller/raw.:suffix');
41 public function indexAction() {
42 $url = $this->getRequest()->getUserParam('url');
44 $geomform = new Syj_Form_Geom(array('name' => 'geomform'));
45 $loginform = new Syj_Form_Login(array('name' => 'loginform', 'action' => 'login'));
46 $userform = new Syj_Form_User(array('name' => 'userform', 'action' => 'user'));
47 $newpwdform = new Syj_Form_Newpwd(array('name' => 'newpwdform', 'action' => 'newpwd'));
50 $pathMapper = new Syj_Model_PathMapper();
51 $path = new Syj_Model_Path();
52 if (!$pathMapper->findByUrl($url, $path)) {
53 if (is_numeric($url) and $pathMapper->hasexisted($url)) {
54 $this->view->message = $this->view->translate("route has been deleted");
55 throw new Syj_Exception_NotFound('Gone', 410);
57 $this->view->message = $this->view->translate("route does not exist");
58 throw new Syj_Exception_NotFound('Not Found', 404);
62 if ($this->getRequest()->getQuery('format') == 'raw') {
63 $this->rawmode($path);
67 $title = $path->displayTitle;
68 $this->view->path = $path;
69 $jsgeom = new phptojs\JsObject('gInitialGeom', array('data' => (string) $path->geom));
70 $this->view->headScript()->prependScript((string) $jsgeom);
71 $loginform->login_geom_id->setValue((string)$path->id);
72 $geomform->geom_title->setValue($path->title);
74 $geomform->setAction('path');
75 $extent = new phptojs\JsObject('gMaxExtent', $this->_helper->syjGeoip($this->getRequest()->getClientIp(true)));
76 $this->view->headScript()->prependScript((string) $extent);
77 $title = "Show your journey";
80 $this->_jsLoggedInfo(isset($url) ? $path: null);
81 $this->_jsLocaleStrings();
82 if (isset ($url) and $path->creator) {
83 $this->view->jslocales['geomAttribution'] =
84 $this->view->translate('route by <strong>%s</strong>', (string)$path->creator->pseudo);
86 $this->view->headTitle($title);
87 $this->view->geomform = $geomform;
88 $this->view->loginform = $loginform;
89 $this->view->userform = $userform;
90 $this->view->newpwdform = $newpwdform;
91 $this->view->loggedUser = $this->_helper->SyjSession->user();
94 protected function _jsLoggedInfo(Syj_Model_Path $path = null) {
95 $loggedinfo = new phptojs\JsObject('gLoggedInfo', array('connections' => 0));
97 $user = $this->_helper->SyjSession->user();
99 $loggedinfo->logged = true;
101 $loggedinfo->logged = false;
105 $loggedinfo->iscreator = $path->isCreator($user);
106 $loggedinfo->pathid = (string)$path->id;
108 $loggedinfo->iscreator = true;
111 $this->view->headScript()->prependScript((string) $loggedinfo);
114 protected function _jsRawLocaleStrings() {
115 $this->view->jslocales = array(
116 'osmAttribution' => __("Map by <a href='http://openstreetmap.org/'>OpenStreetMap</a>"),
120 protected function _jsLocaleStrings() {
121 $this->view->jslocales = array(
122 'saveSuccess' => __("save took place successfully"),
123 'requestError' => __("server did not understood request. That's probably caused by a bug in SYJ"),
124 'gonePathError' => __("route not referenced on the server. It has probably been deleted."),
125 'uniquePathError' => __("similar path seems to already exist. Please do not create two exactly identical paths"),
126 'notReachedError' => __("server could not be reached"),
127 'serverError' => __("there was a server error"),
128 'unknownError' => __("there was an unknown error"),
129 'userEmptyWarn' => __("you must enter a login name"),
130 'loginSuccess' => __("Login correct"),
131 'loginFailure' => __("Wrong login/password"),
132 'passwordEmptyWarn' => __("you must enter a password"),
133 'passwordNoMatchWarn' => __("Password do not match"),
134 'acceptTermsofuseWarn' => __("You must accept terms of use"),
135 'emailEmptyWarn' => __("you must enter an email"),
136 'emailInvalidWarn' => __("invalid email"),
137 'uniqueEmailError' => __("an user is already registered with this email"),
138 'userSuccess' => __("Account created"),
139 'newpwdSuccess' => __("A link to reset your password has been emailed to you"),
140 'canResubmit' => __("Now, you can retry to save"),
141 'routeBy' => __("route by"),
142 'osmAttribution' => __("Map by <a href='http://openstreetmap.org/'>OpenStreetMap</a>"),
143 'pseudoChecking' => __("checking availibilty"),
144 'availablePseudo' => __("available pseudo"),
145 'unavailablePseudo' => __("unavailable pseudo"),
146 'editAction' => __("edit"),
147 'createAction' => __("create"),
148 'cloneAction' => __("duplicate"),
149 'unsavedConfirmExit' => __("You have an unsaved route"),
150 'notEmptyField' => __("Value is required"),
151 'noResult' => __("no result"),
152 'dragFileError' => __("could not analyze file content"),