Skip to content

Commit

Permalink
Merge pull request #11 from aitormagan/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
aitormagan authored Jul 9, 2021
2 parents 6d9dab4 + a9f4fb0 commit 114ce01
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
3 changes: 1 addition & 2 deletions src/checker.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@ def notify(min_years, user_info):
max_year_of_birth = datetime.now().year - min_years
message = f"‼️ ¡Buenas noticias {user_info['name']}! El sistema de vacunación de la Comunidad de Madrid ya " \
f"permite pedir cita a gente nacida en {max_year_of_birth} o antes. 🏃 Corre y pide tu cita en 🔗 " \
f"https://autocitavacuna.sanidadmadrid.org/ohcitacovid/\n\n🤔 ¿Sabes que ahora puedo darte las " \
f"primeras citas disponibles? Simplemente di /mindate."
f"https://autocitavacuna.sanidadmadrid.org/ohcitacovid/"
send_text(user_info["user_id"], message)


Expand Down
5 changes: 2 additions & 3 deletions src/message_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def handle_update(update):
answer = handle_subscribe(update)
elif message == "/mindate":
# telegram_helpers.send_text(user_id, "⌛ Esto me puede llevar unos segunditos...")
answer = "Perdoname 🙏, pero la Comunidad de Madrid ha cambiado el sistema para impedirme darte esta información 😓. Intentaremos solventar este escollo 😉."
answer = "Perdoname 🙏, pero la Comunidad de Madrid ha cambiado el sistema para impedirme darte esta información 😓."
else:
answer = handle_generic_message(update)
except Exception:
Expand All @@ -60,8 +60,7 @@ def handle_start(update):
f"tu año de nacimiento!\n\nOtros comandos útiles:\n- /subscribe: 🔔 Crea una suscripción para " \
f"cuando puedas pedir cita para vacunarte\n- /help: 🙋 Muestra esta ayuda\n- /status: " \
f"ℹ️ Muestra si ya estás suscrito\n- /cancel: 🔕 Cancela la notificación registrada\n - /currentage: " \
f"📆 Muestra la edad mínima con la que puedes pedir cita\n - /mindate: 📆 Lista las primeras citas " \
f"disponibles en los distintos centros de vacunación."
f"📆 Muestra la edad mínima con la que puedes pedir cita"


def handle_cancel(update):
Expand Down

0 comments on commit 114ce01

Please sign in to comment.