-
Notifications
You must be signed in to change notification settings - Fork 0
/
db.js
62 lines (54 loc) · 945 Bytes
/
db.js
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
const fs = require('fs');
let db = {};
updateDbVariable();
function initialize() {
try {
fs.readFileSync('database.dbs', 'utf-8');
}
catch (error) {
try {
fs.writeFileSync('database.dbs', '');
}
catch (error) {
console.log('cant write the database file');
}
}
}
function updateDbVariable() {
try {
db = JSON.parse(fs.readFileSync('database.dbs', 'utf-8'));
} catch (error) {
db = {};
}
}
function updateDb(data) {
try {
fs.writeFileSync('database.dbs', JSON.stringify(data));
} catch (error) {
console.log('Error', error);
}
}
function add(key, value) {
db[key] = value;
updateDb(db);
return db[key];
}
function get(key) {
return db[key];
}
function vanish(key) {
const keysValue = db[key];
delete db[key];
updateDb(db);
return keysValue;
}
function readAllData() {
return db;
}
module.exports = {
initialize,
add,
get,
vanish,
readAllData
}