2018-03-25 23:09:17 +08:00
|
|
|
import utils from './utils.js';
|
2018-03-26 09:29:35 +08:00
|
|
|
import infoService from "./info.js";
|
2017-11-29 09:52:38 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
function getHeaders() {
|
|
|
|
// headers need to be lowercase because node.js automatically converts them to lower case
|
|
|
|
// so hypothetical protectedSessionId becomes protectedsessionid on the backend
|
2018-11-30 22:49:35 +08:00
|
|
|
// also avoiding using underscores instead of dashes since nginx filters them out by default
|
2019-04-02 03:18:11 +08:00
|
|
|
const headers = {
|
2019-03-25 05:41:53 +08:00
|
|
|
'trilium-source-id': glob.sourceId,
|
|
|
|
'x-csrf-token': glob.csrfToken
|
2018-03-25 23:09:17 +08:00
|
|
|
};
|
2019-04-02 03:18:11 +08:00
|
|
|
|
|
|
|
if (utils.isElectron()) {
|
|
|
|
// passing it explicitely here because of the electron HTTP bypass
|
|
|
|
headers.cookie = document.cookie;
|
|
|
|
}
|
|
|
|
|
|
|
|
return headers;
|
2018-03-25 23:09:17 +08:00
|
|
|
}
|
2017-11-29 09:52:38 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
async function get(url) {
|
|
|
|
return await call('GET', url);
|
|
|
|
}
|
2017-11-29 11:01:02 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
async function post(url, data) {
|
|
|
|
return await call('POST', url, data);
|
|
|
|
}
|
2017-11-29 11:01:02 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
async function put(url, data) {
|
|
|
|
return await call('PUT', url, data);
|
|
|
|
}
|
2017-11-29 11:01:02 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
async function remove(url) {
|
|
|
|
return await call('DELETE', url);
|
|
|
|
}
|
2017-11-30 12:30:35 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
let i = 1;
|
|
|
|
const reqResolves = {};
|
2017-11-29 11:01:02 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
async function call(method, url, data) {
|
2018-03-25 11:37:55 +08:00
|
|
|
if (utils.isElectron()) {
|
2017-11-29 11:01:02 +08:00
|
|
|
const ipc = require('electron').ipcRenderer;
|
2018-03-25 23:09:17 +08:00
|
|
|
const requestId = i++;
|
2017-11-29 11:01:02 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
reqResolves[requestId] = resolve;
|
2017-11-30 12:30:35 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
console.log(utils.now(), "Request #" + requestId + " to " + method + " " + url);
|
2017-11-30 12:30:35 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
ipc.send('server-request', {
|
|
|
|
requestId: requestId,
|
|
|
|
headers: getHeaders(),
|
|
|
|
method: method,
|
|
|
|
url: "/" + baseApiUrl + url,
|
|
|
|
data: data
|
|
|
|
});
|
2017-11-29 11:01:02 +08:00
|
|
|
});
|
|
|
|
}
|
2018-03-25 23:09:17 +08:00
|
|
|
else {
|
|
|
|
return await ajax(url, method, data);
|
2017-11-29 09:52:38 +08:00
|
|
|
}
|
2018-03-25 23:09:17 +08:00
|
|
|
}
|
2017-11-29 09:52:38 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
async function ajax(url, method, data) {
|
|
|
|
const options = {
|
|
|
|
url: baseApiUrl + url,
|
|
|
|
type: method,
|
|
|
|
headers: getHeaders()
|
|
|
|
};
|
|
|
|
|
|
|
|
if (data) {
|
2018-03-28 09:46:38 +08:00
|
|
|
try {
|
|
|
|
options.data = JSON.stringify(data);
|
|
|
|
}
|
|
|
|
catch (e) {
|
|
|
|
console.log("Can't stringify data: ", data, " because of error: ", e)
|
|
|
|
}
|
2018-03-25 23:09:17 +08:00
|
|
|
options.contentType = "application/json";
|
2017-11-29 09:52:38 +08:00
|
|
|
}
|
2018-03-25 23:09:17 +08:00
|
|
|
|
|
|
|
return await $.ajax(options).catch(e => {
|
|
|
|
const message = "Error when calling " + method + " " + url + ": " + e.status + " - " + e.statusText;
|
2018-03-26 09:29:35 +08:00
|
|
|
infoService.showError(message);
|
|
|
|
infoService.throwError(message);
|
2018-03-25 23:09:17 +08:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-04-06 11:17:19 +08:00
|
|
|
if (utils.isElectron()) {
|
|
|
|
const ipc = require('electron').ipcRenderer;
|
2018-03-26 01:13:26 +08:00
|
|
|
|
2018-04-06 11:17:19 +08:00
|
|
|
ipc.on('server-response', (event, arg) => {
|
|
|
|
console.log(utils.now(), "Response #" + arg.requestId + ": " + arg.statusCode);
|
2018-03-26 01:13:26 +08:00
|
|
|
|
2018-04-06 11:17:19 +08:00
|
|
|
reqResolves[arg.requestId](arg.body);
|
2018-03-26 01:13:26 +08:00
|
|
|
|
2018-04-06 11:17:19 +08:00
|
|
|
delete reqResolves[arg.requestId];
|
|
|
|
});
|
|
|
|
}
|
2018-03-26 01:13:26 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
export default {
|
|
|
|
get,
|
|
|
|
post,
|
|
|
|
put,
|
|
|
|
remove,
|
|
|
|
ajax,
|
|
|
|
// don't remove, used from CKEditor image upload!
|
|
|
|
getHeaders
|
|
|
|
};
|