2016-07-08 22:23:03 +03:00
|
|
|
<?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
|
2016-07-08 22:23:03 +03:00
|
|
|
* @license http://opensource.org/licenses/GPL-3.0 - GPLv3
|
|
|
|
* @link http://easyappointments.org
|
|
|
|
* @since v1.2.0
|
|
|
|
* ---------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
require_once __DIR__ . '/API_V1_Controller.php';
|
|
|
|
|
2016-07-10 14:23:04 +03:00
|
|
|
use \EA\Engine\Api\V1\Response;
|
|
|
|
use \EA\Engine\Api\V1\Request;
|
2016-11-09 21:56:24 +03:00
|
|
|
use \EA\Engine\Types\NonEmptyText;
|
2016-07-10 14:23:04 +03:00
|
|
|
|
2016-07-08 22:23:03 +03:00
|
|
|
/**
|
|
|
|
* Services Controller
|
|
|
|
*
|
|
|
|
* @package Controllers
|
|
|
|
* @subpackage API
|
|
|
|
*/
|
|
|
|
class Services extends API_V1_Controller {
|
2016-07-10 14:23:04 +03:00
|
|
|
/**
|
|
|
|
* Services Resource Parser
|
|
|
|
*
|
|
|
|
* @var \EA\Engine\Api\V1\Parsers\Services
|
|
|
|
*/
|
|
|
|
protected $parser;
|
|
|
|
|
2016-07-08 22:23:03 +03:00
|
|
|
/**
|
|
|
|
* Class Constructor
|
|
|
|
*/
|
|
|
|
public function __construct() {
|
|
|
|
parent::__construct();
|
2016-07-10 14:23:04 +03:00
|
|
|
$this->load->model('services_model');
|
|
|
|
$this->parser = new \EA\Engine\Api\V1\Parsers\Services;
|
2016-07-08 22:23:03 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* GET API Method
|
|
|
|
*
|
|
|
|
* @param int $id Optional (null), the record ID to be returned.
|
|
|
|
*/
|
|
|
|
public function get($id = null) {
|
2016-07-10 14:23:04 +03:00
|
|
|
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);
|
|
|
|
}
|
2016-07-08 22:23:03 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-07-10 14:23:04 +03:00
|
|
|
* POST API Method
|
2016-07-08 22:23:03 +03:00
|
|
|
*/
|
|
|
|
public function post() {
|
2016-07-10 14:23:04 +03:00
|
|
|
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);
|
2016-11-09 21:56:24 +03:00
|
|
|
$status = new NonEmptyText('201 Created');
|
2016-07-10 14:23:04 +03:00
|
|
|
$response->encode($this->parser)->singleEntry(true)->output($status);
|
|
|
|
} catch (\Exception $exception) {
|
|
|
|
$this->_handleException($exception);
|
|
|
|
}
|
2016-07-08 22:23:03 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* PUT API Method
|
|
|
|
*
|
|
|
|
* @param int $id The record ID to be updated.
|
|
|
|
*/
|
|
|
|
public function put($id) {
|
2016-07-10 14:23:04 +03:00
|
|
|
try {
|
|
|
|
// Update the service record.
|
|
|
|
$batch = $this->services_model->get_batch('id = ' . $id);
|
2016-07-08 22:23:03 +03:00
|
|
|
|
2016-07-10 14:23:04 +03:00
|
|
|
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);
|
|
|
|
}
|
2016-07-08 22:23:03 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* DELETE API Method
|
|
|
|
*
|
|
|
|
* @param int $id The record ID to be deleted.
|
|
|
|
*/
|
|
|
|
public function delete($id) {
|
2016-07-10 14:23:04 +03:00
|
|
|
try {
|
|
|
|
$result = $this->services_model->delete($id);
|
|
|
|
|
|
|
|
$response = new Response([
|
|
|
|
'code' => 200,
|
|
|
|
'message' => 'Record was deleted successfully!'
|
|
|
|
]);
|
2016-07-08 22:23:03 +03:00
|
|
|
|
2016-07-10 14:23:04 +03:00
|
|
|
$response->output();
|
|
|
|
} catch (\Exception $exception) {
|
|
|
|
$this->_handleException($exception);
|
|
|
|
}
|
2016-07-08 22:23:03 +03:00
|
|
|
}
|
|
|
|
}
|