| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <?php
- /**
- * The build 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 buildEntry extends entry
- {
- /**
- * GET method.
- *
- * @param int $buildID
- * @access public
- * @return string
- */
- public function get($buildID)
- {
- $control = $this->loadController('build', 'view');
- $control->view($buildID);
- $data = $this->getData();
- if(isset($data->status) and $data->status == 'success') return $this->send(200, $this->format($data->data->build, 'builder:user,stories:idList,bugs:idList,deleted:bool'));
- /* Exception handling. */
- if(isset($data->status) and $data->status == 'fail') return $this->sendError(zget($data, 'code', 400), $data->message);
- return $this->sendError(400, 'error');
- }
- /**
- * PUT method.
- *
- * @param int $buildID
- * @access public
- * @return string
- */
- public function put($buildID)
- {
- $control = $this->loadController('build', 'edit');
- $oldBuild = $this->loadModel('build')->getByID($buildID);
- /* Set $_POST variables. */
- $fields = 'execution,product,branch,name,builder,date,scmPath,filePath,desc';
- $this->batchSetPost($fields, $oldBuild);
- $control->edit($buildID);
- $data = $this->getData();
- if(!$data or (isset($data->message) and $data->message == '404 Not found')) return $this->send404();
- if(isset($data->result) and $data->result == 'fail') return $this->sendError(400, $data->message);
- $build = $this->build->getByID($buildID);
- return $this->send(200, $this->format($build, 'builder:user,stories:idList,bugs:idList,deleted:bool'));
- }
- /**
- * DELETE method.
- *
- * @param int $buildID
- * @access public
- * @return string
- */
- public function delete($buildID)
- {
- $control = $this->loadController('build', 'delete');
- $control->delete($buildID, 'true');
- $this->getData();
- return $this->sendSuccess(200, 'success');
- }
- }
|