2021-11-06 17:03:08 +03:00
|
|
|
<?php defined('BASEPATH') or exit('No direct script access allowed');
|
|
|
|
|
|
|
|
/* ----------------------------------------------------------------------------
|
2022-01-18 15:05:42 +03:00
|
|
|
* Easy!Appointments - Online Appointment Scheduler
|
2021-11-06 17:03:08 +03:00
|
|
|
*
|
|
|
|
* @package EasyAppointments
|
|
|
|
* @author A.Tselegidis <alextselegidis@gmail.com>
|
2021-12-18 19:43:45 +03:00
|
|
|
* @copyright Copyright (c) Alex Tselegidis
|
2021-11-06 17:03:08 +03:00
|
|
|
* @license https://opensource.org/licenses/GPL-3.0 - GPLv3
|
|
|
|
* @link https://easyappointments.org
|
|
|
|
* @since v1.5.0
|
|
|
|
* ---------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Providers API v1 controller.
|
|
|
|
*
|
|
|
|
* @package Controllers
|
|
|
|
*/
|
2023-11-29 12:24:09 +03:00
|
|
|
class Providers_api_v1 extends EA_Controller
|
|
|
|
{
|
2021-11-06 17:03:08 +03:00
|
|
|
/**
|
|
|
|
* Providers_api_v1 constructor.
|
|
|
|
*/
|
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
parent::__construct();
|
|
|
|
|
|
|
|
$this->load->library('api');
|
|
|
|
|
|
|
|
$this->api->auth();
|
|
|
|
|
|
|
|
$this->api->model('providers_model');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a provider collection.
|
|
|
|
*/
|
|
|
|
public function index()
|
|
|
|
{
|
2023-11-29 12:24:09 +03:00
|
|
|
try {
|
2021-11-06 17:03:08 +03:00
|
|
|
$keyword = $this->api->request_keyword();
|
|
|
|
|
|
|
|
$limit = $this->api->request_limit();
|
|
|
|
|
|
|
|
$offset = $this->api->request_offset();
|
|
|
|
|
|
|
|
$order_by = $this->api->request_order_by();
|
|
|
|
|
|
|
|
$fields = $this->api->request_fields();
|
2023-11-29 12:24:09 +03:00
|
|
|
|
2021-11-06 17:41:11 +03:00
|
|
|
$with = $this->api->request_with();
|
2021-11-06 17:03:08 +03:00
|
|
|
|
|
|
|
$providers = empty($keyword)
|
2023-11-29 12:24:09 +03:00
|
|
|
? $this->providers_model->get(null, $limit, $offset, $order_by)
|
2021-11-06 17:03:08 +03:00
|
|
|
: $this->providers_model->search($keyword, $limit, $offset, $order_by);
|
|
|
|
|
2023-11-29 12:24:09 +03:00
|
|
|
foreach ($providers as &$provider) {
|
2021-11-06 17:03:08 +03:00
|
|
|
$this->providers_model->api_encode($provider);
|
|
|
|
|
2023-11-29 12:24:09 +03:00
|
|
|
if (!empty($fields)) {
|
2021-11-06 17:03:08 +03:00
|
|
|
$this->providers_model->only($provider, $fields);
|
|
|
|
}
|
2021-11-06 17:34:54 +03:00
|
|
|
|
2023-11-29 12:24:09 +03:00
|
|
|
if (!empty($with)) {
|
2021-11-06 17:41:11 +03:00
|
|
|
$this->providers_model->load($provider, $with);
|
2021-11-06 17:34:54 +03:00
|
|
|
}
|
2021-11-06 17:03:08 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
json_response($providers);
|
2023-11-29 12:24:09 +03:00
|
|
|
} catch (Throwable $e) {
|
2021-11-06 17:03:08 +03:00
|
|
|
json_exception($e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a single provider.
|
|
|
|
*
|
|
|
|
* @param int|null $id Provider ID.
|
|
|
|
*/
|
2023-11-29 12:24:09 +03:00
|
|
|
public function show(int $id = null)
|
2021-11-06 17:03:08 +03:00
|
|
|
{
|
2023-11-29 12:24:09 +03:00
|
|
|
try {
|
2021-11-06 17:03:08 +03:00
|
|
|
$fields = $this->api->request_fields();
|
2023-11-29 12:24:09 +03:00
|
|
|
|
2021-11-06 17:41:11 +03:00
|
|
|
$with = $this->api->request_with();
|
2021-11-06 17:03:08 +03:00
|
|
|
|
|
|
|
$provider = $this->providers_model->find($id);
|
|
|
|
|
|
|
|
$this->providers_model->api_encode($provider);
|
|
|
|
|
2023-11-29 12:24:09 +03:00
|
|
|
if (!empty($fields)) {
|
2021-11-06 17:03:08 +03:00
|
|
|
$this->providers_model->only($provider, $fields);
|
|
|
|
}
|
|
|
|
|
2023-11-29 12:24:09 +03:00
|
|
|
if (!empty($with)) {
|
2021-11-06 17:41:11 +03:00
|
|
|
$this->providers_model->load($provider, $with);
|
2021-11-06 17:34:54 +03:00
|
|
|
}
|
|
|
|
|
2023-11-29 12:24:09 +03:00
|
|
|
if (!$provider) {
|
2021-11-06 17:03:08 +03:00
|
|
|
response('', 404);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
json_response($provider);
|
2023-11-29 12:24:09 +03:00
|
|
|
} catch (Throwable $e) {
|
2021-11-06 17:03:08 +03:00
|
|
|
json_exception($e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2023-10-26 06:41:25 +03:00
|
|
|
* Store a new provider.
|
2021-11-06 17:03:08 +03:00
|
|
|
*/
|
|
|
|
public function store()
|
|
|
|
{
|
2023-11-29 12:24:09 +03:00
|
|
|
try {
|
2021-11-06 17:03:08 +03:00
|
|
|
$provider = request();
|
|
|
|
|
|
|
|
$this->providers_model->api_decode($provider);
|
|
|
|
|
2023-11-29 12:24:09 +03:00
|
|
|
if (array_key_exists('id', $provider)) {
|
2021-11-06 17:03:08 +03:00
|
|
|
unset($provider['id']);
|
|
|
|
}
|
|
|
|
|
2023-11-29 12:24:09 +03:00
|
|
|
if (!array_key_exists('services', $provider)) {
|
2022-06-20 12:31:11 +03:00
|
|
|
throw new InvalidArgumentException('No services property provided.');
|
2021-11-06 17:03:08 +03:00
|
|
|
}
|
|
|
|
|
2023-11-29 12:24:09 +03:00
|
|
|
if (!array_key_exists('settings', $provider)) {
|
2022-06-20 12:31:11 +03:00
|
|
|
throw new InvalidArgumentException('No settings property provided.');
|
2021-11-06 17:03:08 +03:00
|
|
|
}
|
|
|
|
|
2023-11-29 12:24:09 +03:00
|
|
|
if (!array_key_exists('working_plan', $provider['settings'])) {
|
2021-11-06 17:03:08 +03:00
|
|
|
$provider['settings']['working_plan'] = setting('company_working_plan');
|
|
|
|
}
|
|
|
|
|
|
|
|
$provider_id = $this->providers_model->save($provider);
|
|
|
|
|
|
|
|
$created_provider = $this->providers_model->find($provider_id);
|
|
|
|
|
|
|
|
$this->providers_model->api_encode($created_provider);
|
|
|
|
|
|
|
|
json_response($created_provider, 201);
|
2023-11-29 12:24:09 +03:00
|
|
|
} catch (Throwable $e) {
|
2021-11-06 17:03:08 +03:00
|
|
|
json_exception($e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Update a provider.
|
|
|
|
*
|
|
|
|
* @param int $id Provider ID.
|
|
|
|
*/
|
|
|
|
public function update(int $id)
|
|
|
|
{
|
2023-11-29 12:24:09 +03:00
|
|
|
try {
|
2021-11-06 17:03:08 +03:00
|
|
|
$occurrences = $this->providers_model->get(['id' => $id]);
|
|
|
|
|
2023-11-29 12:24:09 +03:00
|
|
|
if (empty($occurrences)) {
|
2021-11-06 17:03:08 +03:00
|
|
|
response('', 404);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$original_provider = $occurrences[0];
|
|
|
|
|
|
|
|
$provider = request();
|
|
|
|
|
|
|
|
$this->providers_model->api_decode($provider, $original_provider);
|
|
|
|
|
|
|
|
$provider_id = $this->providers_model->save($provider);
|
|
|
|
|
|
|
|
$updated_provider = $this->providers_model->find($provider_id);
|
|
|
|
|
|
|
|
$this->providers_model->api_encode($updated_provider);
|
|
|
|
|
|
|
|
json_response($updated_provider);
|
2023-11-29 12:24:09 +03:00
|
|
|
} catch (Throwable $e) {
|
2021-11-06 17:03:08 +03:00
|
|
|
json_exception($e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Delete a provider.
|
|
|
|
*
|
|
|
|
* @param int $id Provider ID.
|
|
|
|
*/
|
|
|
|
public function destroy(int $id)
|
|
|
|
{
|
2023-11-29 12:24:09 +03:00
|
|
|
try {
|
2021-11-06 17:03:08 +03:00
|
|
|
$occurrences = $this->providers_model->get(['id' => $id]);
|
|
|
|
|
2023-11-29 12:24:09 +03:00
|
|
|
if (empty($occurrences)) {
|
2021-11-06 17:03:08 +03:00
|
|
|
response('', 404);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->providers_model->delete($id);
|
|
|
|
|
|
|
|
response('', 204);
|
2023-11-29 12:24:09 +03:00
|
|
|
} catch (Throwable $e) {
|
2021-11-06 17:03:08 +03:00
|
|
|
json_exception($e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|