2017-09-15 14:44:40 +03:00
|
|
|
<?php defined('BASEPATH') OR exit('No direct script access allowed');
|
2016-07-07 23:05:10 +03:00
|
|
|
|
|
|
|
/* ----------------------------------------------------------------------------
|
|
|
|
* Easy!Appointments - Open Source Web Scheduler
|
|
|
|
*
|
|
|
|
* @package EasyAppointments
|
|
|
|
* @author A.Tselegidis <alextselegidis@gmail.com>
|
2020-03-11 12:10:59 +03:00
|
|
|
* @copyright Copyright (c) 2013 - 2020, Alex Tselegidis
|
2016-07-07 23:05:10 +03:00
|
|
|
* @license http://opensource.org/licenses/GPL-3.0 - GPLv3
|
|
|
|
* @link http://easyappointments.org
|
|
|
|
* @since v1.2.0
|
|
|
|
* ---------------------------------------------------------------------------- */
|
|
|
|
|
2016-07-08 22:17:06 +03:00
|
|
|
require_once __DIR__ . '/API_V1_Controller.php';
|
|
|
|
|
2016-07-09 14:14:08 +03:00
|
|
|
use \EA\Engine\Api\V1\Response;
|
2016-07-10 12:12:16 +03:00
|
|
|
use \EA\Engine\Api\V1\Request;
|
2016-11-09 21:56:24 +03:00
|
|
|
use \EA\Engine\Types\NonEmptyText;
|
2016-07-09 14:14:08 +03:00
|
|
|
|
2016-07-07 23:05:10 +03:00
|
|
|
/**
|
|
|
|
* Appointments Controller
|
|
|
|
*
|
|
|
|
* @package Controllers
|
2016-07-08 22:17:06 +03:00
|
|
|
* @subpackage API
|
2016-07-07 23:05:10 +03:00
|
|
|
*/
|
2016-07-08 22:17:06 +03:00
|
|
|
class Appointments extends API_V1_Controller {
|
2016-07-09 14:14:08 +03:00
|
|
|
/**
|
2016-07-09 22:53:28 +03:00
|
|
|
* Appointments Resource Parser
|
2017-09-15 14:36:37 +03:00
|
|
|
*
|
2016-07-09 22:53:28 +03:00
|
|
|
* @var \EA\Engine\Api\V1\Parsers\Appointments
|
2016-07-09 14:14:08 +03:00
|
|
|
*/
|
2017-09-15 14:36:37 +03:00
|
|
|
protected $parser;
|
2016-07-09 14:14:08 +03:00
|
|
|
|
2016-07-08 22:17:06 +03:00
|
|
|
/**
|
|
|
|
* Class Constructor
|
|
|
|
*/
|
2017-09-15 14:36:37 +03:00
|
|
|
public function __construct()
|
|
|
|
{
|
2016-07-08 22:17:06 +03:00
|
|
|
parent::__construct();
|
2016-07-09 14:14:08 +03:00
|
|
|
$this->load->model('appointments_model');
|
2016-07-09 22:53:28 +03:00
|
|
|
$this->parser = new \EA\Engine\Api\V1\Parsers\Appointments;
|
2016-07-08 22:17:06 +03:00
|
|
|
}
|
2016-07-07 23:05:10 +03:00
|
|
|
|
2016-07-08 22:17:06 +03:00
|
|
|
/**
|
2017-09-15 14:36:37 +03:00
|
|
|
* GET API Method
|
|
|
|
*
|
2016-07-08 22:17:06 +03:00
|
|
|
* @param int $id Optional (null), the record ID to be returned.
|
|
|
|
*/
|
2017-09-15 14:36:37 +03:00
|
|
|
public function get($id = NULL)
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
2018-04-13 15:54:50 +03:00
|
|
|
$conditions = [
|
|
|
|
'is_unavailable' => FALSE
|
|
|
|
];
|
|
|
|
|
|
|
|
if ($id !== NULL)
|
|
|
|
{
|
|
|
|
$conditions['id'] = $id;
|
|
|
|
}
|
|
|
|
|
|
|
|
$appointments = $this->appointments_model->get_batch($conditions, array_key_exists('aggregates', $_GET));
|
2017-09-15 14:36:37 +03:00
|
|
|
|
|
|
|
if ($id !== NULL && count($appointments) === 0)
|
|
|
|
{
|
2016-07-10 14:00:42 +03:00
|
|
|
$this->_throwRecordNotFound();
|
2016-07-09 23:07:26 +03:00
|
|
|
}
|
|
|
|
|
2017-09-15 14:36:37 +03:00
|
|
|
$response = new Response($appointments);
|
2016-07-10 14:00:42 +03:00
|
|
|
|
2016-07-10 12:38:22 +03:00
|
|
|
$response->encode($this->parser)
|
2017-09-15 14:36:37 +03:00
|
|
|
->search()
|
|
|
|
->sort()
|
|
|
|
->paginate()
|
|
|
|
->minimize()
|
|
|
|
->singleEntry($id)
|
|
|
|
->output();
|
|
|
|
|
2017-09-23 02:30:22 +03:00
|
|
|
}
|
|
|
|
catch (\Exception $exception)
|
2017-09-15 14:36:37 +03:00
|
|
|
{
|
|
|
|
exit($this->_handleException($exception));
|
|
|
|
}
|
2016-07-07 23:05:10 +03:00
|
|
|
}
|
|
|
|
|
2016-07-08 22:17:06 +03:00
|
|
|
/**
|
2017-09-15 14:36:37 +03:00
|
|
|
* POST API Method
|
2016-07-08 22:17:06 +03:00
|
|
|
*/
|
2017-09-15 14:36:37 +03:00
|
|
|
public function post()
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
2016-07-10 12:12:16 +03:00
|
|
|
// Insert the appointment to the database.
|
2017-09-15 14:36:37 +03:00
|
|
|
$request = new Request();
|
2016-07-10 12:12:16 +03:00
|
|
|
$appointment = $request->getBody();
|
2017-09-15 14:36:37 +03:00
|
|
|
$this->parser->decode($appointment);
|
2016-07-10 12:12:16 +03:00
|
|
|
|
2017-09-15 14:36:37 +03:00
|
|
|
if (isset($appointment['id']))
|
|
|
|
{
|
2016-07-10 12:12:16 +03:00
|
|
|
unset($appointment['id']);
|
|
|
|
}
|
|
|
|
|
|
|
|
$id = $this->appointments_model->add($appointment);
|
|
|
|
|
|
|
|
// Fetch the new object from the database and return it to the client.
|
2017-09-15 14:36:37 +03:00
|
|
|
$batch = $this->appointments_model->get_batch('id = ' . $id);
|
|
|
|
$response = new Response($batch);
|
2016-11-09 21:56:24 +03:00
|
|
|
$status = new NonEmptyText('201 Created');
|
2017-09-15 14:36:37 +03:00
|
|
|
$response->encode($this->parser)->singleEntry(TRUE)->output($status);
|
2017-09-23 02:30:22 +03:00
|
|
|
}
|
|
|
|
catch (\Exception $exception)
|
2017-09-15 14:36:37 +03:00
|
|
|
{
|
|
|
|
exit($this->_handleException($exception));
|
|
|
|
}
|
2016-07-08 22:17:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-09-15 14:36:37 +03:00
|
|
|
* PUT API Method
|
2016-07-08 22:17:06 +03:00
|
|
|
*
|
|
|
|
* @param int $id The record ID to be updated.
|
|
|
|
*/
|
2017-09-15 14:36:37 +03:00
|
|
|
public function put($id)
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
2016-07-10 12:12:16 +03:00
|
|
|
// Update the appointment record.
|
2017-09-15 14:36:37 +03:00
|
|
|
$batch = $this->appointments_model->get_batch('id = ' . $id);
|
2016-07-08 22:17:06 +03:00
|
|
|
|
2017-09-15 14:36:37 +03:00
|
|
|
if ($id !== NULL && count($batch) === 0)
|
|
|
|
{
|
2016-07-10 14:00:42 +03:00
|
|
|
$this->_throwRecordNotFound();
|
2016-07-09 23:07:26 +03:00
|
|
|
}
|
2017-09-15 14:36:37 +03:00
|
|
|
|
|
|
|
$request = new Request();
|
|
|
|
$updatedAppointment = $request->getBody();
|
2016-07-10 12:12:16 +03:00
|
|
|
$baseAppointment = $batch[0];
|
2017-09-15 14:36:37 +03:00
|
|
|
$this->parser->decode($updatedAppointment, $baseAppointment);
|
|
|
|
$updatedAppointment['id'] = $id;
|
2016-07-10 12:12:16 +03:00
|
|
|
$id = $this->appointments_model->add($updatedAppointment);
|
2017-09-15 14:36:37 +03:00
|
|
|
|
2016-07-10 12:12:16 +03:00
|
|
|
// Fetch the updated object from the database and return it to the client.
|
2017-09-15 14:36:37 +03:00
|
|
|
$batch = $this->appointments_model->get_batch('id = ' . $id);
|
|
|
|
$response = new Response($batch);
|
|
|
|
$response->encode($this->parser)->singleEntry($id)->output();
|
2017-09-23 02:30:22 +03:00
|
|
|
}
|
|
|
|
catch (\Exception $exception)
|
2017-09-15 14:36:37 +03:00
|
|
|
{
|
|
|
|
exit($this->_handleException($exception));
|
|
|
|
}
|
2016-07-08 22:17:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-09-15 14:36:37 +03:00
|
|
|
* DELETE API Method
|
2016-07-08 22:17:06 +03:00
|
|
|
*
|
|
|
|
* @param int $id The record ID to be deleted.
|
|
|
|
*/
|
2017-09-15 14:36:37 +03:00
|
|
|
public function delete($id)
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
2016-11-06 20:30:03 +03:00
|
|
|
$this->appointments_model->delete($id);
|
2016-07-09 23:07:26 +03:00
|
|
|
|
|
|
|
$response = new Response([
|
2017-09-15 14:36:37 +03:00
|
|
|
'code' => 200,
|
2016-07-10 14:24:05 +03:00
|
|
|
'message' => 'Record was deleted successfully!'
|
2016-07-09 23:07:26 +03:00
|
|
|
]);
|
|
|
|
|
|
|
|
$response->output();
|
2017-09-23 02:30:22 +03:00
|
|
|
}
|
|
|
|
catch (\Exception $exception)
|
2017-09-15 14:36:37 +03:00
|
|
|
{
|
|
|
|
exit($this->_handleException($exception));
|
|
|
|
}
|
2016-07-07 23:05:10 +03:00
|
|
|
}
|
|
|
|
}
|