This repository has been archived by the owner on Jul 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdb_utils.py
494 lines (422 loc) · 15.1 KB
/
db_utils.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
# pylint: disable=no-member
# pylint can't handle db.session
# pylint: disable=W0703
# W0703 -- too general exception -- don't really care
""" Fuctions for extracting data from database """
from flask_login import current_user
from models import Account, Ad, Channel, Offers, Responses, db
def get_all_accounts():
"""Returns all accounts stored in database"""
accounts = Account.query.all()
account_list = []
for i in accounts:
account_list.append(
{
"id": i.id,
"username": i.username,
"password": i.password,
"email": i.email,
"channel_owner": i.channel_owner,
}
)
return account_list
def create_ad(title, topics="", text="", reward=0, show_in_list=True):
"""Creates new ad"""
# there is an error here, current_user.id arg prolly should not be among the args
new_ad = Ad(current_user.id, title, topics, text, reward, show_in_list)
db.session.add(new_ad)
db.session.commit()
return does_ad_exist(title)
def create_offer(creator_id, channel_id, owner_id , reward, message=""):
"""Creates new ad"""
# there is an error here, current_user.id arg prolly should not be among the args
new_offer = Offers(creator_id, channel_id, owner_id , reward, message)
db.session.add(new_offer)
db.session.commit()
return does_offer_exist(new_offer.id)
def create_response(creator_id, ad_id, owner_id , accepted, message=""):
"""Creates new ad"""
# there is an error here, current_user.id arg prolly should not be among the args
new_response = Responses(creator_id, ad_id, owner_id , accepted, message)
db.session.add(new_response)
db.session.commit()
return does_response_exist(new_response.id)
def does_offer_exist(offer_id):
"""Check if the ad with the given title exists in the database"""
offer = Offers.query.filter_by(id=offer_id).first()
return offer is not None
def does_response_exist(response_id):
"""Check if the ad with the given title exists in the database"""
response = Responses.query.filter_by(id=response_id).first()
return response is not None
def does_ad_exist(ad_title):
"""Check if the ad with the given title exists in the database"""
advertisement = Ad.query.filter_by(title=ad_title).first()
return advertisement is not None
def create_channel(
channel_name, topics, preferred_reward, subscribers=0, show_channel=True
):
"""Creates channel based on given args"""
new_channel = Channel(
current_user.id,
show_channel,
channel_name,
subscribers,
topics,
preferred_reward,
)
db.session.add(new_channel)
db.session.commit()
return does_channel_exist(channel_name)
def does_channel_exist(channelname):
"""Check if the channel with the given name exists in the database"""
channel = Channel.query.filter_by(channel_name=channelname).first()
return channel is not None
def map_usernames(raw_accounts):
"""Create dictionary mapping accounts` ids and usernames"""
accounts = {}
for account in raw_accounts:
accounts.update({account.id: account.username})
return accounts
def get_channels(args):
"""Return ads data filtered according to the query"""
if args.get("for") == "channelsPage":
# return channels for channels page
channels = Channel.query.filter_by(show_channel=True).all()
accounts = map_usernames(Account.query.all())
channels_data = []
for channel in channels:
try:
channel.topics = channel.topics.split(",")
channels_data.append(
{
"id": channel.id,
"ownerName": accounts[channel.owner_id],
"channelName": channel.channel_name,
"subscribers": channel.subscribers,
"topics": channel.topics,
"preferredReward": channel.preferred_reward,
}
)
except Exception:
continue
if args.get("id") is not None:
searched_id = int(args.get("id"))
channels_data = list(
filter(lambda channel: channel["id"] == searched_id, channels_data)
)
if args.get("owner") is not None:
searched_owner = args.get("owner")
channels_data = list(
filter(
lambda channel: searched_owner in channel["ownerName"],
channels_data,
)
)
if args.get("name") is not None:
searched_name = args.get("name")
channels_data = list(
filter(
lambda channel: searched_name in channel["channelName"],
channels_data,
)
)
if args.get("subs") is not None:
min_subs = int(args.get("subs"))
channels_data = list(
filter(
lambda channel: channel["subscribers"] >= min_subs,
channels_data,
)
)
if args.get("topics") is not None:
topics = args.get("topics")
channels_data = list(
filter(
lambda channel: topics in channel["topics"],
channels_data,
)
)
if args.get("reward") is not None:
max_reward = int(args.get("reward"))
channels_data = list(
filter(
lambda channel: channel["preferredReward"] <= max_reward,
channels_data,
)
)
for channel in channels_data:
channel["topics"] = (", ").join(channel["topics"])
return channels_data
return None
def get_all_channels():
"""Returns JSON of all channels on site"""
channels = Channel.query.all()
channel_list = []
for i in channels:
channel_list.append(
{
"owner_id": i.owner_id,
"show_channel": i.show_channel,
"channel_name": i.channel_name,
"subscribers": i.subscribers,
"topics": i.topics,
"preferred_reward": i.preferred_reward,
}
)
return channel_list
def get_channels_by_topic(topic):
"""Returns channels with given topic"""
channels = Channel.query.all()
channel_list = []
for i in channels:
topic_list = i.topics.split(
","
) ## assumes topics are seperated by a single comment(no spaces) e.g. "Tech,Fashion,Misc"
if topic in topic_list:
channel_list.append(
{
"owner_id": i.owner_id,
"show_channel": i.show_channel,
"channel_name": i.channel_name,
"subscribers": i.subscribers,
"topics": i.topics,
"preferred_reward": i.preferred_reward,
}
)
return channel_list
def get_channels_by_sub_count(
min_sub_count,
):
"""returns all channels with subscriber count above or equal to a minimum subscriber count"""
channels = Channel.query.all()
channel_list = []
for i in channels:
channel_sub_count = (
i.subscribers
) ## assumes topics are seperated by a single comment(no spaces) e.g. "Tech,Fashion,Misc"
if channel_sub_count >= min_sub_count:
channel_list.append(
{
"owner_id": i.owner_id,
"show_channel": i.show_channel,
"channel_name": i.channel_name,
"subscribers": i.subscribers,
"topics": i.topics,
"preferred_reward": i.preferred_reward,
}
)
return channel_list
def get_channels_by_owner_username(ownername):
"""returns all channels owned by user with the given username"""
user = Account.query.filter_by(username=ownername).first()
channels = Channel.query.filter_by(owner_id=user.id).all()
channel_list = []
for i in channels:
channel_list.append(
{
"owner_id": i.owner_id,
"show_channel": i.show_channel,
"channel_name": i.channel_name,
"subscribers": i.subscribers,
"topics": i.topics,
"preferred_reward": i.preferred_reward,
}
)
return channel_list
def get_channels_by_owner_email(owner_email):
"""returns all channels owned by user with the given email"""
user = Account.query.filter_by(username=owner_email).first()
channels = Channel.query.filter_by(owner_id=user.id).all()
channel_list = []
for i in channels:
channel_list.append(
{
"owner_id": i.owner_id,
"show_channel": i.show_channel,
"channel_name": i.channel_name,
"subscribers": i.subscribers,
"topics": i.topics,
"preferred_reward": i.preferred_reward,
}
)
return channel_list
def get_ads(args):
"""Return ads data filtered according to the query"""
ads_data = []
if args.get("for") == "adsPage":
ads = Ad.query.filter_by(show_in_list=True).all()
accounts = map_usernames(Account.query.all())
for advertisement in ads:
try:
advertisement.topics = advertisement.topics.split(",")
ads_data.append(
{
"id": advertisement.id,
"creatorName": accounts[advertisement.creator_id],
"title": advertisement.title,
"topics": advertisement.topics,
"text": advertisement.text,
"reward": advertisement.reward,
}
)
except Exception:
continue
if args.get("id") is not None:
searched_id = int(args.get("id"))
ads_data = list(
filter(
lambda advertisement: advertisement["id"] == searched_id, ads_data
)
)
if args.get("creator") is not None:
searched_creator = args.get("creator")
ads_data = list(
filter(
lambda advertisement: searched_creator
in advertisement["creatorName"],
ads_data,
)
)
if args.get("title") is not None:
searched_title = args.get("title")
ads_data = list(
filter(
lambda advertisement: searched_title in advertisement["title"],
ads_data,
)
)
if args.get("topics") is not None:
searched_topics = args.get("topics")
ads_data = list(
filter(
lambda advertisement: searched_topics in advertisement["topics"],
ads_data,
)
)
if args.get("text") is not None:
searched_text = args.get("text")
ads_data = list(
filter(
lambda advertisement: searched_text in advertisement["text"],
ads_data,
)
)
if args.get("reward") is not None:
max_reward = int(args.get("reward"))
ads_data = list(
filter(
lambda advertisement: advertisement["reward"] <= max_reward,
ads_data,
)
)
for advertisement in ads_data:
advertisement["topics"] = (", ").join(advertisement["topics"])
return ads_data
return ads_data
def get_all_ads():
"""Return all ads data"""
ads = Ad.query.all()
ads_list = []
for i in ads:
ads_list.append(
{
"creator_id": i.creator_id,
"title": i.title,
"topics": i.topics,
"text": i.text,
"reward": i.reward,
"show_in_list": i.show_in_list,
}
)
return ads_list
def get_ads_by_topic(topic):
"""Return ads with given topics"""
ads = Ad.query.all()
ads_list = []
for i in ads:
topic_list = i.topics.split(
","
) ## assumes topics are seperated by a single comment(no spaces) e.g. "Tech,Fashion,Misc"
if topic in topic_list:
ads_list.append(
{
"creator_id": i.creator_id,
"title": i.title,
"topics": i.topics,
"text": i.text,
"reward": i.reward,
"show_in_list": i.show_in_list,
}
)
return ads_list
def get_ads_by_owner_username(ownername):
"""Returns ads of the user with given username"""
user = Account.query.filter_by(username=ownername).first()
ads = Ad.query.filter_by(creator_id=user.id).all()
ads_list = []
for i in ads:
ads_list.append(
{
"creator_id": i.creator_id,
"title": i.title,
"topics": i.topics,
"text": i.text,
"reward": i.reward,
"show_in_list": i.show_in_list,
}
)
return ads_list
def get_ads_by_owner_email(owner_email):
"""Return ads of the user with given email"""
user = Account.query.filter_by(username=owner_email).first()
ads = Ad.query.filter_by(creator_id=user.id).all()
ads_list = []
for i in ads:
ads_list.append(
{
"creator_id": i.creator_id,
"title": i.title,
"topics": i.topics,
"text": i.text,
"reward": i.reward,
"show_in_list": i.show_in_list,
}
)
return ads_list
def delete_all_ads():
"""Deletes all ads"""
rows_deleted = Ad.query.delete()
db.session.commit()
return rows_deleted
def delete_all_channels():
"""Deletes all channels"""
rows_deleted = Channel.query.delete()
db.session.commit()
return rows_deleted
def delete_all_account():
"""Deletes all accounts"""
rows_deleted = Account.query.delete()
db.session.commit()
return rows_deleted
def delete_ad(ad_id):
"""Deletes the add with given id"""
if ad_id is None:
return -1
rows_deleted = Ad.query.filter_by(id=ad_id).delete()
db.session.commit()
return rows_deleted
def delete_channel(channel_id):
"""Deletes the channel with given id"""
if channel_id is None:
return -1
rows_deleted = Channel.query.filter_by(id=channel_id).delete()
db.session.commit()
return rows_deleted
def delete_account(account_id):
"""Deletes the account with given id"""
if account_id is None:
return -1
rows_deleted = Account.query.filter_by(id=account_id).delete()
db.session.commit()
return rows_deleted