-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDatabase_class.py
More file actions
359 lines (300 loc) · 10.7 KB
/
Database_class.py
File metadata and controls
359 lines (300 loc) · 10.7 KB
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
import pg8000
from dotenv import load_dotenv
import os
from typing import Dict
# Load environment variables from .env file
load_dotenv()
class DataBase:
def __init__(
self,
host=os.getenv("DB_HOST"),
name=os.getenv("DB_NAME"),
user=os.getenv("DB_USER"),
password=os.getenv("DB_PASSWORD"),
port=int(os.getenv("DB_PORT")),
):
# Database connection details
self.DB_HOST = os.getenv("DB_HOST")
self.DB_NAME = os.getenv("DB_NAME")
self.DB_USER = os.getenv("DB_USER")
self.DB_PASSWORD = os.getenv("DB_PASSWORD")
self.DB_PORT = int(os.getenv("DB_PORT"))
self.connection = None
def connect_db(self) -> None:
"""Initialise database connection"""
try:
# Connect to the database
self.connection = pg8000.connect(
host=self.DB_HOST,
database=self.DB_NAME,
user=self.DB_USER,
password=self.DB_PASSWORD,
port=self.DB_PORT,
)
self.connection.autocommit = True
print("Connection successful!")
except Exception as e:
print("An error occurred:", e)
def create_table(
self, table_name: str, table_info: Dict[str, str]
) -> None:
"""Creates table in database
Args:
table name (str): name of table to be queried
table info (Dict[str, str]): Dict containing columns
as keys and data type as column type
"""
try:
cursor = self.connection.cursor()
query = f"""CREATE TABLE {table_name} ("""
for key in table_info.keys():
query += f"{key} {table_info[key]},"
query = query[0:-1]
query += ");"
print(query)
cursor.execute(query)
cursor.close()
except Exception as e:
self.connection.rollback()
print("An error occurred:", e)
def add_entry(self, table_name: str, table_data: Dict[str, any]) -> None:
"""Add row to database with new entry
Args:
table name (str): name of table to be queried
table data (str, any): keys are columns, values are user data
"""
try:
cursor = self.connection.cursor()
query = f"""INSERT INTO {table_name} ("""
# Insert column names
for key in table_data.keys():
query += f"""{key},"""
query = query[0:-1]
query += ") VALUES ("
# Insert entry values for each column
for value in table_data.values():
if isinstance(value, bool):
query += f"""{value},"""
elif isinstance(value, (int, float)):
query += f"""{value},"""
elif isinstance(value, str) and "ARRAY" in value:
query += f"""{value},"""
else:
query += f"""'{value}',"""
query = query[0:-1]
query += ");"
# self.logger.info(f"Query: {query}")
print(f"Query: {query}")
cursor.execute(query)
except Exception as e:
self.connection.rollback()
print("An error occurred:", e)
finally:
cursor.close()
def remove_entry(self, table_name: str, username: str) -> None:
"""Remove entry (entire row) from table
Args:
table_name (str): name of table to be queried
username (str): username given as identifier in table
"""
try:
cursor = self.connection.cursor()
query = f"DELETE FROM {table_name} WHERE username = '{username}';"
cursor.execute(query)
except Exception as e:
self.connection.rollback()
print("An error occurred:", e)
finally:
cursor.close()
def update_entry(
self, table_name: str, user: str, column: str, data: str
) -> None:
"""Update entry of specific column
Args:
table_name (str): name of table to be queried
user (str): username given as identifier in table
column (str): column to be edited in table
data (str): data to be inserted in new column entry
"""
try:
cursor = self.connection.cursor()
query = (
f"UPDATE {table_name} "
f"SET {column} = '{data}' "
f"WHERE username = '{user}';"
)
cursor.execute(query)
except Exception as e:
self.connection.rollback()
print("An error occurred:", e)
finally:
cursor.close()
def search_entry(self, table_name: str, user: str, column: str):
"""Search for entry in Table Cell
Args:
table_name (str): Name of table to be queried
user (str): selected user
column (str): column needed
"""
try:
records = None
cursor = self.connection.cursor()
query = (
f"SELECT {column} FROM {table_name} "
f"WHERE username = '{user}';"
)
cursor.execute(query)
records = cursor.fetchall()
if type(records) is tuple:
records = records[0][0]
# commit needed to cement transaction in database
self.connection.commit()
except Exception as e:
print("An error occurred:", e)
self.connection.rollback()
finally:
cursor.close()
return records
# maybe update "sender" to be more general data to append
def append_entry(
self, table_name: str, sender: str, receiver: str, column: str
) -> None:
"""Append value to an array entry in Table Cell
Args:
table_name (str): Name of table to be queried
sender (str): user sending request
receiver (str): user receiving request
column (str): column needed - must be an array column
"""
try:
cursor = self.connection.cursor()
query = (
f"UPDATE {table_name} "
f"SET {column} = array_append({column}, '{sender}') "
f"WHERE username = '{receiver}';"
)
print(query)
cursor.execute(query)
self.connection.commit()
except Exception as e:
print(
"An error occurred: "
"Cannot append to non-array column in database"
)
print("An error occurred:", e)
self.connection.rollback()
finally:
cursor.close()
def remove_from_array(
self, table_name: str, user: str, column: str, value_to_remove: str
) -> None:
"""Remove a specific value from an array column in a user's row.
Args:
table_name (str): Name of the table to be queried
user (str): The username used to identify the record in the table
column (str): The array column to remove the value from
value_to_remove (str): The value to remove from the array
"""
try:
cursor = self.connection.cursor()
query = (
f"UPDATE {table_name} "
f"SET {column} = ARRAY_REMOVE({column}, '{value_to_remove}')"
f"WHERE username = '{user}';"
)
cursor.execute(query)
self.connection.commit()
except Exception as e:
self.connection.rollback()
print(
"An error occurred while removing"
+ "value from array column:",
e,
)
finally:
cursor.close()
def print_table(self, tablename: str):
"""Prints current selected table
Args:
tablename (str): Name of table to be printed
"""
try:
cursor = self.connection.cursor()
query = f"SELECT * FROM {tablename};"
cursor.execute(query)
records = cursor.fetchall()
# Print the results
print(f"{tablename}:")
for record in records:
print(record)
except Exception as e:
print("An error occurred:", e)
self.connection.rollback()
finally:
cursor.close()
def close_con(self):
"""Close the connection"""
self.connection.close()
def search_user(self, table_name: str, user: str) -> bool:
"""Search for user in database
Args:
table_name (str): Name of table to be queried
user (str): Name of user to search
Returns:
bool: True if user found, False if user not found in table
"""
try:
cursor = self.connection.cursor()
query = (
f"SELECT username FROM {table_name} "
f"WHERE username = '{user}';"
)
cursor.execute(query)
record = list(cursor.fetchall())
if record:
return True
return False
except Exception as e:
print("An error occurred:", e)
self.connection.rollback()
finally:
cursor.close()
def main():
# Initialise database class
db = DataBase()
table_name = "testing_table"
table_info = {
"id": "SERIAL PRIMARY KEY",
"username": "VARCHAR(50)",
"password": "VARCHAR(50)",
"friends_list": "VARCHAR[]",
"pending_friends": "VARCHAR[]",
"sus_score": "VARCHAR(50)",
"ip": "VARCHAR(50)",
}
table_data = {
"username": "Conor",
"password": "abc123",
"friends_list": "ARRAY['mark', 'gunjan', 'fiona']",
"pending_friends": "ARRAY['cormac', 'jason']",
"sus_score": "100",
}
# Connect to db
db.connect_db()
db.create_table(table_name, table_info)
db.add_entry(table_name, table_data)
result = db.search_entry(table_name, "Conor", "pending_friends")
print(result)
db.append_entry(table_name, "keith", "Conor", "pending_friends")
db.append_entry(table_name, "siobhan", "Conor", "pending_friends")
result = db.search_entry(table_name, "Conor", "pending_friends")
print(result)
# db.add_entry(table_name, {"username": "Keith",
# "password": "strong password"})
# db.remove_entry(table_name, 'Conor')
# db.update_entry(table_name, 'Keith', 'password', 'Roots123')
# db.print_table(table_name)
# print(db.search_user(table_name, 'Conor'))
db.close_con()
if __name__ == "__main__":
main()