forked from njl/progcom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
logic.py
1125 lines (970 loc) · 37.8 KB
/
logic.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
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
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
from collections import namedtuple, defaultdict, Counter
import os
import random
import json
import logging
import datetime
import time
import re
import pandas as pd
import itsdangerous
import sendgrid
import bcrypt
from sqlalchemy import create_engine
from sqlalchemy.exc import IntegrityError
from psycopg2.extras import Json
from jinja2 import Environment, FileSystemLoader
from gensim import corpora, models, similarities
from gensim.similarities.docsim import MatrixSimilarity
"""
Log It
"""
logger = logging.getLogger(__name__)
logger.setLevel(logging.INFO)
logging.basicConfig()
def l(key, **data):
data['key'] = key
data['when'] = datetime.datetime.now().isoformat()+'Z'
logger.info(json.dumps(data))
"""
Some DB wrapper stuff
"""
_e = create_engine(os.environ['PSQL_CONNECTION_STRING'])
__TUPLE_CACHE = {}
def build_tuple(keys):
keys = tuple(keys)
if keys not in __TUPLE_CACHE:
name = 'T{}'.format(len(__TUPLE_CACHE))
__TUPLE_CACHE[keys] = namedtuple(name, keys)
return __TUPLE_CACHE[keys]
def execute(*args, **kwargs):
_e.execute(*args, **kwargs)
def fetchone(*args, **kwargs):
result = _e.execute(*args, **kwargs)
T = build_tuple(result.keys())
result = result.fetchone()
if not result:
return None
return T(*result)
def fetchall(*args, **kwargs):
result = _e.execute(*args, **kwargs)
T = build_tuple(result.keys())
rv = []
for row in result.fetchall():
rv.append(T(*row))
return rv
def scalar(*args, **kwargs):
return _e.scalar(*args, **kwargs)
"""
User management
"""
_SALT_ROUNDS=12
def _mangle_pw(pw, salt=None):
if not salt:
salt = bcrypt.gensalt(rounds=_SALT_ROUNDS)
else:
salt = salt.encode('utf-8')
return bcrypt.hashpw(pw.encode('utf-8'), salt)
def add_user(email, display_name, pw):
q = '''INSERT INTO users (email, display_name, pw)
VALUES (%s, %s, %s) RETURNING id'''
try:
id = scalar(q, email, display_name, _mangle_pw(pw))
l('add_user', email=email, display_name=display_name, uid=id)
except IntegrityError:
l('add_user_dupe', email=email, display_name=display_name)
return -1
return id
def approve_user(id):
q = 'UPDATE users SET approved_on=now() WHERE id=%s'
l('approve_user', uid=id)
return execute(q, id)
def check_pw(email_address, pw):
q = 'SELECT id, pw from users WHERE lower(email) = lower(%s)'
result = fetchone(q, email_address)
if not result:
l('check_pw_bad_email', email=email_address)
return None
if _mangle_pw(pw, result.pw) == result.pw:
l('check_pw_ok', email=email_address)
return result.id
l('check_pw_bad', email=email_address)
return None
def change_pw(id, pw):
q = 'UPDATE users SET pw=%s WHERE id=%s RETURNING id'
l('change_pw', uid=id)
return bool(scalar(q, _mangle_pw(pw), id))
def get_user(id):
if not id:
return None
q = '''SELECT id, email, display_name, approved_on IS NOT NULL AS approved,
EXISTS (SELECT 1 FROM unread WHERE voter=%s limit 1)
AS unread,
EXISTS (SELECT 1 FROM votes
INNER JOIN proposals ON (votes.proposal = proposals.id)
WHERE votes.voter=%s
AND proposals.updated > votes.updated_on)
AS revisit
FROM users WHERE id=%s'''
return fetchone(q, id, id, id)
def list_users():
q = '''SELECT id, email, display_name, created_on, approved_on,
(SELECT COUNT(*) FROM votes WHERE users.id=votes.voter)
AS votes,
(SELECT MAX(updated_on) FROM votes WHERE users.id=votes.voter)
AS last_voted,
(SELECT COUNT(*) FROM proposals
WHERE lower(users.email) = ANY(author_emails))
AS proposals_made
FROM users
ORDER BY id'''
return fetchall(q)
"""
Proposal Management
"""
def _clean_proposal(raw):
authorsT = build_tuple(('name', 'email'))
raw['authors'] = tuple(authorsT(name, email)
for name, email in zip(raw['author_names'],
raw['author_emails']))
del raw['author_names']
del raw['author_emails']
keys, values = zip(*raw.items())
T = build_tuple(keys)
return T(*values)
def get_proposal(id):
q = 'SELECT * FROM proposals WHERE id=%s'
raw = fetchone(q, id)
if not raw:
return None
return _clean_proposal(raw._asdict())
def add_proposal(data, upsert = True):
data = data.copy()
emails, names = zip(*((x['email'], x['name']) for x in data['authors']))
del data['authors']
keys = ('id', 'description', 'duration', 'audience',
'abstract', 'recording_release', 'notes', 'title', 'outline',)
cleaned_data = {k:data[k] for k in keys}
"""
print 'Missing:', set(keys) - set(data.keys())
print 'Extra:', set(data.keys()) - set(keys)
"""
q = 'SELECT * FROM proposals WHERE id=%s'
proposal = fetchone(q, data['id'])
if not proposal:
q = 'INSERT INTO proposals (id, author_emails, author_names, data, data_history) VALUES (%s, %s, %s, %s, %s)'
cloned_data = cleaned_data.copy()
cloned_data['when'] = datetime.datetime.now().isoformat()
execute(q, (data['id'], list(emails), list(names), Json(cleaned_data), Json([cloned_data])))
return data['id']
if proposal.data == cleaned_data:
return None
if not upsert:
return data['id']
q = 'UPDATE proposals SET data=%s, data_history=%s, updated=now() WHERE id=%s'
new_data = cleaned_data.copy()
new_data['when'] = datetime.datetime.now().isoformat()
data_history = proposal.data_history
data_history.insert(0, new_data)
execute(q, (Json(cleaned_data), Json(data_history), data['id']))
return data['id']
def get_vote_percentage(email, id):
q = '''SELECT COUNT(*) FROM proposals WHERE NOT withdrawn
AND NOT (lower(%s) = ANY(author_emails) )'''
total = scalar(q, email)
q = 'SELECT COUNT(*) FROM votes WHERE voter=%s'
votes = scalar(q, id)
return "%0.2f" % (100.0*votes/total)
def get_all_proposal_ids():
q = 'SELECT id FROM proposals'
return [x.id for x in fetchall(q)]
"""
Screening Voting
"""
def get_standards():
return fetchall('SELECT * FROM standards ORDER BY id')
def add_standard(s):
l('add_standard', s=s)
q = 'INSERT INTO standards (description) VALUES (%s) RETURNING id'
return scalar(q, s)
def _clean_vote(vote):
return vote._replace(scores={int(k):v for k,v in vote.scores.items()})
def vote(voter, proposal, scores, nominate=False):
l('vote', uid=voter, id=proposal, scores=scores, nominate=nominate)
if not get_user(voter).approved:
return None
if set(scores.keys()) != set(x.id for x in get_standards()):
return None
for v in scores.values():
if not 0 <= v <= 2:
return None
q = '''INSERT INTO votes (voter, proposal, scores, nominate)
VALUES (%s, %s, %s, %s) RETURNING id'''
try:
return scalar(q, voter, proposal, json.dumps(scores), nominate)
except IntegrityError as e:
pass
q = '''UPDATE votes SET scores=%s, updated_on=now(), nominate=%s
WHERE voter=%s AND proposal=%s RETURNING id'''
return scalar(q, [[json.dumps(scores), nominate, voter, proposal]])
def get_user_vote(userid, proposal):
q = '''SELECT * FROM votes WHERE
voter=%s AND proposal=%s'''
rv = fetchone(q, userid, proposal)
if not rv:
return None
return _clean_vote(rv)
def get_votes(proposal):
q = '''SELECT votes.*, users.display_name
FROM votes LEFT JOIN users ON (votes.voter=users.id)
WHERE proposal=%s'''
return [_clean_vote(v) for v in fetchall(q, proposal)]
def needs_votes(email, uid):
q = '''SELECT id, vote_count FROM proposals
WHERE NOT (lower(%s) = ANY(author_emails) )
AND NOT (%s = ANY(voters))
AND NOT withdrawn
ORDER BY vote_count ASC'''
results = fetchall(q, email, uid)
if not results:
return None
min_vote = results[0].vote_count
results = [x for x in results if x.vote_count == min_vote]
rv = random.choice(results).id
l('needs_votes', uid=uid, id=rv)
return rv
def get_my_votes(uid):
q = '''SELECT votes.*, proposals.updated > votes.updated_on AS updated,
proposals.data->>'title' as title,
proposals.updated AS proposal_updated
FROM votes INNER JOIN proposals ON (votes.proposal = proposals.id)
WHERE votes.voter=%s ORDER BY updated DESC'''
return [_clean_vote(v) for v in fetchall(q, uid)]
"""
Screening stats
"""
def _score_weight_average(v):
return int(100*sum(v)/(2.0*len(v)))
def scored_proposals():
q = '''SELECT scores, nominate, proposal, proposals.data->>'title' AS title,
proposals.accepted,
batchgroups.name as batchgroup,
batchgroups.id as batch_id
FROM votes
INNER JOIN proposals ON (votes.proposal = proposals.id)
LEFT JOIN batchgroups ON (proposals.batchgroup = batchgroups.id)'''
votes = fetchall(q)
scores = defaultdict(list)
nom_green = defaultdict(list)
greenness = defaultdict(list)
nominations = Counter()
proposals_by_id = {v.proposal:v for v in votes}
"""
titles = {v.proposal:v.title for v in votes}
batchgroups = {v.proposal:v.batchgroup for v in votes}
batch_ids = {v.proposal:v.batch_id for v in votes}
"""
for v in votes:
scores[v.proposal].extend(v.scores.values())
if v.nominate:
nom_green[v.proposal].extend(2 for _ in v.scores.values())
greenness[v.proposal].append(1.0)
else:
nom_green[v.proposal].extend(v.scores.values())
greenness[v.proposal].append(sum(1.0 for x in v.scores.values()
if x == 2)
/(1.0*len(v.scores.values())))
nominations[v.proposal] += 1 if v.nominate else 0
rv = []
for k,v in scores.items():
proposal = proposals_by_id[k]
rv.append({'id':k, 'score':_score_weight_average(v),
'nom_is_green':_score_weight_average(nom_green[k]),
'greenness':int(100*sum(greenness[k])/len(greenness[k])),
'nominations': nominations[k],
'title':proposal.title,
'batch_id': proposal.batch_id,
'batchgroup':proposal.batchgroup,
'accepted':proposal.accepted})
rv.sort(key=lambda x:-x['nom_is_green'])
for n, v in enumerate(rv):
v['delta'] = abs(v['score'] - v['nom_is_green'])
v['rank'] = n
return rv
def screening_progress():
q = '''SELECT vote_count, COUNT(vote_count) as quantity
FROM proposals GROUP BY vote_count
ORDER BY vote_count ASC'''
return fetchall(q)
def _js_time(d):
return int(time.mktime(d.timetuple()))*1000;
def get_votes_by_day():
q = '''SELECT COUNT(*) as count,
date_trunc('day', updated_on) AS day
FROM votes GROUP BY day'''
results = {x.day.date().isoformat():x.count for x in fetchall(q)}
full = pd.Series(results)
full.index = pd.DatetimeIndex(full.index)
if full.index.empty:
return [] # Empty proposal
full = full.reindex(pd.date_range(min(full.index),
max(full.index)), fill_value=0)
return [{'count':v, 'day':_js_time(k)} for k,v in full.iteritems()]
def coverage_by_age():
q = '''SELECT COUNT(*) as total,
date_trunc('week', added_on) AS week,
vote_count FROM proposals GROUP BY week, vote_count
ORDER BY vote_count ASC'''
result = defaultdict(dict)
for r in fetchall(q):
result[r.vote_count][r.week.date().isoformat()] = r.total
df = pd.DataFrame(result).fillna(0)
df.index = pd.DatetimeIndex(df.index)
result = {votes:series for votes, series in df.iteritems()}
rv = []
for key, series in result.iteritems():
rv.append({'key':key,
'values': [{'week':_js_time(k), 'votes':v}
for k,v in series.iteritems()]})
return rv
def added_last_week():
q = '''SELECT COUNT(*) AS total FROM proposals
WHERE added_on > current_date - interval '7 days' '''
return scalar(q)
def updated_last_week():
q = '''SELECT COUNT(*) AS total FROM proposals
WHERE added_on < current_date - interval '7 days'
AND updated > current_date - interval '7 days' '''
return scalar(q)
def votes_last_week():
q = '''SELECT COUNT(*) AS total FROM votes
WHERE updated_on > current_date - interval '7 days' '''
return scalar(q)
def active_discussions():
q = '''SELECT COUNT(d.id) as count, p.data->>'title' as title, p.id as id
FROM discussion as d INNER JOIN proposals AS p ON (d.proposal=p.id)
WHERE d.created > current_date - interval '7 days'
GROUP BY title, p.id
ORDER BY count DESC'''
return [x for x in fetchall(q) if x.count > 2]
def nomination_density():
q = '''SELECT count(proposal) FROM votes
WHERE nominate=TRUE GROUP BY proposal'''
rv = [x for x in Counter([x.count for x in fetchall(q)]).items() ]
rv.sort(key=lambda x:-x[0])
return rv
"""
Batch
"""
def toggle_lock_batch(id, lock):
q = 'UPDATE batchgroups SET locked=%s WHERE id=%s'
execute(q, lock, id)
def full_proposal_list(email):
q = '''SELECT p.id, p.data->>'title' AS title, bg.id as batch_id, p.accepted,
array_to_string(p.author_names, ', ') AS author_names,
COALESCE(bg.name, '') AS batchgroup,
EXISTS (SELECT 1 FROM users
WHERE users.email = ANY(p.author_emails)) as progcom_member
FROM proposals AS p
LEFT JOIN batchgroups AS bg ON (p.batchgroup = bg.id)
WHERE NOT (%s = ANY(p.author_emails))
ORDER BY p.id'''
raw = [x._asdict() for x in fetchall(q, email)]
batch = get_batch_coverage()
for proposal in raw:
if not proposal['batch_id']:
proposal['consensus'] = -1
continue
proposal['consensus'] = batch[proposal['batch_id']][proposal['id']]
return raw
def create_group(name, proposals):
q = 'INSERT INTO batchgroups (name) VALUES (%s) RETURNING id'
id = scalar(q, name)
if proposals:
q = 'UPDATE proposals SET batchgroup=%s WHERE id = ANY(%s)'
execute(q, id, proposals)
l('create_group', name=name, proposals=proposals, gid=id)
return id
def rename_batch_group(id, name):
q = 'UPDATE batchgroups SET name=%s WHERE id=%s'
execute(q, name, id)
def assign_proposal(gid, pid):
q = 'UPDATE proposals SET batchgroup=%s WHERE id = %s'
execute(q, gid, pid)
l('assign_proposal', gid=gid, pid=pid)
def vote_group(batchgroup, voter, accept):
l('vote_group', gid=batchgroup, uid=voter, accept=accept)
try:
q = '''INSERT INTO batchvotes (batchgroup, voter, accept)
VALUES (%s, %s, %s)'''
execute(q, batchgroup, voter, accept)
return
except IntegrityError as e:
pass
q = '''UPDATE batchvotes SET accept=%s, updated_on=now()
WHERE batchgroup=%s AND voter=%s'''
execute(q, [[accept, batchgroup, voter]])
def raw_list_groups():
rv = fetchall('''SELECT batchgroups.*,
(SELECT COUNT(*) FROM proposals
WHERE proposals.batchgroup = batchgroups.id) AS talk_count
FROM batchgroups
ORDER BY lower(name)''')
rv = [x._asdict() for x in rv]
coverage = get_batch_coverage()
for g in rv:
g['skip_consensus'] = coverage.get(g['id'], {}).get(None)
items = [v for k,v in coverage.get(g['id'], {}).items()
if k != None and v != 0]
g['talk_consensus'] = sorted(items, reverse=True)
return rv
def get_batch_stats():
q = 'SELECT batch, COUNT(id) FROM batchmessages GROUP BY batch'
message_count = {x.batch:x.count for x in fetchall(q)}
q = 'SELECT batchgroup, accept FROM batchvotes'
batchmap = defaultdict(Counter)
batch_voters = defaultdict(int)
no_forward = defaultdict(int)
for vote in fetchall(q):
batch_voters[vote.batchgroup] += 1
if not vote.accept:
no_forward[vote.batchgroup] +=1
for selection in vote.accept:
batchmap[vote.batchgroup][selection] += 1
q = '''SELECT batchgroup as id, COUNT(id) as proposals FROM proposals
WHERE batchgroup IS NOT NULL GROUP BY batchgroup'''
rv = [x._asdict() for x in fetchall(q)]
for group in rv:
id = group['id']
group['voters'] = batch_voters.get(id, 0)
group['msgs'] = message_count.get(id, 0)
nominated_talks = batchmap.get(id, defaultdict(int))
group['nominated_talks'] = len(nominated_talks)
group['nominations'] = sum(nominated_talks.values())
max_nominations = max(nominated_talks.values()) if nominated_talks else 0
max_nominations = max(max_nominations, no_forward.get(id, 0))
if group['voters']:
consensus = int((float(max_nominations)/group['voters'])*100)
else:
consensus = 0
group['consensus'] = consensus
return {x['id']:x for x in rv}
def list_groups(userid):
user = get_user(userid)
q = '''SELECT tg.*, tv.batchgroup IS NOT NULL AS voted,
(SELECT COUNT(*) FROM proposals
WHERE proposals.batchgroup = tg.id) as count
FROM batchgroups as tg
LEFT JOIN batchvotes as tv
ON (tg.id=tv.batchgroup AND tv.voter = %s)
WHERE NOT (%s = ANY(author_emails))
ORDER BY tg.locked, tg.name'''
return [x for x in fetchall(q, userid, user.email) if x.count]
def get_group(batchgroup):
return fetchone('''SELECT *,
ARRAY(SELECT display_name FROM users
WHERE users.email = ANY (batchgroups.author_emails))
AS progcom_members
FROM batchgroups WHERE id=%s''', batchgroup)
def get_group_proposals(batchgroup):
q = '''SELECT proposals.*, count(batchvotes.voter)
FROM proposals LEFT JOIN batchvotes
ON (proposals.id = ANY(batchvotes.accept))
WHERE proposals.batchgroup=%s GROUP BY proposals.id'''
rv = fetchall(q, batchgroup)
rv = [_clean_proposal(x._asdict()) for x in rv]
return rv
def get_group_votes(batchgroup):
q = '''SELECT batchvotes.accept, users.display_name
FROM batchvotes LEFT JOIN users ON (batchvotes.voter = users.id)
WHERE batchvotes.batchgroup=%s'''
return fetchall(q, batchgroup)
def get_batch_vote(batchgroup, voter):
q = 'SELECT * FROM batchvotes WHERE batchgroup=%s AND voter=%s'
return fetchone(q, batchgroup, voter)
def get_batch_coverage():
q = '''SELECT id, data->>'title' as title, author_names, batchgroup
FROM proposals WHERE batchgroup IS NOT NULL'''
groups = defaultdict(dict)
for row in fetchall(q):
groups[row.batchgroup][row.id] = 0
groups[row.batchgroup][None] = 0
voter_count = Counter()
q = 'SELECT batchgroup, accept from batchvotes'
votes = fetchall(q)
for vote in votes:
voter_count[vote.batchgroup] +=1
if not vote.accept:
groups[vote.batchgroup][None] += 1
for id in vote.accept:
if id not in groups[vote.batchgroup]:
groups[vote.batchgroup][id] = 0
groups[vote.batchgroup][id] += 1
for bg, batch in groups.iteritems():
total = voter_count[bg]
if not total:
continue
batch.update({k:int(100*float(v)/total) for k,v in batch.iteritems()})
return groups
def get_my_pycon(user):
q = 'SELECT batchgroup, accept FROM batchvotes WHERE voter=%s'
votes = fetchall(q, user)
q = '''SELECT data->>'title' AS title, id,
array_to_string(author_names, ', ') AS author_names,
accepted
FROM proposals WHERE batchgroup IS NOT NULL'''
proposals = {row.id:row for row in fetchall(q)}
q = 'SELECT id, name FROM batchgroups'
bg_names = {row.id:row.name for row in fetchall(q)}
coverage = get_batch_coverage()
rv = []
for v in votes:
if v.accept:
for p in v.accept:
rv.append({'batch_id':v.batchgroup,
'batchgroup':bg_names[v.batchgroup],
'id':p,
'title': proposals[p].title,
'author_names':proposals[p].author_names,
'accepted': proposals[p].accepted,
'consensus':coverage[v.batchgroup][p]})
else:
rv.append({'batch_id':v.batchgroup,
'batchgroup':bg_names[v.batchgroup],
'id':None,
'title':"Don't advance any from this group",
'author_names':'',
'consensus': coverage[v.batchgroup][None]})
return rv
def change_acceptance(id, acceptance):
q = 'UPDATE proposals SET accepted=%s WHERE id=%s'
execute(q, acceptance, id)
"""
Batch Discussion (this is just easier)
"""
def add_batch_message(frm, batch, body):
l('add_batch_message', uid=frm, gid=batch, body=body)
q = '''INSERT INTO batchmessages (frm, batch, body)
VALUES (%s, %s, %s) RETURNING id'''
id = fetchone(q, frm, batch, body)
q = 'SELECT voter FROM batchvotes WHERE batchgroup=%s AND voter <> %s'
users = set(x.voter for x in fetchall(q, batch, frm))
q = 'INSERT INTO batchunread (batch, voter) VALUES (%s, %s)'
for user in users:
try:
execute(q, batch, user)
except IntegrityError:
pass #Already exists
return id
def get_batch_messages(batch):
q = '''SELECT batchmessages.*, users.display_name
FROM batchmessages LEFT JOIN users ON (users.id=batchmessages.frm)
WHERE batchmessages.batch=%s ORDER BY batchmessages.created ASC'''
return fetchall(q, batch)
def get_unread_batches(userid):
q = 'SELECT batch from batchunread where voter=%s'
return set(x.batch for x in fetchall(q, userid))
def mark_batch_read(batch, user):
l('mark_batch_read', gid=batch, uid=user)
q = 'DELETE FROM batchunread WHERE batch=%s AND voter=%s'
execute(q, batch, user)
"""
Discussion
"""
_USER_FB_ITSD = itsdangerous.URLSafeSerializer(os.environ['ITSD_KEY'])
_SENDGRID = sendgrid.SendGridAPIClient(apikey=os.environ['SENDGRID_API_KEY'])
_EMAIL_FROM = os.environ['EMAIL_FROM']
_WEB_HOST = os.environ['WEB_HOST']
_TEMPLATE_PATH = os.path.join(os.path.dirname(__file__), 'templates')
_JINJA = Environment(loader=FileSystemLoader(_TEMPLATE_PATH))
def get_discussion(proposal):
q = '''SELECT discussion.*, users.display_name
FROM discussion LEFT JOIN users ON (users.id=discussion.frm)
WHERE proposal=%s ORDER BY created ASC'''
return fetchall(q, proposal)
def add_to_discussion(userid, proposal, body, feedback=False, name=None):
l('add_to_discussion', uid=userid, id=proposal, body=body,
feedback=feedback, name=name)
q = 'SELECT voter FROM votes WHERE proposal=%s'
users = set(x.voter for x in fetchall(q, proposal))
q = 'SELECT frm FROM discussion WHERE proposal=%s AND frm IS NOT NULL'
users.update(x.frm for x in fetchall(q, proposal))
if userid in users:
users.remove(userid)
if userid:
q = '''INSERT INTO discussion(frm, proposal, body, feedback)
VALUES (%s, %s,%s,%s)'''
execute(q, userid, proposal, body, feedback)
else:
q = 'INSERT INTO discussion(proposal, body, name) VALUES (%s, %s, %s)'
execute(q, proposal, body, name)
if users:
q = '''INSERT INTO unread (proposal, voter) SELECT %s, %s
WHERE NOT EXISTS
(SELECT 1 FROM unread WHERE proposal=%s AND voter=%s)'''
execute(q, [(proposal, x, proposal, x) for x in users])
if feedback:
full_proposal = get_proposal(proposal)
email = _JINJA.get_template('email/feedback_notice.txt')
for to, key in generate_author_keys(proposal).items():
url = 'http://{}/feedback/{}'.format(_WEB_HOST, key)
edit_url = 'https://us.pycon.org/2017/proposals/{}/'.format(proposal)
rendered = email.render(proposal=full_proposal, body=body,
url=url, edit_url=edit_url)
msg = {
"personalizations": [
{
"to": [{"email": to}],
"subject": 'Feedback on Your PyCon Talk Proposal',
}
],
"from": {
"email": _EMAIL_FROM,
"name": "PyCon Program Committee"
},
"content": [
{
"type": "text/plain",
"value": rendered,
}
]
}
l('filter_email_sent', api_result=_SENDGRID.client.mail.send.post(request_body=msg).body, to=to)
def mark_read(userid, proposal):
l('mark_read', uid=userid, id=proposal)
q = 'DELETE FROM unread WHERE voter=%s AND proposal=%s'
execute(q, userid, proposal)
def get_unread(userid):
q = '''SELECT unread.proposal as id, proposals.data->>'title' as title
FROM unread
LEFT JOIN proposals ON (unread.proposal = proposals.id)
WHERE voter=%s'''
return fetchall(q, userid)
def is_unread(userid, proposal):
q = 'SELECT 1 FROM unread WHERE voter=%s AND proposal=%s'
return bool(scalar(q, userid, proposal))
def generate_author_keys(id):
q = 'SELECT author_names, author_emails FROM proposals WHERE id=%s'
authors = fetchone(q, id)
rv = {}
for e, name in zip(authors.author_emails, authors.author_names):
rv[e] = _USER_FB_ITSD.dumps([name, id])
return rv
def check_author_key(key):
try:
return _USER_FB_ITSD.loads(key)
except Exception as e:
return None, None
"""
Emails
"""
_ADMIN_EMAILS = set(json.loads(os.environ['ADMIN_EMAILS']))
_LOGIN_EMAIL_ITSD = itsdangerous.URLSafeTimedSerializer(os.environ['ITSD_KEY'],
salt='loginemail')
def send_login_email(email):
q = 'SELECT id, email FROM users WHERE lower(email) = lower(%s)'
user = fetchone(q, email)
if not user:
l('failed_pw_reset_request', email=email)
return False
body = _JINJA.get_template('email/login_email.txt')
key = _LOGIN_EMAIL_ITSD.dumps(user.id)
url = 'http://{}/user/login/{}/'.format(_WEB_HOST, key)
body = body.render(url=url)
msg = {
"personalizations": [
{
"to": [{"email": user.email}],
"subject": 'PyCon Program Committee Password Reset',
}
],
"from": {
"email": "[email protected]",
"name": "Ned Jackson Lovely"
},
"content": [
{
"type": "text/plain",
"value": body,
}
]
}
_SENDGRID.client.mail.send.post(request_body=msg)
l('successful_pw_reset_request', email=email, id=user.id)
return True
def test_login_string(s):
try:
id = _LOGIN_EMAIL_ITSD.loads(s, max_age=60*20)
except Exception as e:
l('bad_pw_reset_key', e=str(e), s=s)
return False
return id
def email_approved(id):
user = get_user(id)
msg = {
"personalizations": [
{
"to": [{"email": user.email}],
"subject": 'Welcome to the Program Committee Web App!',
"cc": [{"email": x} for x in _ADMIN_EMAILS],
}
],
"from": {
"email": "[email protected]", # use EMAIL_FROM instead
"name": "Ned Jackson Lovely"
},
"content": [
{
"type": "text/plain",
"value": _JINJA.get_template('email/welcome_user.txt').render(),
}
]
}
_SENDGRID.client.mail.send.post(request_body=msg)
def email_new_user_pending(email, name):
body = _JINJA.get_template('email/new_user_pending.txt').render(name=name,
email=email)
msg = {
"personalizations": [
{
"to": [{"email": x} for x in _ADMIN_EMAILS],
"subject": 'New Progcom User',
}
],
"from": {
"email": "[email protected]", # use EMAIL_FROM instead
"name": "PyCon Program Committee Robot"
},
"content": [
{
"type": "text/plain",
"value": body,
}
]
}
_SENDGRID.client.mail.send.post(request_body=msg)
def send_weekly_update():
body = _JINJA.get_template('email/weekly_email.txt')
body = body.render(new_proposal_count=added_last_week(),
updated_proposal_count=updated_last_week(),
votes_last_week=votes_last_week(),
active_discussions=active_discussions(),
screening_progress=screening_progress())
msg = {
"personalizations": [
{
"to": [{"email": "[email protected]"}],
"subject": 'Weekly Program Committee Status',
}
],
"from": {
"email": "[email protected]", # use EMAIL_FROM instead
"name": "PyCon Program Committee Robot"
},
"content": [
{
"type": "text/plain",
"value": body,
}
]
}
_SENDGRID.client.mail.send.post(request_body=msg)
"""
Experimental Topic Grouping
"""
#Installing NLTK and downloading everything is a trial.
_NLTK_ENGLISH_STOPWORDS = set([u'i', u'me', u'my', u'myself', u'we', u'our',
u'ours', u'ourselves', u'you', u'your', u'yours', u'yourself', u'yourselves',
u'he', u'him', u'his', u'himself', u'she', u'her', u'hers', u'herself', u'it',
u'its', u'itself', u'they', u'them', u'their', u'theirs', u'themselves',
u'what', u'which', u'who', u'whom', u'this', u'that', u'these', u'those',
u'am', u'is', u'are', u'was', u'were', u'be', u'been', u'being', u'have',
u'has', u'had', u'having', u'do', u'does', u'did', u'doing', u'a', u'an',
u'the', u'and', u'but', u'if', u'or', u'because', u'as', u'until', u'while',
u'of', u'at', u'by', u'for', u'with', u'about', u'against', u'between',
u'into', u'through', u'during', u'before', u'after', u'above', u'below', u'to',
u'from', u'up', u'down', u'in', u'out', u'on', u'off', u'over', u'under',
u'again', u'further', u'then', u'once', u'here', u'there', u'when', u'where',
u'why', u'how', u'all', u'any', u'both', u'each', u'few', u'more', u'most',
u'other', u'some', u'such', u'no', u'nor', u'not', u'only', u'own', u'same',
u'so', u'than', u'too', u'very', u's', u't', u'can', u'will', u'just', u'don',
u'should', u'now'] + ['www', 'youtube', 'com', 'google', 'python', 'http',
'talk', 'https', 'programming', 'markdown', 'mins', 'min'])
def _get_words(s):
s = s.lower()
s = re.sub("[^a-z]", " ", s)
return [x for x in s.lower().split() if x and x not in _NLTK_ENGLISH_STOPWORDS]
def _get_raw_docs():
ignore_keys = {'id', 'recording_release', 'duration'}
q = 'SELECT id, data FROM proposals'
raw_documents = fetchall(q)
rv = {}
all_words = Counter()
for row in raw_documents:
rv[row.id] = _get_words(' '.join(v for k,v in row.data.items()
if k not in ignore_keys))
all_words.update(set(rv[row.id]))
useful_words = set(k for k,v in all_words.items() if v > 1)
ids, words = zip(*{k:[x for x in v if x in useful_words]
for k,v in rv.iteritems()}.items())
return ids, words
def get_proposals_auto_grouped(topics_count=100, threshold=.5):
ids, words = _get_raw_docs()
dictionary = corpora.Dictionary(words)
corpus = [dictionary.doc2bow(x) for x in words]
tfidf = models.TfidfModel(corpus)
corpus_tfidf = tfidf[corpus]
lsi = models.LsiModel(corpus_tfidf, id2word=dictionary,
num_topics=topics_count)
lsi_corpus = lsi[corpus_tfidf]
ms = MatrixSimilarity(lsi_corpus)
neighbors = {}
for frm, row in zip(ids, lsi_corpus):
neighbors[frm] = [ids[n] for n, match in enumerate(ms[row])
if match > threshold and ids[n] != frm]
results = []
groups = {}
for root, children in neighbors.items():
target = groups.get(root, None)
if not target:
target = set()
results.append(target)
target.add(root)
target.update(children)
for c in children:
groups[c] = target
rv = {}
for n, row in enumerate(results):
for x in row:
rv[x] = n
return rv
"""
Schedule
"""
def get_schedule():
q = '''SELECT schedules.proposal, schedules.day,
schedules.room, schedules.time,
schedules.duration as given_duration,
schedules.id as schedule_id,
batchgroups.name AS bg_name,
proposals.data->>'title' AS title,
proposals.id AS proposal_id,
array_to_string(proposals.author_names, ', ') AS author_names
FROM schedules
LEFT JOIN proposals
ON (proposals.id = schedules.proposal)
LEFT JOIN batchgroups