ITAvsCOVIDbot/bot.py

429 lines
13 KiB
Python
Raw Normal View History

2021-01-06 17:57:35 +01:00
import os
import logging
import imgkit
import secrets
import schedule
import time
from dotenv import load_dotenv
2021-05-21 14:15:34 +02:00
from telegram import InputMediaPhoto
2021-01-06 17:57:35 +01:00
from telegram.ext import Updater
from telegram.ext import CommandHandler
from pymongo import MongoClient
import io
2021-01-07 23:57:48 +01:00
from datetime import datetime as dt, timedelta as td
2021-01-06 17:57:35 +01:00
import matplotlib.dates as mdates
import matplotlib.pyplot as plt
import numpy as np
import pandas as pd
import requests
import warnings
# Constants
DATA_URL = "https://raw.githubusercontent.com/italia/covid19-opendata-vaccini/master/dati/somministrazioni-vaccini" \
"-summary-latest.csv"
ITALIAN_POPULATION = 60_360_000
HIT = ITALIAN_POPULATION / 100 * 80 # We need 80% of population vaccined for herd immunity
# Exclude warnings
warnings.filterwarnings("ignore")
# Init environment variables
load_dotenv()
# Init logging
logging.basicConfig(format='%(asctime)s - %(name)s - %(levelname)s - %(message)s', level=logging.INFO)
# Get telegram token
telegram_bot_token = os.environ.get('TELEGRAM_BOT_TOKEN')
# Check telegram token
if telegram_bot_token is None:
print('No telegram token.')
exit()
# Init telegram bot
updater = Updater(token=telegram_bot_token, use_context=True)
# Get mongodb auth
mongodb_user = os.environ.get('MONGODB_USER')
mongodb_pass = os.environ.get('MONGODB_PASS')
# Check mongodb auth
if mongodb_user is None or mongodb_pass is None:
print('No mongodb auth.')
exit()
2021-05-21 03:28:16 +02:00
mongodb_uri = 'mongodb://' + mongodb_user + ':' + mongodb_pass + '@db:27017'
2021-01-06 17:57:35 +01:00
# Init mongodb database
client = MongoClient(mongodb_uri)
# Get bot database
db = client['bot']
2021-05-21 15:51:10 +02:00
# Function to generate images from templates
2021-05-21 14:25:23 +02:00
def generate(df, target, template):
2021-05-21 14:15:34 +02:00
# Get data from df
totalVaccines = sum(df[target])
lastWeekData = df.loc[df.index > df.index[-1] - td(days=7)]
vaccinesPerDayAverage = sum(lastWeekData[target]) / 7
2021-01-07 23:57:48 +01:00
remainingDays = (HIT - totalVaccines) / vaccinesPerDayAverage
2021-05-21 14:15:34 +02:00
hitDate = df.index[-1] + td(days=remainingDays)
2021-05-21 15:08:13 +02:00
first_or_second = 'Seconda Dose' if target == 'seconda_dose' else 'Prima Dose' if target == 'prima_dose' else 'Totale'
2021-01-06 17:57:35 +01:00
# Generate plot
2021-05-21 15:08:13 +02:00
plt.ylabel(first_or_second)
2021-01-06 17:57:35 +01:00
plt.xlabel("Ultima settimana")
plt.grid(True)
plt.gca().xaxis.set_major_formatter(mdates.DateFormatter('%Y-%m-%d'))
plt.gca().xaxis.set_major_locator(mdates.AutoDateLocator())
plt.gcf().autofmt_xdate()
2021-05-21 14:15:34 +02:00
plt.bar(lastWeekData.index, height=lastWeekData[target])
2021-01-06 17:57:35 +01:00
# Trendline
2021-05-21 14:15:34 +02:00
z = np.polyfit(range(0, 7), lastWeekData[target], 2)
2021-01-06 17:57:35 +01:00
p = np.poly1d(z)
plt.plot(lastWeekData.index, p(range(0, 7)), "r--")
# Secret 4 filenames
sf = secrets.token_hex(16)
# Generate plot filename
plot_filename = 'plot_' + sf + '.png'
# Create plot image/png
plt.savefig('out/' + plot_filename, dpi=300, bbox_inches='tight')
2021-01-13 21:46:21 +01:00
# Flush the plot
plt.clf()
2021-01-06 17:57:35 +01:00
# Generate tmp webpage/html filename
webpage_filename = 'tmp_' + sf + '.html'
# Generate template
2021-05-21 14:15:34 +02:00
with open(template, 'r+') as f:
2021-01-06 17:57:35 +01:00
with open('out/' + webpage_filename, 'w+') as wf:
for line in f.read().splitlines():
2021-05-21 14:15:34 +02:00
if "<!-- totalVaccinations -->" in line:
2021-01-07 23:57:48 +01:00
line = f"{totalVaccines}"
2021-05-21 15:08:13 +02:00
elif "<!-- typeVaccinations -->" in line:
line = f"{first_or_second}"
2021-01-11 15:35:18 +01:00
elif "<!-- totalVaccinationsPerc -->" in line:
line = f"{str(round(totalVaccines / ITALIAN_POPULATION * 100, 2)).replace('.', ',')}%"
2021-01-06 17:57:35 +01:00
elif "<!-- totalVaccinationsLastWeek -->" in line:
line = f"{int(vaccinesPerDayAverage*7)}"
elif "<!-- vaccinesPerDay -->" in line:
line = f"{int(vaccinesPerDayAverage)}"
elif "<!-- hitDate -->" in line:
line = f"{hitDate.strftime('%d/%m/%Y')}"
elif "<!-- hitHour -->" in line:
line = f"{hitDate.strftime('%H:%M:%S')}"
elif "<!-- daysRemaining -->" in line:
line = f"{int(remainingDays)}"
elif "plot.png" in line:
line = line.replace('plot.png', plot_filename)
wf.write("\n" + line)
# Generate plot filename
results_filename = 'results_' + sf + '.png'
# Set imgkit options
options = {'enable-local-file-access': None}
2021-01-06 17:57:35 +01:00
# Create results image/png
imgkit.from_file('out/' + webpage_filename, 'out/' + results_filename, options=options)
2021-01-06 17:57:35 +01:00
# Return out data
return {
'plot': 'out/' + plot_filename,
'results': 'out/' + results_filename,
'webpage': 'out/' + webpage_filename
}
2021-05-21 15:51:10 +02:00
2021-05-21 14:15:34 +02:00
# Function to get data
def download():
# Download from open data
r = requests.get(DATA_URL)
# Create dataframe from data
df = pd.read_csv(
io.StringIO(r.text),
index_col="data_somministrazione",
)
# Set date as index
df.index = pd.to_datetime(
df.index,
format="%Y-%m-%d",
)
# Sort value based on date
df.sort_values('data_somministrazione')
# Delete sum data if already exists
df = df[df["area"] != "ITA"]
# Set target counters to numeric
2021-05-21 14:25:23 +02:00
df["prima_dose"] = pd.to_numeric(df["prima_dose"])
2021-05-21 14:15:34 +02:00
df["seconda_dose"] = pd.to_numeric(df["seconda_dose"])
# Group by day and sum counters
2021-05-21 14:25:23 +02:00
df_first = df.groupby(['data_somministrazione'])['prima_dose'].sum().reset_index()
df_second = df.groupby(['data_somministrazione'])['seconda_dose'].sum().reset_index()
2021-05-21 14:15:34 +02:00
# Re-set date as ID in new dataframe
2021-05-21 14:25:23 +02:00
df_first = df_first.set_index('data_somministrazione')
df_second = df_second.set_index('data_somministrazione')
2021-05-21 14:15:34 +02:00
# If there are current day data...
2021-05-21 14:25:23 +02:00
if dt.now() - df_first.index[-1] < td(days=1):
df_first = df_first[:-1] # Ignore the current day because it's often incomplete
if dt.now() - df_second.index[-1] < td(days=1):
df_second = df_second[:-1] # Ignore the current day because it's often incomplete
2021-05-21 14:15:34 +02:00
# Generata images
2021-05-21 14:25:23 +02:00
intro = generate(df_second, 'seconda_dose', 'assets/templates/intro.html')
plot1 = generate(df_first, 'prima_dose', 'assets/templates/plot.html')
plot2 = generate(df_second, 'seconda_dose', 'assets/templates/plot.html')
2021-05-21 14:15:34 +02:00
2021-05-21 15:51:10 +02:00
return intro, plot1, plot2
2021-05-21 14:15:34 +02:00
2021-01-06 17:57:35 +01:00
# Help command
def help(update, context):
# Help msg
help_msg = "_Lista dei comandi_ \n\n"
help_msg += "/start - Avvia il bot \n"
help_msg += "/get - Ricevi i dati aggiornati \n"
2021-01-30 14:57:31 +01:00
help_msg += "/news ON/OFF - Attiva o Disattiva le notifiche giornaliere \n"
2021-01-06 17:57:35 +01:00
help_msg += "/help - Messaggio di aiuto \n"
help_msg += "/info - Informazioni su questo bot \n"
help_msg += "/stop - Disattiva il bot \n"
# Send welcome message
context.bot.send_message(chat_id=update.effective_chat.id, text=help_msg, parse_mode='Markdown')
# Info command
def info(update, context):
# Info msg
info_msg = "_Informazioni utili sul bot_\n\n"
2021-01-06 18:17:05 +01:00
info_msg += "Il bot è stato sviluppato da @derogab e il [codice sorgente](https://github.com/derogab/ITAvsCOVIDbot) è pubblicamente disponibile su Github. \n\n"
2021-01-06 17:57:35 +01:00
info_msg += "I dati mostrati sono scaricati dagli [Open Data ufficiali](https://github.com/italia/covid19-opendata-vaccini) sui vaccini in Italia. \n\n"
info_msg += "I grafici sono automaticamente generati mediante il codice della [repository pubblica](https://github.com/MarcoBuster/quanto-manca) di @MarcoBuster. \n\n"
# Send welcome message
context.bot.send_message(chat_id=update.effective_chat.id, text=info_msg, parse_mode='Markdown', disable_web_page_preview=True)
2021-05-21 15:51:10 +02:00
2021-01-06 17:57:35 +01:00
# Start command
def start(update, context):
global db
# Insert user to db
myquery = {
"_id": update.effective_chat.id
}
newvalues = {
"$set": {
"_id": update.effective_chat.id,
"username": update.effective_chat.username,
"first_name": update.effective_chat.first_name,
"last_name": update.effective_chat.last_name,
"active": True,
"news": True
}
}
db.users.update_one(myquery, newvalues, upsert=True)
# welcome msg
welcome_msg = "Benvenuto su 🇮🇹 *ITA vs. COVID* 🦠 !\n\n"
welcome_msg += "Il bot che ti aggiorna sulla battaglia contro il Covid in Italia."
# Send welcome message
context.bot.send_message(chat_id=update.effective_chat.id, text=welcome_msg, parse_mode='Markdown')
# Send help message
help(update, context)
# Send help message
info(update, context)
2021-05-21 15:51:10 +02:00
2021-01-06 17:57:35 +01:00
# Stop command
def stop(update, context):
global db
# Set active = false on db
myquery = {
"_id": update.effective_chat.id
}
newvalues = {
"$set": {
"active": False
}
}
db.users.update_one(myquery, newvalues, upsert=True)
# stop msg
stop_msg = "Il bot è stato spento.\n\n"
stop_msg += "Quando vorrai riavviarlo ti basterà cliccare su /start"
# Send welcome message
context.bot.send_message(chat_id=update.effective_chat.id, text=stop_msg, parse_mode='Markdown')
2021-05-21 15:51:10 +02:00
2021-01-06 17:57:35 +01:00
# News command
def news(update, context):
global db
msg = update.message.text
news = msg.replace('/news', '').strip().lower()
if news == "on":
to_set = True
set_msg = "Le notifiche giornaliere sono state correttamente abiitate.\n\n"
set_msg += "Riceverai i dati sul progresso della battaglia contro il Covid in Italia ogni giorno alle 18:00."
2021-01-06 17:57:35 +01:00
elif news == "off":
to_set = False
set_msg = "Le notifiche giornaliere sono state correttamente disabilitate."
else:
# Invalid param msg
invalid_param_msg = "Il parametro inserito è errato. \n\n"
invalid_param_msg += "/news ON - Per attivare le notifiche giornaliere\n"
invalid_param_msg += "/news OFF - Per disattivare le notifiche giornaliere\n\n"
# Send message
context.bot.send_message(chat_id=update.effective_chat.id, text=invalid_param_msg, parse_mode='Markdown')
# Exit
return
# Set news on db
myquery = {
"_id": update.effective_chat.id
}
newvalues = {
"$set": {
"news": to_set
}
}
db.users.update_one(myquery, newvalues, upsert=True)
# Send welcome message
context.bot.send_message(chat_id=update.effective_chat.id, text=set_msg, parse_mode='Markdown')
2021-05-21 15:51:10 +02:00
2021-01-06 17:57:35 +01:00
# Get data
def get(update, context):
# Download data
2021-05-21 15:51:10 +02:00
intro, plot1, plot2 = download()
2021-01-06 17:57:35 +01:00
2021-05-21 14:15:34 +02:00
# Send photos
p1 = open(intro['results'], 'rb')
p2 = open(plot1['results'], 'rb')
p3 = open(plot2['results'], 'rb')
2021-05-21 15:51:10 +02:00
p1 = InputMediaPhoto(media=p1)
2021-05-21 14:15:34 +02:00
p2 = InputMediaPhoto(media=p2)
p3 = InputMediaPhoto(media=p3)
context.bot.send_media_group(chat_id=update.effective_chat.id, media=[p1, p2, p3])
2021-01-06 17:57:35 +01:00
# Remove tmp files
2021-05-21 14:15:34 +02:00
for data in [intro, plot1, plot2]:
os.remove(data['plot'])
os.remove(data['webpage'])
os.remove(data['results'])
2021-01-06 17:57:35 +01:00
# Cron job
def job():
global db
# Job running...
print('Job running...')
# Download data
2021-05-21 18:21:32 +02:00
intro, plot1, plot2 = download()
2021-01-06 17:57:35 +01:00
# Get active user with daily news
users = db.users.find({
"active": True,
"news": True
})
2021-01-09 13:08:13 +01:00
# Counters
news_sent_counter = 0
news_fail_counter = 0
2021-01-06 17:57:35 +01:00
# Send news to all active user
for user in users:
2021-01-09 13:08:13 +01:00
try:
2021-05-21 18:21:32 +02:00
# Send photos
p1 = open(intro['results'], 'rb')
p2 = open(plot1['results'], 'rb')
p3 = open(plot2['results'], 'rb')
p1 = InputMediaPhoto(media=p1)
p2 = InputMediaPhoto(media=p2)
p3 = InputMediaPhoto(media=p3)
updater.bot.send_media_group(chat_id=user['_id'], media=[p1, p2, p3])
2021-01-09 13:08:13 +01:00
# Count news successfully sent
news_sent_counter = news_sent_counter + 1
# Log
print('[JOB] Message successfully sent to ', user['_id'])
except:
# Count news fail
news_fail_counter = news_fail_counter + 1
# Error on sending
print('[JOB] Failed to send to ', user['_id'])
# Log results
2021-01-11 15:35:18 +01:00
print("[JOB] Results: {sent} messages sent, {fail} messages failed.".format(sent=news_sent_counter, fail=news_fail_counter))
2021-01-06 17:57:35 +01:00
# Remove tmp files
2021-05-21 18:21:32 +02:00
for data in [intro, plot1, plot2]:
os.remove(data['plot'])
os.remove(data['webpage'])
os.remove(data['results'])
2021-01-06 17:57:35 +01:00
# Telegram dispatcher
dispatcher = updater.dispatcher
# Add /help command
start_handler = CommandHandler('help', help)
dispatcher.add_handler(start_handler)
# Add /info command
start_handler = CommandHandler('info', info)
dispatcher.add_handler(start_handler)
# Add /start command
start_handler = CommandHandler('start', start)
dispatcher.add_handler(start_handler)
# Add /stop command
start_handler = CommandHandler('stop', stop)
dispatcher.add_handler(start_handler)
# Add /get command
start_handler = CommandHandler('get', get)
dispatcher.add_handler(start_handler)
# Add /news command
start_handler = CommandHandler('news', news)
dispatcher.add_handler(start_handler)
# Setup cron
2021-05-21 18:24:41 +02:00
schedule.every().day.at("18:30").do(job)
2021-01-06 17:57:35 +01:00
# Start bot
updater.start_polling()
# Run schedule and check bot
while True:
if not updater.running:
# Bot is down.
exit() # and auto restart
schedule.run_pending()
time.sleep(1)