easyappointments/assets/js/http/customers_http_client.js

117 lines
2.6 KiB
JavaScript
Raw Normal View History

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
* ---------------------------------------------------------------------------- */
App.Http.Customers = (function () {
2021-12-14 09:14:11 +03:00
/**
* Create an customer.
*
* @param {Object} customer
*
* @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);
}
/**
* Update an customer.
*
* @param {Object} customer
*
* @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);
}
/**
* Delete an customer.
*
* @param {Number} customerId
*
* @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
* @param {Number} limit
* @param {Number} offset
* @param {String} orderBy
*
* @return {Object}
2021-12-14 09:14:11 +03:00
*/
function search(keyword, limit, offset, orderBy) {
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);
}
/**
* Find an customer.
*
* @param {Number} customerId
*
* @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 {
create,
update,
destroy,
search,
find
};
2021-12-11 00:06:59 +03:00
})();