/* ---------------------------------------------------------------------------- * Easy!Appointments - Open Source Web Scheduler * * @package EasyAppointments * @author A.Tselegidis * @copyright Copyright (c) Alex Tselegidis * @license https://opensource.org/licenses/GPL-3.0 - GPLv3 * @link https://easyappointments.org * @since v1.5.0 * ---------------------------------------------------------------------------- */ App.Http.Appointments = (function () { /** * Create an appointment. * * @param {Object} appointment * * @return {Object} */ function create(appointment) { const url = App.Utils.Url.siteUrl('appointments/create'); const data = { csrf_token: App.Vars.csrf_token, appointment: appointment }; return $.post(url, data); } /** * Update an appointment. * * @param {Object} appointment * * @return {Object} */ function update(appointment) { const url = App.Utils.Url.siteUrl('appointments/update'); const data = { csrf_token: App.Vars.csrf_token, appointment: appointment }; return $.post(url, data); } /** * Delete an appointment. * * @param {Number} appointmentId * * @return {Object} */ function destroy(appointmentId) { const url = App.Utils.Url.siteUrl('appointments/destroy'); const data = { csrf_token: App.Vars.csrf_token, appointment_id: appointmentId }; return $.post(url, data); } /** * Search appointments by keyword. * * @param {String} keyword * @param {Number} limit * @param {Number} offset * @param {String} orderBy * * @return {Object} */ function search(keyword, limit, offset, orderBy) { const url = App.Utils.Url.siteUrl('appointments/search'); const data = { csrf_token: App.Vars.csrf_token, keyword, limit, offset, order_by: orderBy }; return $.post(url, data); } /** * Find an appointment. * * @param {Number} appointmentId * * @return {Object} */ function find(appointmentId) { const url = App.Utils.Url.siteUrl('appointments/find'); const data = { csrf_token: App.Vars.csrf_token, appointment_id: appointmentId }; return $.post(url, data); } return { create, update, destroy, search, find }; })();