2021-12-11 00:06:59 +03:00
|
|
|
/* ----------------------------------------------------------------------------
|
|
|
|
* Easy!Appointments - Open Source Web Scheduler
|
|
|
|
*
|
|
|
|
* @package EasyAppointments
|
|
|
|
* @author A.Tselegidis <alextselegidis@gmail.com>
|
2021-12-18 19:43:45 +03:00
|
|
|
* @copyright Copyright (c) Alex Tselegidis
|
|
|
|
* @license https://opensource.org/licenses/GPL-3.0 - GPLv3
|
|
|
|
* @link https://easyappointments.org
|
2021-12-11 00:06:59 +03:00
|
|
|
* @since v1.5.0
|
|
|
|
* ---------------------------------------------------------------------------- */
|
|
|
|
|
2022-01-14 11:26:44 +03:00
|
|
|
/**
|
|
|
|
* Customers HTTP client.
|
|
|
|
*
|
|
|
|
* This module implements the customers related HTTP requests.
|
|
|
|
*/
|
2021-12-18 20:26:02 +03:00
|
|
|
App.Http.Customers = (function () {
|
2021-12-14 09:14:11 +03:00
|
|
|
/**
|
2022-01-06 11:53:37 +03:00
|
|
|
* Save (create or update) a customer.
|
|
|
|
*
|
|
|
|
* @param {Object} customer
|
|
|
|
*
|
|
|
|
* @return {Object}
|
|
|
|
*/
|
|
|
|
function save(customer) {
|
|
|
|
return customer.id ? update(customer) : create(customer);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a customer.
|
2021-12-14 09:14:11 +03:00
|
|
|
*
|
|
|
|
* @param {Object} customer
|
|
|
|
*
|
2021-12-18 20:34:12 +03:00
|
|
|
* @return {Object}
|
2021-12-14 09:14:11 +03:00
|
|
|
*/
|
|
|
|
function create(customer) {
|
|
|
|
const url = App.Utils.Url.siteUrl('customers/create');
|
|
|
|
|
|
|
|
const data = {
|
2021-12-18 20:25:12 +03:00
|
|
|
csrf_token: App.Vars.csrf_token,
|
2021-12-14 09:14:11 +03:00
|
|
|
customer: customer
|
|
|
|
};
|
|
|
|
|
|
|
|
return $.post(url, data);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2022-01-06 11:53:37 +03:00
|
|
|
* Update a customer.
|
2021-12-14 09:14:11 +03:00
|
|
|
*
|
|
|
|
* @param {Object} customer
|
|
|
|
*
|
2021-12-18 20:34:12 +03:00
|
|
|
* @return {Object}
|
2021-12-14 09:14:11 +03:00
|
|
|
*/
|
|
|
|
function update(customer) {
|
|
|
|
const url = App.Utils.Url.siteUrl('customers/update');
|
|
|
|
|
|
|
|
const data = {
|
2021-12-18 20:25:12 +03:00
|
|
|
csrf_token: App.Vars.csrf_token,
|
2021-12-14 09:14:11 +03:00
|
|
|
customer: customer
|
|
|
|
};
|
|
|
|
|
|
|
|
return $.post(url, data);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2022-01-06 11:53:37 +03:00
|
|
|
* Delete a customer.
|
2021-12-14 09:14:11 +03:00
|
|
|
*
|
|
|
|
* @param {Number} customerId
|
|
|
|
*
|
2021-12-18 20:34:12 +03:00
|
|
|
* @return {Object}
|
2021-12-14 09:14:11 +03:00
|
|
|
*/
|
|
|
|
function destroy(customerId) {
|
|
|
|
const url = App.Utils.Url.siteUrl('customers/destroy');
|
|
|
|
|
|
|
|
const data = {
|
2021-12-18 20:25:12 +03:00
|
|
|
csrf_token: App.Vars.csrf_token,
|
2021-12-14 09:14:11 +03:00
|
|
|
customer_id: customerId
|
|
|
|
};
|
|
|
|
|
|
|
|
return $.post(url, data);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Search customers by keyword.
|
|
|
|
*
|
|
|
|
* @param {String} keyword
|
2022-01-06 11:53:37 +03:00
|
|
|
* @param {Number} [limit]
|
|
|
|
* @param {Number} [offset]
|
|
|
|
* @param {String} [orderBy]
|
2021-12-14 09:14:11 +03:00
|
|
|
*
|
2021-12-18 20:34:12 +03:00
|
|
|
* @return {Object}
|
2021-12-14 09:14:11 +03:00
|
|
|
*/
|
2022-01-06 11:53:37 +03:00
|
|
|
function search(keyword, limit = null, offset = null, orderBy = null) {
|
2021-12-14 09:14:11 +03:00
|
|
|
const url = App.Utils.Url.siteUrl('customers/search');
|
|
|
|
|
|
|
|
const data = {
|
2021-12-18 20:25:12 +03:00
|
|
|
csrf_token: App.Vars.csrf_token,
|
2021-12-14 09:14:11 +03:00
|
|
|
keyword,
|
|
|
|
limit,
|
|
|
|
offset,
|
|
|
|
order_by: orderBy
|
|
|
|
};
|
|
|
|
|
|
|
|
return $.post(url, data);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2022-01-06 11:53:37 +03:00
|
|
|
* Find a customer.
|
2021-12-14 09:14:11 +03:00
|
|
|
*
|
|
|
|
* @param {Number} customerId
|
|
|
|
*
|
2021-12-18 20:34:12 +03:00
|
|
|
* @return {Object}
|
2021-12-14 09:14:11 +03:00
|
|
|
*/
|
|
|
|
function find(customerId) {
|
|
|
|
const url = App.Utils.Url.siteUrl('customers/find');
|
|
|
|
|
|
|
|
const data = {
|
2021-12-18 20:25:12 +03:00
|
|
|
csrf_token: App.Vars.csrf_token,
|
2021-12-14 09:14:11 +03:00
|
|
|
customer_id: customerId
|
|
|
|
};
|
|
|
|
|
|
|
|
return $.post(url, data);
|
|
|
|
}
|
|
|
|
|
|
|
|
return {
|
2022-01-06 11:53:37 +03:00
|
|
|
save,
|
2021-12-14 09:14:11 +03:00
|
|
|
create,
|
|
|
|
update,
|
|
|
|
destroy,
|
|
|
|
search,
|
|
|
|
find
|
|
|
|
};
|
2021-12-11 00:06:59 +03:00
|
|
|
})();
|