-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest2.py
686 lines (607 loc) · 20.1 KB
/
test2.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
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
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
import sqlite3
conn = sqlite3.connect("assessment2.db")
c = conn.cursor()
class dataz():
@staticmethod
def Create_Table():
c.execute("""CREATE TABLE table_name""")
conn.commit()
@staticmethod
def Rename_Table():
import sqlite3
conn = sqlite3.connect("assessment2.db")
c = conn.cursor()
c.execute("ALTER TABLE trip RENAME TO journey")
conn.commit()
@staticmethod
def Drop_Table():
c.execute("DROP TABLE table_name")
conn.commit()
@staticmethod
def Insert_Into_customers(z,y,x,w,v,u):
import sqlite3
conn = sqlite3.connect("assessment2.db")
c = conn.cursor()
c.execute('''PRAGMA journal_mode = WAL''')
c.execute("INSERT INTO customers (first_name,last_name,email,phone_number,password,payment_method) VALUES(?,?,?,?,?,?)",(z,y,x,w,v,u))
conn.commit()
@staticmethod
def Insert_Into_drivers(z,y,x,w,v,u,t,s,r,q,p):
import sqlite3
conn = sqlite3.connect("assessment2.db")
c = conn.cursor()
c.execute('''PRAGMA journal_mode = WAL''')
c.execute("""INSERT INTO drivers
(first_name, last_name, email, password, phone_number, driver_license, license_expiry, car_class, car_license_plate_number, car_make, car_colour) VALUES (?,?,?,?,?,?,?,?,?,?)""", (z,y,x,w,v,u,t,s,r,q,p))
conn.commit()
@staticmethod
def Insert_Into_admins():
c.execute("""INSERT INTO admins
(first_name, last_name, email, phone_number, password) VALUES ('haos', 'zhong', 'hao123', 07412566921, 'password')""")
conn.commit()
@staticmethod
def Insert_Into_journey(date,time,jID,start_point,end_point,driver_name,car_type,car_make,car_color,price,distance):
import sqlite3
conn = sqlite3.connect("assessment2.db")
c = conn.cursor()
c.execute('''PRAGMA journal_mode = WAL''')
c.execute("""INSERT INTO journey
(Date, Time, Journey_ID, Start_Location, End_Location, driver_name, Car_Class, Car_Make, Car_Colour, Price, Distance, status) VALUES (?,?,?,?,?,?,?,?,?,?,?)""", (date,time,jID,start_point,end_point,driver_name,car_type,car_make,car_color,price,distance))
conn.commit()
@staticmethod
def Insert_into_customer_payments(z,y,x,w,v):
import sqlite3
conn = sqlite3.connect("assessment2.db")
c = conn.cursor()
c.execute('''PRAGMA journal_mode = WAL''')
c.execute("""INSERT INTO customer_payment
(name, card_number, cvv, email, password)
VALUES (?,?,?,?,?)""", (z,y,x,w,v))
conn.commit()
@staticmethod
def Insert_into_driver_payments(z,y,x,w,v,u):
import sqlite3
conn = sqlite3.connect("assessment2.db")
c = conn.cursor()
c.execute("""INSERT INTO driver_payments
(name, account_number, sort_code, payme_link)
VALUES (?,?,?,?,?,?)""", (z,y,x,w,v,u))
conn.commit()
@staticmethod
def Insert_Into_orders(z,y,x):
import sqlite3
conn = sqlite3.connect("assessment2.db")
c = conn.cursor()
c.execute('''PRAGMA journal_mode = WAL''')
c.execute("""INSERT INTO orders
(start_location, end_location, order_ID)
VALUES (?,?,?)""",(z,y,x,))
conn.commit()
@staticmethod
def Delete_Duplicates_Customers():
c.execute("""DELETE FROM customers
WHERE rowid NOT IN (SELECT min(rowid)
FROM customers GROUP BY first_name,last_name,email,password,phone_number,payment_method)""")
conn.commit()
@staticmethod
def Delete_Duplicates_Drivers():
c.execute("""DELETE FROM drivers
WHERE rowid NOT IN (SELECT min(rowid)
FROM drivers GROUP BY first_name,last_name,email,phone_number,password,car_make,car_colour,car_license_plate_number,driver_license,license_expiry,bank_account)""")
conn.commit()
@staticmethod
def Delete_Duplicates_Admins():
c.execute("""DELETE FROM admins
WHERE rowid NOT IN (SELECT min(rowid)
FROM admins GROUP BY first_name,last_name,email,phone_number,password)""")
conn.commit()
@staticmethod
def Check_Duplicates_customers():
c.execute("""SELECT first_name,last_name,email,phone_number,password,payment_method, COUNT(*)
FROM customers
GROUP BY first_name,last_name,email,phone_number,password,payment_method
HAVING COUNT(*) > 1""")
print(c.fetchall())
conn.commit()
@staticmethod
def Check_Duplicates_drivers():
c.execute("""SELECT first_name,last_name,email,phone_number,password,car_make,car_colour,car_license_plate_number,driver_license,license_expiry COUNT(*)
FROM drivers
GROUP BY first_name,last_name,email,phone_number,password,car_make,car_colour,car_license_plate_number,driver_license
HAVING COUNT(*) > 1""")
print(c.fetchall())
conn.commit()
@staticmethod
def update_userID_customers_payments():
c.execute("""UPDATE customer_payment
SET user_ID = (SELECT user_ID FROM customers WHERE customer_payment.email = customers.email)""")
conn.commit()
@staticmethod
def get_customer_userID_by_phone_number(phone_number):
"""
Takes a phone number as an input. And returns a userID connected do it in the DB.
:param phone_number:
:return: user_ID
"""
if phone_number != '':
c.execute("""SELECT phone_number, user_ID
FROM customers
WHERE phone_number = ?""", (phone_number,))
var = c.fetchone()
conn.commit()
return var[1]
else:
raise OSError("User doesn't exist")
@staticmethod
def get_driver_username_by_id(driver_ID):
"""
...
"""
if driver_ID != '':
c.execute("""SELECT driver_ID, first_name
FROM drivers
WHERE driver_ID = ?""", (driver_ID,))
var = c.fetchone()
conn.commit()
return var[1]
else:
raise OSError("User doesn't exist")
@staticmethod
def get_driver_lastname_by_id(driver_ID):
"""
...
"""
if driver_ID != '':
c.execute("""SELECT driver_ID, last_name
FROM drivers
WHERE driver_ID = ?""", (driver_ID,))
var = c.fetchone()
conn.commit()
return var[1]
else:
raise OSError("User doesn't exist")
@staticmethod
def get_driver_email_by_id(driver_ID):
"""
...
"""
if driver_ID != '':
c.execute("""SELECT driver_ID, email
FROM drivers
WHERE driver_ID = ?""", (driver_ID,))
var = c.fetchone()
conn.commit()
return var[1]
else:
raise OSError("User doesn't exist")
@staticmethod
def get_driver_pn_by_id(driver_ID):
"""
...
"""
if driver_ID != '':
c.execute("""SELECT driver_ID, phone_number
FROM drivers
WHERE driver_ID = ?""", (driver_ID,))
var = c.fetchone()
conn.commit()
return var[1]
else:
raise OSError("User doesn't exist")
@staticmethod
def get_customer_userID_by_email(email):
"""
Takes an email as an input. And returns a userID connected do it in the DB.
:param email:
:return: user_ID
"""
if email != '':
c.execute("""SELECT email, user_ID
FROM customers
WHERE email = ?""", (email,))
var = c.fetchone()
conn.commit()
return var[1]
else:
raise OSError("User doesn't exist")
@staticmethod
def get_customer_userID_by_password(password):
"""
Takes a password as an input. And returns a userID connected do it in the DB.
:param password:
:return: user_ID
"""
if password != '':
c.execute("""SELECT email,password,user_ID
FROM customers
WHERE password = ?""", (password,))
var = c.fetchone()
conn.commit()
return var[2]
else:
raise OSError("User doesn't exist")
@staticmethod
def get_driver_driverID_by_password(password):
"""
Takes a password as an input. And returns a driverID connected do it in the DB.
:param password:
:return: driver_ID
"""
if password != '':
c.execute("""SELECT email,password,driver_ID
FROM drivers
WHERE password = ?""", (password,))
var = c.fetchone()
conn.commit()
return var[2]
else:
raise OSError("User doesn't exist")
@staticmethod
def get_driver_driverID_by_email(email):
"""
Takes an email as an input. And returns a driverID connected do it in the DB.
:param email:
:return: driver_ID
"""
if email != '':
c.execute("""SELECT email, driver_ID
FROM drivers
WHERE email = ?""", (email,))
var = c.fetchone()
conn.commit()
return var[1]
else:
raise OSError("User doesn't exist")
@staticmethod
def get_driver_driverID_by_phone_number(phone_number):
"""
Takes a phone number as an input. And returns a driverID connected do it in the DB.
:param phone_number:
:return: driver_ID
"""
if phone_number != '':
c.execute("""SELECT phone_number, driver_ID
FROM drivers
WHERE phone_number = ?""", (phone_number,))
var = c.fetchone()
conn.commit()
return var[1]
else:
raise OSError("User doesn't exist")
@staticmethod
def Update_First_Name_customers(first_name,userID):
c.execute("""UPDATE customers
SET first_name = ?
WHERE user_ID = ?""", (first_name,userID,))
conn.commit()
@staticmethod
def Update_Last_Name_customers(last_name,userID):
c.execute("""UPDATE customers
SET last_name = ?
WHERE user_ID = ?""", (last_name,userID,))
conn.commit()
@staticmethod
def Update_Email_customers(email,userID):
c.execute("""UPDATE customers
SET email = ?
WHERE user_ID = ?""", (email,userID,))
conn.commit()
@staticmethod
def Update_phone_number_customers(phone_number,userID):
c.execute("""UPDATE customers
SET phone_number = ?
WHERE user_ID = ?""", (phone_number,userID,))
conn.commit()
@staticmethod
def Update_password_customers(password,userID):
c.execute("""UPDATE customers
SET password = ?
WHERE user_ID = ?""", (password,userID,))
conn.commit()
@staticmethod
def Update_payment_method_customers(payment_method,userID):
c.execute("""UPDATE customers
SET payment_method = ?
WHERE user_ID = ?""", (payment_method,userID,))
conn.commit()
@staticmethod
def Update_first_name_drivers():
c.execute("""UPDATE drivers
SET first_name = 'someone'
WHERE driver_ID = 1""")
conn.commit()
@staticmethod
def Update_last_name_drivers():
c.execute("""UPDATE drivers
SET last_name = 'someone'
WHERE driver_ID = 1""")
conn.commit()
@staticmethod
def Update_phone_number_drivers():
c.execute("""UPDATE drivers
SET phone_number = '07412566921'
WHERE driver_ID = 1""")
conn.commit()
@staticmethod
def Update_password_drivers():
c.execute("""UPDATE drivers
SET password = 'someone'
WHERE driver_ID = 1""")
conn.commit()
@staticmethod
def Update_car_make_drivers():
c.execute("""UPDATE drivers
SET car_make = 'someone'
WHERE driver_ID = 1""")
conn.commit()
@staticmethod
def Update_car_colour_drivers():
c.execute("""UPDATE drivers
SET car_colour = 'someone'
WHERE driver_ID = 1""")
conn.commit()
@staticmethod
def Update_first_driver_license_drivers():
c.execute("""UPDATE drivers
SET driver_license = 'someone'
WHERE driver_ID = 1""")
conn.commit()
@staticmethod
def Update_license_expiry_drivers():
c.execute("""UPDATE drivers
SET license_expiry = 'someone'
WHERE driver_ID = 1""")
conn.commit()
@staticmethod
def Update_bank_account_drivers():
c.execute("""UPDATE drivers
SET bank_account = 'someone'
WHERE driver_ID = 1""")
conn.commit()
@staticmethod
def Update_first_name_admins():
c.execute("""UPDATE admins
SET first_name = 'someone'
WHERE employee_ID = 1""")
conn.commit()
@staticmethod
def Update_last_name_admins():
c.execute("""UPDATE admins
SET last_name = 'someone'
WHERE employee_ID = 1""")
conn.commit()
@staticmethod
def Update_email_admins():
c.execute("""UPDATE admins
SET email = 'someone'
WHERE employee_ID = 1""")
conn.commit()
@staticmethod
def Update_phone_number_admins():
c.execute("""UPDATE admins
SET phone_number = 'someone'
WHERE employee_ID = 1""")
conn.commit()
@staticmethod
def Update_password_admins():
c.execute("""UPDATE admins
SET password = 'someone'
WHERE employee_ID = 1""")
conn.commit()
@staticmethod
def Update_date_created_journey():
c.execute("""UPDATE journey
SET last_name = 'someone'
WHERE order_ID = 1""")
conn.commit()
@staticmethod
def Update_customer_ID_journey():
c.execute("""UPDATE journey
SET customer_ID = 'someone'
WHERE order_ID = 1""")
conn.commit()
@staticmethod
def Update_driver_name_journey():
c.execute("""UPDATE journey
SET driver_name = 'someone'
WHERE order_ID = 1""")
conn.commit()
@staticmethod
def Update_status_journey():
c.execute("""UPDATE journey
SET status = 'someone'
WHERE order_ID = 1""")
conn.commit()
@staticmethod
def Update_driver_ID_journey():
c.execute("""UPDATE journey
SET driver_ID = 'someone'
WHERE order_ID = 1""")
conn.commit()
@staticmethod
def Update_start_piont_journey():
c.execute("""UPDATE journey
SET start_piont = 'someone'
WHERE order_ID = 1""")
conn.commit()
@staticmethod
def Update_end_piont_journey():
c.execute("""UPDATE journey
SET end_piont = 'someone'
WHERE order_ID = 1""")
conn.commit
@staticmethod
def Update_price_journey():
c.execute("""UPDATE journey
SET price = 'someone'
WHERE order_ID = 1""")
conn.commit()
@staticmethod
def Update_customer_number_journey():
c.execute("""UPDATE journey
SET customer_number = 'someone'
WHERE order_ID = 1""")
conn.commit()
@staticmethod
def Update_name_customer_payment():
c.execute("""UPDATE customer_payment
SET name = 'someone'
WHERE rowid = 1""")
conn.commit()
@staticmethod
def Update_card_customer_payment():
c.execute("""UPDATE customer_payment
SET card_number = 'someone'
WHERE rowid = 1""")
conn.commit()
@staticmethod
def Update_cvv_customer_payment():
c.execute("""UPDATE customer_payment
SET cvv = 'someone'
WHERE rowid = 1""")
conn.commit()
@staticmethod
def Update_email_customer_payment():
c.execute("""UPDATE customer_payment
SET email = 'someone'
WHERE rowid = 1""")
conn.commit()
@staticmethod
def Update_password_customer_payment():
c.execute("""UPDATE customer_payment
SET password = 'someone'
WHERE rowid = 1""")
conn.commit()
@staticmethod
def Update_name_driver_payments():
c.execute("""UPDATE driver_payments
SET name = 'someone'
WHERE rowid = 1""")
conn.commit()
@staticmethod
def Update_account_number_driver_payments():
c.execute("""UPDATE driver_payments
SET account_number = 'someone'
WHERE rowid = 1""")
conn.commit()
@staticmethod
def Update_sort_code_driver_payments():
c.execute("""UPDATE driver_payments
SET sort_code = 'someone'
WHERE rowid = 1""")
conn.commit()
@staticmethod
def Update_payme_link_driver_payments():
c.execute("""UPDATE driver_payments
SET payme_link = 'someone'
WHERE rowid = 1""")
conn.commit()
@staticmethod
def Update_name_driver_payments():
c.execute("""UPDATE driver_payments
SET name = 'someone'
WHERE rowid = 1""")
conn.commit()
@staticmethod
def Delete_Row_customers():
c.execute("DELETE FROM customers where rowid = 1")
conn.commit()
@staticmethod
def Delete_Row_drivers():
c.execute("DELETE FROM drivers where rowid = 1")
conn.commit()
@staticmethod
def Delete_Row_admins():
c.execute("DELETE FROM admins where rowid = 1")
conn.commit()
@staticmethod
def Delete_Row_journey():
c.execute("DELETE FROM journey where rowid = 1")
conn.commit()
@staticmethod
def Delete_Row_orders(order_ID):
c.execute("DELETE FROM orders where order_ID = ?",(order_ID,))
conn.commit()
@staticmethod
def Read_From_customer_payment():
c.execute("SELECT*FROM customer_payment")
print(c.fetchall())
conn.commit()
@staticmethod
def Read_From_Customers():
c.execute("SELECT*FROM customers")
print(c.fetchall())
conn.commit()
@staticmethod
def Read_From_Drivers():
c.execute("SELECT*FROM drivers")
print(c.fetchall())
conn.commit()
@staticmethod
def Read_From_Admins():
c.execute("SELECT*FROM admins")
print(c.fetchall())
conn.commit()
@staticmethod
def Read_From_Journey():
c.execute("SELECT*FROM journey")
print(c.fetchall())
conn.commit()
@staticmethod
def get_customer_username_by_id(user_ID):
"""
...
"""
if user_ID != '':
c.execute("""SELECT driver_ID, first_name
FROM customers
WHERE user_ID = ?""", (user_ID,))
var = c.fetchone()
conn.commit()
return var[1]
else:
raise OSError("User doesn't exist")
@staticmethod
def get_customer_lastname_by_id(user_ID):
"""
...
"""
if user_ID != '':
c.execute("""SELECT driver_ID, last_name
FROM customers
WHERE user_ID = ?""", (user_ID,))
var = c.fetchone()
conn.commit()
return var[1]
else:
raise OSError("User doesn't exist")
@staticmethod
def get_customer_email_by_id(user_ID):
"""
...
"""
if user_ID != '':
c.execute("""SELECT driver_ID, email
FROM customers
WHERE user_ID = ?""", (user_ID,))
var = c.fetchone()
conn.commit()
return var[1]
else:
raise OSError("User doesn't exist")
@staticmethod
def get_customer_phone_number_by_id(user_ID):
"""
...
"""
if user_ID != '':
c.execute("""SELECT driver_ID, phone_number
FROM customers
WHERE user_ID = ?""", (user_ID,))
var = c.fetchone()
conn.commit()
return var[1]
else:
raise OSError("User doesn't exist")
v = dataz()
# v.Update_First_Name_customers('lol',13)