2023-01-03 19:55:46 +00:00
|
|
|
// Copyright 2018 Signal Messenger, LLC
|
2020-10-30 20:34:04 +00:00
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2021-06-18 17:04:27 +00:00
|
|
|
import { ipcMain } from 'electron';
|
2018-07-27 01:13:56 +00:00
|
|
|
|
2022-11-17 00:29:15 +00:00
|
|
|
import type { MainSQL } from '../ts/sql/main';
|
2021-06-18 17:04:27 +00:00
|
|
|
import { remove as removeUserConfig } from './user_config';
|
|
|
|
import { remove as removeEphemeralConfig } from './ephemeral_config';
|
2018-07-27 01:13:56 +00:00
|
|
|
|
2022-11-17 00:29:15 +00:00
|
|
|
let sql: Pick<MainSQL, 'sqlCall'> | undefined;
|
2021-06-18 17:04:27 +00:00
|
|
|
|
2018-07-27 01:13:56 +00:00
|
|
|
let initialized = false;
|
|
|
|
|
|
|
|
const SQL_CHANNEL_KEY = 'sql-channel';
|
|
|
|
const ERASE_SQL_KEY = 'erase-sql-key';
|
|
|
|
|
2022-11-17 00:29:15 +00:00
|
|
|
export function initialize(mainSQL: Pick<MainSQL, 'sqlCall'>): void {
|
2018-07-27 01:13:56 +00:00
|
|
|
if (initialized) {
|
|
|
|
throw new Error('sqlChannels: already initialized!');
|
|
|
|
}
|
|
|
|
initialized = true;
|
|
|
|
|
2021-04-05 22:18:19 +00:00
|
|
|
sql = mainSQL;
|
|
|
|
|
2022-11-17 00:29:15 +00:00
|
|
|
ipcMain.handle(SQL_CHANNEL_KEY, (_event, callName, ...args) => {
|
|
|
|
if (!sql) {
|
|
|
|
throw new Error(`${SQL_CHANNEL_KEY}: Not yet initialized!`);
|
2018-07-27 01:13:56 +00:00
|
|
|
}
|
2022-11-17 00:29:15 +00:00
|
|
|
return sql.sqlCall(callName, ...args);
|
2018-07-27 01:13:56 +00:00
|
|
|
});
|
|
|
|
|
2022-11-17 00:29:15 +00:00
|
|
|
ipcMain.handle(ERASE_SQL_KEY, () => {
|
|
|
|
removeUserConfig();
|
|
|
|
removeEphemeralConfig();
|
2018-07-27 01:13:56 +00:00
|
|
|
});
|
|
|
|
}
|