-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdatabase.js
361 lines (307 loc) · 10.4 KB
/
database.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
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
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
const SQLite3 = require('@journeyapps/sqlcipher').verbose();
const {db_password} = require('./config.json');
const dbPath = './db/testDB.db';
const { table } = require('console');
const util = require('util');
/* db creates a database object from existing file or creates one if not found */
const db = new SQLite3.Database(dbPath, (err) => {
if (err) {
console.error(err.message);
}
console.log('Connection to database established.');
});
//Promisify database functions for an easier time
const runDB = util.promisify(db.run.bind(db));
const getDB = util.promisify(db.get.bind(db));
const allDB = util.promisify(db.all.bind(db));
// data = [discordID, nickname, canvasToken, noteID, reminderID, reminderMessage, notify]
async function createUserTable() {
let cmd = `CREATE TABLE UserTable (
discordID TEXT PRIMARY KEY NOT NULL,
nickname TEXT,
canvasToken TEXT,
canvasDomain TEXT,
timezone TEXT DEFAULT 'UTC')`;
try {
await runDB(cmd,[]);
console.log("Created user table");
} catch (err) {
console.error("User Table creation failure", err.message);
}
}
async function createNotesTable() {
let cmd = `CREATE TABLE NotesTable (
noteID INTEGER PRIMARY KEY NOT NULL,
discordID TEXT,
noteMessage TEXT,
timeStamp INTEGER,
FOREIGN KEY(discordID) references UserTable(discordID))`;
try {
await runDB(cmd, []);
console.log("Created notes table");
} catch (err) {
console.error("Notes Table creation failure", err.message);
}
}
async function createReminderTable() {
let cmd = `CREATE TABLE ReminderTable (
reminderID INTEGER PRIMARY KEY NOT NULL,
discordID TEXT,
reminderMessage TEXT,
notifyTime INTEGER,
timeStamp INTEGER,
FOREIGN KEY(discordID) references UserTable(discordID))`;
try {
await runDB(cmd, []);
console.log("Created reminder table");
} catch (err) {
console.error("Reminder Table creation failure", err.message);
}
}
async function getUserTable() {
let cmd = "SELECT name FROM sqlite_master WHERE type='table' AND name='UserTable'";
try{
let tableGetResult = await getDB(cmd, []);
if(tableGetResult == undefined) {
console.log("No user database table - creating one");
await createUserTable();
} else {
console.log("User database table found");
}
} catch(err) {
console.error(err);
}
}
async function getNotesTable() {
let cmd = "SELECT name FROM sqlite_master WHERE type='table' AND name='NotesTable'";
try{
let tableGetResult = await getDB(cmd, []);
if(tableGetResult == undefined) {
console.log("No notes database table - creating one");
await createNotesTable();
} else {
console.log("Notes database table found");
}
} catch(err) {
console.error(err);
}
}
async function getReminderTable() {
let cmd = "SELECT name FROM sqlite_master WHERE type='table' AND name='ReminderTable'";
try{
let tableGetResult = await getDB(cmd, []);
if(tableGetResult == undefined) {
console.log("No reminders database table - creating one");
await createReminderTable();
} else {
console.log("Reminders database table found");
}
} catch(err) {
console.error(err);
}
}
async function connect() {
//Encrypts/decrypts the database with a passphrase
await runDB(`PRAGMA key = ${db_password}`);
//Enables foreign key contraints
await runDB("PRAGMA foreign_keys = ON");
}
function closeDatabase() {
db.close((err) => {
if (err) {
return console.error(err.message);
}
console.log('Close the database connection.');
});
}
function insertData(tableName, dataArray) {
// insert string literals for all three tables
// ex of use: insertUserTable(<value for discordID>, <value of nickname>, <value for canvasToken>);
// the above generates a string with the apporiate values
const insertUserTable = "INSERT into UserTable (discordID, nickname, canvasToken) VALUES (?,?,?)";
const insertNotesTable = "INSERT into NotesTable (discordID, noteMessage, timeStamp) VALUES (?,?,?)";
const insertReminderTable = "INSERT into ReminderTable (discordID, reminderMessage, notifyTime, timeStamp) VALUES (?,?,?,?)";
let insertStatement = (tableName == 'UserTable') ? insertUserTable:
(tableName == "NotesTable") ? insertNotesTable:
(tableName == "ReminderTable") ? insertReminderTable:
null;
return new Promise((resolve, reject) => {
if(insertStatement == null){
reject("Incorrect Table Name");
}
db.run(insertStatement, dataArray, function(err) {
if(err) {
reject(err);
}
resolve(this.lastID);});
});
}
function modifyTimezone(discordID, tzString) {
const insertStatement = "UPDATE UserTable SET timezone = ? WHERE discordID = ?";
return new Promise((resolve, reject) => {
db.run(insertStatement, [tzString, discordID], function(err) {
if(err) {
reject(err);
}
resolve(this.changes);});
});
}
function modifyCanvasToken(discordID, tokenString, domainString) {
const insertStatement = "UPDATE UserTable SET canvasToken = ?, canvasDomain = ? WHERE discordID = ?";
return new Promise((resolve, reject) => {
db.run(insertStatement, [tokenString, domainString, discordID], function(err) {
if(err) {
reject(err);
}
resolve(this.changes);});
});
}
async function removeUserData(discordID) {
const RemoveUserTable = "DELETE FROM UserTable WHERE discordID = ?";
const RemoveNotesTable = "DELETE FROM NotesTable WHERE discordID = ?";
const RemoveReminderTable = "DELETE FROM ReminderTable WHERE discordID = ?";
await runDB(RemoveNotesTable, discordID);
await runDB(RemoveReminderTable, discordID);
await runDB(RemoveUserTable, discordID);
}
async function getUserRow(discordID) {
const cmd = "SELECT * from UserTable where discordID = ?";
return await getDB(cmd, [discordID]);
}
// const getUserTableData = "SELECT from <tablename> where discordID = "value", canvasToken ="value"
async function getCanvasToken(discordID) {
const cmd = "SELECT canvasToken, canvasDomain from UserTable where discordID = ?";
return await getDB(cmd, [discordID]);
}
async function findNotes(discordID, message) {
let cmd, args;
if(message === undefined) {
cmd = "SELECT noteID, noteMessage FROM NotesTable WHERE discordID = ?";
args = [discordID];
} else{
cmd = "SELECT noteID, noteMessage FROM NotesTable WHERE discordID = ? AND noteMessage LIKE ?";
args = [discordID, "%"+message+"%"];
}
return await allDB(cmd, args);
}
// findReminders is taken from findNotes
// let stm = db.prepare(`CREATE TABLE ReminderTable (
// reminderID INTEGER PRIMARY KEY NOT NULL,
// discordID INTEGER,
// reminderMessage TEXT,
// notifyTime INTEGER,
// timeStamp INTEGER,
// FOREIGN KEY(discordID) references UserTable(discordID))`)
async function findReminders(discordID, message) {
let cmd, args;
if(message === undefined) {
cmd = "SELECT reminderID, reminderMessage FROM ReminderTable WHERE discordID = ?";
args = [discordID];
} else{
cmd = "SELECT reminderID, reminderMessage FROM ReminderTable WHERE discordID = ? AND reminderMessage LIKE ?";
args = [discordID, "%"+message+"%"];
}
return await allDB(cmd, args);
}
// get the latest reminder in the table
async function getLatestReminder() {
const cmd = "SELECT discordID, reminderID, reminderMessage, notifyTime FROM ReminderTable ORDER BY notifyTime ASC";
return await getDB(cmd, []);
}
async function getNote(noteID, discordID) {
const cmd = "SELECT noteMessage FROM NotesTable WHERE noteID = ? AND discordID = ?";
return await getDB(cmd, [noteID, discordID]);
}
// here's how to do order by
// let dbCommand = `select * from ActivityTable where amount>-1 and userID = ${userID} and date <= ${oneWeekAgo} order by date DESC`;
function deleteItem(tableName, itemID) {
const RemoveNoteCmd = "delete from NotesTable where noteID = ?";
const RemoveReminderCmd = "delete from ReminderTable where reminderID = ?";
return new Promise((resolve, reject) => {
if (tableName === "NotesTable") {
db.run(RemoveNoteCmd, itemID, function (err) {
if(err)
reject(err);
else
resolve(this.changes);
});
} else if (tableName === "ReminderTable") {
db.run(RemoveReminderCmd, itemID, function (err) {
if(err)
reject(err);
else
resolve(this.changes);
});
}
else {
reject(new Error("Invalid Table Name: " + tableName));
}
});
}
async function findReminders(discordID, message) {
let cmd, args;
if(message === undefined) {
cmd = "SELECT reminderID, reminderMessage, notifyTime \
FROM ReminderTable WHERE discordID = ? \
ORDER BY notifyTime DESC";
args = [discordID];
} else{
cmd = "SELECT reminderID, reminderMessage, notifyTime \
FROM ReminderTable WHERE discordID = ? \
AND reminderMessage LIKE ? \
ORDER BY notifyTime DESC";
args = [discordID, "%"+message+"%"];
}
return await allDB(cmd, args);
}
function deleteTable(tableName) {
return new Promise((resolve, reject) => {
db.run(`DROP TABLE IF EXISTS ${tableName}`, (err) => {
if (err) {
reject(err);
} else {
resolve(true);
}
});
});
}
// const insertUserTable = "insert into UserTable (discordID, nickname, canvasToken) values (?,?,?)";
// const insertNotesTable = "insert into NotesTable (noteID, discordID, noteMessage) values (?,?,?)";
// const insertReminderTable = "insert into ReminderTable (reminderID, discordID, reminderMessage, notifyTime) values (?,?,?,?)";
function populateData() {
insertData("UserTable", [1,,]);
insertData("NotesTable", [1,1,"poop"]);
insertData("NotesTable", [2,1,"hi"]);
insertData("NotesTable", [3,1,"hello"]);
insertData("NotesTable", [4,1,"oops"]);
insertData("NotesTable", [5,1,"lol"]);
}
// emergency debug funct :L
function debugSQL(command) {
db.run(command);
}
module.exports = {
createUserTable,
createNotesTable,
createReminderTable,
getUserTable,
getNotesTable,
getReminderTable,
connect,
closeDatabase,
deleteTable,
insertData,
removeUserData,
getUserRow,
getCanvasToken,
getNote,
findReminders,
populateData,
debugSQL,
findNotes,
deleteItem,
modifyTimezone,
getLatestReminder,
modifyCanvasToken,
db
}