Backup automatico script del 2025-12-02 21:54
This commit is contained in:
@@ -7,6 +7,7 @@ from dateutil import parser
|
|||||||
from zoneinfo import ZoneInfo
|
from zoneinfo import ZoneInfo
|
||||||
|
|
||||||
# --- CONFIGURAZIONE ---
|
# --- CONFIGURAZIONE ---
|
||||||
|
# 👇👇 INSERISCI QUI I TUOI DATI 👇👇
|
||||||
TELEGRAM_BOT_TOKEN = "8155587974:AAF9OekvBpixtk8ZH6KoIc0L8edbhdXt7A4"
|
TELEGRAM_BOT_TOKEN = "8155587974:AAF9OekvBpixtk8ZH6KoIc0L8edbhdXt7A4"
|
||||||
TELEGRAM_CHAT_IDS = ["64463169", "24827341", "132455422", "5405962012"]
|
TELEGRAM_CHAT_IDS = ["64463169", "24827341", "132455422", "5405962012"]
|
||||||
|
|
||||||
@@ -15,19 +16,22 @@ LAT = 43.9356
|
|||||||
LON = 12.4296
|
LON = 12.4296
|
||||||
|
|
||||||
# SOGLIE DI ALLARME
|
# SOGLIE DI ALLARME
|
||||||
WIND_LIMIT_WARN = 60.0 # km/h (Attenzione: Vasi, stendini)
|
WIND_LIMIT_WARN = 60.0 # km/h (Vento Forte)
|
||||||
WIND_LIMIT_CRIT = 90.0 # km/h (Pericolo)
|
WIND_LIMIT_CRIT = 90.0 # km/h (Burrasca)
|
||||||
RAIN_3H_LIMIT = 25.0 # mm in 3 ore (Rischio allagamenti/disagi forti)
|
RAIN_3H_LIMIT = 25.0 # mm in 3 ore (Rischio idrogeologico)
|
||||||
|
|
||||||
# File di stato per evitare spam (memorizza ultimo avviso inviato)
|
# File di stato
|
||||||
STATE_FILE = "/tmp/weather_alert_state.json"
|
STATE_FILE = "/home/daniely/docker/telegram-bot/weather_state.json"
|
||||||
|
|
||||||
|
def send_telegram_message(message):
|
||||||
|
if not TELEGRAM_BOT_TOKEN or "INSERISCI" in TELEGRAM_BOT_TOKEN:
|
||||||
|
print(f"[TEST OUT] {message}")
|
||||||
|
return
|
||||||
|
|
||||||
def send_telegram(msg):
|
|
||||||
if "INSERISCI" in TELEGRAM_BOT_TOKEN: return
|
|
||||||
url = f"https://api.telegram.org/bot{TELEGRAM_BOT_TOKEN}/sendMessage"
|
url = f"https://api.telegram.org/bot{TELEGRAM_BOT_TOKEN}/sendMessage"
|
||||||
for cid in TELEGRAM_CHAT_IDS:
|
for chat_id in TELEGRAM_CHAT_IDS:
|
||||||
try:
|
try:
|
||||||
requests.post(url, json={"chat_id": cid, "text": msg, "parse_mode": "Markdown"}, timeout=5)
|
requests.post(url, json={"chat_id": chat_id, "text": message, "parse_mode": "Markdown"}, timeout=5)
|
||||||
time.sleep(0.2)
|
time.sleep(0.2)
|
||||||
except: pass
|
except: pass
|
||||||
|
|
||||||
@@ -36,7 +40,7 @@ def get_forecast():
|
|||||||
params = {
|
params = {
|
||||||
"latitude": LAT, "longitude": LON,
|
"latitude": LAT, "longitude": LON,
|
||||||
"hourly": "precipitation,windgusts_10m",
|
"hourly": "precipitation,windgusts_10m",
|
||||||
"models": "arome_france_hd", # Alta precisione
|
"models": "arome_france_hd",
|
||||||
"timezone": "Europe/Rome",
|
"timezone": "Europe/Rome",
|
||||||
"forecast_days": 2
|
"forecast_days": 2
|
||||||
}
|
}
|
||||||
@@ -51,10 +55,12 @@ def load_state():
|
|||||||
try:
|
try:
|
||||||
with open(STATE_FILE, 'r') as f: return json.load(f)
|
with open(STATE_FILE, 'r') as f: return json.load(f)
|
||||||
except: pass
|
except: pass
|
||||||
return {"last_wind": 0, "last_rain": 0, "time": 0}
|
return {"alert_active": False, "last_wind": 0, "last_rain": 0, "time": 0}
|
||||||
|
|
||||||
def save_state(state):
|
def save_state(state):
|
||||||
with open(STATE_FILE, 'w') as f: json.dump(state, f)
|
try:
|
||||||
|
with open(STATE_FILE, 'w') as f: json.dump(state, f)
|
||||||
|
except: pass
|
||||||
|
|
||||||
def analyze():
|
def analyze():
|
||||||
data = get_forecast()
|
data = get_forecast()
|
||||||
@@ -68,10 +74,6 @@ def analyze():
|
|||||||
now = datetime.datetime.now(ZoneInfo("Europe/Rome"))
|
now = datetime.datetime.now(ZoneInfo("Europe/Rome"))
|
||||||
state = load_state()
|
state = load_state()
|
||||||
|
|
||||||
# Reset stato se sono passate più di 8 ore dall'ultimo avviso
|
|
||||||
if time.time() - state.get("time", 0) > (8 * 3600):
|
|
||||||
state = {"last_wind": 0, "last_rain": 0, "time": time.time()}
|
|
||||||
|
|
||||||
# Trova indice ora corrente
|
# Trova indice ora corrente
|
||||||
start_idx = -1
|
start_idx = -1
|
||||||
for i, t in enumerate(times):
|
for i, t in enumerate(times):
|
||||||
@@ -88,41 +90,76 @@ def analyze():
|
|||||||
max_wind_time = ""
|
max_wind_time = ""
|
||||||
sum_rain_3h = 0.0
|
sum_rain_3h = 0.0
|
||||||
|
|
||||||
# Cerca picco vento nelle 12h
|
# Cerca picco vento
|
||||||
for i in range(start_idx, end_idx):
|
for i in range(start_idx, end_idx):
|
||||||
if wind[i] > max_wind:
|
if wind[i] > max_wind:
|
||||||
max_wind = wind[i]
|
max_wind = wind[i]
|
||||||
max_wind_time = parser.isoparse(times[i]).strftime('%H:%M')
|
max_wind_time = parser.isoparse(times[i]).strftime('%H:%M')
|
||||||
|
|
||||||
# Cerca picco pioggia (finestra mobile 3h)
|
# Cerca picco pioggia (sliding window 3h)
|
||||||
for i in range(start_idx, end_idx - 3):
|
for i in range(start_idx, end_idx - 3):
|
||||||
current_sum = sum(rain[i:i+3])
|
current_sum = sum(rain[i:i+3])
|
||||||
if current_sum > sum_rain_3h:
|
if current_sum > sum_rain_3h:
|
||||||
sum_rain_3h = current_sum
|
sum_rain_3h = current_sum
|
||||||
|
|
||||||
|
# --- LOGICA DI DECISIONE ---
|
||||||
|
|
||||||
|
is_wind_alarm = max_wind > WIND_LIMIT_WARN
|
||||||
|
is_rain_alarm = sum_rain_3h > RAIN_3H_LIMIT
|
||||||
|
IS_ALARM_NOW = is_wind_alarm or is_rain_alarm
|
||||||
|
|
||||||
|
WAS_ALARM = state.get("alert_active", False)
|
||||||
|
|
||||||
alerts = []
|
alerts = []
|
||||||
|
|
||||||
# LOGICA VENTO
|
# SCENARIO A: NUOVO ALLARME o PEGGIORAMENTO
|
||||||
if max_wind > WIND_LIMIT_WARN:
|
if IS_ALARM_NOW:
|
||||||
# Manda avviso solo se è peggiore del precedente o se non ho mandato nulla
|
should_notify = False
|
||||||
if max_wind > state["last_wind"] + 10: # +10km/h di tolleranza per non ripetere
|
|
||||||
icon = "💨" if max_wind < WIND_LIMIT_CRIT else "🌪️ ⛔️"
|
# Logica Vento
|
||||||
livello = "FORTE" if max_wind < WIND_LIMIT_CRIT else "BURRASCA (Pericolo)"
|
if is_wind_alarm:
|
||||||
alerts.append(f"{icon} **VENTO {livello}**\nRaffiche previste fino a **{max_wind:.0f} km/h** verso le {max_wind_time}.\n_Consiglio: Ritirare oggetti leggeri/tende._")
|
# Notifica se è nuovo o se è peggiorato di 10km/h rispetto all'ultimo avviso
|
||||||
state["last_wind"] = max_wind
|
if not WAS_ALARM or max_wind > state.get("last_wind", 0) + 10:
|
||||||
state["time"] = time.time()
|
icon = "💨" if max_wind < WIND_LIMIT_CRIT else "🌪️ ⛔️"
|
||||||
|
livello = "FORTE" if max_wind < WIND_LIMIT_CRIT else "BURRASCA"
|
||||||
|
alerts.append(f"{icon} **VENTO {livello}**\nRaffiche previste fino a **{max_wind:.0f} km/h** verso le {max_wind_time}.\n_Consiglio: Ritirare oggetti leggeri._")
|
||||||
|
state["last_wind"] = max_wind
|
||||||
|
should_notify = True
|
||||||
|
|
||||||
|
# Logica Pioggia
|
||||||
|
if is_rain_alarm:
|
||||||
|
# Notifica se è nuovo o se è peggiorata di 10mm
|
||||||
|
if not WAS_ALARM or sum_rain_3h > state.get("last_rain", 0) + 10:
|
||||||
|
alerts.append(f"🌧️ **PIOGGIA INTENSA**\nPrevisti **{sum_rain_3h:.1f} mm** in 3 ore.\n_Rischio disagi idraulici._")
|
||||||
|
state["last_rain"] = sum_rain_3h
|
||||||
|
should_notify = True
|
||||||
|
|
||||||
# LOGICA PIOGGIA
|
if should_notify:
|
||||||
if sum_rain_3h > RAIN_3H_LIMIT:
|
full_msg = f"⚠️ **AVVISO METEO (Prossime 12h)**\n\n" + "\n\n".join(alerts)
|
||||||
if sum_rain_3h > state["last_rain"] + 10:
|
send_telegram_message(full_msg)
|
||||||
alerts.append(f"🌧️ **PIOGGIA INTENSA**\nPrevisti **{sum_rain_3h:.1f} mm** in sole 3 ore.\n_Possibili disagi stradali._")
|
state["alert_active"] = True
|
||||||
state["last_rain"] = sum_rain_3h
|
|
||||||
state["time"] = time.time()
|
state["time"] = time.time()
|
||||||
|
save_state(state)
|
||||||
|
print("Allerta inviata.")
|
||||||
|
else:
|
||||||
|
print("Condizioni critiche ma stabili (già notificato).")
|
||||||
|
|
||||||
if alerts:
|
# SCENARIO B: ALLARME RIENTRATO
|
||||||
full_msg = f"⚠️ **AVVISO METEO (Prossime 12h)**\n\n" + "\n\n".join(alerts)
|
elif WAS_ALARM and not IS_ALARM_NOW:
|
||||||
send_telegram_message(full_msg)
|
msg = (
|
||||||
|
f"🟢 **ALLERTA METEO RIENTRATA**\n"
|
||||||
|
f"📅 _Aggiornamento ore {now.strftime('%H:%M')}_\n\n"
|
||||||
|
f"Vento e pioggia sono scesi sotto le soglie di guardia per le prossime 12 ore."
|
||||||
|
)
|
||||||
|
send_telegram_message(msg)
|
||||||
|
|
||||||
|
# Reset stato
|
||||||
|
state = {"alert_active": False, "last_wind": 0, "last_rain": 0, "time": time.time()}
|
||||||
save_state(state)
|
save_state(state)
|
||||||
|
print("Allarme rientrato inviato.")
|
||||||
|
|
||||||
|
else:
|
||||||
|
print(f"Situazione tranquilla. Vento: {max_wind:.1f}, Pioggia: {sum_rain_3h:.1f}")
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
analyze()
|
analyze()
|
||||||
|
|||||||
Reference in New Issue
Block a user