Skip to content

Commit d7d926d

Browse files
SamTV12345SamTV12345
and
SamTV12345
authored
Require rusty-store-kv (#748)
Co-authored-by: SamTV12345 <[email protected]>
1 parent d4d33c9 commit d7d926d

File tree

3 files changed

+6
-21
lines changed

3 files changed

+6
-21
lines changed

databases/rusty_db.ts

+3-10
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import AbstractDatabase from "../lib/AbstractDatabase";
2+
import {KeyValueDB} from 'rusty-store-kv'
23

34
export default class Rusty_db extends AbstractDatabase {
45
db: any |null| undefined
@@ -33,16 +34,8 @@ export default class Rusty_db extends AbstractDatabase {
3334
}
3435

3536
async init() {
36-
let RUSTY_DB
37-
try {
38-
RUSTY_DB = await import('rusty-store-kv');
39-
} catch (err) {
40-
throw new Error(
41-
'rusty-store-kv not found. It was removed from ueberdb\'s dependencies because it requires ' +
42-
'compilation which fails on several systems. If you still want to use rusty store kv, run ' +
43-
'"pnpm install rusty-store-kv" in your etherpad-lite ./src directory.');
44-
}
45-
this.db = new RUSTY_DB.KeyValueDB(this.settings.filename!);
37+
38+
this.db = new KeyValueDB(this.settings.filename!);
4639
}
4740

4841
close() {

databases/sqlite_db.ts

+2-10
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
'use strict';
22
import {BulkObject} from "./cassandra_db";
33
import AbstractDatabase, {Settings} from "../lib/AbstractDatabase";
4+
import {SQLite} from "rusty-store-kv";
45

56
/**
67
* 2011 Peter 'Pita' Martischka
@@ -43,16 +44,7 @@ export default class SQLiteDB extends AbstractDatabase {
4344
}
4445

4546
init(callback: Function) {
46-
let SQLITEDB
47-
try {
48-
SQLITEDB = require('rusty-store-kv');
49-
} catch (err) {
50-
throw new Error(
51-
'rusty-store-kv not found. It was removed from ueberdb\'s dependencies because it requires ' +
52-
'compilation which fails on several systems. If you still want to use sqlite, run ' +
53-
'"pnpm install rusty-store-kv" in your etherpad-lite ./src directory.');
54-
}
55-
this.db = new SQLITEDB.SQLite(this.settings.filename as string)
47+
this.db = new SQLite(this.settings.filename as string)
5648
callback();
5749
}
5850

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
"url": "https://github.com/ether/ueberDB.git"
6666
},
6767
"main": "./dist/index.js",
68-
"version": "4.2.104",
68+
"version": "5.0.0",
6969
"bugs": {
7070
"url": "https://github.com/ether/ueberDB/issues"
7171
},

0 commit comments

Comments
 (0)