-
Notifications
You must be signed in to change notification settings - Fork 1
/
vaalilakanabot2024.py
683 lines (569 loc) · 22.5 KB
/
vaalilakanabot2024.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
import json
import os
import time
import logging
import requests
from telegram import Update, InlineKeyboardButton, InlineKeyboardMarkup
from telegram.ext import (
Updater,
MessageHandler,
CommandHandler,
Filters,
ConversationHandler,
CallbackContext,
CallbackQueryHandler,
)
TOKEN = os.environ["VAALILAKANABOT_TOKEN"]
ADMIN_CHAT_ID = os.environ["ADMIN_CHAT_ID"]
BASE_URL = os.environ["BASE_URL"]
TOPIC_LIST_URL = os.environ["TOPIC_LIST_URL"]
QUESTION_LIST_URL = os.environ["QUESTION_LIST_URL"]
BOARD = os.environ["BOARD"].split(",")
OFFICIALS = os.environ["OFFICIALS"].split(",")
SELECTING_POSITION_CLASS, SELECTING_POSITION, TYPING_NAME, CONFIRMING = range(4)
channels = []
vaalilakana = {}
last_applicant = None
fiirumi_posts = []
question_posts = []
logger = logging.getLogger("vaalilakanabot")
logger.setLevel(logging.INFO)
log_path = os.path.join("logs", "vaalilakanabot.log")
fh = logging.FileHandler(log_path)
fh.setLevel(logging.INFO)
formatter = logging.Formatter("%(asctime)s - %(name)s - %(levelname)s - %(message)s")
fh.setFormatter(formatter)
logger.addHandler(fh)
with open("data/vaalilakana.json", "r") as f:
data = f.read()
vaalilakana = json.loads(data)
logger.info("Loaded vaalilakana: %s", vaalilakana)
with open("data/channels.json", "r") as f:
data = f.read()
channels = json.loads(data)
logger.info("Loaded channels: %s", channels)
with open("data/fiirumi_posts.json", "r") as f:
data = f.read()
fiirumi_posts = json.loads(data)
logger.info("Loaded fiirumi posts: %s", fiirumi_posts)
with open("data/question_posts.json", "r") as f:
data = f.read()
question_posts = json.loads(data)
logger.info("Loaded question posts: %s", question_posts)
updater = Updater(TOKEN, use_context=True)
def _save_data(filename, content):
with open(filename, "w") as fp:
fp.write(json.dumps(content))
def _vaalilakana_to_string(lakana):
output = ""
output += "<b>---------------Raati---------------</b>\n"
# Hardcoded to maintain order instead using dict keys
for position in BOARD:
output += f"<b>{position}:</b>\n"
applicants = lakana[position] if position in lakana else []
for applicant in applicants:
link = applicant["fiirumi"]
selected = applicant["valittu"]
if selected:
if link:
output += f'- <a href="{link}">{applicant["name"]}</a> (valittu)\n'
else:
output += f'- {applicant["name"]} (valittu)\n'
else:
if link:
output += f'- <a href="{link}">{applicant["name"]}</a>\n'
else:
output += f'- {applicant["name"]}\n'
output += "\n"
output += "<b>----------Toimihenkilöt----------</b>\n"
for position in OFFICIALS:
output += f"<b>{position}:</b>\n"
applicants = lakana[position] if position in lakana else []
for applicant in applicants:
link = applicant["fiirumi"]
selected = applicant["valittu"]
if selected:
if link:
output += f'- <a href="{link}">{applicant["name"]}</a> (valittu)\n'
else:
output += f'- {applicant["name"]} (valittu)\n'
else:
if link:
output += f'- <a href="{link}">{applicant["name"]}</a>\n'
else:
output += f'- {applicant["name"]}\n'
output += "\n"
return output
def parse_fiirumi_posts(context=updater.bot):
try:
page_fiirumi = requests.get(TOPIC_LIST_URL, timeout=10)
logger.debug(page_fiirumi)
page_question = requests.get(QUESTION_LIST_URL, timeout=10)
topic_list_raw = page_fiirumi.json()
logger.debug(str(topic_list_raw))
question_list_raw = page_question.json()
topic_list = topic_list_raw["topic_list"]["topics"]
question_list = question_list_raw["topic_list"]["topics"]
logger.debug(topic_list)
except KeyError as e:
logger.error(
"The topic and question lists cannot be found. Check URLs. Got error %s", e
)
return
except Exception as e:
logger.error(e)
return
for topic in topic_list:
t_id = topic["id"]
title = topic["title"]
slug = topic["slug"]
if str(t_id) not in fiirumi_posts:
new_post = {
"id": t_id,
"title": title,
"slug": slug,
}
fiirumi_posts[str(t_id)] = new_post
_save_data("data/fiirumi_posts.json", fiirumi_posts)
_announce_to_channels(
f"<b>Uusi postaus Vaalipeli-palstalla!</b>\n{title}\n{BASE_URL}/t/{slug}/{t_id}"
)
for question in question_list:
t_id = question["id"]
title = question["title"]
slug = question["slug"]
posts_count = question["posts_count"]
if str(t_id) not in question_posts:
new_question = {
"id": t_id,
"title": title,
"slug": slug,
"posts_count": posts_count,
}
question_posts[str(t_id)] = new_question
_save_data("data/question_posts.json", question_posts)
_announce_to_channels(
f"<b>Uusi kysymys Fiirumilla!</b>\n{title}\n{BASE_URL}/t/{slug}/{t_id}"
)
else:
has_new_posts = posts_count > question_posts[str(t_id)]["posts_count"]
question_posts[str(t_id)]["posts_count"] = posts_count
_save_data("data/question_posts.json", question_posts)
if has_new_posts:
last_poster = question["last_poster_username"]
announcement = (
f"<b>Uusia vastauksia Fiirumilla!</b>\n"
f"{title}\n{BASE_URL}/t/{slug}/{t_id}/{posts_count}\n"
f"Viimeisin vastaaja: {last_poster}"
)
_announce_to_channels(announcement)
def _announce_to_channels(message):
for cid in channels:
try:
updater.bot.send_message(cid, message, parse_mode="HTML")
time.sleep(0.5)
except Exception as e:
logger.error(e)
continue
def remove_applicant(update, context):
try:
chat_id = update.message.chat.id
if str(chat_id) == str(ADMIN_CHAT_ID):
text = update.message.text.replace("/poista", "").strip()
params = text.split(",")
try:
position = params[0].strip()
name = params[1].strip()
except Exception as e:
updater.bot.send_message(
chat_id, "Virheelliset parametrit - /poista <virka>, <nimi>"
)
raise ValueError("Invalid parameters") from e
if position not in BOARD and position not in OFFICIALS:
updater.bot.send_message(
chat_id, f"Tunnistamaton virka: {position}", parse_mode="HTML"
)
raise ValueError(f"Unknown position {position}")
found = None
applicants = vaalilakana[position] if position in vaalilakana else []
for applicant in applicants:
if name == applicant["name"]:
found = applicant
break
if not found:
updater.bot.send_message(
chat_id, f"Hakijaa ei löydy {name}", parse_mode="HTML"
)
raise ValueError(f"Applicant not found: {name}")
vaalilakana[position].remove(found)
_save_data("data/vaalilakana.json", vaalilakana)
global last_applicant
last_applicant = None
updater.bot.send_message(
chat_id,
"Poistettu:\n{position}: {name}".format(**found),
parse_mode="HTML",
)
except Exception as e:
logger.error(e)
def add_fiirumi_to_applicant(update, context):
try:
chat_id = update.message.chat.id
if str(chat_id) == str(ADMIN_CHAT_ID):
text = update.message.text.replace("/lisaa_fiirumi", "").strip()
params = text.split(",")
try:
position = params[0].strip()
name = params[1].strip()
thread_id = params[2].strip()
except Exception as e:
updater.bot.send_message(
chat_id,
"Virheelliset parametrit - /lisaa_fiirumi <virka>, <nimi>, <thread id>",
)
raise ValueError("Invalid parameters") from e
if position not in BOARD and position not in OFFICIALS:
updater.bot.send_message(
chat_id, f"Tunnistamaton virka: {position}", parse_mode="HTML"
)
raise ValueError(f"Unknown position {position}")
if thread_id not in fiirumi_posts:
updater.bot.send_message(
chat_id,
f"Fiirumi-postausta ei löytynyt annetulla id:llä: {thread_id}",
parse_mode="HTML",
)
raise ValueError(f"Unknown thread {thread_id}")
found = None
applicants = vaalilakana[position] if position in vaalilakana else []
for applicant in applicants:
if name == applicant["name"]:
found = applicant
fiirumi = f'{BASE_URL}/t/{fiirumi_posts[thread_id]["slug"]}/{fiirumi_posts[thread_id]["id"]}'
applicant["fiirumi"] = fiirumi
break
if not found:
updater.bot.send_message(
chat_id, f"Hakijaa ei löydy {name}", parse_mode="HTML"
)
raise ValueError(f"Applicant not found: {name}")
_save_data("data/vaalilakana.json", vaalilakana)
global last_applicant
last_applicant = None
updater.bot.send_message(
chat_id,
'Lisätty Fiirumi:\n{position}: <a href="{fiirumi}">{name}</a>'.format(
fiirumi, **found
),
parse_mode="HTML",
)
except Exception as e:
logger.error(e)
def add_applicant(update: Update, context: CallbackContext) -> None:
"""Add an applicant. This command is for admin use."""
keyboard = [
[
InlineKeyboardButton("Raatiin", callback_data="board"),
InlineKeyboardButton("Toimihenkilöksi", callback_data="official"),
]
]
reply_markup = InlineKeyboardMarkup(keyboard)
chat_id = update.message.chat.id
if str(chat_id) == str(ADMIN_CHAT_ID):
update.message.reply_text(
"Mihin rooliin henkilö lisätään?", reply_markup=reply_markup
)
return SELECTING_POSITION_CLASS
else:
update.message.reply_text("Et oo admin :(((")
return None
def generate_positions(position_class):
keyboard = []
for position in position_class:
keyboard.append([InlineKeyboardButton(position, callback_data=position)])
return keyboard
def select_position_class(update: Update, context: CallbackContext) -> int:
"""Parses the CallbackQuery and updates the message text."""
query = update.callback_query
query.answer()
chat_data = context.chat_data
logger.debug(str(chat_data))
# CallbackQueries need to be answered, even if no notification to the user is needed
# Some clients may have trouble otherwise. See https://core.telegram.org/bots/api#callbackquery
if query.data == "1":
logger.debug("Raati")
keyboard = InlineKeyboardMarkup(generate_positions(BOARD))
query.edit_message_reply_markup(keyboard)
return SELECTING_POSITION
elif query.data == "2":
logger.debug("Toimihenkilö")
keyboard = InlineKeyboardMarkup(generate_positions(OFFICIALS))
query.edit_message_reply_markup(keyboard)
return SELECTING_POSITION
else:
return SELECTING_POSITION_CLASS
def select_board_position(update: Update, context: CallbackContext) -> int:
query = update.callback_query
query.answer()
keyboard = InlineKeyboardMarkup(generate_positions(BOARD))
query.edit_message_reply_markup(keyboard)
return SELECTING_POSITION
def select_official_position(update: Update, context: CallbackContext) -> int:
query = update.callback_query
query.answer()
keyboard = InlineKeyboardMarkup(generate_positions(OFFICIALS))
query.edit_message_reply_markup(keyboard)
return SELECTING_POSITION
def register_position(update: Update, context: CallbackContext) -> int:
"""Parses the CallbackQuery and updates the message text."""
query = update.callback_query
chat_data = context.chat_data
# CallbackQueries need to be answered, even if no notification to the user is needed
# Some clients may have trouble otherwise. See https://core.telegram.org/bots/api#callbackquery
query.answer()
query.edit_message_text(
text=f"Hakija rooliin: {query.data}\nKirjoita hakijan nimi vastauksena tähän viestiin"
)
chat_data["new_applicant_position"] = query.data
return TYPING_NAME
def enter_applicant_name(update: Update, context: CallbackContext) -> int:
"""Stores the info about the user and ends the conversation."""
chat_data = context.chat_data
logger.debug(chat_data)
name = update.message.text
logger.debug(name)
try:
chat_id = update.message.chat.id
position = chat_data["new_applicant_position"]
chat_data["new_applicant_name"] = name
new_applicant = {
"name": name,
"position": position,
"fiirumi": "",
"valittu": False,
}
if position not in vaalilakana:
vaalilakana[position] = []
vaalilakana[position].append(new_applicant)
_save_data("data/vaalilakana.json", vaalilakana)
global last_applicant
last_applicant = new_applicant
updater.bot.send_message(
chat_id,
"Lisätty:\n{position}: {name}.\n\nLähetä tiedote komennolla /tiedota".format(
**new_applicant
),
parse_mode="HTML",
)
except Exception as e:
# TODO: Return to role selection
logger.error(e)
return ConversationHandler.END
def unassociate_fiirumi(update, context):
try:
chat_id = update.message.chat.id
if str(chat_id) == str(ADMIN_CHAT_ID):
# Converts /poista_fiirumi Puheenjohtaja, Fysisti kiltalainen
# to ["Puheenjohtaja", "Fysisti kiltalainen"]
params = [
arg.strip()
for arg in update.message.text.replace("/poista_fiirumi", "")
.strip()
.split(",")
]
# Try find role
try:
role, applicant = params
except Exception as e:
logger.error(e)
updater.bot.send_message(
chat_id, "Virheelliset parametrit - /poista_fiirumi <virka>, <nimi>"
)
return
if role not in BOARD and role not in OFFICIALS:
updater.bot.send_message(
chat_id, "Virheelliset parametrit, roolia ei löytynyt"
)
return
# Try finding the dict with matching applicant name from vaalilakana
applicants = vaalilakana[role] if role in vaalilakana else []
for applicant in applicants:
if applicant["name"] == applicant:
applicant["fiirumi"] = ""
break
else:
# If the loop didn't break
updater.bot.send_message(
chat_id, "Virheelliset parametrit, hakijaa ei löytynyt roolille"
)
return
_save_data("data/vaalilakana.json", vaalilakana)
updater.bot.send_message(
chat_id,
"Fiirumi linkki poistettu:\n{name}".format(name=applicant),
parse_mode="HTML",
)
else:
# Not admin chat
pass
except Exception as e:
# Unknown error :/
logger.error(e)
def add_selected_tag(update, context):
try:
chat_id = update.message.chat.id
if str(chat_id) == str(ADMIN_CHAT_ID):
text = update.message.text.replace("/valittu", "").strip()
params = text.split(",")
try:
position = params[0].strip()
name = params[1].strip()
except Exception as e:
updater.bot.send_message(
chat_id, "Virheelliset parametrit - /valittu <virka>, <nimi>"
)
raise ValueError from e
if position not in BOARD and position not in OFFICIALS:
updater.bot.send_message(
chat_id, f"Tunnistamaton virka: {position}", parse_mode="HTML"
)
raise ValueError(f"Unknown position {position}")
found = None
applicants = vaalilakana[position] if position in vaalilakana else []
for applicant in applicants:
if name == applicant["name"]:
found = applicant
applicant["valittu"] = True
break
if not found:
updater.bot.send_message(
chat_id, f"Hakijaa ei löydy {name}", parse_mode="HTML"
)
raise ValueError(f"Applicant not found: {name}")
_save_data("data/vaalilakana.json", vaalilakana)
global last_applicant
last_applicant = None
updater.bot.send_message(
chat_id,
"Hakija valittu:\n{position}: {name}".format(**found),
parse_mode="HTML",
)
except Exception as e:
logger.error(e)
def show_vaalilakana(update, context):
try:
chat_id = update.message.chat.id
updater.bot.send_message(
chat_id,
_vaalilakana_to_string(vaalilakana),
parse_mode="HTML",
disable_web_page_preview=True,
)
except Exception as e:
logger.error(e)
def register_channel(update, context):
try:
chat_id = update.message.chat.id
if chat_id not in channels:
channels.append(chat_id)
_save_data("data/channels.json", channels)
print(f"New channel added {chat_id}", update.message)
updater.bot.send_message(
chat_id, "Rekisteröity Vaalilakanabotin tiedotuskanavaksi!"
)
except Exception as e:
logger.error(e)
def announce_new_applicant(update, context):
try:
chat_id = update.message.chat.id
if str(chat_id) == str(ADMIN_CHAT_ID):
global last_applicant
if last_applicant:
_announce_to_channels(
"<b>Uusi nimi vaalilakanassa!</b>\n{position}: <i>{name}</i>".format(
**last_applicant
)
)
last_applicant = None
except Exception as e:
logger.error(e)
def jauhis(update, context):
try:
chat_id = update.message.chat.id
with open("assets/jauhis.png", "rb") as photo:
updater.bot.send_sticker(chat_id, photo)
except Exception as e:
logger.warning("Error in sending Jauhis %s", e)
def jauh(update, context):
try:
chat_id = update.message.chat.id
with open("assets/jauh.png", "rb") as photo:
updater.bot.send_sticker(chat_id, photo)
except Exception as e:
logger.warning("Error in sending Jauh %s", e)
def jauho(update, context):
try:
chat_id = update.message.chat.id
with open("assets/jauho.png", "rb") as photo:
updater.bot.send_sticker(chat_id, photo)
except Exception as e:
logger.warning("Error in sending Jauh %s", e)
def lauh(update, context):
try:
chat_id = update.message.chat.id
with open("assets/lauh.png", "rb") as photo:
updater.bot.send_sticker(chat_id, photo)
except Exception as e:
logger.warning("Error in sending Lauh %s", e)
def mauh(update, context):
try:
chat_id = update.message.chat.id
with open("assets/mauh.png", "rb") as photo:
updater.bot.send_sticker(chat_id, photo)
except Exception as e:
logger.warning("Error in sending Mauh %s", e)
def error(update, context):
"""Log Errors caused by Updates."""
logger.warning('Update "%s" caused error "%s"', update, context.error)
def cancel(update, context):
chat_data = context.chat_data
chat_data.clear()
def main():
jq = updater.job_queue
jq.run_repeating(parse_fiirumi_posts, interval=60, first=0, context=updater.bot)
dp = updater.dispatcher
dp.add_handler(CommandHandler("valittu", add_selected_tag))
dp.add_handler(CommandHandler("lisaa_fiirumi", add_fiirumi_to_applicant))
dp.add_handler(CommandHandler("poista_fiirumi", unassociate_fiirumi))
dp.add_handler(CommandHandler("poista", remove_applicant))
dp.add_handler(CommandHandler("lakana", show_vaalilakana))
dp.add_handler(CommandHandler("tiedota", announce_new_applicant))
dp.add_handler(CommandHandler("start", register_channel))
dp.add_handler(CommandHandler("jauhis", jauhis))
dp.add_handler(CommandHandler("jauh", jauh))
dp.add_handler(CommandHandler("jauho", jauho))
dp.add_handler(CommandHandler("lauh", lauh))
dp.add_handler(CommandHandler("mauh", mauh))
conv_handler = ConversationHandler(
entry_points=[CommandHandler("lisaa", add_applicant)],
states={
SELECTING_POSITION_CLASS: [
CallbackQueryHandler(select_board_position, pattern="^board$"),
CallbackQueryHandler(select_official_position, pattern="^official$"),
],
SELECTING_POSITION: [CallbackQueryHandler(register_position)],
TYPING_NAME: [
MessageHandler(Filters.text & (~Filters.command), enter_applicant_name)
],
},
fallbacks=[
CommandHandler("cancel", cancel),
CommandHandler("lisaa", add_applicant),
],
)
dp.add_handler(conv_handler)
dp.add_error_handler(error)
updater.start_polling()
updater.idle()
if __name__ == "__main__":
main()