This repository has been archived by the owner on May 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
vac.py
151 lines (109 loc) · 5.68 KB
/
vac.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
import logging
import os, pickle
import secret_token
from telegram import ReplyKeyboardMarkup, Update, ReplyKeyboardRemove
from telegram.ext import (
Updater,
CommandHandler,
MessageHandler,
Filters,
ConversationHandler,
PicklePersistence,
CallbackContext,
)
logging.basicConfig(level=logging.INFO,
format='%(asctime)s - %(name)s - %(levelname)s - %(message)s')
logger = logging.getLogger(__name__)
def load_obj(name):
with open('/var/lib/bill-vaccine-bot/obj/' + name + '.pkl', 'rb') as f:
return pickle.load(f)
if os.path.isfile('/var/lib/bill-vaccine-bot/obj/pcs.pkl'):
pcs = load_obj('pcs')
else:
pcs = dict()
if os.path.isfile('/var/lib/bill-vaccine-bot/obj/users.pkl'):
users = load_obj('users')
else:
users = dict()
if os.path.isfile('/var/lib/bill-vaccine-bot/obj/lastmsg.pkl'):
lastmsg = load_obj('lastmsg')
else:
lastmsg = dict()
def start(update: Update, _: CallbackContext) -> None:
update.message.reply_text("Hoi, ik ben Bill, de onofficiële Telegram bot voor prullenbakvaccin.nl! Ik kan notificaties sturen als er mogelijk vaccins beschikbaar komen in je buurt.")
update.message.reply_text("Er zitten geen garanties aan het gebruik van mij en de website. Lees de website vooral even goed door zodat je weet waar je aan toe bent.")
update.message.reply_text("Ik ben niet ontwikkeld door of enigszins verbonden aan prullenbakvaccin.nl. Ik ben gemaakt door @WTFloris omdat hij op een brakke middag niets te doen had. Ik kijk slechts iedere 5 minuten op de website of er nieuwe vaccins beschikbaar zijn gekomen.")
update.message.reply_text("Wil je een bericht ontvangen als dat zo is? Geef mij dan even je postcode :)")
def postcode(update: Update, context: CallbackContext) -> None:
pc = update.message.text.lower()
cid = update.message.chat.id
# Strip the space if needed
if ' ' in pc:
pc = pc[0:4] + pc[5:7]
# Create a new postcode and new file if they don't exist, or append the chat id to the existing postcode
if pc not in pcs.keys():
pcs[pc] = [cid]
os.mknod("/var/lib/bill-vaccine-bot/data/" + pc)
else:
pcs[pc].append(cid)
# If a user already exists, remove the chat id from their old postcode, possibly remove everything if they are the only user
if cid in users.keys():
pcs[users[cid]].remove(cid)
if pcs[users[cid]] == []:
os.remove('/var/lib/bill-vaccine-bot/data/' + users[cid])
pcs.pop(users[cid], None)
users[cid] = pc
save_obj(pcs, 'pcs')
save_obj(users, 'users')
update.message.reply_text(f"Je postcode staat nu ingesteld op {pc.upper()}. Als je deze wilt wijzigen stuur je gewoon een andere postcode.")
if pc in lastmsg.keys():
update.message.reply_text(lastmsg[pc])
def help_command(update: Update, _: CallbackContext) -> None:
update.message.reply_text('Help!')
def broadcast(update: Update, context: CallbackContext) -> None:
if update.message.chat.id == 171612827:
for id in users.keys():
context.bot.send_message(chat_id=id, text=update.message.text[11:])
else:
update.message.reply_text("Dat mag jij niet doen.")
def check_for_update(context: CallbackContext) -> None:
# def check_for_update(update: Update, context: CallbackContext) -> None:
for pc in pcs.keys():
with open('/var/lib/bill-vaccine-bot/data/' + pc, 'r') as f:
content = f.read()
# If there is information available and there is no previous message
if content != '' and pc not in lastmsg.keys():
for chatid in pcs[pc]:
context.bot.send_message(chat_id=chatid, text=content)
context.bot.send_message(chat_id=chatid, text=f"Kijk op www.prullenbakvaccin.nl/{pc} voor meer informatie.")
lastmsg[pc] = content
# Or if there is information available but it does not match the previous message
elif content != '':
if lastmsg[pc] != content:
for chatid in pcs[pc]:
context.bot.send_message(chat_id=chatid, text=content)
context.bot.send_message(chat_id=chatid, text=f"Kijk op www.prullenbakvaccin.nl/{pc} voor meer informatie.")
lastmsg[pc] = content
# Or if there are no vaccines but there was a previous message
elif content == '' and pc in lastmsg.keys():
for chatid in pcs[pc]:
context.bot.send_message(chat_id=chatid, text="De vaccins uit het vorige bericht zijn volgens de website helaas niet meer beschikbaar.")
lastmsg.pop(pc, None)
save_obj(lastmsg, 'lastmsg')
# def instruct(update: Update, _: CallbackContext) -> None:
# update.message.reply_text("Als je je postcode wilt wijzigen, stuur die dan door. Verder kan ik niet zo veel voor je doen.")
def save_obj(obj, name):
with open('/var/lib/bill-vaccine-bot/obj/'+ name + '.pkl', 'wb') as f:
pickle.dump(obj, f, pickle.HIGHEST_PROTOCOL)
def main() -> None:
updater = Updater(secret_token.TOKEN, persistence=PicklePersistence(filename='vacbot_persist'), use_context=True)
dispatcher = updater.dispatcher
dispatcher.add_handler(CommandHandler("start", start))
dispatcher.add_handler(CommandHandler("help", help_command))
dispatcher.add_handler(MessageHandler(Filters.regex('^[1-9][0-9]{3} ?(?!sa|sd|ss|SA|SD|SS)[A-z]{2}$'), postcode))
dispatcher.add_handler(CommandHandler("broadcast", broadcast))
check_for_update_job = updater.job_queue.run_repeating(check_for_update, interval=300, first=0)
updater.start_polling()
updater.idle()
if __name__ == '__main__':
main()