mirror of
https://github.com/frappe/books.git
synced 2024-11-08 14:50:56 +00:00
57 lines
1.6 KiB
TypeScript
57 lines
1.6 KiB
TypeScript
import { app } from 'electron';
|
|
import fs from 'fs';
|
|
import fetch from 'node-fetch';
|
|
import path from 'path';
|
|
import { Creds } from 'utils/types';
|
|
import { rendererLog } from './helpers';
|
|
|
|
export function getUrlAndTokenString(): Creds {
|
|
const inProduction = app.isPackaged;
|
|
const empty: Creds = { errorLogUrl: '', telemetryUrl: '', tokenString: '' };
|
|
let errLogCredsPath = path.join(
|
|
process.resourcesPath,
|
|
'../creds/log_creds.txt'
|
|
);
|
|
if (!fs.existsSync(errLogCredsPath)) {
|
|
errLogCredsPath = path.join(__dirname, '../log_creds.txt');
|
|
}
|
|
|
|
if (!fs.existsSync(errLogCredsPath)) {
|
|
!inProduction && console.log(`${errLogCredsPath} doesn't exist, can't log`);
|
|
return empty;
|
|
}
|
|
|
|
let apiKey, apiSecret, errorLogUrl, telemetryUrl;
|
|
try {
|
|
[apiKey, apiSecret, errorLogUrl, telemetryUrl] = 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 empty;
|
|
}
|
|
|
|
return {
|
|
errorLogUrl: encodeURI(errorLogUrl),
|
|
telemetryUrl: encodeURI(telemetryUrl),
|
|
tokenString: `token ${apiKey}:${apiSecret}`,
|
|
};
|
|
}
|
|
|
|
export async function sendError(body: string) {
|
|
const { errorLogUrl, tokenString } = getUrlAndTokenString();
|
|
const headers = {
|
|
Authorization: tokenString,
|
|
Accept: 'application/json',
|
|
'Content-Type': 'application/json',
|
|
};
|
|
|
|
await fetch(errorLogUrl, { method: 'POST', headers, body }).catch((err) => {
|
|
rendererLog(err);
|
|
});
|
|
}
|