-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathdb.py
444 lines (367 loc) · 10.6 KB
/
db.py
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
__author__ = "Moath Maharmeh"
__license__ = "GNU General Public License v2.0"
__version__ = "1.1"
__email__ = "moath@vegalayer.com"
__created__ = "13/Dec/2018"
__modified__ = "5/Apr/2019"
__project_page__ = "https://github.com/iomoath/file_watchtower"
import sqlite3
import os
import csv
DEFAULT_PATH = os.path.join(os.path.dirname(__file__), 'database.sqlite3')
def get_db_path():
global DEFAULT_PATH
return DEFAULT_PATH
def db_connect(db_path=DEFAULT_PATH):
con = sqlite3.connect(db_path)
return con
def create_tables():
file_record_query = """
CREATE TABLE IF NOT EXISTS file_record (
id INTEGER PRIMARY KEY AUTOINCREMENT,
file_path TEXT NOT NULL UNIQUE,
hash TEXT NOT NULL,
file_size TEXT NOT NULL,
exists_on_disk varchar(6) NOT NULL,
datetime_last_check TEXT NOT NULL)"""
email_msg_query = """
CREATE TABLE IF NOT EXISTS email_msg (
id INTEGER PRIMARY KEY,
subject TEXT NOT NULL,
body TEXT NOT NULL,
attachment TEXT,
is_sent VARCHAR(6) DEFAULT 'False')"""
conn = db_connect()
try:
cursor = conn.cursor()
cursor.execute(file_record_query)
cursor.execute(email_msg_query)
except:
pass
finally:
conn.commit()
conn.close()
def insert_file_record(file_record_dict):
conn = db_connect()
try:
cursor = conn.cursor()
query = """
INSERT INTO file_record (file_path, hash, file_size, exists_on_disk, datetime_last_check)
VALUES (?, ?, ?, ?, ?)"""
cursor.execute(query,
(file_record_dict["path"], file_record_dict["hash"], file_record_dict["file_size"],
file_record_dict["exists_on_disk"], file_record_dict["datetime_last_check"]))
return cursor.lastrowid
except:
conn.rollback()
raise
finally:
conn.commit()
conn.close()
def get_exists_on_disk_value(file_path):
conn = db_connect()
try:
cursor = conn.cursor()
cursor.execute("SELECT exists_on_disk FROM file_record WHERE file_path=? LIMIT 1", (file_path,))
rows = cursor.fetchall()
return rows[0][0]
except IndexError:
return None
finally:
conn.close()
def get_exists_on_disk_value_by_hash(file_hash):
conn = db_connect()
try:
cursor = conn.cursor()
cursor.execute("SELECT exists_on_disk FROM file_record WHERE hash=? LIMIT 1", (file_hash,))
rows = cursor.fetchall()
return rows[0][0]
except IndexError:
return None
finally:
conn.close()
def update_exists_on_disk_value(file_path, new_value):
conn = db_connect()
try:
cursor = conn.cursor()
query = """UPDATE file_record SET exists_on_disk =? WHERE file_path =?"""
cursor.execute(query, (new_value, file_path,))
return cursor.rowcount
except:
conn.rollback()
raise
finally:
conn.commit()
conn.close()
def update_exists_on_disk_value_by_hash(file_hash, new_value):
conn = db_connect()
try:
cursor = conn.cursor()
query = """UPDATE file_record SET exists_on_disk =? WHERE hash =?"""
cursor.execute(query, (new_value, file_hash,))
return cursor.rowcount
except:
conn.rollback()
raise
finally:
conn.commit()
conn.close()
def update_file_last_check(file_path, new_datetime_check):
conn = db_connect()
try:
cursor = conn.cursor()
query = """UPDATE file_record SET datetime_last_check =? WHERE file_path =?"""
cursor.execute(query, (new_datetime_check, file_path,))
return cursor.rowcount
except:
conn.rollback()
raise
finally:
conn.commit()
conn.close()
def update_file_path(file_hash, old_path, new_path):
conn = db_connect()
try:
cursor = conn.cursor()
query = """UPDATE file_record SET file_path =? WHERE hash =? and file_path=?"""
cursor.execute(query, (new_path, file_hash, old_path))
return cursor.rowcount
except:
conn.rollback()
raise
finally:
conn.commit()
conn.close()
def get_file_records(file_path):
conn = db_connect()
try:
cursor = conn.cursor()
cursor.execute("SELECT * FROM file_record WHERE file_path=?", (file_path,))
rows = cursor.fetchall()
return rows
except IndexError:
return None
finally:
conn.commit()
conn.close()
def get_file_records_by_hash(file_hash):
conn = db_connect()
try:
cursor = conn.cursor()
cursor.execute("SELECT * FROM file_record WHERE hash=?", (file_hash,))
rows = cursor.fetchall()
return rows
except Exception:
conn.rollback()
raise
finally:
conn.close()
def get_all_file_paths():
# returns all files paths
conn = db_connect()
try:
cursor = conn.cursor()
cursor.execute("SELECT file_path FROM file_record")
rows = cursor.fetchall()
path_list = []
for row in rows:
path_list.append(row[0])
return path_list
except:
conn.rollback()
finally:
conn.close()
def get_file_hash(file_path):
conn = db_connect()
try:
cursor = conn.cursor()
cursor.execute("SELECT hash FROM file_record WHERE file_path=? LIMIT 1", (file_path,))
rows = cursor.fetchall()
return rows[0][0]
except IndexError:
return None
finally:
conn.close()
def get_file_path_by_hash(file_hash):
conn = db_connect()
try:
cursor = conn.cursor()
cursor.execute("SELECT file_path FROM file_record WHERE hash=? LIMIT 1", (file_hash,))
rows = cursor.fetchall()
return rows[0][0]
except IndexError:
return None
finally:
conn.close()
def is_file_has_record_by_path(file_path):
conn = db_connect()
try:
cursor = conn.cursor()
cursor.execute("SELECT id FROM file_record WHERE file_path=? LIMIT 1", (file_path,))
rows = cursor.fetchall()
return len(rows) > 0
except:
conn.rollback()
return False
finally:
conn.close()
def is_file_has_record_by_hash(hash):
conn = db_connect()
try:
cursor = conn.cursor()
cursor.execute("SELECT id FROM file_record WHERE hash=? LIMIT 1", (hash,))
rows = cursor.fetchall()
return len(rows) > 0
except:
conn.rollback()
finally:
conn.close()
def get_file_size(file_path):
conn = db_connect()
try:
cursor = conn.cursor()
cursor.execute("SELECT file_size FROM file_record WHERE file_path=? LIMIT 1", (file_path,))
rows = cursor.fetchall()
return rows[0][0]
except IndexError:
return None
finally:
conn.close()
def get_file_size_by_hash(file_hash):
conn = db_connect()
try:
cursor = conn.cursor()
cursor.execute("SELECT file_size FROM file_record WHERE hash=? LIMIT 1", (file_hash,))
rows = cursor.fetchall()
return rows[0][0]
except IndexError:
return None
finally:
conn.close()
def update_file_hash(file_path, new_hash):
conn = db_connect()
try:
cursor = conn.cursor()
query = """UPDATE file_record SET hash =? WHERE file_path =?"""
cursor.execute(query, (new_hash, file_path,))
return cursor.rowcount
except:
conn.rollback()
raise
finally:
conn.commit()
conn.close()
def delete_file_record(file_path):
conn = db_connect()
try:
cursor = conn.cursor()
query = """DELETE FROM file_record WHERE file_path=?"""
cursor.execute(query, (file_path,))
return cursor.rowcount
except:
conn.rollback()
raise
finally:
conn.commit()
conn.close()
def insert_email_msg(email_msg_dict):
conn = db_connect()
try:
cursor = conn.cursor()
query = """
INSERT INTO email_msg (subject, body, attachment)
VALUES (?, ?, ?)"""
cursor.execute(query,
(
email_msg_dict["subject"],
email_msg_dict["body"],
email_msg_dict["attachment"]))
return cursor.lastrowid
except:
conn.rollback()
raise
finally:
conn.commit()
conn.close()
def delete_msg(msg_id):
conn = db_connect()
try:
cursor = conn.cursor()
query = """DELETE FROM email_msg WHERE id=?"""
cursor.execute(query, (msg_id,))
return cursor.rowcount
except:
conn.rollback()
raise
finally:
conn.commit()
conn.close()
def get_unsent_messages():
conn = db_connect()
try:
cursor = conn.cursor()
cursor.execute("SELECT * FROM email_msg WHERE is_sent='False'")
rows = cursor.fetchall()
list_messages = []
for row in rows:
msg = {
"id": row[0],
"subject": row[1],
"body": row[2],
"attachments": row[3],
"is_sent": row[4]
}
list_messages.append(msg)
return list_messages
except:
conn.rollback()
raise
finally:
conn.close()
def delete_sent_messages():
conn = db_connect()
try:
cursor = conn.cursor()
query = """DELETE FROM email_msg WHERE is_sent=?"""
cursor.execute(query, ("True",))
return cursor.rowcount
except:
conn.rollback()
raise
finally:
conn.commit()
conn.close()
def dump_file_records_to_csv(export_path):
conn = db_connect()
try:
cursor = conn.cursor()
cursor.execute('SELECT * FROM file_record')
with open(export_path, 'w') as out_csv_file:
csv_out = csv.writer(out_csv_file)
# write header
csv_out.writerow([d[0] for d in cursor.description])
# write data
for result in cursor:
csv_out.writerow(result)
except:
conn.rollback()
raise
finally:
conn.close()
def delete_all_data():
conn = db_connect()
try:
cursor = conn.cursor()
query1 = """DELETE FROM email_msg"""
query2 = """DELETE FROM file_record"""
cursor.execute(query1, )
cursor.execute(query2, )
return cursor.rowcount
except:
conn.rollback()
raise
finally:
conn.commit()
conn.close()
# init the database, if no db file or tables, it will be created here
create_tables()