forked from pryv/open-pryv.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuserAccountStorageSqlite.js
More file actions
246 lines (217 loc) · 7.66 KB
/
userAccountStorageSqlite.js
File metadata and controls
246 lines (217 loc) · 7.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
/**
* @license
* Copyright (C) 2020–2025 Pryv S.A. https://pryv.com
*
* This file is part of Open-Pryv.io and released under BSD-Clause-3 License
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* 3. Neither the name of the copyright holder nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
/**
* SQLite storage for per-user data such as:
* - Password and password history
* - Profile
* The DB file is located in the root of each user account folder.
*
* TODO: This should be refactored and merged with Audit Storage and SQLite Event storage from branch
* https://github.com/pryv/service-core/tree/test/sqlite-4-events
* into a single "user-centric" storage
*/
const path = require('path');
const SQLite3 = require('better-sqlite3');
const LRU = require('lru-cache');
const timestamp = require('unix-timestamp');
const encryption = require('utils').encryption;
const userLocalDirectory = require('./userLocalDirectory');
const CACHE_SIZE = 100;
const VERSION = '1.0.0';
const DB_OPTIONS = {};
let dbCache = null;
const InitStates = {
NOT_INITIALIZED: -1,
INITIALIZING: 0,
READY: 1
};
let initState = InitStates.NOT_INITIALIZED;
module.exports = {
init,
addPasswordHash,
getPasswordHash,
getCurrentPasswordTime,
passwordExistsInHistory,
clearHistory,
getKeyValueDataForStore,
_getPasswordHistory,
_getAllStoreData,
_clearStoreData
};
async function init () {
while (initState === InitStates.INITIALIZING) {
await new Promise(resolve => setTimeout(resolve, 50));
}
if (initState === InitStates.READY) {
return;
}
initState = InitStates.INITIALIZING;
await userLocalDirectory.init();
dbCache = new LRU({
max: CACHE_SIZE,
dispose: function (db/* , key */) { db.close(); }
});
initState = InitStates.READY;
}
// PASSWORD MANAGEMENT
async function getPasswordHash (userId) {
const db = await getUserDB(userId);
const last = db.prepare('SELECT hash FROM passwords ORDER BY time DESC LIMIT 1').get();
return last?.hash;
}
async function addPasswordHash (userId, passwordHash, createdBy, time = timestamp.now()) {
const db = await getUserDB(userId);
const result = { time, hash: passwordHash, createdBy };
db.prepare('INSERT INTO passwords (time, hash, createdBy) VALUES (@time, @hash, @createdBy)').run(result);
return result;
}
async function getCurrentPasswordTime (userId) {
const db = await getUserDB(userId);
const last = db.prepare('SELECT hash, time FROM passwords ORDER BY time DESC LIMIT 1').get();
if (!last) {
throw new Error(`No password found in database for user id "${userId}"`);
}
return last.time;
}
async function passwordExistsInHistory (userId, password, historyLength) {
const db = await getUserDB(userId);
const getLastN = db.prepare('SELECT hash, time FROM passwords ORDER BY time DESC LIMIT ?');
for (const entry of getLastN.iterate(historyLength)) {
if (await encryption.compare(password, entry.hash)) {
return true;
}
}
return false;
}
/**
* Retreive all password history, used for Migration
*/
async function _getPasswordHistory (userId) {
const db = await getUserDB(userId);
const res = [];
const getALL = db.prepare('SELECT hash, time FROM passwords');
for (const entry of getALL.iterate()) {
res.push(entry);
}
return res;
}
/**
* Retreive all strore data, used for Migration
*/
async function _getAllStoreData (userId) {
const db = await getUserDB(userId);
const res = [];
const getALL = db.prepare('SELECT * FROM storeKeyValueData');
for (const entry of getALL.iterate()) {
res.push(entry);
}
return res;
}
/**
* Clear data for user, used for migration
*/
async function _clearStoreData (userId) {
const db = await getUserDB(userId);
db.prepare('DELETE FROM storeKeyValueData').run();
}
// PER-STORE KEY-VALUE DB
function getKeyValueDataForStore (storeId) {
return new StoreKeyValueData(storeId);
}
/**
* @constructor
* @param {string} storeId
*/
function StoreKeyValueData (storeId) {
this.storeId = storeId;
}
StoreKeyValueData.prototype.getAll = async function (userId) {
const db = await getUserDB(userId);
const query = db.prepare('SELECT key, value FROM storeKeyValueData WHERE storeId = @storeId');
const res = {};
for (const item of query.iterate({ storeId: this.storeId })) {
res[item.key] = JSON.parse(item.value);
}
return res;
};
StoreKeyValueData.prototype.get = async function (userId, key) {
const db = await getUserDB(userId);
const res = db.prepare('SELECT value FROM storeKeyValueData WHERE storeId = @storeId AND key = @key').get({
storeId: this.storeId,
key
});
if (res?.value == null) return null;
return JSON.parse(res.value);
};
StoreKeyValueData.prototype.set = async function (userId, key, value) {
const db = await getUserDB(userId);
if (value == null) {
db.prepare('DELETE FROM storeKeyValueData WHERE storeId = @storeId AND key = @key)').run({
storeId: this.storeId,
key
});
} else {
const valueStr = JSON.stringify(value);
db.prepare('REPLACE INTO storeKeyValueData (storeId, key, value) VALUES (@storeId, @key, @value)').run({
storeId: this.storeId,
key,
value: valueStr
});
}
};
// COMMON FUNCTIONS
/**
* For tests
*/
async function clearHistory (userId) {
const db = await getUserDB(userId);
db.prepare('DELETE FROM passwords').run();
}
async function getUserDB (userId) {
return dbCache.get(userId) || (await openUserDB(userId));
}
async function openUserDB (userId) {
const userPath = await userLocalDirectory.ensureUserDirectory(userId);
const dbPath = path.join(userPath, `account-${VERSION}.sqlite`);
const db = new SQLite3(dbPath, DB_OPTIONS);
db.pragma('journal_mode = WAL');
// db.pragma('busy_timeout = 0'); // We take care of busy timeout ourselves as long as current driver does not go below the second
db.unsafeMode(true);
db.prepare('CREATE TABLE IF NOT EXISTS passwords (time REAL PRIMARY KEY, hash TEXT NOT NULL, createdBy TEXT NOT NULL);').run();
db.prepare('CREATE INDEX IF NOT EXISTS passwords_hash ON passwords(hash);').run();
db.prepare('CREATE TABLE IF NOT EXISTS storeKeyValueData (storeId TEXT NOT NULL, key TEXT NOT NULL, value TEXT NOT NULL, PRIMARY KEY (storeId, key));').run();
db.prepare('CREATE INDEX IF NOT EXISTS storeKeyValueData_storeId ON storeKeyValueData(storeId);').run();
dbCache.set(userId, db);
return db;
}