This commit is contained in:
193
application/controllers/Unavailabilities.php
Normal file
193
application/controllers/Unavailabilities.php
Normal file
@@ -0,0 +1,193 @@
|
||||
<?php defined('BASEPATH') or exit('No direct script access allowed');
|
||||
|
||||
/* ----------------------------------------------------------------------------
|
||||
* Easy!Appointments - Online Appointment Scheduler
|
||||
*
|
||||
* @package EasyAppointments
|
||||
* @author A.Tselegidis <alextselegidis@gmail.com>
|
||||
* @copyright Copyright (c) Alex Tselegidis
|
||||
* @license https://opensource.org/licenses/GPL-3.0 - GPLv3
|
||||
* @link https://easyappointments.org
|
||||
* @since v1.0.0
|
||||
* ---------------------------------------------------------------------------- */
|
||||
|
||||
/**
|
||||
* Unavailabilities controller.
|
||||
*
|
||||
* Handles the unavailabilities related operations.
|
||||
*
|
||||
* @package Controllers
|
||||
*/
|
||||
class Unavailabilities extends EA_Controller
|
||||
{
|
||||
public array $allowed_unavailability_fields = [
|
||||
'id',
|
||||
'start_datetime',
|
||||
'end_datetime',
|
||||
'location',
|
||||
'notes',
|
||||
'is_unavailability',
|
||||
'id_users_provider',
|
||||
];
|
||||
|
||||
public array $optional_unavailability_fields = [
|
||||
//
|
||||
];
|
||||
|
||||
/**
|
||||
* Unavailabilities constructor.
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
parent::__construct();
|
||||
|
||||
$this->load->model('unavailabilities_model');
|
||||
$this->load->model('roles_model');
|
||||
|
||||
$this->load->library('accounts');
|
||||
$this->load->library('timezones');
|
||||
$this->load->library('webhooks_client');
|
||||
}
|
||||
|
||||
/**
|
||||
* Filter unavailabilities by the provided keyword.
|
||||
*/
|
||||
public function search(): void
|
||||
{
|
||||
try {
|
||||
if (cannot('view', PRIV_APPOINTMENTS)) {
|
||||
abort(403, 'Forbidden');
|
||||
}
|
||||
|
||||
$keyword = request('keyword', '');
|
||||
|
||||
$order_by = request('order_by', 'update_datetime DESC');
|
||||
|
||||
$limit = request('limit', 1000);
|
||||
|
||||
$offset = (int) request('offset', '0');
|
||||
|
||||
$unavailabilities = $this->unavailabilities_model->search($keyword, $limit, $offset, $order_by);
|
||||
|
||||
json_response($unavailabilities);
|
||||
} catch (Throwable $e) {
|
||||
json_exception($e);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Store a new unavailability.
|
||||
*/
|
||||
public function store(): void
|
||||
{
|
||||
try {
|
||||
if (cannot('add', PRIV_APPOINTMENTS)) {
|
||||
abort(403, 'Forbidden');
|
||||
}
|
||||
|
||||
$unavailability = request('unavailability');
|
||||
|
||||
$this->unavailabilities_model->only($unavailability, $this->allowed_unavailability_fields);
|
||||
|
||||
$this->unavailabilities_model->optional($unavailability, $this->optional_unavailability_fields);
|
||||
|
||||
$unavailability_id = $this->unavailabilities_model->save($unavailability);
|
||||
|
||||
$unavailability = $this->unavailabilities_model->find($unavailability_id);
|
||||
|
||||
$provider = $this->providers_model->find($unavailability['id_users_provider']);
|
||||
|
||||
$this->synchronization->sync_unavailability_saved($unavailability, $provider);
|
||||
|
||||
$this->webhooks_client->trigger(WEBHOOK_UNAVAILABILITY_SAVE, $unavailability);
|
||||
|
||||
json_response([
|
||||
'success' => true,
|
||||
'id' => $unavailability_id,
|
||||
]);
|
||||
} catch (Throwable $e) {
|
||||
json_exception($e);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Find an unavailability.
|
||||
*/
|
||||
public function find(): void
|
||||
{
|
||||
try {
|
||||
if (cannot('view', PRIV_APPOINTMENTS)) {
|
||||
abort(403, 'Forbidden');
|
||||
}
|
||||
|
||||
$unavailability_id = request('unavailability_id');
|
||||
|
||||
$unavailability = $this->unavailabilities_model->find($unavailability_id);
|
||||
|
||||
json_response($unavailability);
|
||||
} catch (Throwable $e) {
|
||||
json_exception($e);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Update a unavailability.
|
||||
*/
|
||||
public function update(): void
|
||||
{
|
||||
try {
|
||||
if (cannot('edit', PRIV_APPOINTMENTS)) {
|
||||
abort(403, 'Forbidden');
|
||||
}
|
||||
|
||||
$unavailability = request('unavailability');
|
||||
|
||||
$this->unavailabilities_model->only($unavailability, $this->allowed_unavailability_fields);
|
||||
|
||||
$this->unavailabilities_model->optional($unavailability, $this->optional_unavailability_fields);
|
||||
|
||||
$unavailability_id = $this->unavailabilities_model->save($unavailability);
|
||||
|
||||
$unavailability = $this->unavailabilities_model->find($unavailability_id);
|
||||
|
||||
$provider = $this->providers_model->find($unavailability['id_users_provider']);
|
||||
|
||||
$this->synchronization->sync_unavailability_saved($unavailability, $provider);
|
||||
|
||||
$this->webhooks_client->trigger(WEBHOOK_UNAVAILABILITY_SAVE, $unavailability);
|
||||
|
||||
json_response([
|
||||
'success' => true,
|
||||
'id' => $unavailability_id,
|
||||
]);
|
||||
} catch (Throwable $e) {
|
||||
json_exception($e);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove a unavailability.
|
||||
*/
|
||||
public function destroy(): void
|
||||
{
|
||||
try {
|
||||
if (cannot('delete', PRIV_APPOINTMENTS)) {
|
||||
abort(403, 'Forbidden');
|
||||
}
|
||||
|
||||
$unavailability_id = request('unavailability_id');
|
||||
|
||||
$unavailability = $this->unavailabilities_model->find($unavailability_id);
|
||||
|
||||
$this->unavailabilities_model->delete($unavailability_id);
|
||||
|
||||
$this->webhooks_client->trigger(WEBHOOK_UNAVAILABILITY_DELETE, $unavailability);
|
||||
|
||||
json_response([
|
||||
'success' => true,
|
||||
]);
|
||||
} catch (Throwable $e) {
|
||||
json_exception($e);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user