-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdb.py
More file actions
643 lines (618 loc) · 21.2 KB
/
db.py
File metadata and controls
643 lines (618 loc) · 21.2 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
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
from psycopg2.pool import ThreadedConnectionPool
from psycopg2.extras import DictCursor
import base64
def init_pool(dsn, minconn=1, maxconn=100):
return ThreadedConnectionPool(minconn, maxconn, dsn=dsn, sslmode="require")
def upsert_user(pool, user_id, email, picture):
conn = pool.getconn()
try:
with conn.cursor(cursor_factory=DictCursor) as cur:
cur.execute(
"""
INSERT INTO Users (user_id, email, picture)
VALUES (%s, %s, %s)
ON CONFLICT (user_id) DO UPDATE
SET email = EXCLUDED.email
""",
(user_id, email, picture),
)
conn.commit()
finally:
pool.putconn(conn)
def check_profile_complete(pool, user_id):
conn = pool.getconn()
try:
with conn.cursor(cursor_factory=DictCursor) as cur:
cur.execute(
"SELECT display_name, public FROM Users WHERE user_id = %s",
(user_id,)
)
result = cur.fetchone()
if result and result['display_name']:
return {
'profile_complete': True,
'display_name': result['display_name'],
'public': result['public']
}
else:
return {
'profile_complete': False
}
finally:
pool.putconn(conn)
def fetch_posts(pool, viewer_id=None):
conn = pool.getconn()
try:
with conn.cursor(cursor_factory=DictCursor) as cur:
cur.execute(
"""
SELECT
p.post_id,
p.caption,
p.user_id,
u.display_name,
ST_X(p.location) AS longitude,
ST_Y(p.location) AS latitude,
encode(ST_AsEWKB(p.location), 'hex') AS location_key,
m.thumbnail_data
FROM Posts p
JOIN Users u ON p.user_id = u.user_id
LEFT JOIN Media m ON m.post_id = p.post_id
WHERE p.location IS NOT NULL
AND (
u.public = TRUE
OR %s = p.user_id
OR EXISTS (
SELECT 1
FROM Followers f
WHERE f.followee_id = p.user_id
AND f.follower_id = %s
AND f.is_accepted = TRUE
)
)
""",
(viewer_id, viewer_id),
)
rows = cur.fetchall()
return [
{
"post_id": r["post_id"],
"caption": r["caption"],
"user_id": r["user_id"],
"display_name": r["display_name"],
"latitude": r["latitude"],
"longitude": r["longitude"],
"location_key": r["location_key"],
"thumbnail": base64.b64encode(r["thumbnail_data"]).decode("utf-8") if r["thumbnail_data"] else None,
}
for r in rows
]
finally:
pool.putconn(conn)
def fetch_posts_by_username(pool, username, viewer_id=None):
conn = pool.getconn()
try:
with conn.cursor(cursor_factory=DictCursor) as cur:
cur.execute(
"""
SELECT
p.post_id,
p.caption,
p.user_id,
u.display_name,
ST_X(p.location) AS longitude,
ST_Y(p.location) AS latitude
FROM Posts p
JOIN Users u ON p.user_id = u.user_id
WHERE p.location IS NOT NULL
AND u.display_name = %s
AND (
u.public = TRUE
OR %s = p.user_id
OR EXISTS (
SELECT 1
FROM Followers f
WHERE f.followee_id = p.user_id
AND f.follower_id = %s
AND f.is_accepted = TRUE
)
)
""",
(username, viewer_id, viewer_id),
)
rows = cur.fetchall()
return [
{
"post_id": r["post_id"],
"caption": r["caption"],
"user_id": r["user_id"],
"display_name": r["display_name"],
"latitude": r["latitude"],
"longitude": r["longitude"],
}
for r in rows
]
finally:
pool.putconn(conn)
def insert_post_with_media(pool, post_id, caption, user_id, lng, lat, media_id, file_name, file_bytes, thumbnail_bytes):
conn = pool.getconn()
try:
with conn.cursor(cursor_factory=DictCursor) as cur:
cur.execute(
"""
INSERT INTO Posts (post_id, caption, user_id, location)
VALUES (%s, %s, %s, ST_SetSRID(ST_MakePoint(%s,%s),4326))
""",
(post_id, caption, user_id, lng, lat),
)
cur.execute(
"""
INSERT INTO Media (media_id, file_name, file_data, thumbnail_data, post_id)
VALUES (%s, %s, %s, %s, %s)
""",
(media_id, file_name, file_bytes, thumbnail_bytes, post_id),
)
conn.commit()
finally:
pool.putconn(conn)
def fetch_single_post(pool, post_id, viewer_id=None):
conn = pool.getconn()
try:
with conn.cursor(cursor_factory=DictCursor) as cur:
cur.execute(
"""
SELECT p.post_id,
p.caption,
p.user_id,
u.display_name,
u.picture,
ST_X(p.location) AS longitude,
ST_Y(p.location) AS latitude,
m.file_name,
m.file_data
FROM Posts p
JOIN Users u ON p.user_id = u.user_id
LEFT JOIN Media m ON m.post_id = p.post_id
WHERE p.post_id = %s
AND (
u.public = TRUE
OR %s = p.user_id
OR EXISTS (
SELECT 1
FROM Followers f
WHERE f.followee_id = p.user_id
AND f.follower_id = %s
AND f.is_accepted = TRUE
)
)
""",
(post_id, viewer_id, viewer_id),
)
row = cur.fetchone()
if not row:
return None
return {
"post_id": row["post_id"],
"caption": row["caption"],
"user_id": row["user_id"],
"display_name": row["display_name"],
"picture": row["picture"],
"latitude": row["latitude"],
"longitude": row["longitude"],
"image_data": base64.b64encode(row["file_data"]).decode("utf-8")
}
finally:
pool.putconn(conn)
def insert_comment(pool, comment_id, comment, post_id, user_id):
conn = pool.getconn()
try:
with conn.cursor(cursor_factory=DictCursor) as cur:
cur.execute(
"""
INSERT INTO Comments (comment_id, comment, post_id, user_id)
VALUES (%s, %s, %s, %s)
""",
(comment_id, comment, post_id, user_id),
)
conn.commit()
finally:
pool.putconn(conn)
def fetch_comments(pool, post_id):
conn = pool.getconn()
try:
with conn.cursor(cursor_factory=DictCursor) as cur:
cur.execute(
"""
SELECT c.comment_id,
c.comment,
c.created_at,
u.display_name,
u.picture,
c.user_id
FROM Comments c
JOIN Users u ON u.user_id = c.user_id
WHERE c.post_id = %s
ORDER BY c.created_at ASC
""",
(post_id,)
)
rows = cur.fetchall()
return [
{
"comment_id": r["comment_id"],
"comment": r["comment"],
"display_name": r["display_name"],
"picture": r["picture"],
"user_id": r["user_id"],
}
for r in rows
]
finally:
pool.putconn(conn)
def fetch_users(pool, name, exact_match=False):
conn = pool.getconn()
try:
with conn.cursor(cursor_factory=DictCursor) as cur:
if (exact_match):
cur.execute(
"""
SELECT user_id, display_name, picture
FROM users WHERE LOWER(display_name) = LOWER(%s)
""",
(name,)
)
else:
cur.execute(
"""
SELECT user_id, display_name, picture
FROM users WHERE display_name ILIKE %s
""",
(f"%{name}%",)
)
rows = cur.fetchall()
return [dict(row) for row in rows]
finally:
pool.putconn(conn)
def fetch_user_settings(pool, user_id):
conn = pool.getconn()
try:
with conn.cursor(cursor_factory=DictCursor) as cur:
cur.execute(
"""
SELECT u.display_name, u.public
FROM Users u
WHERE u.user_id = %s
""",
(user_id,)
)
row = cur.fetchone()
if not row:
return None
return {
"display_name": row["display_name"],
"public": row["public"],
}
finally:
pool.putconn(conn)
def update_profile_settings(pool, user_id, display_name, privacy_settings):
conn = pool.getconn()
try:
with conn.cursor(cursor_factory=DictCursor) as cur:
cur.execute(
"""
UPDATE Users
SET display_name = %s, public = %s
WHERE user_id = %s
""",
(display_name, privacy_settings, user_id),
)
conn.commit()
finally:
pool.putconn(conn)
def fetch_nearest_posts(pool, post_id, viewer_id=None, k=5):
conn = pool.getconn()
try:
with conn.cursor(cursor_factory=DictCursor) as cur:
cur.execute(
"""
SELECT
p2.post_id,
p2.caption,
u.display_name,
m.thumbnail_data
FROM Posts p1
JOIN Posts p2 ON p2.post_id <> p1.post_id
JOIN Users u ON u.user_id = p2.user_id
LEFT JOIN Media m ON m.post_id = p2.post_id
WHERE p1.post_id = %s
AND p1.location IS NOT NULL
AND p2.location IS NOT NULL
AND (
u.public = TRUE
OR %s = p2.user_id
OR EXISTS (
SELECT 1
FROM Followers f
WHERE f.followee_id = p2.user_id
AND f.follower_id = %s
AND f.is_accepted = TRUE
)
)
ORDER BY p2.location <-> p1.location
LIMIT %s
""",
(post_id, viewer_id, viewer_id, k),
)
rows = cur.fetchall()
return [
{
"post_id": r["post_id"],
"caption": r["caption"],
"display_name": r["display_name"],
"image_data": base64.b64encode(r["thumbnail_data"]).decode("utf-8") if r["thumbnail_data"] else None,
}
for r in rows
]
finally:
pool.putconn(conn)
def follow_request(pool, follower_id, followee_id):
conn = pool.getconn()
try:
with conn.cursor(cursor_factory=DictCursor) as cur:
cur.execute(
"""
INSERT INTO followers (follower_id, followee_id, is_accepted)
VALUES (%s, %s, FALSE) ON CONFLICT (follower_id, followee_id) DO NOTHING
""",
(follower_id, followee_id)
)
conn.commit()
finally:
pool.putconn(conn)
def fetch_followers(pool, user_id):
conn = pool.getconn()
try:
with conn.cursor(cursor_factory=DictCursor) as cur:
cur.execute(
"""
SELECT
f.follower_id,
u1.display_name AS follower_name,
u1.picture AS follower_picture,
u1.email AS follower_email,
f.followee_id,
u2.display_name AS followee_name,
f.is_accepted,
f.created_at
FROM followers f
LEFT JOIN users u1 ON f.follower_id = u1.user_id
LEFT JOIN users u2 ON f.followee_id = u2.user_id
WHERE %s IN (f.followee_id, f.follower_id)
""",
(user_id,)
)
rows = cur.fetchall()
result = {
"following_to": [],
"followed_by": [],
}
for row in rows:
if row['follower_id'] == user_id:
result["following_to"].append({
"followee_id": row['followee_id'],
"followee_name": row['followee_name'],
"is_accepted": row['is_accepted'],
"created_at": row['created_at'].strftime("%b %d, %Y")
})
elif row['followee_id'] == user_id:
result["followed_by"].append({
"follower_picture": row['follower_picture'],
"follower_email": row['follower_email'],
"follower_id": row['follower_id'],
"follower_name": row['follower_name'],
"is_accepted": row['is_accepted'],
"created_at": row['created_at'].strftime("%b %d, %Y")
})
return result
finally:
pool.putconn(conn)
def handle_follow_request(pool, follower_id , followee_id, accept=False):
conn = pool.getconn()
try:
with conn.cursor(cursor_factory=DictCursor) as cur:
if accept == True:
cur.execute(
"""
UPDATE followers
SET is_accepted = TRUE
WHERE follower_id = %s AND followee_id = %s
""",
(follower_id, followee_id)
)
elif accept == False:
cur.execute(
"""
DELETE FROM followers
WHERE follower_id = %s AND followee_id = %s
""",
(follower_id, followee_id)
)
conn.commit()
finally:
pool.putconn(conn)
def fetch_posts_by_user_id(pool, user_id, viewer_id=None):
conn = pool.getconn()
try:
with conn.cursor(cursor_factory=DictCursor) as cur:
cur.execute(
"""
SELECT
p.post_id,
p.caption,
p.user_id,
u.display_name,
ST_X(p.location) AS longitude,
ST_Y(p.location) AS latitude,
encode(ST_AsEWKB(p.location), 'hex') AS location_key
FROM Posts p
JOIN Users u ON p.user_id = u.user_id
WHERE p.location IS NOT NULL
AND u.user_id = %s
AND (
u.public = TRUE
OR %s = u.user_id
OR EXISTS (
SELECT 1
FROM Followers f
WHERE f.followee_id = u.user_id
AND f.follower_id = %s
AND f.is_accepted = TRUE
)
)
""",
(user_id, viewer_id, viewer_id),
)
rows = cur.fetchall()
return [
{
"post_id": r["post_id"],
"caption": r["caption"],
"user_id": r["user_id"],
"display_name": r["display_name"],
"latitude": r["latitude"],
"longitude": r["longitude"],
"location_key": r["location_key"],
}
for r in rows
]
finally:
pool.putconn(conn)
def fetch_user_by_id(pool, user_id):
conn = pool.getconn()
try:
with conn.cursor(cursor_factory=DictCursor) as cur:
cur.execute(
"""
SELECT user_id, email, picture, display_name, public
FROM users
WHERE user_id = %s
""",
(user_id,)
)
row = cur.fetchone()
return dict(row) if row else None
finally:
pool.putconn(conn)
def fetch_user_profile_image_by_user_id(pool, user_id):
conn = pool.getconn()
try:
with conn.cursor(cursor_factory=DictCursor) as cur:
cur.execute(
"""
SELECT picture
FROM Users
WHERE user_id = %s
""",
(user_id,)
)
row = cur.fetchone()
if not row:
return None
return {"picture": row["picture"]}
finally:
pool.putconn(conn)
def fetch_users_post_images_by_user_id(pool, user_id, viewer_id=None):
conn = pool.getconn()
try:
with conn.cursor(cursor_factory=DictCursor) as cur:
cur.execute(
"""
SELECT p.post_id,
m.thumbnail_data
FROM Users u
JOIN Posts p ON p.user_id = u.user_id
LEFT JOIN Media m ON m.post_id = p.post_id
WHERE u.user_id = %s
AND (
u.public = TRUE
OR %s = u.user_id
OR EXISTS (
SELECT 1
FROM Followers f
WHERE f.followee_id = u.user_id
AND f.follower_id = %s
AND f.is_accepted = TRUE
)
)
ORDER BY p.created_at DESC
""",
(user_id, viewer_id, viewer_id),
)
rows = cur.fetchall()
return [
{
"post_id": r["post_id"],
"image_data": base64.b64encode(r["thumbnail_data"]).decode("utf-8")
}
for r in rows
]
finally:
pool.putconn(conn)
def update_post(pool, user_id, post_id, caption, lng, lat):
conn = pool.getconn()
try:
with conn.cursor(cursor_factory=DictCursor) as cur:
cur.execute(
"""
UPDATE Posts
SET caption = %s,
location = ST_SetSRID(ST_MakePoint(%s, %s), 4326)
WHERE post_id = %s AND user_id = %s
""",
(caption, lng, lat, post_id, user_id),
)
conn.commit()
finally:
pool.putconn(conn)
def delete_post(pool, user_id, post_id):
conn = pool.getconn()
try:
with conn.cursor() as cur:
cur.execute(
"""
DELETE FROM Posts
WHERE post_id = %s AND user_id = %s
""",
(post_id, user_id),
)
conn.commit()
finally:
pool.putconn(conn)
def can_view_user(pool, target_user_id, viewer_id):
conn = pool.getconn()
try:
with conn.cursor(cursor_factory=DictCursor) as cur:
cur.execute(
"""
SELECT
(u.public = TRUE)
OR (%s = u.user_id)
OR EXISTS (
SELECT 1
FROM Followers f
WHERE f.followee_id = u.user_id
AND f.follower_id = %s
AND f.is_accepted = TRUE
) AS allowed
FROM Users u
WHERE u.user_id = %s
""",
(viewer_id, viewer_id, target_user_id),
)
row = cur.fetchone()
if row:
return bool(row["allowed"])
else:
return False
finally:
pool.putconn(conn)