2016-07-09 08:47:01 +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>
|
|
|
|
* @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';
|
|
|
|
|
2016-07-10 17:26:02 +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 17:26:02 +03:00
|
|
|
|
2016-07-09 08:47:01 +03:00
|
|
|
/**
|
|
|
|
* Unavailabilities Controller
|
|
|
|
*
|
|
|
|
* @package Controllers
|
|
|
|
* @subpackage API
|
|
|
|
*/
|
|
|
|
class Unavailabilities extends API_V1_Controller {
|
2016-07-10 17:26:02 +03:00
|
|
|
/**
|
|
|
|
* Unavailabilities Resource Parser
|
|
|
|
*
|
|
|
|
* @var \EA\Engine\Api\V1\Parsers\Unavailabilities
|
|
|
|
*/
|
|
|
|
protected $parser;
|
|
|
|
|
2016-07-09 08:47:01 +03:00
|
|
|
/**
|
|
|
|
* Class Constructor
|
|
|
|
*/
|
|
|
|
public function __construct() {
|
|
|
|
parent::__construct();
|
2016-07-10 17:26:02 +03:00
|
|
|
$this->load->model('appointments_model');
|
|
|
|
$this->parser = new \EA\Engine\Api\V1\Parsers\Unavailabilities;
|
2016-07-09 08:47:01 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* GET API Method
|
|
|
|
*
|
2016-07-10 17:26:02 +03:00
|
|
|
* @param int $id Optional (null), the record ID to be returned.
|
2016-07-09 08:47:01 +03:00
|
|
|
*/
|
|
|
|
public function get($id = null) {
|
2016-07-10 17:26:02 +03:00
|
|
|
try {
|
|
|
|
$condition = $id !== null ? 'id = ' . $id : 'is_unavailable = 1';
|
|
|
|
$unavailabilities = $this->appointments_model->get_batch($condition);
|
|
|
|
|
|
|
|
if ($id !== null && count($unavailabilities) === 0) {
|
|
|
|
$this->_throwRecordNotFound();
|
|
|
|
}
|
|
|
|
|
|
|
|
$response = new Response($unavailabilities);
|
|
|
|
|
|
|
|
$response->encode($this->parser)
|
|
|
|
->search()
|
|
|
|
->sort()
|
|
|
|
->paginate()
|
|
|
|
->minimize()
|
|
|
|
->singleEntry($id)
|
|
|
|
->output();
|
|
|
|
|
|
|
|
} catch(\Exception $exception) {
|
|
|
|
exit($this->_handleException($exception));
|
|
|
|
}
|
2016-07-09 08:47:01 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-07-10 17:26:02 +03:00
|
|
|
* POST API Method
|
2016-07-09 08:47:01 +03:00
|
|
|
*/
|
|
|
|
public function post() {
|
2016-07-10 17:26:02 +03:00
|
|
|
try {
|
|
|
|
// Insert the appointment to the database.
|
|
|
|
$request = new Request();
|
|
|
|
$unavailability = $request->getBody();
|
|
|
|
$this->parser->decode($unavailability);
|
|
|
|
|
|
|
|
if (isset($unavailability['id'])) {
|
|
|
|
unset($unavailability['id']);
|
|
|
|
}
|
|
|
|
|
|
|
|
$id = $this->appointments_model->add_unavailable($unavailability);
|
|
|
|
|
|
|
|
// Fetch the new object from the database and return it to the client.
|
|
|
|
$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');
|
2016-07-10 17:26:02 +03:00
|
|
|
$response->encode($this->parser)->singleEntry(true)->output($status);
|
|
|
|
} catch(\Exception $exception) {
|
|
|
|
exit($this->_handleException($exception));
|
|
|
|
}
|
2016-07-09 08:47:01 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* PUT API Method
|
|
|
|
*
|
2016-07-10 17:26:02 +03:00
|
|
|
* @param int $id The record ID to be updated.
|
2016-07-09 08:47:01 +03:00
|
|
|
*/
|
|
|
|
public function put($id) {
|
2016-07-10 17:26:02 +03:00
|
|
|
try {
|
|
|
|
// Update the appointment record.
|
|
|
|
$batch = $this->appointments_model->get_batch('id = ' . $id);
|
2016-07-09 08:47:01 +03:00
|
|
|
|
2016-07-10 17:26:02 +03:00
|
|
|
if ($id !== null && count($batch) === 0) {
|
|
|
|
$this->_throwRecordNotFound();
|
|
|
|
}
|
|
|
|
|
|
|
|
$request = new Request();
|
|
|
|
$updatedUnavailability = $request->getBody();
|
|
|
|
$baseUnavailability = $batch[0];
|
|
|
|
$this->parser->decode($updatedUnavailability, $baseUnavailability);
|
|
|
|
$updatedUnavailability['id'] = $id;
|
|
|
|
$id = $this->appointments_model->add_unavailable($updatedUnavailability);
|
|
|
|
|
|
|
|
// Fetch the updated object from the database and return it to the client.
|
|
|
|
$batch = $this->appointments_model->get_batch('id = ' . $id);
|
|
|
|
$response = new Response($batch);
|
|
|
|
$response->encode($this->parser)->singleEntry($id)->output();
|
|
|
|
} catch(\Exception $exception) {
|
|
|
|
exit($this->_handleException($exception));
|
|
|
|
}
|
2016-07-09 08:47:01 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* DELETE API Method
|
|
|
|
*
|
|
|
|
* @param int $id The record ID to be deleted.
|
|
|
|
*/
|
|
|
|
public function delete($id) {
|
2016-07-10 17:26:02 +03:00
|
|
|
try {
|
|
|
|
$result = $this->appointments_model->delete_unavailable($id);
|
|
|
|
|
|
|
|
$response = new Response([
|
|
|
|
'code' => 200,
|
|
|
|
'message' => 'Record was deleted successfully!'
|
|
|
|
]);
|
2016-07-09 08:47:01 +03:00
|
|
|
|
2016-07-10 17:26:02 +03:00
|
|
|
$response->output();
|
|
|
|
} catch(\Exception $exception) {
|
|
|
|
exit($this->_handleException($exception));
|
|
|
|
}
|
2016-07-09 08:47:01 +03:00
|
|
|
}
|
|
|
|
}
|