You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.6 KiB
TypeScript
54 lines
1.6 KiB
TypeScript
import { app, ipcMain } from 'electron';
|
|
import { sqlNode } from './sql'; // checked - only node
|
|
import { userConfig } from './config/user_config'; // checked - only node
|
|
import { ephemeralConfig } from './config/ephemeral_config'; // checked - only node
|
|
|
|
let initialized = false;
|
|
|
|
const SQL_CHANNEL_KEY = 'sql-channel';
|
|
const ERASE_SQL_KEY = 'erase-sql-key';
|
|
// tslint:disable: no-console
|
|
|
|
export function initializeSqlChannel() {
|
|
if (initialized) {
|
|
throw new Error('sqlChannels: already initialized!');
|
|
}
|
|
|
|
ipcMain.on(SQL_CHANNEL_KEY, (event, jobId, callName, ...args) => {
|
|
try {
|
|
const fn = (sqlNode as any)[callName];
|
|
if (!fn) {
|
|
throw new Error(`sql channel: ${callName} is not an available function`);
|
|
}
|
|
|
|
const result = fn(...args);
|
|
|
|
event.sender.send(`${SQL_CHANNEL_KEY}-done`, jobId, null, result);
|
|
} catch (error) {
|
|
const errorForDisplay = error && error.stack ? error.stack : error;
|
|
console.log(`sql channel error with call ${callName}: ${errorForDisplay}`);
|
|
}
|
|
});
|
|
|
|
ipcMain.on(ERASE_SQL_KEY, event => {
|
|
try {
|
|
userConfig.remove();
|
|
ephemeralConfig.remove();
|
|
event.sender.send(`${ERASE_SQL_KEY}-done`);
|
|
} catch (error) {
|
|
const errorForDisplay = error && error.stack ? error.stack : error;
|
|
console.log(`sql-erase error: ${errorForDisplay}`);
|
|
event.sender.send(`${ERASE_SQL_KEY}-done`, error);
|
|
}
|
|
});
|
|
|
|
console.warn('********* registering get-user-data-path');
|
|
ipcMain.handle('get-user-data-path', () => {
|
|
return app.getPath('userData');
|
|
});
|
|
ipcMain.handle('get-data-path', () => {
|
|
return app.getAppPath();
|
|
});
|
|
initialized = true;
|
|
}
|