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>
|
|
|
|
* @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 15:17:29 +03:00
|
|
|
use \EA\Engine\Api\V1\Response;
|
|
|
|
use \EA\Engine\Api\V1\Request;
|
2016-10-10 18:46:29 +03:00
|
|
|
use \EA\Engine\Types\NonEmptyAlphanumeric;
|
2016-07-10 15:17:29 +03:00
|
|
|
|
2016-07-08 22:23:03 +03:00
|
|
|
/**
|
|
|
|
* Providers Controller
|
|
|
|
*
|
|
|
|
* @package Controllers
|
|
|
|
* @subpackage API
|
|
|
|
*/
|
|
|
|
class Providers extends API_V1_Controller {
|
2016-07-10 15:17:29 +03:00
|
|
|
/**
|
|
|
|
* Providers Resource Parser
|
|
|
|
*
|
|
|
|
* @var \EA\Engine\Api\V1\Parsers\Providers
|
|
|
|
*/
|
|
|
|
protected $parser;
|
|
|
|
|
2016-07-08 22:23:03 +03:00
|
|
|
/**
|
|
|
|
* Class Constructor
|
|
|
|
*/
|
|
|
|
public function __construct() {
|
|
|
|
parent::__construct();
|
2016-07-10 15:17:29 +03:00
|
|
|
$this->load->model('providers_model');
|
|
|
|
$this->parser = new \EA\Engine\Api\V1\Parsers\Providers;
|
2016-07-08 22:23:03 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* GET API Method
|
|
|
|
*
|
2016-07-10 15:17:29 +03:00
|
|
|
* @param int $id Optional (null), the record ID to be returned.
|
2016-07-08 22:23:03 +03:00
|
|
|
*/
|
|
|
|
public function get($id = null) {
|
2016-07-10 15:17:29 +03:00
|
|
|
try {
|
|
|
|
$condition = $id !== null ? 'id = ' . $id : null;
|
|
|
|
$providers = $this->providers_model->get_batch($condition);
|
|
|
|
|
|
|
|
if ($id !== null && count($providers) === 0) {
|
|
|
|
$this->_throwRecordNotFound();
|
|
|
|
}
|
|
|
|
|
|
|
|
$response = new Response($providers);
|
|
|
|
|
|
|
|
$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
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* POST API Method
|
|
|
|
*/
|
|
|
|
public function post() {
|
2016-07-10 15:17:29 +03:00
|
|
|
try {
|
|
|
|
// Insert the provider to the database.
|
|
|
|
$request = new Request();
|
|
|
|
$provider = $request->getBody();
|
|
|
|
$this->parser->decode($provider);
|
|
|
|
|
|
|
|
if (isset($provider['id'])) {
|
|
|
|
unset($provider['id']);
|
|
|
|
}
|
|
|
|
|
|
|
|
$id = $this->providers_model->add($provider);
|
|
|
|
|
|
|
|
// Fetch the new object from the database and return it to the client.
|
|
|
|
$batch = $this->providers_model->get_batch('id = ' . $id);
|
|
|
|
$response = new Response($batch);
|
2016-10-10 18:46:29 +03:00
|
|
|
$status = new NonEmptyAlphanumeric('201 Created');
|
2016-07-10 15:17:29 +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
|
|
|
|
*
|
2016-07-10 15:17:29 +03:00
|
|
|
* @param int $id The record ID to be updated.
|
2016-07-08 22:23:03 +03:00
|
|
|
*/
|
|
|
|
public function put($id) {
|
2016-07-10 15:17:29 +03:00
|
|
|
try {
|
|
|
|
// Update the provider record.
|
|
|
|
$batch = $this->providers_model->get_batch('id = ' . $id);
|
2016-07-08 22:23:03 +03:00
|
|
|
|
2016-07-10 15:17:29 +03:00
|
|
|
if ($id !== null && count($batch) === 0) {
|
|
|
|
$this->_throwRecordNotFound();
|
|
|
|
}
|
|
|
|
|
|
|
|
$request = new Request();
|
|
|
|
$updatedProvider = $request->getBody();
|
|
|
|
$baseProvider = $batch[0];
|
|
|
|
$this->parser->decode($updatedProvider, $baseProvider);
|
|
|
|
$updatedProvider['id'] = $id;
|
|
|
|
$id = $this->providers_model->add($updatedProvider);
|
|
|
|
|
|
|
|
// Fetch the updated object from the database and return it to the client.
|
|
|
|
$batch = $this->providers_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
|
|
|
|
*
|
2016-07-10 15:17:29 +03:00
|
|
|
* @param int $id The record ID to be deleted.
|
2016-07-08 22:23:03 +03:00
|
|
|
*/
|
|
|
|
public function delete($id) {
|
2016-07-10 15:17:29 +03:00
|
|
|
try {
|
|
|
|
$result = $this->providers_model->delete($id);
|
|
|
|
|
|
|
|
$response = new Response([
|
|
|
|
'code' => 200,
|
|
|
|
'message' => 'Record was deleted successfully!'
|
|
|
|
]);
|
2016-07-08 22:23:03 +03:00
|
|
|
|
2016-07-10 15:17:29 +03:00
|
|
|
$response->output();
|
|
|
|
} catch (\Exception $exception) {
|
|
|
|
$this->_handleException($exception);
|
|
|
|
}
|
2016-07-08 22:23:03 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* End of file Providers.php */
|
|
|
|
/* Location: ./application/controllers/api/v1/Providers.php */
|