-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdbChef.go
479 lines (436 loc) · 9.82 KB
/
dbChef.go
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
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
package main
import (
"database/sql"
"log"
_ "github.com/mattn/go-sqlite3"
)
// Messages Database
func createMessagesDatabase() error {
// Open a connection to the database
db, err := sql.Open("sqlite3", MessagesDB)
if err != nil {
return err
}
defer func(db *sql.DB) {
err := db.Close()
if err != nil {
log.Println(err)
}
}(db)
if db == nil {
log.Println("Database does not exist")
}
// Execute the SQL command to create the table
//TODO: Add all queries to a file and read from that file
_, err = db.Exec(`
CREATE TABLE messages (
id INTEGER PRIMARY KEY AUTOINCREMENT,
sender TEXT NOT NULL,
content TEXT DEFAULT NULL,
audio TEXT DEFAULT NULL,
media VARCHAR(255) DEFAULT 'NULL',
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
)
`)
if err != nil {
return err
}
log.Printf("Database created successfully")
return nil
}
// Create Keylogger Database and Table if it doesn't exist
func createKeyloggerDatabase() error {
// Open a connection to the database
db, err := sql.Open("sqlite3", KeyboardDB)
if err != nil {
return err
}
defer func(db *sql.DB) {
err := db.Close()
if err != nil {
log.Println(err)
}
}(db)
if db == nil {
log.Println("Database does not exist")
}
// Execute the SQL command to create the table
_, err = db.Exec(`
CREATE TABLE keystrokes (
id INTEGER PRIMARY KEY AUTOINCREMENT,
textStuff TEXT NOT NULL,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
)
`)
if err != nil {
return err
}
log.Printf("Database created successfully")
return nil
}
// Create Local Media Database and Table if it doesn't exist
func createLocalMediaDatabase() error {
// Open a connection to the database
db, err := sql.Open("sqlite3", "DB/localMedia.db")
if err != nil {
return err
}
defer func(db *sql.DB) {
err := db.Close()
if err != nil {
log.Println(err)
}
}(db)
if db == nil {
log.Println("Database does not exist")
}
// Execute the SQL command to create the table
_, err = db.Exec(`
CREATE TABLE localMedia (
id INTEGER PRIMARY KEY AUTOINCREMENT,
path TEXT NOT NULL,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
)
`)
if err != nil {
return err
}
log.Printf("Database created successfully")
return nil
}
// Create Settings Database and Table if it doesn't exist
func createSettingsDatabase() error {
// Open a connection to the database
db, err := sql.Open("sqlite3", SettingsDB)
if err != nil {
return err
}
defer func(db *sql.DB) {
err := db.Close()
if err != nil {
log.Println(err)
}
}(db)
if db == nil {
log.Println("Database does not exist")
}
_, err = db.Exec(`
CREATE TABLE settings (
id INTEGER PRIMARY KEY AUTOINCREMENT,
platform TEXT DEFAULT NULL,
audioOnly INTEGER DEFAULT 1,
theme TEXT DEFAULT 'auto',
voice TEXT DEFAULT 'AZURESPEECH',
language TEXT DEFAULT NULL,
createdAt TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
accessToken TEXT DEFAULT NULL,
refreshToken TEXT DEFAULT NULL,
tokenExpires TIMESTAMP DEFAULT NULL
)
`)
if err != nil {
return err
}
log.Printf("Database created successfully")
return nil
}
// Create User Database and Table if it doesn't exist
func createUserDatabase() error {
// Open a connection to the database
db, err := sql.Open("sqlite3", "DB/user.db")
if err != nil {
return err
}
defer func(db *sql.DB) {
err := db.Close()
if err != nil {
log.Println(err)
}
}(db)
if db == nil {
log.Println("Database does not exist")
}
// Execute the SQL command to create the table
_, err = db.Exec(`
CREATE TABLE user (
id INTEGER PRIMARY KEY AUTOINCREMENT,
username TEXT NOT NULL,
password TEXT NOT NULL,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
)
`)
if err != nil {
return err
}
log.Printf("Database created successfully")
return nil
}
// Create Sessions.db if it doesn't exist and create a table for sessions if it doesn't exist
// Token is the session token
// ID is the user ID
func createSessionsDatabase() error {
// Open a connection to the database
db, err := sql.Open("sqlite3", "DB/sessions.db")
if err != nil {
return err
}
defer func(db *sql.DB) {
err := db.Close()
if err != nil {
log.Println(err)
}
}(db)
if db == nil {
log.Println("Database does not exist")
}
// Execute the SQL command to create the table
_, err = db.Exec(`
CREATE TABLE sessions (
id INTEGER PRIMARY KEY AUTOINCREMENT,
token TEXT NOT NULL,
userID INTEGER NOT NULL,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
)
`)
if err != nil {
return err
}
log.Printf("Database created successfully")
return nil
}
// Create token database and table if it doesn't exist
func createTokenDatabase() error {
// Open a connection to the database
db, err := sql.Open("sqlite3", "DB/token.db")
if err != nil {
return err
}
defer func(db *sql.DB) {
err := db.Close()
if err != nil {
log.Println(err)
}
}(db)
if db == nil {
log.Println("Database does not exist")
}
// Execute the SQL command to create the table
_, err = db.Exec(`
CREATE TABLE token (
id INTEGER PRIMARY KEY AUTOINCREMENT,
token TEXT NOT NULL,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
)
`)
if err != nil {
return err
}
log.Printf("Database created successfully")
return nil
}
// Create token database and table if it doesn't exist
// TODO Productivity database
func createProductivityDatabase() error {
// Open a connection to the database
db, err := sql.Open("sqlite3", "DB/productivity.db")
if err != nil {
return err
}
defer func(db *sql.DB) {
err := db.Close()
if err != nil {
log.Println(err)
}
}(db)
if db == nil {
log.Println("Activity DB does not exist")
}
// Execute the SQL command to create the table
_, err = db.Exec(`
CREATE TABLE productivity (
id INTEGER PRIMARY KEY AUTOINCREMENT,
website TEXT NOT NULL,
time INTEGER NOT NULL,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
)
`)
if err != nil {
return err
}
log.Printf("Activity DB created successfully")
return nil
}
// Gallery Database
// Create gallery database and table if it doesn't exist
func createGalleryDatabase() error {
// Open a connection to the database
db, err := sql.Open("sqlite3", "DB/gallery.db")
if err != nil {
return err
}
defer func(db *sql.DB) {
err := db.Close()
if err != nil {
log.Println(err)
}
}(db)
if db == nil {
log.Println("Gallery DB does not exist")
}
// Execute the SQL command to create the table
_, err = db.Exec(`
CREATE TABLE gallery (
id INTEGER PRIMARY KEY AUTOINCREMENT,
path TEXT NOT NULL,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
)
`)
if err != nil {
return err
}
log.Printf("Gallery DB created successfully")
return nil
}
// Mas
func createMasterMessages() error {
// Open a connection to the database
db, err := sql.Open("sqlite3", "DB/gallery.db")
if err != nil {
return err
}
defer func(db *sql.DB) {
err := db.Close()
if err != nil {
log.Println(err)
}
}(db)
if db == nil {
log.Println("Messages DB does not exist")
}
// Execute the SQL command to create the table
_, err = db.Exec(`
CREATE TABLE messages (
id INTEGER PRIMARY KEY AUTOINCREMENT,
sender TEXT NOT NULL,
content TEXT DEFAULT NULL,
audio TEXT DEFAULT NULL,
media VARCHAR(255) DEFAULT 'NULL',
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
)
`)
if err != nil {
return err
}
log.Printf("Message DB created successfully")
return nil
}
func extensionsSource() error {
// Open a connection to the database
db, err := sql.Open("sqlite3", "DB/extensions.db")
if err != nil {
return err
}
defer func(db *sql.DB) {
err := db.Close()
if err != nil {
log.Println(err)
}
}(db)
if db == nil {
log.Println("Extensions DB does not exist")
}
// Execute the SQL command to create the table
_, err = db.Exec(`
CREATE TABLE extension (
id INTEGER PRIMARY KEY AUTOINCREMENT,
name TEXT DEFAULT NULL,
vendor TEXT DEFAULT NULL,
consumer_key TEXT DEFAULT NULL,
consumer_secret TEXT DEFAULT NULL,
access_token TEXT DEFAULT NULL,
access_key TEXT DEFAULT NULL,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
)
`)
if err != nil {
return err
}
log.Printf("Extensions Database created successfully")
return nil
}
func createLLMSelectionDatabase() error {
// Open a connection to the database
db, err := sql.Open("sqlite3", "DB/llmSelection.db")
if err != nil {
return err
}
defer func(db *sql.DB) {
err := db.Close()
if err != nil {
log.Println(err)
}
}(db)
if db == nil {
log.Println("LLM Selection DB does not exist")
}
// Execute the SQL command to create the table
_, err = db.Exec(`
CREATE TABLE llmSelection (
id INTEGER PRIMARY KEY AUTOINCREMENT,
selection TEXT DEFAULT NULL,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
)
`)
if err != nil {
return err
}
log.Printf("LLM Selection Database created successfully")
return nil
}
func createSpeechSelectionDatabase() error {
// Open a connection to the database
db, err := sql.Open("sqlite3", "DB/speechSelection.db")
if err != nil {
return err
}
defer func(db *sql.DB) {
err := db.Close()
if err != nil {
log.Println(err)
}
}(db)
if db == nil {
log.Println("Speech Selection DB does not exist")
}
// Execute the SQL command to create the table
_, err = db.Exec(`
CREATE TABLE speechSelection (
id INTEGER PRIMARY KEY AUTOINCREMENT,
selection TEXT DEFAULT NULL,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
)
`)
if err != nil {
return err
}
log.Printf("Speech Selection Database created successfully")
return nil
}
func getSelectedModel() (string, error) {
db, err := sql.Open("sqlite3", "DB/llmSelection.db")
if err != nil {
return "", err
}
defer func(db *sql.DB) {
err := db.Close()
if err != nil {
log.Println(err)
}
}(db)
var selection string
err = db.QueryRow("SELECT selection FROM llmSelection").Scan(&selection)
if err != nil {
return "", err
}
return selection, nil
}