* @package entries * @version 1 * @link https://www.zentao.net */ class releasesEntry extends entry { /** * GET method. * * @param int $productID * @access public * @return string */ public function get($productID = 0) { if(empty($productID)) $productID = $this->param('product'); if(empty($productID)) return $this->sendError(400, 'Need product id.'); $control = $this->loadController('release', 'browse'); $control->browse($productID, $this->param('branch', 'all'), $this->param('status', 'all'), $this->param('order', 't1.date_desc'), '', 0, $this->param('limit', 20), $this->param('page', 1)); /* Response */ $data = $this->getData(); if(isset($data->status) and $data->status == 'success') { $result = array(); $releases = $data->data->releases; $pager = $data->data->pager; foreach($releases as $release) $result[] = $this->format($release, 'deleted:bool,date:date,mailto:userList'); return $this->send(200, array('page' => $pager->pageID, 'total' => $pager->recTotal, 'limit' => $pager->recPerPage, 'releases' => $result)); } if(isset($data->status) and $data->status == 'fail') return $this->sendError(zget($data, 'code', 400), $data->message); return $this->sendError(400, 'error'); } }