X-Git-Url: https://dev.renevier.net/?a=blobdiff_plain;f=application%2Fcontrollers%2FPathController.php;h=c3c085a8695ff1eddbed1874edea580e8b9644ed;hb=3ff82e2d9fa289beba4e965b82772cf83f905b2f;hp=37394d02dbfd4bc3331a3771543f09d772365187;hpb=05ce9238adfa982746bfc6211b240fd24526af09;p=syj.git diff --git a/application/controllers/PathController.php b/application/controllers/PathController.php index 37394d0..c3c085a 100644 --- a/application/controllers/PathController.php +++ b/application/controllers/PathController.php @@ -5,43 +5,62 @@ class PathController extends Zend_Controller_Action { public function indexAction() { + return $this->save(new Syj_Model_Path()); + } + + public function updateAction() { + $idx = $this->getRequest()->getUserParam('idx'); + $path = new Syj_Model_Path(); + $pathMapper = new Syj_Model_PathMapper(); + if (!$pathMapper->find($idx, $path)) { + if ($pathMapper->hasexisted($idx)) { + throw new Syj_Exception_NotFound('Gone', 410); + } else { + throw new Syj_Exception_NotFound('Not Found', 404); + } + } + return $this->save($path); + } + + public function save(Syj_Model_Path $path) { $formData = $this->_helper->SyjPostData->getPostData('Syj_Form_Geom'); + /* authorization check */ $user = $this->_helper->SyjSession->user(); - if (!$user) { - throw new Syj_Exception_Forbidden(); + if (!$user and !$formData["geom_accept"]) { + throw new Syj_Exception_Request(); } - $decoder = new gisconverter\WKT(); + /* setting creator property */ + if ($path->getId()) { + if (!$path->isCreator($user)) { + throw new Syj_Exception_Request(); + } + } else { + $path->creator = $user; + } + $path->creatorIp = $this->getRequest()->getClientIp(true); + /* setting geom property */ + $decoder = new gisconverter\WKT(); try { $geom = $decoder->geomFromText($formData["geom_data"]); } catch (gisconverter\CustomException $e) { throw new Syj_Exception_Request(); } - if ($geom::name != "LineString") { throw new Syj_Exception_Request(); } - - $path = new Syj_Model_Path(); - $pathMapper = new Syj_Model_PathMapper(); - if (isset ($formData["geom_id"]) and $formData["geom_id"]) { - if (!$pathMapper->find($formData["geom_id"], $path)) { - throw new Syj_Exception_Request("unreferenced"); - } - } $path->geom = $geom; - if ($path->getId()) { - if ($path->owner->id != $user->id) { - throw new Syj_Exception_Forbidden(); - } - } else { - $path->owner = $user; - } + + /* setting title property */ if (isset($formData["geom_title"])) { $path->title = $formData["geom_title"]; } + + + /* now, saving !*/ + $pathMapper = new Syj_Model_PathMapper(); try { $pathMapper->save ($path); } catch(Zend_Db_Statement_Exception $e) { @@ -59,4 +78,5 @@ class PathController extends Zend_Controller_Action $this->_helper->SyjApi->setBody($path->id); } + }