mirror of
https://github.com/frappe/books.git
synced 2025-02-04 21:18:32 +00:00
517a0cc6d8
- exit on `uncaughtException` - set `window.onerror` - handle error in contactMothership.js
83 lines
1.9 KiB
JavaScript
83 lines
1.9 KiB
JavaScript
import { app } from 'electron';
|
|
import fs from 'fs';
|
|
import http from 'http';
|
|
import https from 'https';
|
|
import path from 'path';
|
|
|
|
function getUrlAndTokenString() {
|
|
const inProduction = app.isPackaged;
|
|
let errLogCredsPath = path.join(
|
|
process.resourcesPath,
|
|
'../creds/err_log_creds.txt'
|
|
);
|
|
if (!fs.existsSync(errLogCredsPath)) {
|
|
errLogCredsPath = path.join(__dirname, '../err_log_creds.txt');
|
|
}
|
|
|
|
if (!fs.existsSync(errLogCredsPath)) {
|
|
!inProduction && console.log(`${errLogCredsPath} doesn't exist, can't log`);
|
|
return;
|
|
}
|
|
|
|
let apiKey, apiSecret, url;
|
|
try {
|
|
[apiKey, apiSecret, url] = fs
|
|
.readFileSync(errLogCredsPath, 'utf-8')
|
|
.split('\n')
|
|
.filter((f) => f.length);
|
|
} catch (err) {
|
|
if (!inProduction) {
|
|
console.log(`logging error using creds at: ${errLogCredsPath} failed`);
|
|
console.log(err);
|
|
}
|
|
return;
|
|
}
|
|
|
|
return { url: encodeURI(url), tokenString: `token ${apiKey}:${apiSecret}` };
|
|
}
|
|
|
|
function post(bodyJson) {
|
|
const inProduction = app.isPackaged;
|
|
const { url, tokenString } = getUrlAndTokenString();
|
|
const isHttps = url.split(':')[0].toLowerCase() === 'https';
|
|
const headers = {
|
|
Authorization: tokenString,
|
|
Accept: 'application/json',
|
|
'Content-Type': 'application/json',
|
|
};
|
|
|
|
const req = (isHttps ? https : http).request(
|
|
url,
|
|
{
|
|
method: 'POST',
|
|
headers,
|
|
},
|
|
(res) => {
|
|
if (inProduction) {
|
|
return;
|
|
}
|
|
|
|
console.log(`STATUS: ${res.statusCode}`);
|
|
console.log(`HEADERS: ${JSON.stringify(res.headers)}`);
|
|
|
|
res.setEncoding('utf8');
|
|
res.on('data', (chunk) => {
|
|
console.log(`BODY: ${chunk}`);
|
|
});
|
|
}
|
|
);
|
|
|
|
req.on('error', (e) => {
|
|
console.log(`ERROR: ${e.message}`);
|
|
});
|
|
req.write(bodyJson);
|
|
req.end();
|
|
}
|
|
|
|
export function sendError(bodyJson) {
|
|
post(bodyJson);
|
|
}
|
|
|
|
// Nothing nefarious going on here.
|
|
// Just regular old user mandated error logging.
|