iflrandevu/src/application/controllers/api/v1/Services.php

167 lines
4.4 KiB
PHP
Raw Normal View History

<?php if ( ! defined('BASEPATH'))
{
exit('No direct script access allowed');
}
/* ----------------------------------------------------------------------------
* Easy!Appointments - Open Source Web Scheduler
*
* @package EasyAppointments
* @author A.Tselegidis <alextselegidis@gmail.com>
2017-01-31 09:35:34 +03:00
* @copyright Copyright (c) 2013 - 2017, 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\NonEmptyText;
/**
* Services Controller
*
* @package Controllers
* @subpackage API
*/
class Services extends API_V1_Controller {
/**
* Services Resource Parser
*
* @var \EA\Engine\Api\V1\Parsers\Services
*/
protected $parser;
/**
* Class Constructor
*/
public function __construct()
{
parent::__construct();
$this->load->model('services_model');
$this->parser = new \EA\Engine\Api\V1\Parsers\Services;
}
/**
* 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;
$services = $this->services_model->get_batch($condition);
if ($id !== NULL && count($services) === 0)
{
$this->_throwRecordNotFound();
}
$response = new Response($services);
$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 service to the database.
$request = new Request();
$service = $request->getBody();
$this->parser->decode($service);
if (isset($service['id']))
{
unset($service['id']);
}
$id = $this->services_model->add($service);
// Fetch the new object from the database and return it to the client.
$batch = $this->services_model->get_batch('id = ' . $id);
$response = new Response($batch);
$status = new NonEmptyText('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 service record.
$batch = $this->services_model->get_batch('id = ' . $id);
if ($id !== NULL && count($batch) === 0)
{
$this->_throwRecordNotFound();
}
$request = new Request();
$updatedService = $request->getBody();
$baseService = $batch[0];
$this->parser->decode($updatedService, $baseService);
$updatedService['id'] = $id;
$id = $this->services_model->add($updatedService);
// Fetch the updated object from the database and return it to the client.
$batch = $this->services_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->services_model->delete($id);
$response = new Response([
'code' => 200,
'message' => 'Record was deleted successfully!'
]);
$response->output();
} catch (\Exception $exception)
{
$this->_handleException($exception);
}
}
}