-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdatabase.py
477 lines (420 loc) · 14.8 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
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
import sqlite3
from sqlite3 import Error
'''Database Outline (as of this commit)
* Users Table
- Username
- Phone no.
- Email
- Password
- Schedule
- Friends
- Pending Friends
- Meetups (IDs)
* Meet Table
- ID
- Users involved in meeting
- Time Period
- Messages
- Comfirmed or not
'''
def testallfunctions():
con = sqlite3.connect('mydatabase.db')
cursorObj = con.cursor()
cursorObj.execute('drop table if exists users')
cursorObj.execute('drop table if exists meet')
cursorObj.execute(
"CREATE TABLE users(username text PRIMARY KEY, phone integer, email text, password text, schedule text, friends text, pfriends text, meetings text)")
cursorObj.execute(
"CREATE TABLE meet(id integer PRIMARY KEY autoincrement, users text, time text, messages text, confirmed text)")
print(register("HTY", 70707070, "[email protected]", "pp"))
print(register("NGMH", 53180080, "[email protected]", "pp"))
print(register("HTY", 70707070, "[email protected]", "pp"))
print(login("HTY", "passworld123"))
print(login("HTY", "password123"))
print(requestfren("HTY", "NGMH"))
print(confirmfren("HTY", "NGMH", True))
print(getfren("NGMH"))
print(getfren("HTY"))
# print(deletfren("NGMH", "HTY"))
# print(getfren("NGMH"))
# print(getfren("HTY"))
print(editschedule("NGMH", "0"*334+"11"))
print(editschedule("HTY", "0"*334+"11"))
print(getschedule("HTY"))
print(findoverlaps("HTY"))
print(findoverlaps2(["HTY", "NGMH"]))
print(creatependingmeeting(["NGMH", "HTY"], 335))
print(confirmmeeting("HTY", 1))
print(confirmmeeting("NGMH", 1))
print(cancelmeeting(1))
print(creatependingmeeting(["NGMH", "HTY"], 335))
print(confirmmeeting("HTY", 2))
print(confirmmeeting("NGMH", 2))
print(getpendingmeeting("HTY"))
print(getconfirmedmeeting("HTY"))
#cursorObj.execute('drop table if exists users')
#cursorObj.execute('drop table if exists meet')
# cursorObj.execute(
# "CREATE TABLE users(username text PRIMARY KEY, phone integer, email text, password text, schedule text, friends text, pfriends text, meetings text)")
# cursorObj.execute(
# "CREATE TABLE meet(id integer PRIMARY KEY autoincrement, users text, time text, messages text, confirmed integer)")
con.commit()
con.close()
def register(username, phone, email, password):
'''add new user
input: username(must be unique, rest don't need to be for now), phone number, email, password
output: 1 (success) or 0 (failure)'''
try:
con = sqlite3.connect('mydatabase.db')
cursorObj = con.cursor()
schedule = "0" * 336
cursorObj.execute(
"INSERT INTO users VALUES('" + username + "'," + str(phone) + ",'" + email + "','" + password + "','" + schedule + "','','','')")
con.commit()
con.close()
return 1
except Exception as e:
print(e)
return 0
def login(username, password):
'''check password
input: username, password
output: 1 (success) or 0 (failure)'''
try:
con = sqlite3.connect('mydatabase.db')
cursorObj = con.cursor()
cursorObj.execute(
"SELECT password FROM users where username = '" + username + "'")
pw = cursorObj.fetchall()[0][0]
con.close()
return 1 if password == pw else 0
except Exception as e:
print(e)
return 0
def requestfren(u1, u2):
''' making friends pt. 1: requester sends friend request to someone else
input: username of requester, username of someone else
output: 1 (success) or 0 (failure)'''
try:
con = sqlite3.connect('mydatabase.db')
cursorObj = con.cursor()
cursorObj.execute(
"SELECT friends FROM users where username = '" + u2 + "'")
friends = cursorObj.fetchall()[0][0]
cursorObj.execute(
"SELECT pfriends FROM users where username = '" + u2 + "'")
pfriends = cursorObj.fetchall()[0][0]
if u1 not in pfriends and u1 not in friends:
pfriends += "," + u1
cursorObj.execute("UPDATE users SET pfriends = '" +
pfriends + "' where username = '" + u2 + "'")
con.commit()
con.close()
return 1
except Exception as e:
print(e)
return 0
def confirmfren(u1, u2, accepted):
''' making friends pt. 2: someone else agrees to be friends, so both now are each other's friends
input: username of someone else, username of requester, accepted or rejected (1 or 0)
output: 1 (success) or 0 (failure)'''
try:
con = sqlite3.connect('mydatabase.db')
cursorObj = con.cursor()
if accepted:
cursorObj.execute(
"SELECT friends FROM users where username = '" + u2 + "'")
friends = cursorObj.fetchall()[0][0] + "," + u1
cursorObj.execute("UPDATE users SET friends = '" +
friends + "' where username = '" + u2 + "'")
cursorObj.execute(
"SELECT friends FROM users where username = '" + u1 + "'")
friends = cursorObj.fetchall()[0][0] + "," + u2
cursorObj.execute("UPDATE users SET friends = '" +
friends + "' where username = '" + u1 + "'")
cursorObj.execute(
"SELECT pfriends FROM users where username = '" + u2 + "'")
pfriends = cursorObj.fetchall()[0][0]
if u1 in pfriends:
pfriends = pfriends.replace("," + u1, "")
cursorObj.execute("UPDATE users SET pfriends = '" +
pfriends + "' where username = '" + u2 + "'")
con.commit()
con.close()
return 1
except Exception as e:
print(e)
return 0
def deletfren(u1, u2):
''' if either side does not want to be friends they will not be friends lol
input: 2 usernames
output: 1 (success) or 0 (failure)'''
try:
con = sqlite3.connect('mydatabase.db')
cursorObj = con.cursor()
cursorObj.execute(
"SELECT friends FROM users where username = '" + u2 + "'")
friends = cursorObj.fetchall()[0][0].replace("," + u1, "")
cursorObj.execute("UPDATE users SET friends = '" +
friends + "' where username = '" + u2 + "'")
cursorObj.execute(
"SELECT friends FROM users where username = '" + u1 + "'")
friends = cursorObj.fetchall()[0][0].replace("," + u2, "")
cursorObj.execute("UPDATE users SET friends = '" +
friends + "' where username = '" + u1 + "'")
con.commit()
con.close()
return 1
except Exception as e:
print(e)
return 0
def getfren(username):
''' returns list of friends
input: username
output: list of friends'''
try:
con = sqlite3.connect('mydatabase.db')
cursorObj = con.cursor()
cursorObj.execute(
"SELECT friends FROM users where username = '" + username + "'")
frens = cursorObj.fetchall()[0][0].split(",")[1:]
con.close()
return frens
except Exception as e:
print(e)
return 0
def getpfren(username):
''' returns list of pending friend requests
input: username
output: list of pending friends'''
try:
con = sqlite3.connect('mydatabase.db')
cursorObj = con.cursor()
cursorObj.execute(
"SELECT pfriends FROM users where username = '" + username + "'")
pfrens = cursorObj.fetchall()[0][0].split(",")[1:]
con.close()
return pfrens
except Exception as e:
print(e)
return 0
def editschedule(username, schedule):
''' if either side does not want to be friends they will not be friends lol
input: username, schedule
output: 1 (success) or 0 (failure)
'''
try:
con = sqlite3.connect('mydatabase.db')
cursorObj = con.cursor()
cursorObj.execute("UPDATE users SET schedule = '" +
schedule + "' where username = '" + username + "'")
con.commit()
con.close()
return 1
except Exception as e:
print(e)
return 0
def getschedule(username):
''' returns schedule in binary string format for 1 wk (half hour blocks, 0 is busy and 1 is free time)
input: username
output: schedule as binary string'''
try:
con = sqlite3.connect('mydatabase.db')
cursorObj = con.cursor()
cursorObj.execute(
"SELECT schedule FROM users where username = '" + username + "'")
sched = cursorObj.fetchall()[0][0]
con.close()
return sched
except Exception as e:
print(e)
return 0
def findoverlaps(username):
'''find scheduling overlaps w all friends of a user
input: username
output: [(username, timeindex), ...]
'''
try:
con = sqlite3.connect('mydatabase.db')
cursorObj = con.cursor()
cursorObj.execute(
"SELECT friends FROM users where username = '" + username + "'")
frens = cursorObj.fetchall()[0][0].split(",")[1:]
cursorObj.execute(
"SELECT schedule FROM users where username = '" + username + "'")
schedule = cursorObj.fetchall()[0][0]
lyst = []
for f in frens:
cursorObj.execute(
"SELECT schedule FROM users where username = '" + f + "'")
schedule2 = cursorObj.fetchall()[0][0]
for i in range(336):
if schedule2[i] == schedule[i] and int(schedule[i]):
lyst.append((f, i))
return lyst
except Exception as e:
print(e)
return 0
def findoverlaps2(usernames):
'''find scheduling overlaps w all friends of a user
input: username
output: [timeindex, ...]
'''
try:
con = sqlite3.connect('mydatabase.db')
cursorObj = con.cursor()
schedules = []
for u in usernames:
cursorObj.execute(
"SELECT schedule FROM users where username = '" + u + "'")
schedules.append(cursorObj.fetchall()[0][0])
lyst = []
for i in range(336):
if '0' not in [schedule[i] for schedule in schedules]:
lyst.append(i)
return lyst
except Exception as e:
print(e)
return 0
def creatependingmeeting(usernames, timeindex):
'''
input: list of usernames, and time index
output: 1 (success) or 0 (failure)
'''
try:
time = "0" * int(timeindex) + "1" + "0" * (336-int(timeindex))
con = sqlite3.connect('mydatabase.db')
cursorObj = con.cursor()
stryng = ",".join(usernames)
stryng2 = "0"*len(usernames)
cursorObj.execute(
"INSERT INTO meet (users, time, messages, confirmed) VALUES('" + stryng + "','" + time + "','','" + stryng2 + "')")
con.commit()
cursorObj.execute(
"SELECT last_insert_rowid()")
id = cursorObj.fetchall()[0][0]
for u in usernames:
cursorObj.execute(
"SELECT meetings FROM users where username = '" + u + "'")
meeting = cursorObj.fetchall()[0][0] + "," + str(id)
cursorObj.execute("UPDATE users SET meetings = '" +
meeting + "' where username = '" + u + "'")
con.commit()
con.close()
return 1
except Error as e:
print(e)
return 0
def confirmmeeting(username, id):
'''
sets meeting as confirmed
input: username, meeting ID
'''
try:
con = sqlite3.connect('mydatabase.db')
cursorObj = con.cursor()
cursorObj.execute(
"SELECT users FROM meet where id = " + str(id))
users = cursorObj.fetchall()[0][0].split(",")
cursorObj.execute(
"SELECT confirmed FROM meet where id = " + str(id))
confirmed = cursorObj.fetchall()[0][0]
newstring = ""
for i in range(len(users)):
if users[i] == username:
newstring += "1"
else:
newstring += confirmed[i]
cursorObj.execute(
"UPDATE meet SET confirmed = '" + newstring + "' where id = " + str(id))
con.commit()
con.close()
return 1
except Exception as e:
print(e)
return 0
def cancelmeeting(id):
'''
delete meeting from db
input: meeting ID
'''
try:
con = sqlite3.connect('mydatabase.db')
cursorObj = con.cursor()
cursorObj.execute(
"DELETE FROM meet where id = " + str(id))
con.commit()
con.close()
return 1
except Exception as e:
print(e)
return 0
def addmeetingmsg(id, username, message):
try:
cursorObj.execute(
"SELECT messages FROM meet where id =" + id + "'")
messages = cursorObj.fetchall()[0][0]+","+username+":"+message
con.commit()
con.close()
except Exception as e:
print(e)
return 0
def getmeetingmsg(id):
try:
con = sqlite3.connect('mydatabase.db')
cursorObj = con.cursor()
cursorObj.execute(
"SELECT messages FROM meet where id =" + id)
messages = cursorObj.fetchall()[0][0]+","+username+":"+message
return [i.split(":") for i in messages.split(",")]
con.close()
except Exception as e:
print(e)
return 0
def getpendingmeeting(username):
try:
con = sqlite3.connect('mydatabase.db')
cursorObj = con.cursor()
meetings = []
cursorObj.execute(
"SELECT meetings FROM users where username ='" + username + "'")
a = cursorObj.fetchall()[0][0]
for id in a.split(",")[1:]:
cursorObj.execute(
"SELECT * FROM meet where id = " + id)
ans = cursorObj.fetchall()
if ans:
meetings.append(ans[0])
final = []
print(meetings)
for meeting in meetings:
if meeting[4] == 0:
final.append([meeting[0], meeting[1].split(","), meeting[2]])
return final
except Error as e:
print(e)
return 0
def getconfirmedmeeting(username):
try:
con = sqlite3.connect('mydatabase.db')
cursorObj = con.cursor()
meetings = []
cursorObj.execute(
"SELECT meetings FROM users where username ='" + username + "'")
a = cursorObj.fetchall()[0][0]
for id in a.split(",")[1:]:
cursorObj.execute(
"SELECT * FROM meet where id =" + id)
ans = cursorObj.fetchall()
if ans:
meetings.append(ans[0])
final = []
for meeting in meetings:
if meeting[4] == 0:
final.append([meeting[0], meeting[1].split(","), meeting[2]])
return final
except Error as e:
print(e)
return 0
if __name__ == "__main__":
testallfunctions()