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
|
|
|
|
* ---------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Secretaries API v1 controller.
|
|
|
|
*
|
|
|
|
* @package Controllers
|
|
|
|
*/
|
2023-11-29 12:24:09 +03:00
|
|
|
class Secretaries_api_v1 extends EA_Controller
|
|
|
|
{
|
2021-11-06 17:03:08 +03:00
|
|
|
/**
|
|
|
|
* Secretaries_api_v1 constructor.
|
|
|
|
*/
|
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
parent::__construct();
|
|
|
|
|
|
|
|
$this->load->library('api');
|
|
|
|
|
|
|
|
$this->api->auth();
|
|
|
|
|
|
|
|
$this->api->model('secretaries_model');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a secretary collection.
|
|
|
|
*/
|
2024-01-05 21:12:25 +03:00
|
|
|
public function index(): void
|
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
|
|
|
$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();
|
2022-06-20 12:31:11 +03:00
|
|
|
|
2021-11-06 17:41:11 +03:00
|
|
|
$with = $this->api->request_with();
|
2021-11-06 17:03:08 +03:00
|
|
|
|
|
|
|
$secretaries = empty($keyword)
|
2023-11-29 12:24:09 +03:00
|
|
|
? $this->secretaries_model->get(null, $limit, $offset, $order_by)
|
2021-11-06 17:03:08 +03:00
|
|
|
: $this->secretaries_model->search($keyword, $limit, $offset, $order_by);
|
|
|
|
|
2023-11-29 12:24:09 +03:00
|
|
|
foreach ($secretaries as &$secretary) {
|
2021-11-06 17:03:08 +03:00
|
|
|
$this->secretaries_model->api_encode($secretary);
|
|
|
|
|
2023-11-29 12:24:09 +03:00
|
|
|
if (!empty($fields)) {
|
2021-11-06 17:03:08 +03:00
|
|
|
$this->secretaries_model->only($secretary, $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->secretaries_model->load($secretary, $with);
|
2021-11-06 17:34:54 +03:00
|
|
|
}
|
2021-11-06 17:03:08 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
json_response($secretaries);
|
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 secretary.
|
|
|
|
*
|
|
|
|
* @param int|null $id Secretary ID.
|
|
|
|
*/
|
2024-01-05 21:12:25 +03:00
|
|
|
public function show(int $id = null): void
|
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();
|
|
|
|
|
|
|
|
$secretary = $this->secretaries_model->find($id);
|
|
|
|
|
|
|
|
$this->secretaries_model->api_encode($secretary);
|
|
|
|
|
2023-11-29 12:24:09 +03:00
|
|
|
if (!empty($fields)) {
|
2021-11-06 17:03:08 +03:00
|
|
|
$this->secretaries_model->only($secretary, $fields);
|
|
|
|
}
|
|
|
|
|
2023-11-29 12:24:09 +03:00
|
|
|
if (!$secretary) {
|
2021-11-06 17:03:08 +03:00
|
|
|
response('', 404);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
json_response($secretary);
|
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 secretary.
|
2021-11-06 17:03:08 +03:00
|
|
|
*/
|
2024-01-05 21:12:25 +03:00
|
|
|
public function store(): void
|
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
|
|
|
$secretary = request();
|
|
|
|
|
|
|
|
$this->secretaries_model->api_decode($secretary);
|
|
|
|
|
2023-11-29 12:24:09 +03:00
|
|
|
if (array_key_exists('id', $secretary)) {
|
2021-11-06 17:03:08 +03:00
|
|
|
unset($secretary['id']);
|
|
|
|
}
|
|
|
|
|
2023-11-29 12:24:09 +03:00
|
|
|
if (!array_key_exists('providers', $secretary)) {
|
2022-06-20 12:31:11 +03:00
|
|
|
throw new InvalidArgumentException('No providers property provided.');
|
2021-11-06 17:03:08 +03:00
|
|
|
}
|
|
|
|
|
2023-11-29 12:24:09 +03:00
|
|
|
if (!array_key_exists('settings', $secretary)) {
|
2022-06-20 12:31:11 +03:00
|
|
|
throw new InvalidArgumentException('No settings property provided.');
|
2021-11-06 17:03:08 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
$secretary_id = $this->secretaries_model->save($secretary);
|
|
|
|
|
|
|
|
$created_secretary = $this->secretaries_model->find($secretary_id);
|
|
|
|
|
|
|
|
$this->secretaries_model->api_encode($created_secretary);
|
|
|
|
|
|
|
|
json_response($created_secretary, 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 secretary.
|
|
|
|
*
|
|
|
|
* @param int $id Secretary ID.
|
|
|
|
*/
|
2024-01-05 21:12:25 +03:00
|
|
|
public function update(int $id): void
|
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
|
|
|
$occurrences = $this->secretaries_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_secretary = $occurrences[0];
|
|
|
|
|
|
|
|
$secretary = request();
|
|
|
|
|
|
|
|
$this->secretaries_model->api_decode($secretary, $original_secretary);
|
|
|
|
|
|
|
|
$secretary_id = $this->secretaries_model->save($secretary);
|
|
|
|
|
|
|
|
$updated_secretary = $this->secretaries_model->find($secretary_id);
|
|
|
|
|
|
|
|
$this->secretaries_model->api_encode($updated_secretary);
|
|
|
|
|
|
|
|
json_response($updated_secretary);
|
2023-11-29 12:24:09 +03:00
|
|
|
} catch (Throwable $e) {
|
2021-11-06 17:03:08 +03:00
|
|
|
json_exception($e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Delete a secretary.
|
|
|
|
*
|
|
|
|
* @param int $id Secretary ID.
|
|
|
|
*/
|
2024-01-05 21:12:25 +03:00
|
|
|
public function destroy(int $id): void
|
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
|
|
|
$occurrences = $this->secretaries_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->secretaries_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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|