2013-07-09 08:43:59 +03:00
|
|
|
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
|
|
|
|
|
|
|
|
/**
|
2013-07-19 18:29:59 +03:00
|
|
|
* Contains all the backend ajax calls.
|
2013-07-09 08:43:59 +03:00
|
|
|
*/
|
|
|
|
class Backend_api extends CI_Controller {
|
|
|
|
/**
|
|
|
|
* [AJAX] Get the registered appointments for the given date period and record.
|
|
|
|
*
|
2013-07-10 16:57:24 +03:00
|
|
|
* This method returns the database appointments and unavailable periods for the
|
|
|
|
* user selected date period and record type (provider or service).
|
2013-07-09 08:43:59 +03:00
|
|
|
*
|
|
|
|
* @param {numeric} $_POST['record_id'] Selected record id.
|
2013-07-10 16:57:24 +03:00
|
|
|
* @param {string} $_POST['filter_type'] Could be either FILTER_TYPE_PROVIDER or FILTER_TYPE_SERVICE.
|
2013-07-09 08:43:59 +03:00
|
|
|
* @param {string} $_POST['start_date'] The user selected start date.
|
|
|
|
* @param {string} $_POST['end_date'] The user selected end date.
|
|
|
|
*/
|
|
|
|
public function ajax_get_calendar_appointments() {
|
|
|
|
$this->load->model('appointments_model');
|
|
|
|
$this->load->model('providers_model');
|
|
|
|
$this->load->model('services_model');
|
|
|
|
$this->load->model('customers_model');
|
|
|
|
|
|
|
|
try {
|
|
|
|
if ($_POST['filter_type'] == FILTER_TYPE_PROVIDER) {
|
|
|
|
$where_id = 'id_users_provider';
|
|
|
|
} else {
|
|
|
|
$where_id = 'id_services';
|
|
|
|
}
|
|
|
|
|
2013-07-10 16:57:24 +03:00
|
|
|
// Get appointments
|
2013-07-09 08:43:59 +03:00
|
|
|
$where_clause = array(
|
|
|
|
$where_id => $_POST['record_id'],
|
|
|
|
'start_datetime >=' => $_POST['start_date'],
|
2013-07-10 16:57:24 +03:00
|
|
|
'end_datetime <=' => $_POST['end_date'],
|
|
|
|
'is_unavailable' => FALSE
|
2013-07-09 08:43:59 +03:00
|
|
|
);
|
2013-07-10 16:57:24 +03:00
|
|
|
|
|
|
|
$response['appointments'] = $this->appointments_model->get_batch($where_clause);
|
2013-07-09 08:43:59 +03:00
|
|
|
|
2013-07-10 16:57:24 +03:00
|
|
|
foreach($response['appointments'] as &$appointment) {
|
|
|
|
$appointment['provider'] = $this->providers_model->get_row($appointment['id_users_provider']);
|
|
|
|
$appointment['service'] = $this->services_model->get_row($appointment['id_services']);
|
|
|
|
$appointment['customer'] = $this->customers_model->get_row($appointment['id_users_customer']);
|
2013-07-09 08:43:59 +03:00
|
|
|
}
|
2013-07-10 16:57:24 +03:00
|
|
|
|
|
|
|
// Get unavailable periods (only for provider).
|
|
|
|
if ($_POST['filter_type'] == FILTER_TYPE_PROVIDER) {
|
|
|
|
$where_clause = array(
|
|
|
|
$where_id => $_POST['record_id'],
|
|
|
|
'start_datetime >=' => $_POST['start_date'],
|
|
|
|
'end_datetime <=' => $_POST['end_date'],
|
|
|
|
'is_unavailable' => TRUE
|
|
|
|
);
|
|
|
|
|
|
|
|
$response['unavailables'] = $this->appointments_model->get_batch($where_clause);
|
|
|
|
}
|
|
|
|
|
|
|
|
echo json_encode($response);
|
2013-07-09 08:43:59 +03:00
|
|
|
|
|
|
|
} catch(Exception $exc) {
|
|
|
|
echo json_encode(array(
|
2013-09-03 21:58:56 +03:00
|
|
|
'exceptions' => array(exceptionToJavaScript($exc))
|
2013-07-09 08:43:59 +03:00
|
|
|
));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* [AJAX] Save appointment changes that are made from the backend calendar
|
|
|
|
* page.
|
|
|
|
*
|
|
|
|
* @param array $_POST['appointment_data'] (OPTIONAL) Array with the
|
|
|
|
* appointment data.
|
|
|
|
* @param array $_POST['customer_data'] (OPTIONAL) Array with the customer
|
|
|
|
* data.
|
|
|
|
*/
|
|
|
|
public function ajax_save_appointment() {
|
|
|
|
try {
|
|
|
|
$this->load->model('appointments_model');
|
|
|
|
$this->load->model('providers_model');
|
|
|
|
$this->load->model('services_model');
|
|
|
|
$this->load->model('customers_model');
|
|
|
|
$this->load->model('settings_model');
|
|
|
|
|
|
|
|
// :: SAVE CUSTOMER CHANGES TO DATABASE
|
|
|
|
if (isset($_POST['customer_data'])) {
|
2013-07-09 17:46:48 +03:00
|
|
|
$customer = json_decode(stripcslashes($_POST['customer_data']), true);
|
|
|
|
$customer['id'] = $this->customers_model->add($customer);
|
2013-07-09 08:43:59 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// :: SAVE APPOINTMENT CHANGES TO DATABASE
|
|
|
|
if (isset($_POST['appointment_data'])) {
|
2013-07-09 17:46:48 +03:00
|
|
|
$appointment = json_decode(stripcslashes($_POST['appointment_data']), true);
|
|
|
|
$manage_mode = isset($appointment['id']);
|
2013-07-09 08:43:59 +03:00
|
|
|
// If the appointment does not contain the customer record id, then it
|
|
|
|
// means that is is going to be inserted. Get the customer's record id.
|
2013-07-09 17:46:48 +03:00
|
|
|
if (!isset($appointment['id_users_customer'])) {
|
|
|
|
$appointment['id_users_customer'] = $customer['id'];
|
2013-07-09 08:43:59 +03:00
|
|
|
}
|
|
|
|
|
2013-07-09 17:46:48 +03:00
|
|
|
$appointment['id'] = $this->appointments_model->add($appointment);
|
2013-07-09 08:43:59 +03:00
|
|
|
}
|
|
|
|
|
2013-07-09 17:46:48 +03:00
|
|
|
$appointment = $this->appointments_model->get_row($appointment['id']);
|
|
|
|
$provider = $this->providers_model->get_row($appointment['id_users_provider']);
|
|
|
|
$customer = $this->customers_model->get_row($appointment['id_users_customer']);
|
|
|
|
$service = $this->services_model->get_row($appointment['id_services']);
|
2013-07-09 08:43:59 +03:00
|
|
|
|
|
|
|
$company_settings = array(
|
|
|
|
'company_name' => $this->settings_model->get_setting('company_name'),
|
|
|
|
'company_link' => $this->settings_model->get_setting('company_link'),
|
|
|
|
'company_email' => $this->settings_model->get_setting('company_email')
|
|
|
|
);
|
|
|
|
|
|
|
|
// :: SYNC APPOINTMENT CHANGES WITH GOOGLE CALENDAR
|
|
|
|
try {
|
|
|
|
$google_sync = $this->providers_model->get_setting('google_sync',
|
2013-07-09 17:46:48 +03:00
|
|
|
$appointment['id_users_provider']);
|
2013-07-09 08:43:59 +03:00
|
|
|
|
|
|
|
if ($google_sync == TRUE) {
|
|
|
|
$google_token = json_decode($this->providers_model->get_setting('google_token',
|
2013-07-09 17:46:48 +03:00
|
|
|
$appointment['id_users_provider']));
|
2013-07-09 08:43:59 +03:00
|
|
|
|
|
|
|
$this->load->library('Google_Sync');
|
|
|
|
$this->google_sync->refresh_token($google_token->refresh_token);
|
|
|
|
|
2013-07-09 17:46:48 +03:00
|
|
|
if ($appointment['id_google_calendar'] == NULL) {
|
|
|
|
$google_event = $this->google_sync->add_appointment($appointment, $provider,
|
|
|
|
$service, $customer, $company_settings);
|
|
|
|
$appointment['id_google_calendar'] = $google_event->id;
|
|
|
|
$this->appointments_model->add($appointment); // Store google calendar id.
|
2013-07-09 08:43:59 +03:00
|
|
|
} else {
|
2013-07-09 17:46:48 +03:00
|
|
|
$this->google_sync->update_appointment($appointment, $provider,
|
|
|
|
$service, $customer, $company_settings);
|
2013-07-09 08:43:59 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} catch(Exception $exc) {
|
2013-09-03 21:58:56 +03:00
|
|
|
$warnings[] = exceptionToJavaScript($exc);
|
2013-07-09 08:43:59 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// :: SEND EMAIL NOTIFICATIONS TO PROVIDER AND CUSTOMER
|
|
|
|
try {
|
|
|
|
$this->load->library('Notifications');
|
|
|
|
|
|
|
|
if (!$manage_mode) {
|
|
|
|
$customer_title = 'Your appointment has been successfully booked!';
|
|
|
|
$customer_message = 'Thank you for arranging an appointment with us. '
|
|
|
|
. 'Below you can see the appointment details. Make changes '
|
|
|
|
. 'by clicking the appointment link.';
|
|
|
|
$customer_link = $this->config->item('base_url') . 'appointments/index/'
|
2013-07-09 17:46:48 +03:00
|
|
|
. $appointment['hash'];
|
2013-07-09 08:43:59 +03:00
|
|
|
|
|
|
|
$provider_title = 'A new appointment has been added to your plan.';
|
|
|
|
$provider_message = 'You can make changes by clicking the appointment '
|
|
|
|
. 'link below';
|
|
|
|
$provider_link = $this->config->item('base_url') . 'backend/'
|
2013-07-09 17:46:48 +03:00
|
|
|
. $appointment['hash'];
|
2013-07-09 08:43:59 +03:00
|
|
|
} else {
|
|
|
|
$customer_title = 'Appointment changes have been successfully saved!';
|
|
|
|
$customer_message = '';
|
|
|
|
$customer_link = $this->config->item('base_url') . 'appointments/index/'
|
2013-07-09 17:46:48 +03:00
|
|
|
. $appointment['hash'];
|
2013-07-09 08:43:59 +03:00
|
|
|
|
|
|
|
$provider_title = 'Appointment details have changed.';
|
|
|
|
$provider_message = '';
|
|
|
|
$provider_link = $this->config->item('base_url') . 'backend/'
|
2013-07-09 17:46:48 +03:00
|
|
|
. $appointment['hash'];
|
2013-07-09 08:43:59 +03:00
|
|
|
}
|
|
|
|
|
2013-07-09 17:46:48 +03:00
|
|
|
$this->notifications->send_appointment_details($appointment, $provider,
|
|
|
|
$service, $customer, $company_settings, $customer_title,
|
|
|
|
$customer_message, $customer_link, $customer['email']);
|
2013-07-09 08:43:59 +03:00
|
|
|
|
2013-07-09 17:46:48 +03:00
|
|
|
$this->notifications->send_appointment_details($appointment, $provider,
|
|
|
|
$service, $customer, $company_settings, $provider_title,
|
|
|
|
$provider_message, $provider_link, $provider['email']);
|
2013-07-09 08:43:59 +03:00
|
|
|
|
|
|
|
} catch(Exception $exc) {
|
2013-09-03 21:58:56 +03:00
|
|
|
$warnings[] = exceptionToJavaScript($exc);
|
2013-07-09 08:43:59 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!isset($warnings)) {
|
2013-07-17 19:29:51 +03:00
|
|
|
echo json_encode(AJAX_SUCCESS);
|
2013-07-09 08:43:59 +03:00
|
|
|
} else {
|
|
|
|
echo json_encode(array(
|
|
|
|
'warnings' => $warnings
|
|
|
|
));
|
|
|
|
}
|
|
|
|
} catch(Exception $exc) {
|
|
|
|
echo json_encode(array(
|
2013-09-03 21:58:56 +03:00
|
|
|
'exceptions' => array(exceptionToJavaScript($exc))
|
2013-07-09 08:43:59 +03:00
|
|
|
));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* [AJAX] Delete appointment from the database.
|
|
|
|
*
|
|
|
|
* This method deletes an existing appointment from the database. Once this
|
|
|
|
* action is finished it cannot be undone. Notification emails are send to both
|
|
|
|
* provider and customer and the delete action is executed to the Google Calendar
|
|
|
|
* account of the provider, if the "google_sync" setting is enabled.
|
|
|
|
*
|
|
|
|
* @param int $_POST['appointment_id'] The appointment id to be deleted.
|
|
|
|
*/
|
|
|
|
public function ajax_delete_appointment() {
|
|
|
|
try {
|
|
|
|
if (!isset($_POST['appointment_id'])) {
|
|
|
|
throw new Exception('No appointment id provided.');
|
|
|
|
}
|
|
|
|
|
|
|
|
// :: STORE APPOINTMENT DATA FOR LATER USE IN THIS METHOD
|
|
|
|
$this->load->model('appointments_model');
|
|
|
|
$this->load->model('providers_model');
|
|
|
|
$this->load->model('customers_model');
|
|
|
|
$this->load->model('services_model');
|
|
|
|
$this->load->model('settings_model');
|
|
|
|
|
2013-07-10 16:57:24 +03:00
|
|
|
$appointment = $this->appointments_model->get_row($_POST['appointment_id']);
|
|
|
|
$provider = $this->providers_model->get_row($appointment['id_users_provider']);
|
|
|
|
$customer = $this->customers_model->get_row($appointment['id_users_customer']);
|
|
|
|
$service = $this->services_model->get_row($appointment['id_services']);
|
2013-07-09 08:43:59 +03:00
|
|
|
|
|
|
|
$company_settings = array(
|
|
|
|
'company_name' => $this->settings_model->get_setting('company_name'),
|
|
|
|
'company_email' => $this->settings_model->get_setting('company_email'),
|
|
|
|
'company_link' => $this->settings_model->get_setting('company_link')
|
|
|
|
);
|
|
|
|
|
|
|
|
// :: DELETE APPOINTMENT RECORD FROM DATABASE
|
|
|
|
$this->appointments_model->delete($_POST['appointment_id']);
|
|
|
|
|
|
|
|
// :: SYNC DELETE WITH GOOGLE CALENDAR
|
2013-07-10 16:57:24 +03:00
|
|
|
if ($appointment['id_google_calendar'] != NULL) {
|
2013-07-09 08:43:59 +03:00
|
|
|
try {
|
2013-07-10 16:57:24 +03:00
|
|
|
$google_sync = $this->providers_model->get_setting('google_sync', $provider['id']);
|
2013-07-09 08:43:59 +03:00
|
|
|
|
|
|
|
if ($google_sync == TRUE) {
|
|
|
|
$google_token = json_decode($this->providers_model
|
2013-07-10 16:57:24 +03:00
|
|
|
->get_setting('google_token', $provider['id']));
|
2013-07-09 08:43:59 +03:00
|
|
|
$this->load->library('Google_Sync');
|
|
|
|
$this->google_sync->refresh_token($google_token->refresh_token);
|
2013-07-10 16:57:24 +03:00
|
|
|
$this->google_sync->delete_appointment($appointment['id_google_calendar']);
|
2013-07-09 08:43:59 +03:00
|
|
|
}
|
|
|
|
} catch(Exception $exc) {
|
2013-09-03 21:58:56 +03:00
|
|
|
$warnings[] = exceptionToJavaScript($exc);
|
2013-07-09 08:43:59 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// :: SEND NOTIFICATION EMAILS TO PROVIDER AND CUSTOMER
|
|
|
|
try {
|
|
|
|
$this->load->library('Notifications');
|
2013-07-10 16:57:24 +03:00
|
|
|
$this->notifications->send_delete_appointment($appointment, $provider,
|
|
|
|
$service, $customer, $company_settings, $provider['email'],
|
2013-07-09 08:43:59 +03:00
|
|
|
$_POST['delete_reason']);
|
2013-07-10 16:57:24 +03:00
|
|
|
$this->notifications->send_delete_appointment($appointment, $provider,
|
|
|
|
$service, $customer, $company_settings, $customer['email'],
|
2013-07-09 08:43:59 +03:00
|
|
|
$_POST['delete_reason']);
|
|
|
|
} catch(Exception $exc) {
|
2013-09-03 21:58:56 +03:00
|
|
|
$warnings[] = exceptionToJavaScript($exc);
|
2013-07-09 08:43:59 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// :: SEND RESPONSE TO CLIENT BROWSER
|
|
|
|
if (!isset($warnings)) {
|
2013-07-17 19:29:51 +03:00
|
|
|
echo json_encode(AJAX_SUCCESS); // Everything executed successfully.
|
2013-07-09 08:43:59 +03:00
|
|
|
} else {
|
|
|
|
echo json_encode(array(
|
|
|
|
'warnings' => $warnings // There were warnings during the operation.
|
|
|
|
));
|
|
|
|
}
|
|
|
|
} catch(Exception $exc) {
|
|
|
|
echo json_encode(array(
|
2013-09-03 21:58:56 +03:00
|
|
|
'exceptions' => array(exceptionToJavaScript($exc))
|
2013-07-09 08:43:59 +03:00
|
|
|
));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* [AJAX] Disable a providers sync setting.
|
|
|
|
*
|
|
|
|
* This method deletes the "google_sync" and "google_token" settings from the
|
|
|
|
* database. After that the provider's appointments will be no longer synced
|
|
|
|
* with google calendar.
|
|
|
|
*
|
|
|
|
* @param string $_POST['provider_id'] The selected provider record id.
|
|
|
|
*/
|
|
|
|
public function ajax_disable_provider_sync() {
|
|
|
|
try {
|
|
|
|
if (!isset($_POST['provider_id'])) {
|
|
|
|
throw new Exception('Provider id not specified.');
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->load->model('providers_model');
|
|
|
|
$this->providers_model->set_setting('google_sync', FALSE, $_POST['provider_id']);
|
|
|
|
$this->providers_model->set_setting('google_token', NULL, $_POST['provider_id']);
|
|
|
|
|
2013-07-17 19:29:51 +03:00
|
|
|
echo json_encode(AJAX_SUCCESS);
|
2013-07-09 08:43:59 +03:00
|
|
|
|
|
|
|
} catch(Exception $exc) {
|
|
|
|
echo json_encode(array(
|
2013-09-03 21:58:56 +03:00
|
|
|
'exceptions' => array(exceptionToJavaScript($exc))
|
2013-07-09 08:43:59 +03:00
|
|
|
));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* [AJAX] Filter the customer records with the given key string.
|
|
|
|
*
|
|
|
|
* @param string $_POST['key'] The filter key string
|
|
|
|
* @return array Returns the search results.
|
|
|
|
*/
|
|
|
|
public function ajax_filter_customers() {
|
|
|
|
try {
|
2013-07-15 17:27:19 +03:00
|
|
|
$this->load->model('appointments_model');
|
|
|
|
$this->load->model('services_model');
|
|
|
|
$this->load->model('providers_model');
|
2013-07-09 08:43:59 +03:00
|
|
|
$this->load->model('customers_model');
|
2013-07-15 17:27:19 +03:00
|
|
|
|
2013-09-13 16:21:03 +03:00
|
|
|
$key = mysql_real_escape_string($_POST['key']);
|
|
|
|
|
2013-07-09 08:43:59 +03:00
|
|
|
$where_clause =
|
2013-07-15 17:27:19 +03:00
|
|
|
'(first_name LIKE "%' . $key . '%" OR ' .
|
2013-07-09 08:43:59 +03:00
|
|
|
'last_name LIKE "%' . $key . '%" OR ' .
|
|
|
|
'email LIKE "%' . $key . '%" OR ' .
|
|
|
|
'phone_number LIKE "%' . $key . '%" OR ' .
|
|
|
|
'address LIKE "%' . $key . '%" OR ' .
|
|
|
|
'city LIKE "%' . $key . '%" OR ' .
|
2013-07-15 17:27:19 +03:00
|
|
|
'zip_code LIKE "%' . $key . '%")';
|
2013-09-13 16:21:03 +03:00
|
|
|
|
2013-07-15 17:27:19 +03:00
|
|
|
$customers = $this->customers_model->get_batch($where_clause);
|
|
|
|
|
|
|
|
foreach($customers as &$customer) {
|
|
|
|
$appointments = $this->appointments_model
|
|
|
|
->get_batch(array('id_users_customer' => $customer['id']));
|
|
|
|
|
|
|
|
foreach($appointments as &$appointment) {
|
|
|
|
$appointment['service'] = $this->services_model
|
|
|
|
->get_row($appointment['id_services']);
|
|
|
|
$appointment['provider'] = $this->providers_model
|
|
|
|
->get_row($appointment['id_users_provider']);
|
|
|
|
}
|
|
|
|
|
|
|
|
$customer['appointments'] = $appointments;
|
|
|
|
}
|
|
|
|
|
2013-09-13 16:21:03 +03:00
|
|
|
|
|
|
|
|
2013-07-15 17:27:19 +03:00
|
|
|
echo json_encode($customers);
|
|
|
|
|
2013-07-09 08:43:59 +03:00
|
|
|
} catch(Exception $exc) {
|
|
|
|
echo json_encode(array(
|
2013-09-03 21:58:56 +03:00
|
|
|
'exceptions' => array(exceptionToJavaScript($exc))
|
2013-07-15 17:27:19 +03:00
|
|
|
));
|
2013-07-09 08:43:59 +03:00
|
|
|
}
|
|
|
|
}
|
2013-07-09 17:46:48 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* [AJAX] Insert of update unavailable time period to database.
|
|
|
|
*
|
|
|
|
* @param array $_POST['unavailable'] JSON encoded array that contains the unavailable
|
|
|
|
* period data.
|
|
|
|
*/
|
|
|
|
public function ajax_save_unavailable() {
|
|
|
|
try {
|
|
|
|
$this->load->model('appointments_model');
|
|
|
|
$this->load->model('providers_model');
|
|
|
|
|
|
|
|
// Add appointment
|
|
|
|
$unavailable = json_decode($_POST['unavailable'], true);
|
2013-07-10 16:57:24 +03:00
|
|
|
$unavailable['id'] = $this->appointments_model->add_unavailable($unavailable);
|
|
|
|
$unavailable = $this->appointments_model->get_row($unavailable['id']);
|
2013-07-09 17:46:48 +03:00
|
|
|
|
|
|
|
// Google Sync
|
|
|
|
try {
|
|
|
|
$google_sync = $this->providers_model->get_setting('google_sync',
|
|
|
|
$unavailable['id_users_provider']);
|
|
|
|
|
|
|
|
if ($google_sync) {
|
|
|
|
$google_token = json_decode($this->providers_model->get_setting('google_token',
|
|
|
|
$unavailable['id_users_provider']));
|
|
|
|
|
|
|
|
$this->load->library('google_sync');
|
|
|
|
$this->google_sync->refresh_token($google_token->refresh_token);
|
|
|
|
|
2013-07-10 16:57:24 +03:00
|
|
|
if ($unavailable['id_google_calendar'] == NULL) {
|
|
|
|
$google_event = $this->google_sync->add_unavailable($unavailable);
|
|
|
|
$unavailable['id_google_calendar'] = $google_event->id;
|
|
|
|
$this->appointments_model->add_unavailable($unavailable);
|
|
|
|
} else {
|
|
|
|
$google_event = $this->google_sync->update_unavailable($unavailable);
|
|
|
|
}
|
2013-07-09 17:46:48 +03:00
|
|
|
}
|
|
|
|
} catch(Exception $exc) {
|
|
|
|
$warnings[] = $exc;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($warnings)) {
|
|
|
|
echo json_encode(array(
|
|
|
|
'warnings' => $warnings
|
|
|
|
));
|
|
|
|
} else {
|
2013-07-17 19:29:51 +03:00
|
|
|
echo json_encode(AJAX_SUCCESS);
|
2013-07-09 17:46:48 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
} catch(Exception $exc) {
|
|
|
|
echo json_encode(array(
|
2013-09-03 21:58:56 +03:00
|
|
|
'exceptions' => array(exceptionToJavaScript($exc))
|
2013-07-09 17:46:48 +03:00
|
|
|
));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* [AJAX] Delete an unavailable time period from database.
|
|
|
|
*
|
|
|
|
* @param numeric $_POST['unavailable_id'] Record id to be deleted.
|
|
|
|
*/
|
|
|
|
public function ajax_delete_unavailable() {
|
|
|
|
try {
|
2013-07-10 16:57:24 +03:00
|
|
|
$this->load->model('appointments_model');
|
|
|
|
$this->load->model('providers_model');
|
|
|
|
|
|
|
|
$unavailable = $this->appointments_model->get_row($_POST['unavailable_id']);
|
|
|
|
$provider = $this->providers_model->get_row($unavailable['id_users_provider']);
|
|
|
|
|
|
|
|
// Delete unavailable
|
|
|
|
$this->appointments_model->delete_unavailable($unavailable['id']);
|
2013-07-09 17:46:48 +03:00
|
|
|
|
|
|
|
// Google Sync
|
2013-07-10 16:57:24 +03:00
|
|
|
try {
|
|
|
|
$google_sync = $this->providers_model->get_setting('google_sync', $provider['id']);
|
|
|
|
if ($google_sync == TRUE) {
|
|
|
|
$google_token = json_decode($this->providers_model->get_setting('google_token', $provider['id']));
|
|
|
|
$this->load->library('google_sync');
|
|
|
|
$this->google_sync->refresh_token($google_token->refresh_token);
|
|
|
|
$this->google_sync->delete_unavailable($unavailable['id_google_calendar']);
|
|
|
|
}
|
|
|
|
} catch(Exception $exc) {
|
|
|
|
$warnings[] = $exc;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($warnings)) {
|
|
|
|
echo json_encode(array(
|
|
|
|
'warnings' => $warnings
|
|
|
|
));
|
|
|
|
} else {
|
2013-07-17 19:29:51 +03:00
|
|
|
echo json_encode(AJAX_SUCCESS);
|
2013-07-10 16:57:24 +03:00
|
|
|
}
|
2013-07-09 17:46:48 +03:00
|
|
|
|
|
|
|
} catch(Exception $exc) {
|
|
|
|
echo json_encode(array(
|
2013-09-03 21:58:56 +03:00
|
|
|
'exceptions' => array(exceptionToJavaScript($exc))
|
2013-07-15 17:27:19 +03:00
|
|
|
));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-07-19 18:29:59 +03:00
|
|
|
* [AJAX] Save (insert or update) a customer record.
|
2013-07-15 17:27:19 +03:00
|
|
|
*
|
|
|
|
* @param array $_POST['customer'] JSON encoded array that contains the customer's data.
|
|
|
|
*/
|
|
|
|
public function ajax_save_customer() {
|
|
|
|
try {
|
|
|
|
$this->load->model('customers_model');
|
|
|
|
$customer = json_decode($_POST['customer'], true);
|
|
|
|
$this->customers_model->add($customer);
|
2013-07-17 19:29:51 +03:00
|
|
|
echo json_encode(AJAX_SUCCESS);
|
2013-07-15 17:27:19 +03:00
|
|
|
} catch(Exception $exc) {
|
|
|
|
echo json_encode(array(
|
2013-09-03 21:58:56 +03:00
|
|
|
'exceptions' => array(exceptionToJavaScript($exc))
|
2013-07-15 17:27:19 +03:00
|
|
|
));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-07-19 18:29:59 +03:00
|
|
|
* [AJAX] Delete customer from database.
|
2013-07-15 17:27:19 +03:00
|
|
|
*
|
|
|
|
* @param numeric $_POST['customer_id'] Customer record id to be deleted.
|
|
|
|
*/
|
|
|
|
public function ajax_delete_customer() {
|
|
|
|
try {
|
|
|
|
$this->load->model('customers_model');
|
|
|
|
$this->customers_model->delete($_POST['customer_id']);
|
2013-07-17 19:29:51 +03:00
|
|
|
echo json_encode(AJAX_SUCCESS);
|
2013-07-15 17:27:19 +03:00
|
|
|
} catch(Exception $exc) {
|
|
|
|
echo json_encode(array(
|
2013-09-03 21:58:56 +03:00
|
|
|
'exceptions' => array(exceptionToJavaScript($exc))
|
2013-07-09 17:46:48 +03:00
|
|
|
));
|
|
|
|
}
|
|
|
|
}
|
2013-07-16 17:21:33 +03:00
|
|
|
|
2013-07-19 18:29:59 +03:00
|
|
|
/**
|
|
|
|
* [AJAX] Save (insert or update) service record.
|
|
|
|
*
|
|
|
|
* @param array $_POST['service'] Contains the service data (json encoded).
|
|
|
|
*/
|
2013-07-16 17:21:33 +03:00
|
|
|
public function ajax_save_service() {
|
2013-07-17 19:29:51 +03:00
|
|
|
try {
|
|
|
|
$this->load->model('services_model');
|
|
|
|
$service = json_decode($_POST['service'], true);
|
|
|
|
$this->services_model->add($service);
|
|
|
|
echo json_encode(AJAX_SUCCESS);
|
|
|
|
} catch(Exception $exc) {
|
|
|
|
echo json_encode(array(
|
2013-09-03 21:58:56 +03:00
|
|
|
'exceptions' => array(exceptionToJavaScript($exc))
|
2013-07-17 19:29:51 +03:00
|
|
|
));
|
|
|
|
}
|
2013-07-16 17:21:33 +03:00
|
|
|
}
|
|
|
|
|
2013-07-19 18:29:59 +03:00
|
|
|
/**
|
|
|
|
* [AJAX] Delete service record from database.
|
|
|
|
*
|
|
|
|
* @param numeric $_POST['service_id'] Record id to be deleted.
|
|
|
|
*/
|
2013-07-16 17:21:33 +03:00
|
|
|
public function ajax_delete_service() {
|
2013-07-17 19:29:51 +03:00
|
|
|
try {
|
|
|
|
$this->load->model('services_model');
|
|
|
|
$result = $this->services_model->delete($_POST['service_id']);
|
|
|
|
echo ($result) ? json_encode(AJAX_SUCCESS) : json_encode(AJAX_FAILURE);
|
|
|
|
} catch(Exception $exc) {
|
|
|
|
echo json_encode(array(
|
2013-09-03 21:58:56 +03:00
|
|
|
'exceptions' => array(exceptionToJavaScript($exc))
|
2013-07-17 19:29:51 +03:00
|
|
|
));
|
|
|
|
}
|
2013-07-16 17:21:33 +03:00
|
|
|
}
|
|
|
|
|
2013-07-19 18:29:59 +03:00
|
|
|
/**
|
|
|
|
* [AJAX] Filter service records by given key string.
|
|
|
|
*
|
|
|
|
* @param string $_POST['key'] Key string used to filter the records.
|
|
|
|
* @return array Returns a json encoded array back to client.
|
|
|
|
*/
|
2013-07-16 17:21:33 +03:00
|
|
|
public function ajax_filter_services() {
|
2013-07-17 19:29:51 +03:00
|
|
|
try {
|
|
|
|
$this->load->model('services_model');
|
2013-09-13 16:21:03 +03:00
|
|
|
$key = mysql_real_escape_string($_POST['key']);
|
2013-07-17 19:29:51 +03:00
|
|
|
$where =
|
|
|
|
'(name LIKE "%' . $key . '%" OR duration LIKE "%' . $key . '%" OR ' .
|
|
|
|
'price LIKE "%' . $key . '%" OR currency LIKE "%' . $key . '%" OR ' .
|
|
|
|
'description LIKE "%' . $key . '%")';
|
|
|
|
$services = $this->services_model->get_batch($where);
|
|
|
|
echo json_encode($services);
|
|
|
|
} catch(Exception $exc) {
|
|
|
|
echo json_encode(array(
|
2013-09-03 21:58:56 +03:00
|
|
|
'exceptions' => array(exceptionToJavaScript($exc))
|
2013-07-17 19:29:51 +03:00
|
|
|
));
|
|
|
|
}
|
2013-07-16 17:21:33 +03:00
|
|
|
}
|
|
|
|
|
2013-07-19 18:29:59 +03:00
|
|
|
/**
|
|
|
|
* [AJAX] Save (insert or update) category record.
|
|
|
|
*
|
|
|
|
* @param array $_POST['category'] Json encoded array with the category data. If an id
|
|
|
|
* value is provided then the category is going to be udpated instead of inserted.
|
|
|
|
*/
|
2013-07-16 17:21:33 +03:00
|
|
|
public function ajax_save_service_category() {
|
2013-07-17 19:29:51 +03:00
|
|
|
try {
|
|
|
|
$this->load->model('services_model');
|
|
|
|
$category = json_decode($_POST['category'], true);
|
|
|
|
$this->services_model->add_category($category);
|
|
|
|
echo json_encode(AJAX_SUCCESS);
|
|
|
|
} catch(Exception $exc) {
|
|
|
|
echo json_encode(array(
|
2013-09-03 21:58:56 +03:00
|
|
|
'exceptions' => array(exceptionToJavaScript($exc))
|
2013-07-17 19:29:51 +03:00
|
|
|
));
|
|
|
|
}
|
2013-07-16 17:21:33 +03:00
|
|
|
}
|
|
|
|
|
2013-07-19 18:29:59 +03:00
|
|
|
/**
|
|
|
|
* [AJAX] Delete category record from database.
|
|
|
|
*
|
|
|
|
* @param numeric $_POST['category_id'] Record id to be deleted.
|
|
|
|
*/
|
2013-07-16 17:21:33 +03:00
|
|
|
public function ajax_delete_service_category() {
|
2013-07-17 19:29:51 +03:00
|
|
|
try {
|
|
|
|
$this->load->model('services_model');
|
2013-07-19 18:29:59 +03:00
|
|
|
$result = $this->services_model->delete_category($_POST['category_id']);
|
2013-07-17 19:29:51 +03:00
|
|
|
echo ($result) ? json_encode(AJAX_SUCCESS) : json_encode(AJAX_FAILURE);
|
|
|
|
} catch(Exception $exc) {
|
|
|
|
echo json_encode(array(
|
2013-09-03 21:58:56 +03:00
|
|
|
'exceptions' => array(exceptionToJavaScript($exc))
|
2013-07-17 19:29:51 +03:00
|
|
|
));
|
|
|
|
}
|
2013-07-16 17:21:33 +03:00
|
|
|
}
|
|
|
|
|
2013-07-19 18:29:59 +03:00
|
|
|
/**
|
|
|
|
* [AJAX] Filter services categories with key string.
|
|
|
|
*
|
|
|
|
* @param string $_POST['key'] The key string used to filter the records.
|
|
|
|
* @return array Returns a json encoded array back to client with the category records.
|
|
|
|
*/
|
2013-07-16 17:21:33 +03:00
|
|
|
public function ajax_filter_service_categories() {
|
2013-07-17 19:29:51 +03:00
|
|
|
try {
|
|
|
|
$this->load->model('services_model');
|
2013-09-13 16:21:03 +03:00
|
|
|
$key = mysql_real_escape_string($_POST['key']);
|
2013-07-17 19:29:51 +03:00
|
|
|
$where = '(name LIKE "%' . $key . '%" OR description LIKE "%' . $key . '%")';
|
2013-07-19 18:29:59 +03:00
|
|
|
$categories = $this->services_model->get_all_categories($where);
|
2013-07-17 19:29:51 +03:00
|
|
|
echo json_encode($categories);
|
|
|
|
} catch(Exception $exc) {
|
|
|
|
echo json_encode(array(
|
2013-09-03 21:58:56 +03:00
|
|
|
'exceptions' => array(exceptionToJavaScript($exc))
|
|
|
|
));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* [AJAX] Filter admin records with string key.
|
|
|
|
*
|
|
|
|
* @param string $_POST['key'] The key string used to filter the records.
|
|
|
|
* @return array Returns a json encoded array back to client with the admin records.
|
|
|
|
*/
|
|
|
|
public function ajax_filter_admins() {
|
|
|
|
try {
|
|
|
|
$this->load->model('admins_model');
|
2013-09-13 16:21:03 +03:00
|
|
|
$key = mysql_real_escape_string($_POST['key']);
|
2013-09-03 21:58:56 +03:00
|
|
|
$where =
|
|
|
|
'(first_name LIKE "%' . $key . '%" OR last_name LIKE "%' . $key . '%" ' .
|
|
|
|
'OR email LIKE "%' . $key . '%" OR mobile_number LIKE "%' . $key . '%" ' .
|
|
|
|
'OR phone_number LIKE "%' . $key . '%" OR address LIKE "%' . $key . '%" ' .
|
|
|
|
'OR city LIKE "%' . $key . '%" OR state LIKE "%' . $key . '%" ' .
|
|
|
|
'OR zip_code LIKE "%' . $key . '%" OR notes LIKE "%' . $key . '%")';
|
|
|
|
$admins = $this->admins_model->get_batch($where);
|
|
|
|
echo json_encode($admins);
|
|
|
|
} catch(Exception $exc) {
|
|
|
|
echo json_encode(array(
|
|
|
|
'exceptions' => array(exceptionToJavaScript($exc))
|
|
|
|
));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* [AJAX] Save (insert or update) admin record into database.
|
|
|
|
*
|
|
|
|
* @param array $_POST['admin'] A json encoded array that contains the admin data. If an 'id'
|
|
|
|
* value is provided then the record is going to be updated.
|
|
|
|
* @return string Returns the success contant 'AJAX_SUCCESS' so javascript knows that
|
|
|
|
* everything completed successfully.
|
|
|
|
*/
|
|
|
|
public function ajax_save_admin() {
|
|
|
|
try {
|
|
|
|
$this->load->model('admins_model');
|
|
|
|
$admin = json_decode($_POST['admin'], true);
|
|
|
|
$this->admins_model->add($admin);
|
|
|
|
echo json_encode(AJAX_SUCCESS);
|
|
|
|
} catch(Exception $exc) {
|
|
|
|
echo json_encode(array(
|
|
|
|
'exceptions' => array(exceptionToJavaScript($exc))
|
|
|
|
));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* [AJAX] Delete an admin record from the database.
|
|
|
|
*
|
|
|
|
* @param numeric $_POST['admin_id'] The id of the record to be deleted.
|
|
|
|
* @return string Returns the operation result constant (AJAX_SUCESS or AJAX_FAILURE).
|
|
|
|
*/
|
|
|
|
public function ajax_delete_admin() {
|
|
|
|
try {
|
|
|
|
$this->load->model('admins_model');
|
|
|
|
$result = $this->admins_model->delete($_POST['admin_id']);
|
|
|
|
echo ($result) ? json_encode(AJAX_SUCCESS) : json_encode(AJAX_FAILURE);
|
|
|
|
} catch(Exception $exc) {
|
|
|
|
echo json_encode(array(
|
|
|
|
'exceptions' => array(exceptionToJavaScript($exc))
|
|
|
|
));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* [AJAX] Filter provider records with string key.
|
|
|
|
*
|
|
|
|
* @param string $_POST['key'] The key string used to filter the records.
|
|
|
|
* @return array Returns a json encoded array back to client with the provider records.
|
|
|
|
*/
|
|
|
|
public function ajax_filter_providers() {
|
|
|
|
try {
|
|
|
|
$this->load->model('providers_model');
|
2013-09-13 16:21:03 +03:00
|
|
|
$key = mysql_real_escape_string($_POST['key']);
|
2013-09-03 21:58:56 +03:00
|
|
|
$where =
|
|
|
|
'(first_name LIKE "%' . $key . '%" OR last_name LIKE "%' . $key . '%" ' .
|
|
|
|
'OR email LIKE "%' . $key . '%" OR mobile_number LIKE "%' . $key . '%" ' .
|
|
|
|
'OR phone_number LIKE "%' . $key . '%" OR address LIKE "%' . $key . '%" ' .
|
|
|
|
'OR city LIKE "%' . $key . '%" OR state LIKE "%' . $key . '%" ' .
|
|
|
|
'OR zip_code LIKE "%' . $key . '%" OR notes LIKE "%' . $key . '%")';
|
|
|
|
$providers = $this->providers_model->get_batch($where);
|
|
|
|
echo json_encode($providers);
|
|
|
|
} catch(Exception $exc) {
|
|
|
|
echo json_encode(array(
|
|
|
|
'exceptions' => array(exceptionToJavaScript($exc))
|
|
|
|
));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* [AJAX] Save (insert or update) a provider record into database.
|
|
|
|
*
|
|
|
|
* @param array $_POST['provider'] A json encoded array that contains the provider data. If an 'id'
|
|
|
|
* value is provided then the record is going to be updated.
|
|
|
|
* @return string Returns the success contant 'AJAX_SUCCESS' so javascript knows that
|
|
|
|
* everything completed successfully.
|
|
|
|
*/
|
|
|
|
public function ajax_save_provider() {
|
|
|
|
try {
|
|
|
|
$this->load->model('providers_model');
|
|
|
|
$provider = json_decode($_POST['provider'], true);
|
2013-09-23 18:42:36 +03:00
|
|
|
|
|
|
|
if (!isset($provider['working_plan'])) {
|
|
|
|
$this->load->model('settings_model');
|
|
|
|
$provider['settings']['working_plan'] = $this->settings_model
|
|
|
|
->get_setting('company_working_plan');
|
|
|
|
}
|
|
|
|
|
2013-09-03 21:58:56 +03:00
|
|
|
$this->providers_model->add($provider);
|
|
|
|
echo json_encode(AJAX_SUCCESS);
|
|
|
|
} catch(Exception $exc) {
|
|
|
|
echo json_encode(array(
|
|
|
|
'exceptions' => array(exceptionToJavaScript($exc))
|
|
|
|
));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* [AJAX] Delete a provider record from the database.
|
|
|
|
*
|
|
|
|
* @param numeric $_POST['provider_id'] The id of the record to be deleted.
|
|
|
|
* @return string Returns the operation result constant (AJAX_SUCESS or AJAX_FAILURE).
|
|
|
|
*/
|
|
|
|
public function ajax_delete_provider() {
|
|
|
|
try {
|
|
|
|
$this->load->model('providers_model');
|
|
|
|
$result = $this->providers_model->delete($_POST['provider_id']);
|
|
|
|
echo ($result) ? json_encode(AJAX_SUCCESS) : json_encode(AJAX_FAILURE);
|
|
|
|
} catch(Exception $exc) {
|
|
|
|
echo json_encode(array(
|
|
|
|
'exceptions' => array(exceptionToJavaScript($exc))
|
|
|
|
));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* [AJAX] Filter secretary records with string key.
|
|
|
|
*
|
|
|
|
* @param string $_POST['key'] The key string used to filter the records.
|
|
|
|
* @return array Returns a json encoded array back to client with the secretary records.
|
|
|
|
*/
|
|
|
|
public function ajax_filter_secretaries() {
|
|
|
|
try {
|
|
|
|
$this->load->model('secretaries_model');
|
2013-09-13 16:21:03 +03:00
|
|
|
$key = mysql_real_escape_string($_POST['key']);
|
2013-09-03 21:58:56 +03:00
|
|
|
$where =
|
|
|
|
'(first_name LIKE "%' . $key . '%" OR last_name LIKE "%' . $key . '%" ' .
|
|
|
|
'OR email LIKE "%' . $key . '%" OR mobile_number LIKE "%' . $key . '%" ' .
|
|
|
|
'OR phone_number LIKE "%' . $key . '%" OR address LIKE "%' . $key . '%" ' .
|
|
|
|
'OR city LIKE "%' . $key . '%" OR state LIKE "%' . $key . '%" ' .
|
|
|
|
'OR zip_code LIKE "%' . $key . '%" OR notes LIKE "%' . $key . '%")';
|
|
|
|
$secretaries = $this->secretaries_model->get_batch($where);
|
|
|
|
echo json_encode($secretaries);
|
|
|
|
} catch(Exception $exc) {
|
|
|
|
echo json_encode(array(
|
|
|
|
'exceptions' => array(exceptionToJavaScript($exc))
|
|
|
|
));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* [AJAX] Save (insert or update) a secretary record into database.
|
|
|
|
*
|
|
|
|
* @param array $_POST['secretary'] A json encoded array that contains the secretary data.
|
|
|
|
* If an 'id' value is provided then the record is going to be updated.
|
|
|
|
* @return string Returns the success contant 'AJAX_SUCCESS' so javascript knows that
|
|
|
|
* everything completed successfully.
|
|
|
|
*/
|
|
|
|
public function ajax_save_secretary() {
|
|
|
|
try {
|
|
|
|
$this->load->model('secretaries_model');
|
|
|
|
$secretary = json_decode($_POST['secretary'], true);
|
|
|
|
$this->secretaries_model->add($secretary);
|
|
|
|
echo json_encode(AJAX_SUCCESS);
|
|
|
|
} catch(Exception $exc) {
|
|
|
|
echo json_encode(array(
|
|
|
|
'exceptions' => array(exceptionToJavaScript($exc))
|
|
|
|
));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* [AJAX] Delete a secretary record from the database.
|
|
|
|
*
|
|
|
|
* @param numeric $_POST['secretary_id'] The id of the record to be deleted.
|
|
|
|
* @return string Returns the operation result constant (AJAX_SUCESS or AJAX_FAILURE).
|
|
|
|
*/
|
|
|
|
public function ajax_delete_secretary() {
|
|
|
|
try {
|
|
|
|
$this->load->model('secretaries_model');
|
|
|
|
$result = $this->secretaries_model->delete($_POST['secretary_id']);
|
|
|
|
echo ($result) ? json_encode(AJAX_SUCCESS) : json_encode(AJAX_FAILURE);
|
|
|
|
} catch(Exception $exc) {
|
|
|
|
echo json_encode(array(
|
|
|
|
'exceptions' => array(exceptionToJavaScript($exc))
|
2013-07-17 19:29:51 +03:00
|
|
|
));
|
|
|
|
}
|
2013-07-16 17:21:33 +03:00
|
|
|
}
|
2013-09-14 19:10:59 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* [AJAX] Save a setting or multiple settings in the database.
|
|
|
|
*
|
|
|
|
* This method is used to store settings in the database. It can be either system
|
|
|
|
* or user settings, one or many. Use the $_POST variables accordingly.
|
|
|
|
*
|
|
|
|
* @param array $_POST['settings'] Contains an array with settings.
|
|
|
|
* @param bool $_POST['type'] Determines the settings type, can be either SETTINGS_SYSTEM
|
|
|
|
* or SETTINGS_USER.
|
|
|
|
*/
|
|
|
|
public function ajax_save_settings() {
|
|
|
|
try {
|
|
|
|
if ($_POST['type'] == SETTINGS_SYSTEM) {
|
2013-09-18 19:36:29 +03:00
|
|
|
$this->load->model('settings_model');
|
|
|
|
$settings = json_decode($_POST['settings'], true);
|
|
|
|
$this->settings_model->save_settings($settings);
|
2013-09-14 19:10:59 +03:00
|
|
|
} else if ($_POST['type'] == SETTINGS_USER) {
|
|
|
|
$this->load->model('user_model');
|
2013-09-20 16:58:11 +03:00
|
|
|
$this->user_model->save_settings(json_decode($_POST['settings'], true));
|
2013-09-14 19:10:59 +03:00
|
|
|
}
|
2013-09-18 19:36:29 +03:00
|
|
|
|
|
|
|
echo json_encode(AJAX_SUCCESS);
|
2013-09-14 19:10:59 +03:00
|
|
|
} catch(Exception $exc) {
|
|
|
|
echo json_encode(array(
|
|
|
|
'exceptions' => array(exceptionToJavaScript($exc))
|
|
|
|
));
|
|
|
|
}
|
|
|
|
}
|
2013-09-23 18:42:36 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* [AJAX] This method checks whether the username already exists in the database.
|
|
|
|
*
|
|
|
|
* @param string $_POST['username'] Record's username to validate.
|
|
|
|
* @param bool $_POST['record_exists'] Whether the record already exists in database.
|
|
|
|
*/
|
|
|
|
public function ajax_validate_username() {
|
|
|
|
try {
|
|
|
|
// We will use the function in the admins_model because it is sufficient for
|
|
|
|
// the rest user types for now (providers, secretaries).
|
|
|
|
$this->load->model('admins_model');
|
|
|
|
$is_valid = $this->admins_model->validate_username($_POST['username'], $_POST['record_exists']);
|
|
|
|
echo json_encode($is_valid);
|
|
|
|
} catch(Exception $exc) {
|
|
|
|
echo json_encode(array(
|
|
|
|
'exceptions' => array(exceptionToJavaScript($exc))
|
|
|
|
));
|
|
|
|
}
|
|
|
|
}
|
2013-07-09 08:43:59 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/* End of file backend_api.php */
|
|
|
|
/* Location: ./application/controllers/backend_api.php */
|