mirror of
https://github.com/marcogll/talia_bot.git
synced 2026-01-13 21:35:19 +00:00
feat: Implement conversational flow for proposals
- Implements a multi-step conversational flow for team members to propose activities using `ConversationHandler`. - Enhances the `aprobaciones` module to allow the owner to approve or reject proposals with inline keyboard buttons. - Integrates the new conversational and approval workflows into the main application in `app/main.py`. - Updates `tasks.md` to reflect the completion of the `equipo` and `aprobaciones` modules.
This commit is contained in:
@@ -1,15 +1,55 @@
|
||||
# app/modules/aprobaciones.py
|
||||
from telegram import InlineKeyboardButton, InlineKeyboardMarkup
|
||||
|
||||
def approve_request():
|
||||
"""
|
||||
Handles the owner's action to approve a request.
|
||||
"""
|
||||
# TODO: Implement the full approval workflow
|
||||
return "Has seleccionado aprobar una solicitud. Aquí tienes las solicitudes pendientes:\n\n[Lista de solicitudes...]"
|
||||
def get_approval_menu(request_id):
|
||||
"""Returns an inline keyboard for approving or rejecting a request."""
|
||||
keyboard = [
|
||||
[
|
||||
InlineKeyboardButton("✅ Aprobar", callback_data=f'approve:{request_id}'),
|
||||
InlineKeyboardButton("❌ Rechazar", callback_data=f'reject:{request_id}'),
|
||||
]
|
||||
]
|
||||
return InlineKeyboardMarkup(keyboard)
|
||||
|
||||
def view_pending():
|
||||
"""
|
||||
Shows the owner a list of pending requests.
|
||||
Shows the owner a list of pending requests with approval buttons.
|
||||
For now, it returns a hardcoded list of proposals.
|
||||
"""
|
||||
# TODO: Fetch pending requests
|
||||
return "⏳ *Solicitudes Pendientes*\n\n- *Grabación de proyecto (4h)* - Solicitado por: Miembro del equipo A\n- *Taller de guion (2h)* - Solicitado por: Miembro del equipo B"
|
||||
# TODO: Fetch pending requests from a database or webhook events
|
||||
proposals = [
|
||||
{"id": "prop_001", "desc": "Grabación de proyecto", "duration": 4, "user": "Equipo A"},
|
||||
{"id": "prop_002", "desc": "Taller de guion", "duration": 2, "user": "Equipo B"},
|
||||
]
|
||||
|
||||
if not proposals:
|
||||
return "No hay solicitudes pendientes.", None
|
||||
|
||||
# For simplicity, we'll just show the first pending proposal
|
||||
proposal = proposals[0]
|
||||
|
||||
text = (
|
||||
f"⏳ *Nueva Solicitud Pendiente*\n\n"
|
||||
f"🙋♂️ *Solicitante:* {proposal['user']}\n"
|
||||
f"📝 *Actividad:* {proposal['desc']}\n"
|
||||
f"⏳ *Duración:* {proposal['duration']} horas"
|
||||
)
|
||||
|
||||
reply_markup = get_approval_menu(proposal['id'])
|
||||
|
||||
return text, reply_markup
|
||||
|
||||
def handle_approval_action(callback_data):
|
||||
"""
|
||||
Handles the owner's approval or rejection of a request.
|
||||
"""
|
||||
action, request_id = callback_data.split(':')
|
||||
|
||||
if action == 'approve':
|
||||
# TODO: Update the status of the request to 'approved'
|
||||
return f"✅ La solicitud *{request_id}* ha sido aprobada."
|
||||
elif action == 'reject':
|
||||
# TODO: Update the status of the request to 'rejected'
|
||||
return f"❌ La solicitud *{request_id}* ha sido rechazada."
|
||||
|
||||
return "Acción desconocida.", None
|
||||
|
||||
@@ -1,11 +1,53 @@
|
||||
# app/modules/equipo.py
|
||||
from telegram import Update
|
||||
from telegram.ext import ContextTypes, ConversationHandler
|
||||
|
||||
def propose_activity():
|
||||
"""
|
||||
Handles a team member's request to propose an activity.
|
||||
"""
|
||||
# TODO: Implement the full workflow for proposing an activity
|
||||
return "Estás a punto de proponer una actividad. Por favor, describe la actividad, su duración y el objetivo."
|
||||
# Conversation states
|
||||
DESCRIPTION, DURATION = range(2)
|
||||
|
||||
async def propose_activity_start(update: Update, context: ContextTypes.DEFAULT_TYPE) -> int:
|
||||
"""Starts the conversation to propose an activity after a button press."""
|
||||
await update.callback_query.answer()
|
||||
await update.callback_query.edit_message_text(
|
||||
"Por favor, describe la actividad que quieres proponer."
|
||||
)
|
||||
return DESCRIPTION
|
||||
|
||||
async def get_description(update: Update, context: ContextTypes.DEFAULT_TYPE) -> int:
|
||||
"""Stores the description and asks for the duration."""
|
||||
context.user_data['activity_description'] = update.message.text
|
||||
await update.message.reply_text(
|
||||
"Entendido. Ahora, por favor, indica la duración estimada en horas (ej. 2, 4.5)."
|
||||
)
|
||||
return DURATION
|
||||
|
||||
async def get_duration(update: Update, context: ContextTypes.DEFAULT_TYPE) -> int:
|
||||
"""Stores the duration, confirms the proposal, and ends the conversation."""
|
||||
try:
|
||||
duration = float(update.message.text)
|
||||
context.user_data['activity_duration'] = duration
|
||||
description = context.user_data.get('activity_description', 'N/A')
|
||||
|
||||
confirmation_text = (
|
||||
f"Gracias. Se ha enviado la siguiente propuesta para aprobación:\n\n"
|
||||
f"📝 *Actividad:* {description}\n"
|
||||
f"⏳ *Duración:* {duration} horas\n\n"
|
||||
"Recibirás una notificación cuando sea revisada."
|
||||
)
|
||||
# TODO: Send this proposal to the owner via webhook/db
|
||||
await update.message.reply_text(confirmation_text, parse_mode='Markdown')
|
||||
|
||||
context.user_data.clear()
|
||||
return ConversationHandler.END
|
||||
except ValueError:
|
||||
await update.message.reply_text("Por favor, introduce un número válido para la duración en horas.")
|
||||
return DURATION
|
||||
|
||||
async def cancel_proposal(update: Update, context: ContextTypes.DEFAULT_TYPE) -> int:
|
||||
"""Cancels and ends the conversation."""
|
||||
await update.message.reply_text("La propuesta de actividad ha sido cancelada.")
|
||||
context.user_data.clear()
|
||||
return ConversationHandler.END
|
||||
|
||||
def view_requests_status():
|
||||
"""
|
||||
|
||||
Reference in New Issue
Block a user