* @package entries * @version 1 * @link https://www.zentao.net */ class bugConfirmEntry extends entry { /** * POST method. * * @param int $bugID * @access public * @return string **/ public function post($bugID) { $control = $this->loadController('bug', 'confirm'); $fields = 'assignedTo,mailto,comment,pri,type,status,deadline'; $bug = $this->loadModel('bug')->getByID($bugID); $this->batchSetPost($fields, $bug); $control->confirm($bugID); $data = $this->getData(); if(!$data) return $this->send400('error'); if(isset($data->status) and $data->status == 'fail') return $this->sendError(zget($data, 'code', 400), $data->message); $bug = $this->loadModel('bug')->getById($bugID); return $this->send(200, $this->format($bug, 'openedBy:user,openedDate:time,assignedTo:user,assignedDate:time,reviewedBy:user,reviewedDate:time,lastEditedBy:user,lastEditedDate:time,closedBy:user,closedDate:time,deleted:bool,mailto:userList')); } }