/* ---------------------------------------------------------------------------- * Easy!Appointments - Open Source Web Scheduler * * @package EasyAppointments * @author A.Tselegidis * @copyright Copyright (c) 2013 - 2020, Alex Tselegidis * @license http://opensource.org/licenses/GPL-3.0 - GPLv3 * @link http://easyappointments.org * @since v1.2.0 * ---------------------------------------------------------------------------- */ /** * Backend Calendar API * * This module implements the AJAX requests for the calendar page. * * @module BackendCalendarApi */ window.BackendCalendarApi = window.BackendCalendarApi || {}; (function (exports) { 'use strict'; /** * Save Appointment * * This method stores the changes of an already registered appointment into the database, via an ajax call. * * @param {Object} appointment Contain the new appointment data. The ID of the appointment MUST be already included. * The rest values must follow the database structure. * @param {Object} [customer] Optional, contains the customer data. * @param {Function} [successCallback] Optional, if defined, this function is going to be executed on post success. * @param {Function} [errorCallback] Optional, if defined, this function is going to be executed on post failure. */ exports.saveAppointment = function (appointment, customer, successCallback, errorCallback) { var url = GlobalVariables.baseUrl + '/index.php/backend_api/ajax_save_appointment'; var data = { csrfToken: GlobalVariables.csrfToken, appointment_data: JSON.stringify(appointment) }; if (customer) { data.customer_data = JSON.stringify(customer); } $.post(url, data) .done(function (response) { if (successCallback) { successCallback(response); } }) .fail(function (jqXHR, textStatus, errorThrown) { if (errorCallback) { errorCallback(); } }); }; /** * Save unavailable period to database. * * @param {Object} unavailable Contains the unavailable period data. * @param {Function} successCallback The ajax success callback function. * @param {Function} errorCallback The ajax failure callback function. */ exports.saveUnavailable = function (unavailable, successCallback, errorCallback) { var url = GlobalVariables.baseUrl + '/index.php/backend_api/ajax_save_unavailable'; var data = { csrfToken: GlobalVariables.csrfToken, unavailable: JSON.stringify(unavailable) }; $.post(url, data) .done(function (response) { if (successCallback) { successCallback(response); } }) .fail(function (jqXHR, textStatus, errorThrown) { if (errorCallback) { errorCallback(); } }); }; /** * Save working plan exception of work to database. * * @param {Date} date Contains the working plan exceptions data. * @param {Object} workingPlanException Contains the working plan exceptions data. * @param {Number} providerId Contains the working plan exceptions data. * @param {Function} successCallback The ajax success callback function. * @param {Function} errorCallback The ajax failure callback function. */ exports.saveWorkingPlanException = function (date, workingPlanException, providerId, successCallback, errorCallback) { var url = GlobalVariables.baseUrl + '/index.php/backend_api/ajax_save_working_plan_exception'; var data = { csrfToken: GlobalVariables.csrfToken, date: date, working_plan_exception: workingPlanException, provider_id: providerId }; $.post(url, data) .done(function (response) { if (successCallback) { successCallback(response); } }) .fail(function (jqXHR, textStatus, errorThrown) { if (errorCallback) { errorCallback(); } }); } exports.deleteWorkingPlanException = function (date, providerId, successCallback, errorCallback) { var url = GlobalVariables.baseUrl + '/index.php/backend_api/ajax_delete_working_plan_exception'; var data = { csrfToken: GlobalVariables.csrfToken, date: date, provider_id: providerId }; $.post(url, data) .done(function (response) { if (successCallback) { successCallback(response); } }) .fail(function (jqXHR, textStatus, errorThrown) { if (errorCallback) { errorCallback(); } }); } })(window.BackendCalendarApi);