2022-01-19 07:39:39 +00:00
|
|
|
import { ipcRenderer } from 'electron';
|
2022-04-20 06:38:47 +00:00
|
|
|
import { t } from 'fyo';
|
|
|
|
import { ConfigKeys } from 'fyo/core/types';
|
2022-04-24 06:48:44 +00:00
|
|
|
import { Doc } from 'fyo/model/doc';
|
2022-04-20 06:38:47 +00:00
|
|
|
import { TelemetrySetting } from 'fyo/telemetry/types';
|
2022-01-24 09:04:37 +00:00
|
|
|
import {
|
|
|
|
DuplicateEntryError,
|
|
|
|
LinkValidationError,
|
|
|
|
MandatoryError,
|
|
|
|
ValidationError,
|
2022-04-19 05:59:36 +00:00
|
|
|
} from 'fyo/utils/errors';
|
|
|
|
import { ErrorLog } from 'fyo/utils/types';
|
2022-03-31 07:33:58 +00:00
|
|
|
import { IPC_ACTIONS, IPC_MESSAGES } from 'utils/messages';
|
2022-04-20 06:38:47 +00:00
|
|
|
import { fyo } from './initFyo';
|
|
|
|
import { ToastOptions } from './utils/types';
|
|
|
|
import { showMessageDialog, showToast } from './utils/ui';
|
2022-01-18 13:03:16 +00:00
|
|
|
|
2022-03-10 07:51:29 +00:00
|
|
|
function getCanLog(): boolean {
|
2022-04-20 06:38:47 +00:00
|
|
|
const telemetrySetting = fyo.config.get(ConfigKeys.Telemetry);
|
2022-03-10 10:31:55 +00:00
|
|
|
return telemetrySetting !== TelemetrySetting.dontLogAnything;
|
2022-03-10 07:51:29 +00:00
|
|
|
}
|
|
|
|
|
2022-01-24 09:04:37 +00:00
|
|
|
function shouldNotStore(error: Error) {
|
2022-01-18 13:03:16 +00:00
|
|
|
return [MandatoryError, ValidationError].some(
|
|
|
|
(errorClass) => error instanceof errorClass
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2022-02-02 07:18:03 +00:00
|
|
|
async function reportError(errorLogObj: ErrorLog, cb?: Function) {
|
2022-01-28 08:03:07 +00:00
|
|
|
if (!errorLogObj.stack) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const body = {
|
|
|
|
error_name: errorLogObj.name,
|
|
|
|
message: errorLogObj.message,
|
|
|
|
stack: errorLogObj.stack,
|
|
|
|
more: JSON.stringify(errorLogObj.more ?? {}),
|
|
|
|
};
|
2022-03-17 06:03:02 +00:00
|
|
|
|
2022-04-20 06:38:47 +00:00
|
|
|
if (fyo.store.isDevelopment) {
|
2022-03-17 06:03:02 +00:00
|
|
|
console.log('errorHandling');
|
|
|
|
console.log(body);
|
|
|
|
}
|
|
|
|
|
2022-02-02 07:18:03 +00:00
|
|
|
await ipcRenderer.invoke(IPC_ACTIONS.SEND_ERROR, JSON.stringify(body));
|
|
|
|
cb?.();
|
2022-01-19 10:59:13 +00:00
|
|
|
}
|
|
|
|
|
2022-03-10 07:51:29 +00:00
|
|
|
function getToastProps(errorLogObj: ErrorLog, canLog: boolean, cb?: Function) {
|
2022-04-20 06:38:47 +00:00
|
|
|
const props: ToastOptions = {
|
2022-01-24 06:44:11 +00:00
|
|
|
message: t`Error: ` + errorLogObj.name,
|
2022-01-19 11:13:50 +00:00
|
|
|
type: 'error',
|
|
|
|
};
|
|
|
|
|
2022-01-24 09:04:37 +00:00
|
|
|
// @ts-ignore
|
2022-03-10 07:51:29 +00:00
|
|
|
if (!canLog) {
|
2022-01-19 11:13:50 +00:00
|
|
|
Object.assign(props, {
|
2022-01-24 06:44:11 +00:00
|
|
|
actionText: t`Report Error`,
|
2022-01-19 11:13:50 +00:00
|
|
|
action: () => {
|
2022-01-25 09:33:17 +00:00
|
|
|
reportIssue(errorLogObj);
|
2022-02-02 07:18:03 +00:00
|
|
|
reportError(errorLogObj, cb);
|
2022-01-19 11:13:50 +00:00
|
|
|
},
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
return props;
|
|
|
|
}
|
|
|
|
|
2022-03-16 11:42:06 +00:00
|
|
|
export function getErrorLogObject(
|
|
|
|
error: Error,
|
|
|
|
more: Record<string, unknown>
|
|
|
|
): ErrorLog {
|
2022-02-03 10:03:21 +00:00
|
|
|
const { name, stack, message } = error;
|
|
|
|
const errorLogObj = { name, stack, message, more };
|
|
|
|
|
|
|
|
// @ts-ignore
|
2022-04-20 06:38:47 +00:00
|
|
|
fyo.errorLog.push(errorLogObj);
|
2022-02-03 10:03:21 +00:00
|
|
|
|
|
|
|
return errorLogObj;
|
|
|
|
}
|
|
|
|
|
2022-01-24 09:04:37 +00:00
|
|
|
export function handleError(
|
|
|
|
shouldLog: boolean,
|
|
|
|
error: Error,
|
2022-03-16 11:42:06 +00:00
|
|
|
more?: Record<string, unknown>,
|
2022-02-02 07:18:03 +00:00
|
|
|
cb?: Function
|
2022-01-24 09:04:37 +00:00
|
|
|
) {
|
2022-04-20 06:38:47 +00:00
|
|
|
fyo.telemetry.error(error.name);
|
2022-01-18 13:03:16 +00:00
|
|
|
if (shouldLog) {
|
|
|
|
console.error(error);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (shouldNotStore(error)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-03-16 11:42:06 +00:00
|
|
|
const errorLogObj = getErrorLogObject(error, more ?? {});
|
2022-01-18 13:03:16 +00:00
|
|
|
|
2022-01-24 09:04:37 +00:00
|
|
|
// @ts-ignore
|
2022-03-10 07:51:29 +00:00
|
|
|
const canLog = getCanLog();
|
|
|
|
if (canLog) {
|
2022-02-02 07:18:03 +00:00
|
|
|
reportError(errorLogObj, cb);
|
2022-01-28 13:07:51 +00:00
|
|
|
} else {
|
2022-03-10 07:51:29 +00:00
|
|
|
showToast(getToastProps(errorLogObj, canLog, cb));
|
2022-01-19 11:13:50 +00:00
|
|
|
}
|
2022-01-18 13:03:16 +00:00
|
|
|
}
|
2022-01-19 06:14:12 +00:00
|
|
|
|
2022-04-11 07:15:35 +00:00
|
|
|
export function getErrorMessage(e: Error, doc?: Doc): string {
|
2022-01-24 06:44:11 +00:00
|
|
|
let errorMessage = e.message || t`An error occurred.`;
|
2022-01-24 09:04:37 +00:00
|
|
|
|
2022-04-11 07:15:35 +00:00
|
|
|
const { schemaName, name }: { schemaName?: string; name?: string } =
|
|
|
|
doc ?? {};
|
|
|
|
const canElaborate = !!(schemaName && name);
|
2022-01-24 09:04:37 +00:00
|
|
|
|
|
|
|
if (e instanceof LinkValidationError && canElaborate) {
|
2022-04-11 07:15:35 +00:00
|
|
|
errorMessage = t`${schemaName} ${name} is linked with existing records.`;
|
2022-01-24 09:04:37 +00:00
|
|
|
} else if (e instanceof DuplicateEntryError && canElaborate) {
|
2022-04-11 07:15:35 +00:00
|
|
|
errorMessage = t`${schemaName} ${name} already exists.`;
|
2022-01-19 07:39:39 +00:00
|
|
|
}
|
2022-01-24 09:04:37 +00:00
|
|
|
|
2022-01-19 07:39:39 +00:00
|
|
|
return errorMessage;
|
|
|
|
}
|
|
|
|
|
2022-04-11 07:15:35 +00:00
|
|
|
export function handleErrorWithDialog(error: Error, doc?: Doc) {
|
2022-01-24 09:04:37 +00:00
|
|
|
const errorMessage = getErrorMessage(error, doc);
|
2022-01-19 07:39:39 +00:00
|
|
|
handleError(false, error, { errorMessage, doc });
|
|
|
|
|
2022-04-20 06:38:47 +00:00
|
|
|
showMessageDialog({ message: error.name, detail: errorMessage });
|
2022-01-19 07:39:39 +00:00
|
|
|
throw error;
|
|
|
|
}
|
|
|
|
|
2022-01-24 09:04:37 +00:00
|
|
|
export async function showErrorDialog(title?: string, content?: string) {
|
2022-01-19 07:39:39 +00:00
|
|
|
// To be used for show stopper errors
|
2022-01-24 06:44:11 +00:00
|
|
|
title ??= t`Error`;
|
|
|
|
content ??= t`Something has gone terribly wrong. Please check the console and raise an issue.`;
|
2022-01-19 07:39:39 +00:00
|
|
|
|
|
|
|
await ipcRenderer.invoke(IPC_ACTIONS.SHOW_ERROR, { title, content });
|
|
|
|
}
|
|
|
|
|
|
|
|
// Wrapper Functions
|
|
|
|
|
2022-01-24 09:04:37 +00:00
|
|
|
export function getErrorHandled(func: Function) {
|
|
|
|
return async function errorHandled(...args: unknown[]) {
|
2022-01-19 06:14:12 +00:00
|
|
|
try {
|
|
|
|
return await func(...args);
|
|
|
|
} catch (error) {
|
2022-01-24 09:04:37 +00:00
|
|
|
handleError(false, error as Error, {
|
2022-01-19 06:14:12 +00:00
|
|
|
functionName: func.name,
|
|
|
|
functionArgs: args,
|
|
|
|
});
|
|
|
|
|
|
|
|
throw error;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2022-01-24 09:04:37 +00:00
|
|
|
export function getErrorHandledSync(func: Function) {
|
|
|
|
return function errorHandledSync(...args: unknown[]) {
|
2022-01-19 06:14:12 +00:00
|
|
|
try {
|
|
|
|
return func(...args);
|
|
|
|
} catch (error) {
|
2022-01-24 09:04:37 +00:00
|
|
|
handleError(false, error as Error, {
|
2022-01-19 06:14:12 +00:00
|
|
|
functionName: func.name,
|
|
|
|
functionArgs: args,
|
|
|
|
});
|
|
|
|
|
|
|
|
throw error;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
2022-01-24 11:19:34 +00:00
|
|
|
|
2022-01-25 09:33:17 +00:00
|
|
|
function getIssueUrlQuery(errorLogObj?: ErrorLog): string {
|
2022-01-24 11:19:34 +00:00
|
|
|
const baseUrl = 'https://github.com/frappe/books/issues/new?labels=bug';
|
|
|
|
|
2022-01-25 09:33:17 +00:00
|
|
|
const body = ['<h2>Description</h2>', 'Add some description...', ''];
|
|
|
|
|
|
|
|
if (errorLogObj) {
|
|
|
|
body.push(
|
|
|
|
'<h2>Error Info</h2>',
|
|
|
|
'',
|
|
|
|
`**Error**: _${errorLogObj.name}: ${errorLogObj.message}_`,
|
|
|
|
''
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (errorLogObj?.stack) {
|
2022-01-24 11:19:34 +00:00
|
|
|
body.push('**Stack**:', '```', errorLogObj.stack, '```', '');
|
|
|
|
}
|
|
|
|
|
2022-01-25 09:33:17 +00:00
|
|
|
const { fullPath } = (errorLogObj?.more as { fullPath?: string }) ?? {};
|
2022-01-24 11:19:34 +00:00
|
|
|
if (fullPath) {
|
|
|
|
body.push(`**Path**: \`${fullPath}\``);
|
|
|
|
}
|
|
|
|
|
|
|
|
const url = [baseUrl, `body=${body.join('\n')}`].join('&');
|
|
|
|
return encodeURI(url);
|
|
|
|
}
|
|
|
|
|
2022-01-25 09:33:17 +00:00
|
|
|
export function reportIssue(errorLogObj?: ErrorLog) {
|
2022-01-24 11:19:34 +00:00
|
|
|
const urlQuery = getIssueUrlQuery(errorLogObj);
|
|
|
|
ipcRenderer.send(IPC_MESSAGES.OPEN_EXTERNAL, urlQuery);
|
|
|
|
}
|