mirror of
https://github.com/frappe/books.git
synced 2024-11-10 15:50:56 +00:00
153 lines
3.8 KiB
JavaScript
153 lines
3.8 KiB
JavaScript
const frappe = require('frappejs');
|
|
const path = require('path');
|
|
|
|
module.exports = class RESTClient {
|
|
constructor({ server, protocol = 'http' }) {
|
|
this.server = server;
|
|
this.protocol = protocol;
|
|
|
|
this.initTypeMap();
|
|
}
|
|
|
|
connect() {
|
|
|
|
}
|
|
|
|
async insert(doctype, doc) {
|
|
doc.doctype = doctype;
|
|
let url = this.getURL('/api/resource', frappe.slug(doctype));
|
|
return await this.fetch(url, {
|
|
method: 'POST',
|
|
body: JSON.stringify(doc)
|
|
})
|
|
}
|
|
|
|
async get(doctype, name) {
|
|
let url = this.getURL('/api/resource', frappe.slug(doctype), name);
|
|
return await this.fetch(url, {
|
|
method: 'GET',
|
|
headers: this.getHeaders()
|
|
})
|
|
}
|
|
|
|
async getAll({ doctype, fields, filters, start, limit, sort_by, order }) {
|
|
let url = this.getURL('/api/resource', frappe.slug(doctype));
|
|
|
|
url = url + "?" + this.getQueryString({
|
|
fields: JSON.stringify(fields),
|
|
filters: JSON.stringify(filters),
|
|
start: start,
|
|
limit: limit,
|
|
sort_by: sort_by,
|
|
order: order
|
|
});
|
|
|
|
return await this.fetch(url, {
|
|
method: 'GET',
|
|
});
|
|
}
|
|
|
|
async update(doctype, doc) {
|
|
doc.doctype = doctype;
|
|
let url = this.getURL('/api/resource', frappe.slug(doctype), doc.name);
|
|
|
|
return await this.fetch(url, {
|
|
method: 'PUT',
|
|
body: JSON.stringify(doc)
|
|
});
|
|
}
|
|
|
|
async delete(doctype, name) {
|
|
let url = this.getURL('/api/resource', frappe.slug(doctype), name);
|
|
|
|
return await this.fetch(url, {
|
|
method: 'DELETE',
|
|
});
|
|
}
|
|
|
|
async deleteMany(doctype, names) {
|
|
let url = this.getURL('/api/resource', frappe.slug(doctype));
|
|
|
|
return await this.fetch(url, {
|
|
method: 'DELETE',
|
|
body: JSON.stringify(names)
|
|
});
|
|
}
|
|
|
|
async exists(doctype, name) {
|
|
return (await this.getValue(doctype, name, 'name')) ? true : false;
|
|
}
|
|
|
|
async getValue(doctype, name, fieldname) {
|
|
let url = this.getURL('/api/resource', frappe.slug(doctype), name, fieldname);
|
|
|
|
return (await this.fetch(url, {
|
|
method: 'GET',
|
|
})).value;
|
|
}
|
|
|
|
async fetch(url, args) {
|
|
args.headers = this.getHeaders();
|
|
let response = await frappe.fetch(url, args);
|
|
let data = await response.json();
|
|
|
|
if (response.status !== 200) {
|
|
throw Error(data.error);
|
|
}
|
|
|
|
return data;
|
|
}
|
|
|
|
getURL(...parts) {
|
|
return this.protocol + '://' + path.join(this.server, ...parts);
|
|
}
|
|
|
|
getQueryString(params) {
|
|
return Object.keys(params)
|
|
.map(k => params[k] != null ? encodeURIComponent(k) + '=' + encodeURIComponent(params[k]) : null)
|
|
.filter(v => v)
|
|
.join('&');
|
|
}
|
|
|
|
getHeaders() {
|
|
return {
|
|
'Accept': 'application/json',
|
|
'Content-Type': 'application/json'
|
|
}
|
|
}
|
|
|
|
initTypeMap() {
|
|
this.type_map = {
|
|
'Currency': true
|
|
, 'Int': true
|
|
, 'Float': true
|
|
, 'Percent': true
|
|
, 'Check': true
|
|
, 'Small Text': true
|
|
, 'Long Text': true
|
|
, 'Code': true
|
|
, 'Text Editor': true
|
|
, 'Date': true
|
|
, 'Datetime': true
|
|
, 'Time': true
|
|
, 'Text': true
|
|
, 'Data': true
|
|
, 'Link': true
|
|
, 'Dynamic Link': true
|
|
, 'Password': true
|
|
, 'Select': true
|
|
, 'Read Only': true
|
|
, 'Attach': true
|
|
, 'Attach Image': true
|
|
, 'Signature': true
|
|
, 'Color': true
|
|
, 'Barcode': true
|
|
, 'Geolocation': true
|
|
}
|
|
}
|
|
|
|
close() {
|
|
|
|
}
|
|
|
|
} |