diff --git a/telegrambot.py b/telegrambot.py index 6f6cd9f2..c0c7d867 100644 --- a/telegrambot.py +++ b/telegrambot.py @@ -485,6 +485,8 @@ def cmd_newevent(bot: Bot, update: Update): # Parse the timestring try: parsed_time = parse_timestring(timestring) + if parsed_time < datetime.datetime.now(): + raise PastDateError() except ValueError: bot.send_message(update.message.chat.id, "⚠ Non è stato possibile leggere la data.\n" "Sintassi corretta:\n" @@ -492,6 +494,10 @@ def cmd_newevent(bot: Bot, update: Update): "|{numero}{w|d|h|m}> \n" "[descrizione]```", parse_mode="Markdown") return + except PastDateError: + bot.send_message(update.message.chat.id, "⚠ La data inserita è una data passata.\n" + "per favore inserisci una data futura.\n", parse_mode="Markdown") + return # Create the event session = db.Session() telegram_user = session.query(db.Telegram)\