2020-04-22 22:48:56 +03:00
|
|
|
<?php defined('BASEPATH') or exit('No direct script access allowed');
|
2018-06-24 18:27:16 +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
|
2020-11-14 22:36:25 +03:00
|
|
|
* @license https://opensource.org/licenses/GPL-3.0 - GPLv3
|
|
|
|
* @link https://easyappointments.org
|
2018-06-24 18:27:16 +03:00
|
|
|
* @since v1.3.2
|
|
|
|
* ---------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class Consent
|
|
|
|
*
|
|
|
|
* Handles user consent related operations.
|
2020-04-22 22:48:56 +03:00
|
|
|
*
|
|
|
|
* @package Controllers
|
2018-06-24 18:27:16 +03:00
|
|
|
*/
|
2020-11-16 11:29:36 +03:00
|
|
|
class Consents extends EA_Controller {
|
2020-12-05 12:55:09 +03:00
|
|
|
/**
|
|
|
|
* Consents constructor.
|
|
|
|
*/
|
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
parent::__construct();
|
|
|
|
$this->load->model('consents_model');
|
|
|
|
}
|
|
|
|
|
2018-06-24 18:27:16 +03:00
|
|
|
/**
|
|
|
|
* Save the user's consent.
|
|
|
|
*/
|
|
|
|
public function ajax_save_consent()
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
2020-04-22 22:48:56 +03:00
|
|
|
$consent = $this->input->post('consent');
|
|
|
|
|
2018-06-24 18:27:16 +03:00
|
|
|
$consent['ip'] = $this->input->ip_address();
|
|
|
|
|
|
|
|
$consent['id'] = $this->consents_model->add($consent);
|
|
|
|
|
2020-04-22 22:48:56 +03:00
|
|
|
$response = [
|
|
|
|
'success' => TRUE,
|
|
|
|
'id' => $consent['id']
|
|
|
|
];
|
2018-06-24 18:27:16 +03:00
|
|
|
}
|
2020-04-22 22:48:56 +03:00
|
|
|
catch (Exception $exception)
|
2018-06-24 18:27:16 +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 18:27:16 +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 18:27:16 +03:00
|
|
|
}
|
|
|
|
}
|