|
|
|
@ -2,9 +2,13 @@ const path = require('path');
|
|
|
|
|
const mkdirp = require('mkdirp');
|
|
|
|
|
const rimraf = require('rimraf');
|
|
|
|
|
const sql = require('@journeyapps/sqlcipher');
|
|
|
|
|
const { app, dialog, clipboard } = require('electron');
|
|
|
|
|
const { redactAll } = require('../js/modules/privacy');
|
|
|
|
|
const { remove: removeUserConfig } = require('./user_config');
|
|
|
|
|
|
|
|
|
|
const pify = require('pify');
|
|
|
|
|
const uuidv4 = require('uuid/v4');
|
|
|
|
|
const { map, isString, fromPairs, forEach, last } = require('lodash');
|
|
|
|
|
const { map, isObject, isString, fromPairs, forEach, last } = require('lodash');
|
|
|
|
|
|
|
|
|
|
// To get long stack traces
|
|
|
|
|
// https://github.com/mapbox/node-sqlite3/wiki/API#sqlite3verbose
|
|
|
|
@ -670,7 +674,7 @@ let db;
|
|
|
|
|
let filePath;
|
|
|
|
|
let indexedDBPath;
|
|
|
|
|
|
|
|
|
|
async function initialize({ configDir, key }) {
|
|
|
|
|
async function initialize({ configDir, key, messages }) {
|
|
|
|
|
if (db) {
|
|
|
|
|
throw new Error('Cannot initialize more than once!');
|
|
|
|
|
}
|
|
|
|
@ -679,7 +683,10 @@ async function initialize({ configDir, key }) {
|
|
|
|
|
throw new Error('initialize: configDir is required!');
|
|
|
|
|
}
|
|
|
|
|
if (!isString(key)) {
|
|
|
|
|
throw new Error('initialize: key` is required!');
|
|
|
|
|
throw new Error('initialize: key is required!');
|
|
|
|
|
}
|
|
|
|
|
if (!isObject(messages)) {
|
|
|
|
|
throw new Error('initialize: message is required!');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
indexedDBPath = path.join(configDir, 'IndexedDB');
|
|
|
|
@ -705,6 +712,40 @@ async function initialize({ configDir, key }) {
|
|
|
|
|
await updateSchema(promisified);
|
|
|
|
|
|
|
|
|
|
db = promisified;
|
|
|
|
|
|
|
|
|
|
// test database
|
|
|
|
|
try {
|
|
|
|
|
await getMessageCount();
|
|
|
|
|
} catch (error) {
|
|
|
|
|
console.log('Database startup error:', error.stack);
|
|
|
|
|
const buttonIndex = dialog.showMessageBox({
|
|
|
|
|
buttons: [
|
|
|
|
|
messages.copyErrorAndQuit.message,
|
|
|
|
|
messages.deleteAndRestart.message,
|
|
|
|
|
],
|
|
|
|
|
defaultId: 0,
|
|
|
|
|
detail: redactAll(error.stack),
|
|
|
|
|
message: messages.databaseError.message,
|
|
|
|
|
noLink: true,
|
|
|
|
|
type: 'error',
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
if (buttonIndex === 0) {
|
|
|
|
|
clipboard.writeText(
|
|
|
|
|
`Database startup error:\n\n${redactAll(error.stack)}`
|
|
|
|
|
);
|
|
|
|
|
} else {
|
|
|
|
|
await close();
|
|
|
|
|
await removeDB();
|
|
|
|
|
removeUserConfig();
|
|
|
|
|
app.relaunch();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
app.exit(1);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async function close() {
|
|
|
|
@ -952,7 +993,9 @@ async function getConversationCount() {
|
|
|
|
|
const row = await db.get('SELECT count(*) from conversations;');
|
|
|
|
|
|
|
|
|
|
if (!row) {
|
|
|
|
|
throw new Error('getMessageCount: Unable to get count of conversations');
|
|
|
|
|
throw new Error(
|
|
|
|
|
'getConversationCount: Unable to get count of conversations'
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return row['count(*)'];
|
|
|
|
|