You've already forked Curso-lenguaje-python
420 lines
13 KiB
Python
420 lines
13 KiB
Python
"""
|
|
Bot de Telegram para mostrar la tabla de mareas de tablademareas.com
|
|
|
|
Comandos:
|
|
- /start: Iniciar el bot
|
|
- /reset: Borrar el historial
|
|
- /help: Mostrar este mensaje de ayuda
|
|
"""
|
|
import aiohttp
|
|
import json
|
|
import logging
|
|
import os
|
|
import psycopg2
|
|
import redis
|
|
|
|
from aiohttp import ClientError, ClientResponseError, ClientConnectionError, ClientPayloadError
|
|
from bs4 import BeautifulSoup
|
|
from dotenv import load_dotenv
|
|
from telegram import InlineKeyboardButton, InlineKeyboardMarkup, Update
|
|
from telegram.ext import ApplicationBuilder, CommandHandler, CallbackQueryHandler
|
|
|
|
######################
|
|
# Configuración #
|
|
######################
|
|
|
|
# Cargar variables de entorno
|
|
load_dotenv()
|
|
|
|
# Obtener token de Telegram
|
|
TELEGRAM_TOKEN = os.getenv('TELEGRAM_BOT_TOKEN')
|
|
|
|
# Configuración de logging: toma el nivel desde la variable de entorno LOG_LEVEL
|
|
log_level = os.getenv('LOG_LEVEL', 'INFO').upper()
|
|
logging.basicConfig(
|
|
format='%(asctime)s - %(name)s - %(levelname)s - %(message)s',
|
|
level=getattr(logging, log_level, logging.INFO)
|
|
)
|
|
|
|
|
|
class ExcludeInfoFilter(logging.Filter):
|
|
"""
|
|
Excluir mensajes de nivel INFO de httpx
|
|
"""
|
|
|
|
def filter(self, record):
|
|
return record.levelno != logging.INFO
|
|
|
|
|
|
httpx_logger = logging.getLogger("httpx")
|
|
httpx_logger.addFilter(ExcludeInfoFilter())
|
|
|
|
|
|
######################
|
|
# Funciones Helper #
|
|
######################
|
|
|
|
def shorten_url(url):
|
|
"""
|
|
Helper: Quitar dominio de la URL para que el callback_data sea corto
|
|
"""
|
|
domain = "https://tablademareas.com"
|
|
|
|
if url.startswith(domain):
|
|
return url[len(domain):]
|
|
return url
|
|
|
|
|
|
def get_chat(update: Update):
|
|
"""
|
|
Helper: Obtener el objeto chat
|
|
ya sea de update.message o de update.callback_query.message
|
|
"""
|
|
if update.message:
|
|
return update.message.chat
|
|
elif update.callback_query and update.callback_query.message:
|
|
return update.callback_query.message.chat
|
|
return None
|
|
|
|
|
|
######################
|
|
# Conexión a Redis #
|
|
######################
|
|
|
|
try:
|
|
REDIS_PASSWORD = os.getenv('REDIS_PASSWORD')
|
|
r = redis.Redis(
|
|
host='tablamareas-redis', port=6379, db=0,
|
|
password=REDIS_PASSWORD, decode_responses=True
|
|
)
|
|
logging.info("✅ Conectado a Redis")
|
|
except Exception as e:
|
|
logging.error(f"⚠️ Error conectando a Redis: {e}")
|
|
r = None
|
|
|
|
|
|
def cache_set(key, value, expire=3600):
|
|
"""
|
|
Guardar datos en caché con un tiempo de expiración
|
|
"""
|
|
if r:
|
|
r.set(key, json.dumps(value), ex=expire)
|
|
logging.info(f"🗃️ Guardado en caché: {key}")
|
|
|
|
|
|
def cache_get(key):
|
|
"""
|
|
Obtener datos de la caché
|
|
"""
|
|
if r:
|
|
data = r.get(key)
|
|
if data:
|
|
logging.info(f"💾 Cache HIT para {key}")
|
|
return json.loads(data)
|
|
logging.info(f"🚫 Cache MISS para {key}")
|
|
return None
|
|
|
|
#########################
|
|
# Conexión a PostgreSQL #
|
|
#########################
|
|
|
|
|
|
DATABASE_URL = os.getenv('DATABASE_URL')
|
|
|
|
|
|
def get_db_connection():
|
|
try:
|
|
conn = psycopg2.connect(DATABASE_URL)
|
|
return conn
|
|
except Exception as e:
|
|
logging.error(f"❌ Error conectando a PostgreSQL: {e}")
|
|
return None
|
|
|
|
|
|
def init_db():
|
|
conn = get_db_connection()
|
|
if not conn:
|
|
logging.error("⚠️ No se pudo inicializar la base de datos.")
|
|
return
|
|
with conn:
|
|
with conn.cursor() as cur:
|
|
cur.execute("""
|
|
CREATE TABLE IF NOT EXISTS users (
|
|
id SERIAL PRIMARY KEY,
|
|
telegram_id BIGINT UNIQUE,
|
|
username TEXT,
|
|
first_name TEXT,
|
|
last_name TEXT
|
|
);
|
|
""")
|
|
cur.execute("""
|
|
CREATE TABLE IF NOT EXISTS events (
|
|
id SERIAL PRIMARY KEY,
|
|
user_id INTEGER REFERENCES users(id) ON DELETE CASCADE,
|
|
event_type TEXT,
|
|
event_data JSONB,
|
|
timestamp TIMESTAMP DEFAULT CURRENT_TIMESTAMP
|
|
);
|
|
""")
|
|
logging.info("✅ Base de datos inicializada correctamente.")
|
|
|
|
|
|
######################
|
|
# Funciones del Bot #
|
|
######################
|
|
|
|
async def fetch(url):
|
|
"""
|
|
Función para obtener datos de la web con caché
|
|
"""
|
|
url = url.split("#")[0] # eliminar fragmentos
|
|
cached_data = cache_get(url)
|
|
if cached_data:
|
|
return cached_data
|
|
|
|
async with aiohttp.ClientSession() as session:
|
|
try:
|
|
async with session.get(
|
|
url,
|
|
headers={"User-Agent": "Mozilla/5.0"}
|
|
) as response:
|
|
response.raise_for_status()
|
|
text = await response.text()
|
|
cache_set(url, text)
|
|
return text
|
|
except ClientResponseError as e:
|
|
logging.error(
|
|
f"❌ Error HTTP {e.status} en fetch {url}: {e.message}"
|
|
)
|
|
except ClientConnectionError:
|
|
logging.error(f"⚠️ Error de conexión al intentar acceder a {url}")
|
|
except ClientPayloadError:
|
|
logging.error(f"❗ Error en la carga de datos desde {url}")
|
|
except ClientError as e:
|
|
logging.error(f"🔴 Error en fetch {url}: {e}")
|
|
except Exception as e:
|
|
logging.error(f"⚡ Error inesperado en fetch {url}: {e}")
|
|
|
|
return None
|
|
|
|
|
|
def log_user_event(telegram_id, event_type, event_data):
|
|
"""
|
|
Función para registrar eventos
|
|
"""
|
|
conn = get_db_connection()
|
|
if not conn:
|
|
return
|
|
with conn:
|
|
with conn.cursor() as cur:
|
|
cur.execute("""
|
|
INSERT INTO events (user_id, event_type, event_data)
|
|
VALUES ((SELECT id FROM users WHERE telegram_id = %s), %s, %s);
|
|
""", (telegram_id, event_type, json.dumps(event_data)))
|
|
logging.info(f"📝 Evento registrado: {event_type} - {event_data}")
|
|
|
|
|
|
async def start(update: Update, context):
|
|
"""
|
|
Comando /start
|
|
"""
|
|
user = update.message.from_user
|
|
conn = get_db_connection()
|
|
if conn:
|
|
with conn:
|
|
with conn.cursor() as cur:
|
|
cur.execute("""
|
|
INSERT INTO users (telegram_id, username, first_name, last_name)
|
|
VALUES (%s, %s, %s, %s)
|
|
ON CONFLICT (telegram_id) DO NOTHING;
|
|
""", (user.id, user.username, user.first_name, user.last_name))
|
|
logging.info(f"👤 Nuevo usuario registrado: {user.username} ({user.id})")
|
|
log_user_event(user.id, "start_command", {})
|
|
|
|
await update.message.reply_text("¡Bienvenido! Soy un bot de tabla de mareas (https://tablademareas.com/).")
|
|
await show_continents(update)
|
|
|
|
|
|
async def reset(update: Update, context):
|
|
"""
|
|
Comando /reset
|
|
"""
|
|
user = update.message.from_user
|
|
conn = get_db_connection()
|
|
if conn:
|
|
with conn:
|
|
with conn.cursor() as cur:
|
|
cur.execute("""
|
|
DELETE FROM events WHERE user_id = (SELECT id FROM users WHERE telegram_id = %s);
|
|
""", (user.id,))
|
|
logging.info(f"🔄 Historial borrado para {user.username} ({user.id}).")
|
|
log_user_event(user.id, "reset_command", {})
|
|
await update.message.reply_text("Tu historial ha sido borrado.")
|
|
|
|
|
|
async def help_command(update: Update, context):
|
|
"""
|
|
Comando /help
|
|
"""
|
|
await update.message.reply_text(
|
|
"Opciones:\n- /start: Iniciar el bot\n- /reset: Borrar el historial\n- /help: Mostrar este mensaje de ayuda"
|
|
)
|
|
|
|
|
|
async def show_continents(update: Update):
|
|
"""
|
|
Función para obtener continentes (nivel 0)
|
|
"""
|
|
chat = get_chat(update)
|
|
full_url = "https://tablademareas.com/"
|
|
response_text = await fetch(full_url)
|
|
if response_text is None:
|
|
if update.message:
|
|
await update.message.reply_text("Error al obtener los continentes.")
|
|
else:
|
|
await update.callback_query.edit_message_text("Error al obtener los continentes.")
|
|
return
|
|
soup = BeautifulSoup(response_text, 'html.parser')
|
|
continentes = soup.select('div#sitios_continentes a')
|
|
keyboard = [[InlineKeyboardButton(c.text.strip(), callback_data=f"continent:{shorten_url(c['href'])}")]
|
|
for c in continentes]
|
|
logging.info(f"🌍 Mostrando continentes a {chat.username}({chat.id})")
|
|
log_user_event(chat.id, "show_continents", {})
|
|
|
|
if update.message:
|
|
await update.message.reply_text('Selecciona un continente:', reply_markup=InlineKeyboardMarkup(keyboard))
|
|
else:
|
|
await update.callback_query.edit_message_text('Selecciona un continente:', reply_markup=InlineKeyboardMarkup(keyboard))
|
|
|
|
|
|
async def continent_callback(update: Update, context):
|
|
"""
|
|
Callback para continente: mostrar países
|
|
"""
|
|
query = update.callback_query
|
|
await query.answer()
|
|
short_url = query.data.split(":", 1)[1]
|
|
full_url = "https://tablademareas.com" + short_url
|
|
response_text = await fetch(full_url)
|
|
if response_text is None:
|
|
await query.edit_message_text("Error al obtener los países.")
|
|
return
|
|
soup = BeautifulSoup(response_text, 'html.parser')
|
|
paises = soup.select('a.sitio_reciente_a')
|
|
buttons = sorted(
|
|
[InlineKeyboardButton(p.text.strip(
|
|
), callback_data=f"country:{shorten_url(p['href'])}") for p in paises],
|
|
key=lambda btn: btn.text.lower()
|
|
)
|
|
keyboard = [[btn] for btn in buttons]
|
|
logging.info(
|
|
f"🌎 {query.from_user.username} ({query.from_user.id}) seleccionó un continente")
|
|
log_user_event(query.from_user.id, "continent_selected", {"url": full_url})
|
|
await query.edit_message_text('Selecciona un país:', reply_markup=InlineKeyboardMarkup(keyboard))
|
|
|
|
|
|
async def country_callback(update: Update, context):
|
|
"""
|
|
Callback para país: mostrar provincias
|
|
"""
|
|
query = update.callback_query
|
|
await query.answer()
|
|
short_url = query.data.split(":", 1)[1]
|
|
full_url = "https://tablademareas.com" + short_url
|
|
response_text = await fetch(full_url)
|
|
if response_text is None:
|
|
await query.edit_message_text("Error al obtener las provincias.")
|
|
return
|
|
soup = BeautifulSoup(response_text, 'html.parser')
|
|
provincias = soup.select('a.sitio_reciente_a')
|
|
buttons = sorted(
|
|
[InlineKeyboardButton(p.text.strip(
|
|
), callback_data=f"province:{shorten_url(p['href'])}") for p in provincias],
|
|
key=lambda btn: btn.text.lower()
|
|
)
|
|
keyboard = [[btn] for btn in buttons]
|
|
logging.info(
|
|
f"🚢 {query.from_user.username} ({query.from_user.id}) seleccionó un país")
|
|
log_user_event(query.from_user.id, "country_selected", {"url": full_url})
|
|
await query.edit_message_text('Selecciona una provincia:', reply_markup=InlineKeyboardMarkup(keyboard))
|
|
|
|
|
|
async def province_callback(update: Update, context):
|
|
"""
|
|
Callback para provincia: mostrar puertos
|
|
"""
|
|
query = update.callback_query
|
|
await query.answer()
|
|
short_url = query.data.split(":", 1)[1]
|
|
full_url = "https://tablademareas.com" + short_url
|
|
response_text = await fetch(full_url)
|
|
if response_text is None:
|
|
await query.edit_message_text("Error al obtener los puertos.")
|
|
return
|
|
soup = BeautifulSoup(response_text, 'html.parser')
|
|
puertos = soup.select('a.sitio_estacion_a')
|
|
if not puertos:
|
|
await query.edit_message_text("No se encontraron puertos en la página.")
|
|
return
|
|
buttons = []
|
|
for p in puertos:
|
|
href = p.get('href')
|
|
if not href:
|
|
continue
|
|
station_container = p.find("div", class_="sitio_estacion")
|
|
port_name = None
|
|
if station_container:
|
|
first_div = station_container.find("div", recursive=False)
|
|
if first_div:
|
|
port_name = first_div.get_text(strip=True)
|
|
if not port_name:
|
|
port_name = p.text.strip()
|
|
buttons.append(InlineKeyboardButton(
|
|
port_name, callback_data=f"port:{shorten_url(href)}"))
|
|
buttons = sorted(buttons, key=lambda btn: btn.text.lower())
|
|
keyboard = [[btn] for btn in buttons]
|
|
logging.info(
|
|
f"⚓ {query.from_user.username} ({query.from_user.id}) seleccionó una provincia")
|
|
log_user_event(query.from_user.id, "province_selected", {"url": full_url})
|
|
await query.edit_message_text('Selecciona un puerto:', reply_markup=InlineKeyboardMarkup(keyboard))
|
|
|
|
|
|
async def port_callback(update: Update, context):
|
|
"""
|
|
Callback para puerto: acción final
|
|
"""
|
|
query = update.callback_query
|
|
await query.answer()
|
|
short_url = query.data.split(":", 1)[1]
|
|
full_url = "https://tablademareas.com" + short_url
|
|
logging.info(
|
|
f"🚩 {query.from_user.username} ({query.from_user.id}) seleccionó un puerto")
|
|
log_user_event(query.from_user.id, "port_selected", {"url": full_url})
|
|
await query.edit_message_text(f"Enlace del puerto: {full_url}")
|
|
|
|
|
|
def main():
|
|
"""
|
|
Función principal para iniciar el bot
|
|
"""
|
|
app = ApplicationBuilder().token(TELEGRAM_TOKEN).build()
|
|
app.add_handler(CommandHandler("start", start))
|
|
app.add_handler(CommandHandler("reset", reset))
|
|
app.add_handler(CommandHandler("help", help_command))
|
|
app.add_handler(
|
|
CallbackQueryHandler(continent_callback, pattern='^continent:')
|
|
)
|
|
app.add_handler(CallbackQueryHandler(
|
|
country_callback, pattern='^country:'))
|
|
app.add_handler(CallbackQueryHandler(
|
|
province_callback, pattern='^province:'))
|
|
app.add_handler(CallbackQueryHandler(port_callback, pattern='^port:'))
|
|
logging.info("🤖 Iniciando el bot...")
|
|
init_db()
|
|
app.run_polling()
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|