2020-04-22 22:48:56 +03:00
|
|
|
<?php defined('BASEPATH') or exit('No direct script access allowed');
|
2018-06-24 20:08:45 +03:00
|
|
|
|
|
|
|
/* ----------------------------------------------------------------------------
|
|
|
|
* Easy!Appointments - Open Source Web Scheduler
|
|
|
|
*
|
|
|
|
* @package EasyAppointments
|
|
|
|
* @author A.Tselegidis <alextselegidis@gmail.com>
|
2020-03-11 12:10:59 +03:00
|
|
|
* @copyright Copyright (c) 2013 - 2020, Alex Tselegidis
|
2018-06-24 20:08:45 +03:00
|
|
|
* @license http://opensource.org/licenses/GPL-3.0 - GPLv3
|
|
|
|
* @link http://easyappointments.org
|
|
|
|
* @since v1.3.2
|
|
|
|
* ---------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class Privacy
|
|
|
|
*
|
2020-09-23 12:47:18 +03:00
|
|
|
* @property CI_Session $session
|
|
|
|
* @property CI_Loader $load
|
|
|
|
* @property CI_Input $input
|
|
|
|
* @property CI_Output $output
|
|
|
|
* @property CI_Config $config
|
|
|
|
* @property CI_Lang $lang
|
|
|
|
* @property CI_Cache $cache
|
|
|
|
* @property CI_DB_query_builder $db
|
|
|
|
* @property CI_Security $security
|
|
|
|
* @property Google_Sync $google_sync
|
|
|
|
* @property Ics_file $ics_file
|
2020-11-13 12:00:57 +03:00
|
|
|
* @property Appointments_model $appointments_model
|
|
|
|
* @property Providers_model $providers_model
|
|
|
|
* @property Services_model $services_model
|
|
|
|
* @property Customers_model $customers_model
|
|
|
|
* @property Settings_model $settings_model
|
2020-09-23 12:47:18 +03:00
|
|
|
* @property Timezones $timezones
|
2020-11-13 12:00:57 +03:00
|
|
|
* @property Roles_model $roles_model
|
|
|
|
* @property Secretaries_model $secretaries_model
|
|
|
|
* @property Admins_model $admins_model
|
|
|
|
* @property User_model $user_model
|
2020-04-22 22:48:56 +03:00
|
|
|
*
|
2018-06-24 20:08:45 +03:00
|
|
|
* @package Controllers
|
|
|
|
*/
|
|
|
|
class Privacy extends CI_Controller {
|
|
|
|
/**
|
|
|
|
* Remove all customer data (including appointments from the system).
|
|
|
|
*/
|
|
|
|
public function ajax_delete_personal_information()
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
$customer_token = $this->input->post('customer_token');
|
|
|
|
|
|
|
|
if (empty($customer_token))
|
|
|
|
{
|
|
|
|
throw new InvalidArgumentException('Invalid customer token value provided.');
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->load->driver('cache', ['adapter' => 'file']);
|
|
|
|
|
|
|
|
$customer_id = $this->cache->get('customer-token-' . $customer_token);
|
|
|
|
|
|
|
|
if (empty($customer_id))
|
|
|
|
{
|
2020-04-22 22:48:56 +03:00
|
|
|
throw new InvalidArgumentException('Customer ID could not be found, please reload the page '
|
|
|
|
. 'and try again.');
|
2018-06-24 20:08:45 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
$this->load->model('customers_model');
|
|
|
|
|
|
|
|
$this->customers_model->delete($customer_id);
|
|
|
|
|
2020-04-22 22:48:56 +03:00
|
|
|
$response = [
|
|
|
|
'success' => TRUE
|
|
|
|
];
|
2018-06-24 20:08:45 +03:00
|
|
|
}
|
2020-04-22 22:48:56 +03:00
|
|
|
catch (Exception $exception)
|
2018-06-24 20:08:45 +03:00
|
|
|
{
|
2020-04-22 22:48:56 +03:00
|
|
|
$this->output->set_status_header(500);
|
|
|
|
|
|
|
|
$response = [
|
|
|
|
'message' => $exception->getMessage(),
|
|
|
|
'trace' => config('debug') ? $exception->getTrace() : []
|
|
|
|
];
|
2018-06-24 20:08:45 +03:00
|
|
|
}
|
2020-04-22 22:48:56 +03:00
|
|
|
|
|
|
|
$this->output
|
|
|
|
->set_content_type('application/json')
|
|
|
|
->set_output(json_encode($response));
|
2018-06-24 20:08:45 +03:00
|
|
|
}
|
|
|
|
}
|