test with better-sqlite3 bindings

pull/1783/head
Audric Ackermann 4 years ago
parent 4fbb0d48f2
commit b385a9b101
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

File diff suppressed because it is too large Load Diff

@ -20,14 +20,14 @@ function initialize() {
} }
initialized = true; initialized = true;
ipcMain.on(SQL_CHANNEL_KEY, async (event, jobId, callName, ...args) => { ipcMain.on(SQL_CHANNEL_KEY, (event, jobId, callName, ...args) => {
try { try {
const fn = sql[callName]; const fn = sql[callName];
if (!fn) { if (!fn) {
throw new Error(`sql channel: ${callName} is not an available function`); throw new Error(`sql channel: ${callName} is not an available function`);
} }
const result = await fn(...args); const result = fn(...args);
event.sender.send(`${SQL_CHANNEL_KEY}-done`, jobId, null, result); event.sender.send(`${SQL_CHANNEL_KEY}-done`, jobId, null, result);
} catch (error) { } catch (error) {
@ -40,7 +40,7 @@ function initialize() {
} }
}); });
ipcMain.on(ERASE_SQL_KEY, async event => { ipcMain.on(ERASE_SQL_KEY, event => {
try { try {
removeUserConfig(); removeUserConfig();
removeEphemeralConfig(); removeEphemeralConfig();

@ -679,7 +679,7 @@ async function removeDB() {
async function showMainWindow(sqlKey, passwordAttempt = false) { async function showMainWindow(sqlKey, passwordAttempt = false) {
const userDataPath = await getRealPath(app.getPath('userData')); const userDataPath = await getRealPath(app.getPath('userData'));
await sql.initialize({ sql.initialize({
configDir: userDataPath, configDir: userDataPath,
key: sqlKey, key: sqlKey,
messages: locale.messages, messages: locale.messages,
@ -897,7 +897,8 @@ ipc.on('set-password', async (event, passPhrase, oldPhrase) => {
try { try {
// Check if the hash we have stored matches the hash of the old passphrase. // Check if the hash we have stored matches the hash of the old passphrase.
const hash = await sql.getPasswordHash(); const hash = sql.getPasswordHash();
const hashMatches = oldPhrase && passwordUtil.matchesHash(oldPhrase, hash); const hashMatches = oldPhrase && passwordUtil.matchesHash(oldPhrase, hash);
if (hash && !hashMatches) { if (hash && !hashMatches) {
const incorrectOldPassword = locale.messages.invalidOldPassword; const incorrectOldPassword = locale.messages.invalidOldPassword;
@ -909,13 +910,13 @@ ipc.on('set-password', async (event, passPhrase, oldPhrase) => {
if (_.isEmpty(passPhrase)) { if (_.isEmpty(passPhrase)) {
const defaultKey = getDefaultSQLKey(); const defaultKey = getDefaultSQLKey();
await sql.setSQLPassword(defaultKey); sql.setSQLPassword(defaultKey);
await sql.removePasswordHash(); sql.removePasswordHash();
userConfig.set('dbHasPassword', false); userConfig.set('dbHasPassword', false);
} else { } else {
await sql.setSQLPassword(passPhrase); sql.setSQLPassword(passPhrase);
const newHash = passwordUtil.generateHash(passPhrase); const newHash = passwordUtil.generateHash(passPhrase);
await sql.savePasswordHash(newHash); sql.savePasswordHash(newHash);
userConfig.set('dbHasPassword', true); userConfig.set('dbHasPassword', true);
} }

@ -40,7 +40,8 @@
"transpile": "tsc --incremental", "transpile": "tsc --incremental",
"transpile:watch": "tsc -w", "transpile:watch": "tsc -w",
"clean-transpile": "rimraf 'ts/**/*.js ts/*.js' 'ts/*.js.map' 'ts/**/*.js.map' && rimraf tsconfig.tsbuildinfo;", "clean-transpile": "rimraf 'ts/**/*.js ts/*.js' 'ts/*.js.map' 'ts/**/*.js.map' && rimraf tsconfig.tsbuildinfo;",
"ready": "yarn clean-transpile; yarn grunt && yarn lint-full && yarn test" "ready": "yarn clean-transpile; yarn grunt && yarn lint-full && yarn test",
"build:webpack:sql-worker": "cross-env NODE_ENV=production webpack -c webpack-sql-worker.config.ts"
}, },
"dependencies": { "dependencies": {
"@journeyapps/sqlcipher": "https://github.com/Bilb/node-sqlcipher.git#98039b72e197171b69358b900bc179ffc22e1f32", "@journeyapps/sqlcipher": "https://github.com/Bilb/node-sqlcipher.git#98039b72e197171b69358b900bc179ffc22e1f32",
@ -49,6 +50,7 @@
"abort-controller": "3.0.0", "abort-controller": "3.0.0",
"auto-bind": "^4.0.0", "auto-bind": "^4.0.0",
"backbone": "1.3.3", "backbone": "1.3.3",
"better-sqlite3": "https://github.com/signalapp/better-sqlite3#2fa02d2484e9f9a10df5ac7ea4617fb2dff30006",
"blob-util": "1.3.0", "blob-util": "1.3.0",
"blueimp-canvas-to-blob": "3.14.0", "blueimp-canvas-to-blob": "3.14.0",
"blueimp-load-image": "2.18.0", "blueimp-load-image": "2.18.0",
@ -124,6 +126,8 @@
}, },
"devDependencies": { "devDependencies": {
"@types/backbone": "^1.4.2", "@types/backbone": "^1.4.2",
"@types/better-sqlite3": "5.4.1",
"@types/blueimp-load-image": "^2.23.8", "@types/blueimp-load-image": "^2.23.8",
"@types/buffer-crc32": "^0.2.0", "@types/buffer-crc32": "^0.2.0",
"@types/bytebuffer": "^5.0.41", "@types/bytebuffer": "^5.0.41",
@ -162,6 +166,7 @@
"@types/styled-components": "^5.1.4", "@types/styled-components": "^5.1.4",
"@types/tmp": "^0.2.0", "@types/tmp": "^0.2.0",
"@types/uuid": "3.4.4", "@types/uuid": "3.4.4",
"@types/webpack": "^5.28.0",
"arraybuffer-loader": "1.0.3", "arraybuffer-loader": "1.0.3",
"asar": "0.14.0", "asar": "0.14.0",
"bower": "1.8.2", "bower": "1.8.2",
@ -205,7 +210,9 @@
"tslint-microsoft-contrib": "6.0.0", "tslint-microsoft-contrib": "6.0.0",
"tslint-react": "3.6.0", "tslint-react": "3.6.0",
"typescript": "^4.2.3", "typescript": "^4.2.3",
"webpack": "4.4.1" "webpack": "5.30.0",
"webpack-cli": "4.6.0",
"webpack-dev-server": "3.11.2"
}, },
"engines": { "engines": {
"node": "^10.19.0" "node": "^10.19.0"
@ -260,6 +267,10 @@
], ],
"icon": "build/icons/png" "icon": "build/icons/png"
}, },
"asarUnpack": [
"ts/sql/mainWorker.bundle.js",
"node_modules/better-sqlite3/build/Release/better_sqlite3.node"
],
"deb": { "deb": {
"depends": [ "depends": [
"libnotify4", "libnotify4",
@ -328,6 +339,9 @@
"!node_modules/@journeyapps/sqlcipher/build/*", "!node_modules/@journeyapps/sqlcipher/build/*",
"!node_modules/@journeyapps/sqlcipher/lib/binding/node-*", "!node_modules/@journeyapps/sqlcipher/lib/binding/node-*",
"!build/*.js", "!build/*.js",
"!node_modules/better-sqlite3/deps/*",
"!node_modules/better-sqlite3/src/*",
"node_modules/better-sqlite3/build/Release/better_sqlite3.node",
"!dev-app-update.yml" "!dev-app-update.yml"
], ],
"afterPack": "./build/afterPackHook.js" "afterPack": "./build/afterPackHook.js"

@ -50,7 +50,6 @@ export class SearchResults extends React.Component<Props> {
</div> </div>
{conversations.map(conversation => ( {conversations.map(conversation => (
<MemoConversationListItemWithDetails <MemoConversationListItemWithDetails
key={conversation.phoneNumber}
{...conversation} {...conversation}
onClick={openConversationExternal} onClick={openConversationExternal}
/> />
@ -85,11 +84,7 @@ export class SearchResults extends React.Component<Props> {
<div className="module-search-results__contacts"> <div className="module-search-results__contacts">
<div className="module-search-results__contacts-header">{header}</div> <div className="module-search-results__contacts-header">{header}</div>
{items.map(contact => ( {items.map(contact => (
<MemoConversationListItemWithDetails <MemoConversationListItemWithDetails {...contact} onClick={openConversationExternal} />
key={contact.phoneNumber}
{...contact}
onClick={openConversationExternal}
/>
))} ))}
</div> </div>
); );

@ -39,7 +39,6 @@ export class LeftPaneContactSection extends React.Component<Props> {
return ( return (
<MemoConversationListItemWithDetails <MemoConversationListItemWithDetails
key={item.id}
style={style} style={style}
{...item} {...item}
onClick={this.props.openConversationExternal} onClick={this.props.openConversationExternal}

@ -91,7 +91,6 @@ export class LeftPaneMessageSection extends React.Component<Props, State> {
return ( return (
<MemoConversationListItemWithDetails <MemoConversationListItemWithDetails
key={key}
style={style} style={style}
{...conversation} {...conversation}
onClick={openConversationExternal} onClick={openConversationExternal}

@ -215,6 +215,9 @@ function _cleanData(data: any): any {
} else if (_.isObject(value)) { } else if (_.isObject(value)) {
// eslint-disable-next-line no-param-reassign // eslint-disable-next-line no-param-reassign
data[key] = _cleanData(value); data[key] = _cleanData(value);
} else if (_.isBoolean(value)) {
// eslint-disable-next-line no-param-reassign
data[key] = value ? 1 : 0;
} else if ( } else if (
typeof value !== 'string' && typeof value !== 'string' &&
typeof value !== 'number' && typeof value !== 'number' &&
@ -863,7 +866,7 @@ export async function saveAttachmentDownloadJob(job: any): Promise<void> {
await channels.saveAttachmentDownloadJob(job); await channels.saveAttachmentDownloadJob(job);
} }
export async function setAttachmentDownloadJobPending(id: string, pending: boolean): Promise<void> { export async function setAttachmentDownloadJobPending(id: string, pending: boolean): Promise<void> {
await channels.setAttachmentDownloadJobPending(id, pending); await channels.setAttachmentDownloadJobPending(id, pending ? 1 : 0);
} }
export async function resetAttachmentDownloadPending(): Promise<void> { export async function resetAttachmentDownloadPending(): Promise<void> {
await channels.resetAttachmentDownloadPending(); await channels.resetAttachmentDownloadPending();

@ -178,7 +178,7 @@ export async function incrementBadPathCountOrDrop(snodeEd25519: string) {
const guardNodeEd25519 = onionPaths[pathWithSnodeIndex][0].pubkey_ed25519; const guardNodeEd25519 = onionPaths[pathWithSnodeIndex][0].pubkey_ed25519;
window?.log?.info( window?.log?.info(
`\t\tincrementBadPathCountOrDrop starting with guard ${ed25519Str(guardNodeEd25519)}` `incrementBadPathCountOrDrop starting with guard ${ed25519Str(guardNodeEd25519)}`
); );
const pathWithIssues = onionPaths[pathWithSnodeIndex]; const pathWithIssues = onionPaths[pathWithSnodeIndex];

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save