mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-10 18:12:26 +03:00
260 lines
6.7 KiB
PHP
260 lines
6.7 KiB
PHP
<?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
|
|
* ---------------------------------------------------------------------------- */
|
|
|
|
/**
|
|
* Customers controller.
|
|
*
|
|
* Handles the customers related operations.
|
|
*
|
|
* @package Controllers
|
|
*/
|
|
class Customers extends EA_Controller {
|
|
/**
|
|
* Customers constructor.
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
|
|
$this->load->model('appointments_model');
|
|
$this->load->model('customers_model');
|
|
$this->load->model('secretaries_model');
|
|
$this->load->model('roles_model');
|
|
|
|
$this->load->library('accounts');
|
|
$this->load->library('timezones');
|
|
}
|
|
|
|
/**
|
|
* Render the backend customers page.
|
|
*
|
|
* On this page admin users will be able to manage customers, which are eventually selected by customers during the
|
|
* booking process.
|
|
*/
|
|
public function index()
|
|
{
|
|
session(['dest_url' => site_url('customers')]);
|
|
|
|
$user_id = session('user_id');
|
|
|
|
if (cannot('view', PRIV_CUSTOMERS))
|
|
{
|
|
if ($user_id)
|
|
{
|
|
abort(403, 'Forbidden');
|
|
}
|
|
|
|
redirect('login');
|
|
|
|
return;
|
|
}
|
|
|
|
$role_slug = session('role_slug');
|
|
|
|
$date_format = setting('date_format');
|
|
$time_format = setting('time_format');
|
|
$require_first_name = setting('require_first_name');
|
|
$require_last_name = setting('require_last_name');
|
|
$require_email = setting('require_email');
|
|
$require_phone_number = setting('require_phone_number');
|
|
$require_address = setting('require_address');
|
|
$require_city = setting('require_city');
|
|
$require_zip_code = setting('require_zip_code');
|
|
|
|
$secretary_providers = [];
|
|
|
|
if ($role_slug === DB_SLUG_SECRETARY)
|
|
{
|
|
$secretary = $this->secretaries_model->find($user_id);
|
|
|
|
$secretary_providers = $secretary['providers'];
|
|
}
|
|
|
|
script_vars([
|
|
'user_id' => $user_id,
|
|
'role_slug' => $role_slug,
|
|
'date_format' => $date_format,
|
|
'time_format' => $time_format,
|
|
'timezones' => $this->timezones->to_array(),
|
|
'secretary_providers' => $secretary_providers,
|
|
]);
|
|
|
|
html_vars([
|
|
'page_title' => lang('customers'),
|
|
'active_menu' => PRIV_CUSTOMERS,
|
|
'user_display_name' => $this->accounts->get_user_display_name($user_id),
|
|
'timezones' => $this->timezones->to_array(),
|
|
'grouped_timezones' => $this->timezones->to_grouped_array(),
|
|
'privileges' => $this->roles_model->get_permissions_by_slug($role_slug),
|
|
'require_first_name' => $require_first_name,
|
|
'require_last_name' => $require_last_name,
|
|
'require_email' => $require_email,
|
|
'require_phone_number' => $require_phone_number,
|
|
'require_address' => $require_address,
|
|
'require_city' => $require_city,
|
|
'require_zip_code' => $require_zip_code,
|
|
'available_languages' => config('available_languages'),
|
|
]);
|
|
|
|
$this->load->view('pages/customers');
|
|
}
|
|
|
|
/**
|
|
* Filter customers by the provided keyword.
|
|
*/
|
|
public function search()
|
|
{
|
|
try
|
|
{
|
|
if (cannot('view', PRIV_CUSTOMERS))
|
|
{
|
|
abort(403, 'Forbidden');
|
|
}
|
|
|
|
$keyword = request('keyword', '');
|
|
|
|
$order_by = 'first_name ASC, last_name ASC, email ASC';
|
|
|
|
$limit = request('limit', 1000);
|
|
|
|
$offset = 0;
|
|
|
|
$customers = $this->customers_model->search($keyword, $limit, $offset, $order_by);
|
|
|
|
foreach ($customers as &$customer)
|
|
{
|
|
$appointments = $this->appointments_model->get(['id_users_customer' => $customer['id']]);
|
|
|
|
foreach ($appointments as &$appointment)
|
|
{
|
|
$this->appointments_model->load($appointment, [
|
|
'service',
|
|
'provider',
|
|
]);
|
|
}
|
|
|
|
$customer['appointments'] = $appointments;
|
|
}
|
|
|
|
json_response($customers);
|
|
}
|
|
catch (Throwable $e)
|
|
{
|
|
json_exception($e);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Create a customer.
|
|
*/
|
|
public function create()
|
|
{
|
|
try
|
|
{
|
|
if (cannot('add', PRIV_CUSTOMERS))
|
|
{
|
|
abort(403, 'Forbidden');
|
|
}
|
|
|
|
$customer = request('customer');
|
|
|
|
$customer_id = $this->customers_model->save($customer);
|
|
|
|
json_response([
|
|
'success' => TRUE,
|
|
'id' => $customer_id
|
|
]);
|
|
}
|
|
catch (Throwable $e)
|
|
{
|
|
json_exception($e);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Update a customer.
|
|
*/
|
|
public function update()
|
|
{
|
|
try
|
|
{
|
|
if (cannot('edit', PRIV_CUSTOMERS))
|
|
{
|
|
abort(403, 'Forbidden');
|
|
}
|
|
|
|
$customer = request('customer');
|
|
|
|
$customer_id = $this->customers_model->save($customer);
|
|
|
|
json_response([
|
|
'success' => TRUE,
|
|
'id' => $customer_id
|
|
]);
|
|
}
|
|
catch (Throwable $e)
|
|
{
|
|
json_exception($e);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Remove a customer.
|
|
*/
|
|
public function destroy()
|
|
{
|
|
try
|
|
{
|
|
if (cannot('delete', PRIV_CUSTOMERS))
|
|
{
|
|
abort(403, 'Forbidden');
|
|
}
|
|
|
|
$customer_id = request('customer_id');
|
|
|
|
$this->customers_model->delete($customer_id);
|
|
|
|
json_response([
|
|
'success' => TRUE,
|
|
]);
|
|
}
|
|
catch (Throwable $e)
|
|
{
|
|
json_exception($e);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Find a customer.
|
|
*/
|
|
public function find()
|
|
{
|
|
try
|
|
{
|
|
if (cannot('view', PRIV_CUSTOMERS))
|
|
{
|
|
abort(403, 'Forbidden');
|
|
}
|
|
|
|
$customer_id = request('customer_id');
|
|
|
|
$customer = $this->customers_model->find($customer_id);
|
|
|
|
json_response($customer);
|
|
}
|
|
catch (Throwable $e)
|
|
{
|
|
json_exception($e);
|
|
}
|
|
}
|
|
}
|