-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add blocked period CRUD operations to the app (#432)
- Loading branch information
1 parent
38f872d
commit fbcd35f
Showing
44 changed files
with
1,454 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,235 @@ | ||
<?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 | ||
* ---------------------------------------------------------------------------- */ | ||
|
||
/** | ||
* Blocked_periods controller. | ||
* | ||
* Handles the blocked-periods related operations. | ||
* | ||
* @package Controllers | ||
*/ | ||
class Blocked_periods extends EA_Controller { | ||
/** | ||
* Blocked_periods constructor. | ||
*/ | ||
public function __construct() | ||
{ | ||
parent::__construct(); | ||
|
||
$this->load->model('blocked_periods_model'); | ||
$this->load->model('roles_model'); | ||
|
||
$this->load->library('accounts'); | ||
$this->load->library('timezones'); | ||
$this->load->library('webhooks_client'); | ||
} | ||
|
||
/** | ||
* Render the backend blocked-periods page. | ||
* | ||
* On this page admin users will be able to manage blocked-periods, which are eventually selected by customers during the | ||
* booking process. | ||
*/ | ||
public function index() | ||
{ | ||
session(['dest_url' => site_url('blocked_periods')]); | ||
|
||
$user_id = session('user_id'); | ||
|
||
if (cannot('view', PRIV_BLOCKED_PERIODS)) | ||
{ | ||
if ($user_id) | ||
{ | ||
abort(403, 'Forbidden'); | ||
} | ||
|
||
redirect('login'); | ||
|
||
return; | ||
} | ||
|
||
$role_slug = session('role_slug'); | ||
|
||
script_vars([ | ||
'user_id' => $user_id, | ||
'role_slug' => $role_slug, | ||
]); | ||
|
||
html_vars([ | ||
'page_title' => lang('blocked_periods'), | ||
'active_menu' => PRIV_BLOCKED_PERIODS, | ||
'user_display_name' => $this->accounts->get_user_display_name($user_id), | ||
'timezones' => $this->timezones->to_array(), | ||
'privileges' => $this->roles_model->get_permissions_by_slug($role_slug), | ||
]); | ||
|
||
$this->load->view('pages/blocked_periods'); | ||
} | ||
|
||
/** | ||
* Filter blocked-periods by the provided keyword. | ||
*/ | ||
public function search() | ||
{ | ||
try | ||
{ | ||
if (cannot('view', PRIV_BLOCKED_PERIODS)) | ||
{ | ||
abort(403, 'Forbidden'); | ||
} | ||
|
||
$keyword = request('keyword', ''); | ||
|
||
$order_by = 'update_datetime DESC'; | ||
|
||
$limit = request('limit', 1000); | ||
|
||
$offset = 0; | ||
|
||
$blocked_periods = $this->blocked_periods_model->search($keyword, $limit, $offset, $order_by); | ||
|
||
json_response($blocked_periods); | ||
} | ||
catch (Throwable $e) | ||
{ | ||
json_exception($e); | ||
} | ||
} | ||
|
||
/** | ||
* Store a new service-category. | ||
*/ | ||
public function store() | ||
{ | ||
try | ||
{ | ||
if (cannot('add', PRIV_BLOCKED_PERIODS)) | ||
{ | ||
abort(403, 'Forbidden'); | ||
} | ||
|
||
$service_category = request('service_category'); | ||
|
||
$this->blocked_periods_model->only($service_category, [ | ||
'name', | ||
'description' | ||
]); | ||
|
||
$service_category_id = $this->blocked_periods_model->save($service_category); | ||
|
||
$service_category = $this->blocked_periods_model->find($service_category_id); | ||
|
||
$this->webhooks_client->trigger(WEBHOOK_SERVICE_CATEGORY_SAVE, $service_category); | ||
|
||
json_response([ | ||
'success' => TRUE, | ||
'id' => $service_category_id | ||
]); | ||
} | ||
catch (Throwable $e) | ||
{ | ||
json_exception($e); | ||
} | ||
} | ||
|
||
/** | ||
* Update a service-category. | ||
*/ | ||
public function update() | ||
{ | ||
try | ||
{ | ||
if (cannot('edit', PRIV_BLOCKED_PERIODS)) | ||
{ | ||
abort(403, 'Forbidden'); | ||
} | ||
|
||
$service_category = request('service_category'); | ||
|
||
$this->blocked_periods_model->only($service_category, [ | ||
'id', | ||
'name', | ||
'description' | ||
]); | ||
|
||
$service_category_id = $this->blocked_periods_model->save($service_category); | ||
|
||
$service_category = $this->blocked_periods_model->find($service_category_id); | ||
|
||
$this->webhooks_client->trigger(WEBHOOK_SERVICE_CATEGORY_SAVE, $service_category); | ||
|
||
json_response([ | ||
'success' => TRUE, | ||
'id' => $service_category_id | ||
]); | ||
} | ||
catch (Throwable $e) | ||
{ | ||
json_exception($e); | ||
} | ||
} | ||
|
||
/** | ||
* Remove a service-category. | ||
*/ | ||
public function destroy() | ||
{ | ||
try | ||
{ | ||
if (cannot('delete', PRIV_BLOCKED_PERIODS)) | ||
{ | ||
abort(403, 'Forbidden'); | ||
} | ||
|
||
$service_category_id = request('service_category_id'); | ||
|
||
$service_category = $this->blocked_periods_model->find($service_category_id); | ||
|
||
$this->blocked_periods_model->delete($service_category_id); | ||
|
||
$this->webhooks_client->trigger(WEBHOOK_SERVICE_CATEGORY_DELETE, $service_category); | ||
|
||
json_response([ | ||
'success' => TRUE, | ||
]); | ||
} | ||
catch (Throwable $e) | ||
{ | ||
json_exception($e); | ||
} | ||
} | ||
|
||
/** | ||
* Find a service-category. | ||
*/ | ||
public function find() | ||
{ | ||
try | ||
{ | ||
if (cannot('view', PRIV_BLOCKED_PERIODS)) | ||
{ | ||
abort(403, 'Forbidden'); | ||
} | ||
|
||
$service_category_id = request('service_category_id'); | ||
|
||
$service_category = $this->blocked_periods_model->find($service_category_id); | ||
|
||
json_response($service_category); | ||
} | ||
catch (Throwable $e) | ||
{ | ||
json_exception($e); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.