This repository has been archived by the owner on Feb 9, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathClassevivaBot.py
480 lines (411 loc) · 15.7 KB
/
ClassevivaBot.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
# -*- coding: utf-8 -*-
import argparse
import logging
import os
import os.path
import sqlite3
import threading
from datetime import date
import classeviva as cv
import telegram
from sympy import Symbol, solve
from telegram.ext import CommandHandler, Updater
logging.basicConfig(format='%(asctime)s - %(name)s - %(levelname)s - %(message)s',
level=logging.INFO)
ap = argparse.ArgumentParser()
ap.add_argument(
"-k", "--key", required=True, type=str, help="Telegram bot key")
ap.add_argument(
"-f",
"--working-folder",
required=False,
type=str,
default=os.getcwd(),
help="set the bot's working-folder, default is folder from where the bot is executed"
)
ap.add_argument(
"-sentry",
required=False,
type=str,
default="",
help="Your sentry personal url")
args = vars(ap.parse_args())
updater = Updater(token=args["key"])
dispatcher = updater.dispatcher
bot_path = args["working_folder"]
sentry_key = args["sentry"]
incognita_eq = Symbol("x")
# enable sentry if sentry_key is passed as an argument
if sentry_key != "":
import sentry_sdk
sentry_sdk.init(sentry_key)
def handle_exception(e):
sentry_sdk.capture_exception()
else:
def handle_exception(e):
print(str(e))
def risposta(sender, messaggio, bot):
try:
bot.send_chat_action(chat_id=sender, action="typing")
bot.send_message(chat_id=sender, text=messaggio)
except Exception as e:
handle_exception(e)
def risposta_html(sender, messaggio, bot):
try:
bot.send_chat_action(chat_id=sender, action="typing")
bot.send_message(chat_id=sender, text=messaggio,
parse_mode=telegram.ParseMode.HTML)
except Exception as e:
handle_exception(e)
def exec_query(query):
# Open database connection
db = sqlite3.connect(bot_path + '/database.db')
# prepare a cursor object using cursor() method
cursor = db.cursor()
# Prepare SQL query to INSERT a record into the database.
try:
# Execute the SQL command
cursor.execute(query)
# Commit your changes in the database
db.commit()
except Exception as e:
# Rollback in case there is any error
handle_exception(e)
db.rollback()
# disconnect from server
db.close()
# default table creation
exec_query("""CREATE TABLE IF NOT EXISTS CREDENTIALS (
USERNAME CHAR(60) NOT NULL,
PASSWORD CHAR(60),
PERIODO TINYINT DEFAULT 1,
CHAT_ID CHAR(100),
NUMERO_VOTI INTEGER DEFAULT 0,
NUMERO_COMPITI INTEGER DEFAULT 0,
PREFERENZA_NOTIFICHE_VOTI TINYINT DEFAULT 0,
PREFERENZA_NOTIFICHE_COMPITI TINYINT DEFAULT 0
)""")
def calcola_medie(username, password, periodo):
classeviva_session = cv.Session()
classeviva_session.agenda
classeviva_session.username = username
classeviva_session.password = password
try:
classeviva_session.login()
except cv.errors.AuthenticationFailedError:
raise ValueError("Login error")
voti_json = classeviva_session.grades()
classeviva_session.logout()
if voti_json['grades'] == []:
raise ValueError('No grades')
voti_periodo = []
voti_periodo_fix = []
dizionario_voti = {}
medie = {}
voti_sufficienza = {}
output_risposta = ''
for x in voti_json['grades']: # ottenimento lista voti
voti_periodo.append(x)
# rimozione voti non appartenenti al periodo non voluto
for x in range(0, len(voti_periodo)):
if voti_periodo[x]['periodPos'] == periodo:
voti_periodo_fix.append(voti_periodo[x])
# aggiunta dei voti alla rispettiva key del dizionario(ogni key ha un array)
for x in range(0, len(voti_periodo_fix)):
# toglie i voti blu dalla media
if voti_periodo_fix[x]['decimalValue'] != None:
dizionario_voti.setdefault(
voti_periodo_fix[x]['subjectDesc'], []).append(
(voti_periodo_fix[x]['decimalValue'],
voti_periodo_fix[x]['evtDate']))
# medie nuove
for materia in dizionario_voti:
for tupla_voto in dizionario_voti[materia]:
if materia in medie: # i dizionari sono stupidi e se la key non esiste già non si può utilizzare +=
medie[materia] += tupla_voto[0]
else:
medie[materia] = tupla_voto[0]
# voti sufficienza
voti_sufficienza[materia] = round(
solve((incognita_eq + medie[materia]) /
(len(dizionario_voti[materia]) + 1) - 6)[0], 2)
# medie delle materie
medie[materia] = round(medie[materia] / len(dizionario_voti[materia]),
2)
# conta voti
conta_voti = 0
for materia in dizionario_voti:
conta_voti = conta_voti+len(dizionario_voti[materia])
def sign_replace(x):
if ".25" in str(x):
return str(x).replace(".25", "+")
elif ".75" in str(x):
return str(int(str(x).replace(".75", ""))+1)+"-"
else:
return str(x)
for materia in voti_sufficienza:
output_risposta += "Per avere la sufficenza in " + \
"<b>" + str(materia) + "</b>" + " devi prendere " + \
"<b>" + sign_replace(voti_sufficienza[materia]) + "</b>" + "\n"
output_risposta += "\n\n\n"
for materia in medie:
output_risposta += "La media in " + \
"<b>" + str(materia) + "</b>" + " è " + "<b>" + \
sign_replace(medie[materia]) + "</b>" + "\n"
return output_risposta, conta_voti
def check_credentials(username, password):
classeviva_session = cv.Session()
classeviva_session.agenda
classeviva_session.username = username
classeviva_session.password = password
try:
classeviva_session.login()
except cv.errors.AuthenticationFailedError:
return False
return True
def calcola_compiti(username, password):
classeviva_session = cv.Session()
classeviva_session.agenda
classeviva_session.username = username
classeviva_session.password = password
try:
classeviva_session.login()
except cv.errors.AuthenticationFailedError:
raise ValueError("Login error")
agenda_json = classeviva_session.agenda(
date.today(), date(date.today().year+1, 6, 12))
return len(agenda_json['agenda'])
def start(bot, update):
risposta_html(
update.message.chat.id,
"/login <i>username</i> <i>password</i> per accedere\n/logout per disconnettersi\n/periodo per impostare il numero del periodo \n /medie per vedere le medie e che voto per avere la sufficenza\n /notifiche per impostare le preferenze di notifica ", bot
)
def periodo(bot, update, args):
try:
periodo = None
chatid = update.message.chat.id
if len(args) != 1:
risposta(
chatid,
"Si è verificato un errore, controlla ciò che hai scritto, potresti aver sbagliato", bot
)
return
periodo = args[0]
except Exception as e:
handle_exception(e)
exec_query("UPDATE CREDENTIALS \
SET PERIODO='{}'\
WHERE CHAT_ID='{}'".format(periodo, chatid))
risposta(chatid, "periodo aggiornato", bot)
def login(bot, update, args):
print("login")
chatid = update.message.chat.id
try:
if len(args) != 2:
risposta(
chatid,
"Si è verificato un errore, controlla ciò che hai scritto, potresti aver sbagliato", bot
)
return
username = args[0]
password = args[1]
except Exception as e:
handle_exception(e)
db = sqlite3.connect(bot_path + '/database.db')
cursor = db.cursor()
sql = "SELECT USERNAME,PASSWORD,PERIODO FROM CREDENTIALS \
WHERE CHAT_ID='{}'".format(chatid)
try:
cursor.execute(sql)
results = cursor.fetchall()
except Exception as e:
handle_exception(e)
finally:
db.close()
if results == [] and check_credentials(username, password) == True:
exec_query(
"INSERT INTO CREDENTIALS (USERNAME,PASSWORD,CHAT_ID) VALUES('{}','{}','{}')".
format(username, password, chatid))
risposta(
chatid,
"login effettuato correttamente, il periodo impostato è il primo", bot
)
else:
if check_credentials(username, password) == False:
risposta(chatid, "credenziali errate", bot)
else:
risposta(chatid, "Il login è già stato effettuato", bot)
def logout(bot, update):
print("remove")
chatid = update.message.chat.id
db = sqlite3.connect(bot_path + '/database.db')
cursor = db.cursor()
sql = "SELECT USERNAME,PASSWORD,PERIODO FROM CREDENTIALS \
WHERE CHAT_ID='{}'".format(chatid)
try:
cursor.execute(sql)
results = cursor.fetchall()
except Exception as e:
handle_exception(e)
finally:
db.close()
if results == []:
risposta(
chatid,
"Non è mai stato effettuato il login, niente da rimuovere", bot)
return
try:
exec_query(
"DELETE FROM CREDENTIALS WHERE CHAT_ID='{}'".format(chatid))
risposta(chatid, "Logout effettuato correttamente", bot)
except Exception as e:
handle_exception(e)
risposta(
chatid,
"Si è verificato un errore o non è mai stato effettuato il login", bot
)
def medie(bot, update):
chatid = update.message.chat.id
username = []
password = []
periodo = []
db = sqlite3.connect(bot_path + '/database.db')
cursor = db.cursor()
sql = "SELECT USERNAME,PASSWORD,PERIODO FROM CREDENTIALS \
WHERE CHAT_ID='{}'".format(chatid)
try:
cursor.execute(sql)
results = cursor.fetchall()
for row in results:
username.append(row[0])
password.append(row[1])
periodo.append(row[2])
except Exception as e:
handle_exception(e)
finally:
db.close()
if results == []:
risposta(
chatid,
"Non è stato fatto il login, effettualo attraverso il comando apposito", bot
)
return
output_risposta = []
try:
output_risposta = calcola_medie(
username[0], password[0], periodo[0])[0]
risposta_html(chatid, output_risposta, bot)
except ValueError as e:
error_value = e.args[0]
if error_value == "No grades":
risposta(
chatid, "Errore, probabilmente non ci sono voti sul registro", bot)
elif error_value == "Login error":
risposta(
chatid, "Errore, probabilmente le tue credenziali sono errate, fai il logout e riprova", bot)
def notifiche(bot, update, args):
chatid = update.message.chat.id
if len(args) != 2:
risposta(chatid, "Il funzionamento del comando è /notifiche tipo abilita/disabilita\n \
I tipi disponibili sono: compiti, voti\n \
comando di esempio: /notifiche voti disabilita", bot)
return
tipo = args[0]
status = args[1]
status_backup = status
if (tipo != "compiti" and tipo != "voti") or (status != "abilita" and status != "disabilita"):
risposta(
chatid, "Si è verificato un errore, controlla ciò che hai scritto, potresti aver sbagliato", bot)
return
else:
if status == "disabilita":
status = 1
else:
status = 0
exec_query("UPDATE CREDENTIALS SET PREFERENZA_NOTIFICHE_{}='{}' WHERE CHAT_ID='{}'".format(
tipo.upper(), status, chatid))
risposta(chatid, "Le notifiche per {} sono state {}te".format(
tipo, status_backup), bot)
def user_status():
global updater
bot = updater.bot
while (1):
username_list = []
password_list = []
periodo_list = []
chatid_list = []
numero_voti_list = []
numero_compiti_list = []
preferenza_notifiche_voti_list = []
preferenza_notifiche_compiti_list = []
sql = "SELECT * FROM CREDENTIALS"
try:
db = sqlite3.connect(bot_path + '/database.db')
cursor = db.cursor()
cursor.execute(sql)
results = cursor.fetchall()
for row in results:
username_list.append(row[0])
password_list.append(row[1])
periodo_list.append(row[2])
chatid_list.append(row[3])
numero_voti_list.append(row[4])
numero_compiti_list.append(row[5])
preferenza_notifiche_voti_list.append(row[6])
preferenza_notifiche_compiti_list.append(row[7])
except Exception as e:
handle_exception(e)
finally:
db.close()
for x in range(0, len(username_list)):
# controlla status credenziali
if check_credentials(username_list[x], password_list[x]) == False:
exec_query(
"DELETE FROM CREDENTIALS WHERE CHAT_ID='{}'".format(chatid_list[x]))
risposta(
chatid_list[x], "Il tuo account è stato rimosso in quanto le tue credenziali sono errate", bot)
print("removed credentials of chatid {}".format(
chatid_list[x]))
else:
# controlla voti
numero_voti = calcola_medie(
username_list[x], password_list[x], periodo_list[x])[1]
exec_query("UPDATE CREDENTIALS SET NUMERO_VOTI='{}' WHERE CHAT_ID='{}'".format(
numero_voti, chatid_list[x]))
if preferenza_notifiche_voti_list[x] == 0:
# il numero è incrementale, di conseguenza c'è un nuovo voto
if numero_voti > numero_voti_list[x]:
if numero_voti_list[x] == 0:
risposta(
chatid_list[x], "C'è un nuovo voto!\n(potrebbe non essere vero in quanto l'anno è appena iniziato e sono stati resettati i voti)", bot)
else:
risposta(chatid_list[x], "C'è un nuovo voto!", bot)
# controlla compiti
numero_compiti = calcola_compiti(
username_list[x], password_list[x])
exec_query("UPDATE CREDENTIALS SET NUMERO_COMPITI='{}' WHERE CHAT_ID='{}'".format(
numero_compiti, chatid_list[x]))
if preferenza_notifiche_compiti_list[x] == 0:
# il numero è incrementale, di conseguenza c'è un nuovo voto
if numero_compiti > numero_compiti_list[x]:
if numero_compiti_list[x] == 0:
risposta(
chatid_list[x], "C'è un nuovo compito!\n(potrebbe non essere vero in quanto l'anno è appena iniziato e sono stati resettati i compiti)", bot)
else:
risposta(chatid_list[x],
"C'è un nuovo compito!", bot)
start_handler = CommandHandler(('start', 'help'), start)
dispatcher.add_handler(start_handler)
periodo_handler = CommandHandler('periodo', periodo, pass_args=True)
dispatcher.add_handler(periodo_handler)
login_handler = CommandHandler('login', login, pass_args=True)
dispatcher.add_handler(login_handler)
logout_handler = CommandHandler('logout', logout)
dispatcher.add_handler(logout_handler)
medie_handler = CommandHandler('medie', medie)
dispatcher.add_handler(medie_handler)
notifiche_handler = CommandHandler('notifiche', notifiche, pass_args=True)
dispatcher.add_handler(notifiche_handler)
threading.Thread(target=user_status).start()
updater.start_polling()
updater.idle()