* @package entries * @version 1 * @link http://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', 0), $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; foreach($releases as $release) $result[] = $this->format($release, 'deleted:bool,date:date,mailto:userList'); return $this->send(200, array('total' => count($result), 'releases' => $result)); } if(isset($data->status) and $data->status == 'fail') return $this->sendError(zget($data, 'code', 400), $data->message); return $this->sendError(400, 'error'); } }