-
Notifications
You must be signed in to change notification settings - Fork 0
/
handlers.py
33 lines (25 loc) · 972 Bytes
/
handlers.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/usr/bin/env python3
"""
Handler - функция, которая принимает на вход текст (текст входящего сообщения) и context (dict), а возвращает bool:
True, если шаг пройден, False если данные введены не правильно.
"""
import re
from generate_ticket import generate_ticket
re_name = re.compile(r'^[\w\-\s]{3,40}$')
re_email = re.compile(r"\b[a-zA-Z0-9_.+-]+@[a-zA-Z0-9-]+\.[a-zA-Z0-9-.]+\b")
def handle_name(text, context):
match = re.match(re_name, text)
if match:
context['name'] = text
return True
else:
return False
def handle_email(text, context):
matches = re.findall(re_email, text)
if len(matches) > 0:
context['email'] = matches[0]
return True
else:
return False
def generate_ticket_handler(text, context):
return generate_ticket(name=context['name'], email=context['email'])