88 lines
3.2 KiB
PHP
88 lines
3.2 KiB
PHP
<?php
|
|
/**
|
|
* The risks entry point of ZenTaoPMS.
|
|
*
|
|
* @copyright Copyright 2009-2021 禅道软件(青岛)有限公司(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 http://www.zentao.net
|
|
*/
|
|
class risksEntry extends entry
|
|
{
|
|
/**
|
|
* GET method.
|
|
*
|
|
* @param int $projectID
|
|
* @access public
|
|
* @return string
|
|
*/
|
|
public function get($projectID = 0)
|
|
{
|
|
if(!$projectID)
|
|
{
|
|
/* Get my risks defaultly. */
|
|
$control = $this->loadController('my', 'risk');
|
|
$control->risk($this->param('type', 'assignedTo'), $this->param('order', 'id_desc'), $this->param('total', 0), $this->param('limit', 20), $this->param('page', 1));
|
|
$data = $this->getData();
|
|
}
|
|
else
|
|
{
|
|
$project = $this->loadModel('project')->getByID($projectID);
|
|
if(!$project) return $this->send404();
|
|
|
|
/* Get risks by project. */
|
|
$control = $this->loadController('risk', 'browse');
|
|
$control->browse($projectID, $this->param('type', 'all'), '', $this->param('order', ''), $this->param('total', 0), $this->param('limit', 20), $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->risks as $risk)
|
|
{
|
|
$result[] = $this->format($risk, 'createdDate:time,editedDate:time');
|
|
}
|
|
|
|
return $this->send(200, array('page' => $pager->pageID, 'total' => $pager->recTotal, 'limit' => $pager->recPerPage, 'risks' => $result));
|
|
}
|
|
|
|
/**
|
|
* POST method.
|
|
*
|
|
* @param int $projectID
|
|
* @access public
|
|
* @return string
|
|
*/
|
|
public function post($projectID = 0)
|
|
{
|
|
$project = $this->loadModel('project')->getByID($projectID);
|
|
if(!$project) return $this->send404();
|
|
|
|
$fields = 'source,name,category,strategy,status,impact,probability,rate,identifiedDate,plannedClosedDate,actualClosedDate,resolvedBy,assignedTo,prevention,remedy,resolution';
|
|
$this->batchSetPost($fields);
|
|
|
|
$this->setPost('impact', $this->request('impact', 3));
|
|
$this->setPost('probability', $this->request('probability', 3));
|
|
$this->setPost('rate', $this->request('rate', 9));
|
|
$this->setPost('pri', 'middle');
|
|
|
|
$control = $this->loadController('risk', 'create');
|
|
$this->requireFields('name');
|
|
|
|
$control->create($projectID);
|
|
|
|
$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);
|
|
|
|
$risk = $this->loadModel('risk')->getByID($data->id);
|
|
|
|
return $this->send(201, $this->format($risk, 'createdDate:time,editedDate:time'));
|
|
}
|
|
}
|