| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <?php
- /**
- * The todos entry point of ZenTaoPMS.
- *
- * @copyright Copyright 2009-2023 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.cnezsoft.com)
- * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
- * @author Chunsheng Wang <chunsheng@cnezsoft.com>
- * @package entries
- * @version 1
- * @link https://www.zentao.net
- */
- class todosEntry extends entry
- {
- /**
- * GET method.
- *
- * @access public
- * @return string
- */
- public function get()
- {
- $control = $this->loadController('my', 'todo');
- $control->todo($this->param('type', 'all'), $this->param('userID', ''), $this->param('status', 'all'), $this->param('order', 'date_desc,status,begin'), $this->param('total', 0), $this->param('limit', 100), $this->param('page', 1));
- $data = $this->getData();
- if(!isset($data->status)) return $this->sendError(400, 'error');
- if(isset($data->status) and $data->status == 'fail') return $this->sendError(zget($data, 'code', 400), $data->message);
- $pager = $data->data->pager;
- $result = array();
- foreach($data->data->todos as $todo)
- {
- $result[] = $this->format($todo, 'assignedDate:time,finishedDate:time,closedDate:time');
- }
- return $this->send(200, array('page' => $pager->pageID, 'total' => $pager->recTotal, 'limit' => $pager->recPerPage, 'todos' => $result));
- }
- /**
- * POST method.
- *
- * @access public
- * @return string
- */
- public function post()
- {
- $control = $this->loadController('todo', 'create');
- $fields = 'name,desc,begin,end,private';
- $this->batchSetPost($fields);
- $this->setPost('date', $this->request('date', date("Y-m-d")));
- $this->setPost('type', $this->request('type', 'custom'));
- $this->setPost('status', $this->request('status', 'wait'));
- $this->setPost('begin', str_replace(':', '', $this->request('begin')));
- $this->setPost('end', str_replace(':', '', $this->request('end')));
- $this->setPost('pri', $this->request('pri', '3'));
- $this->requireFields('name');
- $control->create();
- $data = $this->getData();
- if(isset($data->result) and $data->result == 'fail') return $this->sendError(400, $data->message);
- if(isset($data->result) and !isset($data->id)) return $this->sendError(400, $data->message);
- $todo = $this->loadModel('todo')->getByID($data->id);
- return $this->send(201, $this->format($todo, 'assignedDate:time,finishedDate:time,closedDate:time'));
- }
- }
|