* @copyright Copyright (c) 2013 - 2016, Alex Tselegidis * @license http://opensource.org/licenses/GPL-3.0 - GPLv3 * @link http://easyappointments.org * @since v1.2.0 * ---------------------------------------------------------------------------- */ require_once __DIR__ . '/API_V1_Controller.php'; use \EA\Engine\Api\V1\Response; use \EA\Engine\Api\V1\Request; use \EA\Engine\Types\NonEmptyString; /** * Secretaries Controller * * @package Controllers * @subpackage API */ class Secretaries extends API_V1_Controller { /** * Secretaries Resource Parser * * @var \EA\Engine\Api\V1\Parsers\Secretaries */ protected $parser; /** * Class Constructor */ public function __construct() { parent::__construct(); $this->load->model('secretaries_model'); $this->parser = new \EA\Engine\Api\V1\Parsers\Secretaries; } /** * GET API Method * * @param int $id Optional (null), the record ID to be returned. */ public function get($id = null) { try { $condition = $id !== null ? 'id = ' . $id : null; $secretaries = $this->secretaries_model->get_batch($condition); if ($id !== null && count($secretaries) === 0) { $this->_throwRecordNotFound(); } $response = new Response($secretaries); $response->encode($this->parser) ->search() ->sort() ->paginate() ->minimize() ->singleEntry($id) ->output(); } catch (\Exception $exception) { $this->_handleException($exception); } } /** * POST API Method */ public function post() { try { // Insert the secretary to the database. $request = new Request(); $secretary = $request->getBody(); $this->parser->decode($secretary); if (isset($secretary['id'])) { unset($secretary['id']); } $id = $this->secretaries_model->add($secretary); // Fetch the new object from the database and return it to the client. $batch = $this->secretaries_model->get_batch('id = ' . $id); $response = new Response($batch); $status = new NonEmptyString('201 Created'); $response->encode($this->parser)->singleEntry(true)->output($status); } catch (\Exception $exception) { $this->_handleException($exception); } } /** * PUT API Method * * @param int $id The record ID to be updated. */ public function put($id) { try { // Update the secretary record. $batch = $this->secretaries_model->get_batch('id = ' . $id); if ($id !== null && count($batch) === 0) { $this->_throwRecordNotFound(); } $request = new Request(); $updatedSecretary = $request->getBody(); $baseSecretary = $batch[0]; $this->parser->decode($updatedSecretary, $baseSecretary); $updatedSecretary['id'] = $id; $id = $this->secretaries_model->add($updatedSecretary); // Fetch the updated object from the database and return it to the client. $batch = $this->secretaries_model->get_batch('id = ' . $id); $response = new Response($batch); $response->encode($this->parser)->singleEntry($id)->output(); } catch (\Exception $exception) { $this->_handleException($exception); } } /** * DELETE API Method * * @param int $id The record ID to be deleted. */ public function delete($id) { try { $result = $this->secretaries_model->delete($id); $response = new Response([ 'code' => 200, 'message' => 'Record was deleted successfully!' ]); $response->output(); } catch (\Exception $exception) { $this->_handleException($exception); } } } /* End of file Secretaries.php */ /* Location: ./application/controllers/api/v1/Secretaries.php */