-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdatabase.py
361 lines (247 loc) · 7.29 KB
/
database.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
import os
from dotenv import load_dotenv
import mysql.connector as mycon
from utils import hash_password
load_dotenv()
DB_HOST = os.getenv("HOST")
DB_USER = os.getenv("USER")
DB_PASSWORD = os.getenv("PASSWORD")
DB_DATABASE = os.getenv("DATABASE")
__cnx = None
def get_connection():
global __cnx
if not __cnx:
try:
__cnx = mycon.connect(
host=DB_HOST, user=DB_USER, password=DB_PASSWORD, database=DB_DATABASE
)
except Exception as er:
print(er)
return __cnx
## Books functions
def get_books():
cnn = get_connection()
cur = cnn.cursor()
QUERY = "SELECT * FROM books"
try:
cur.execute(QUERY)
except Exception as er:
print(f"[ERROR] - {er}")
data = cur.fetchall()
if data:
return data
def add_book_db(title, author, genre_id, description, total_amount):
cnn = get_connection()
cur = cnn.cursor()
QUERY = "INSERT INTO books (title, author, genre_id, description, total_amount) VALUES (%s, %s, %s, %s, %s)"
VALUES = (title, author, genre_id, description, total_amount)
try:
cur.execute(QUERY, VALUES)
print(f"[SUCCESS] - Added book {title} by {author}")
except Exception as er:
print(f"[ERROR] - {er}")
cnn.commit()
def update_book_db(book_id, field, new_value):
cnn = get_connection()
cur = cnn.cursor()
QUERY = f"UPDATE books SET {field} = %s WHERE id = %s"
VALUES = (new_value, book_id)
try:
cur.execute(QUERY, VALUES)
print(f"[SUCCESS] - Updated book ID {book_id}, set {field} to {new_value}")
except Exception as er:
print(f"[ERROR] - {er}")
cnn.commit()
def get_book_id(title):
cnn = get_connection()
cur = cnn.cursor()
QUERY = "SELECT * FROM books WHERE title=%s"
VALUES = (title,)
try:
cur.execute(QUERY, VALUES)
except Exception as er:
print(f"[ERROR] - {er}")
data = cur.fetchone()
if data:
return data[0]
def get_book_from_id(book_id):
cnn = get_connection()
cur = cnn.cursor()
QUERY = "SELECT * FROM books WHERE id=%s"
VALUES = (book_id,)
try:
cur.execute(QUERY, VALUES)
except Exception as er:
print(f"[ERROR] - {er}")
data = cur.fetchone()
if data:
return data
## Admin fucntions
def get_users(user_type="Student"):
cnn = get_connection()
cur = cnn.cursor()
QUERY = "SELECT * FROM users WHERE role_id=%s"
VALUES = (get_role_id(user_type),)
try:
cur.execute(QUERY, VALUES)
except Exception as er:
print(f"[ERROR] - {er}")
data = cur.fetchall()
if data:
return data
def get_user(email, role="Student"):
cnn = get_connection()
cur = cnn.cursor()
QUERY = "SELECT * FROM users WHERE email=%s AND role_id=%s"
VALUES = (email, get_role_id(role))
try:
cur.execute(QUERY, VALUES)
except Exception as er:
print(f"[ERROR] - {er}")
data = cur.fetchone()
if data:
return data
def get_user_from_id(user_id):
cnn = get_connection()
cur = cnn.cursor()
QUERY = "SELECT * FROM users WHERE id=%s"
VALUES = (user_id,)
try:
cur.execute(QUERY, VALUES)
except Exception as er:
print(f"[ERROR] - {er}")
data = cur.fetchone()
if data:
return data
def add_user_db(firstname, surname, email, mobile_phone, password, gender_id, address, role_id):
cnn = get_connection()
cur = cnn.cursor()
QUERY = "INSERT INTO users (firstname, surname, email, mobile_phone, password_hash, gender_id, address, role_id) VALUES (%s, %s, %s, %s, %s, %s, %s, %s)"
VALUES = (firstname,surname,email,mobile_phone,hash_password(password),gender_id,address,role_id)
try:
cur.execute(QUERY, VALUES)
print(f"[SUCCESS] - Added user {firstname} {surname}")
except Exception as er:
print(f"[ERROR] - {er}")
cnn.commit()
def update_user_db(user_id, field, new_value):
cnn = get_connection()
cur = cnn.cursor()
QUERY = f"UPDATE users SET {field} = %s WHERE id = %s"
VALUES = (new_value, user_id)
try:
cur.execute(QUERY, VALUES)
print(f"[SUCCESS] - Updated user ID {user_id}, set {field} to {new_value}")
except Exception as er:
print(f"[ERROR] - {er}")
cnn.commit()
## Gender functions
def get_gender_id(gender):
cnn = get_connection()
cur = cnn.cursor()
QUERY = "SELECT * from gender WHERE type=%s"
VALUES = (gender,)
try:
cur.execute(QUERY, VALUES)
except Exception as er:
print(f"[ERROR] - {er}")
data = cur.fetchone()
if data:
return data[0]
## Role functions
def get_role_id(role):
cnn = get_connection()
cur = cnn.cursor()
QUERY = "SELECT * from role WHERE type=%s"
VALUES = (role,)
try:
cur.execute(QUERY, VALUES)
except Exception as er:
print(f"[ERROR] - {er}")
data = cur.fetchone()
if data:
return data[0]
def get_role_name(role_id):
cnn = get_connection()
cur = cnn.cursor()
QUERY = "SELECT * from role WHERE id=%s"
VALUES = (role_id,)
try:
cur.execute(QUERY, VALUES)
except Exception as er:
print(f"[ERROR] - {er}")
data = cur.fetchone()
if data:
return data[1]
## Genre functions
def get_genre_id(genre):
cnn = get_connection()
cur = cnn.cursor()
QUERY = "SELECT * from genre WHERE type=%s"
VALUES = (genre,)
try:
cur.execute(QUERY, VALUES)
except Exception as er:
print(f"[ERROR] - {er}")
data = cur.fetchone()
if data:
return data[0]
def get_genre_name(genre_id):
cnn = get_connection()
cur = cnn.cursor()
QUERY = "SELECT * from genre WHERE id=%s"
VALUES = (genre_id,)
try:
cur.execute(QUERY, VALUES)
except Exception as er:
print(f"[ERROR] - {er}")
data = cur.fetchone()
if data:
return data[1]
def get_genres():
cnn = get_connection()
cur = cnn.cursor()
QUERY = "SELECT * FROM genre order by id"
try:
cur.execute(QUERY)
except Exception as er:
print(f"[ERROR] - {er}")
data = cur.fetchall()
if data:
return data
## Events functions
def issue_book(book_id, user_id):
cnn = get_connection()
cur = cnn.cursor()
QUERY = (
"INSERT INTO events (book_id, user_id, issue_date) VALUES (%s, %s, CURDATE())"
)
VALUES = (book_id, user_id)
try:
cur.execute(QUERY, VALUES)
print(f"[SUCCESS] - Issued book {book_id} to user {user_id}")
except Exception as er:
print(f"[ERROR] - {er}")
cnn.commit()
def return_book(book_id, user_id):
cnn = get_connection()
cur = cnn.cursor()
QUERY = "UPDATE events SET return_date=CURDATE() WHERE book_id=%s AND user_id=%s AND return_date IS NULL"
VALUES = (book_id, user_id)
try:
cur.execute(QUERY, VALUES)
print(f"[SUCCESS] - Returned book {book_id} from user {user_id}")
except Exception as er:
print(f"[ERROR] - {er}")
cnn.commit()
def get_issued_books():
cnn = get_connection()
cur = cnn.cursor()
QUERY = "SELECT * FROM events"
try:
cur.execute(QUERY)
except Exception as er:
print(f"[ERROR] - {er}")
data = cur.fetchall()
if data:
return data