mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-10 10:02:33 +03:00
167 lines
4.4 KiB
PHP
167 lines
4.4 KiB
PHP
<?php defined('BASEPATH') or exit('No direct script access allowed');
|
|
|
|
/* ----------------------------------------------------------------------------
|
|
* Easy!Appointments - Open Source Web Scheduler
|
|
*
|
|
* @package EasyAppointments
|
|
* @author A.Tselegidis <alextselegidis@gmail.com>
|
|
* @copyright Copyright (c) 2013 - 2020, Alex Tselegidis
|
|
* @license https://opensource.org/licenses/GPL-3.0 - GPLv3
|
|
* @link https://easyappointments.org
|
|
* @since v1.2.0
|
|
* ---------------------------------------------------------------------------- */
|
|
|
|
require_once __DIR__ . '/API_V1_Controller.php';
|
|
|
|
use EA\Engine\Api\V1\Request;
|
|
use EA\Engine\Api\V1\Response;
|
|
use EA\Engine\Types\NonEmptyText;
|
|
|
|
/**
|
|
* Services Controller
|
|
*
|
|
* @package Controllers
|
|
*/
|
|
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
|
|
{
|
|
$conditions = $id !== NULL ? ['id' => $id] : NULL;
|
|
|
|
$services = $this->services_model->get_batch($conditions);
|
|
|
|
if ($id !== NULL && count($services) === 0)
|
|
{
|
|
$this->throw_record_not_found();
|
|
}
|
|
|
|
$response = new Response($services);
|
|
|
|
$response->encode($this->parser)
|
|
->search()
|
|
->sort()
|
|
->paginate()
|
|
->minimize()
|
|
->singleEntry($id)
|
|
->output();
|
|
|
|
}
|
|
catch (Exception $exception)
|
|
{
|
|
$this->handle_exception($exception);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* POST API Method
|
|
*/
|
|
public function post()
|
|
{
|
|
try
|
|
{
|
|
// Insert the service to the database.
|
|
$request = new Request();
|
|
$service = $request->get_body();
|
|
$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->handle_exception($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->throw_record_not_found();
|
|
}
|
|
|
|
$request = new Request();
|
|
$updated_service = $request->get_body();
|
|
$base_service = $batch[0];
|
|
$this->parser->decode($updated_service, $base_service);
|
|
$updated_service['id'] = $id;
|
|
$id = $this->services_model->add($updated_service);
|
|
|
|
// 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->handle_exception($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->handle_exception($exception);
|
|
}
|
|
}
|
|
}
|