You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
2.0 KiB
51 lines
2.0 KiB
# -*- coding: utf-8 -*-
|
|
from django.utils.translation import ugettext as _
|
|
from chatbot.telebot import send_notify
|
|
from chatbot.models import ChatException
|
|
from mydefs import MultipleException
|
|
|
|
|
|
class TaskException(Exception):
|
|
pass
|
|
|
|
|
|
def handle(task, author, recipients, abon_group):
|
|
errors = []
|
|
for recipient in recipients:
|
|
try:
|
|
dst_account = recipient
|
|
text = _('Task')
|
|
# Если сигнал самому себе то молчим
|
|
if author == recipient:
|
|
return
|
|
# Если задача завершена или провалена
|
|
elif task.state == 'F' or task.state == 'C':
|
|
text = _('Task completed')
|
|
if task.abon is not None:
|
|
fulltext = "%s:\n%s\n" % (text, task.abon.get_full_name())
|
|
else:
|
|
fulltext = "%s\n" % text
|
|
fulltext += _('locality %s.\n') % abon_group.title
|
|
if task.abon:
|
|
fulltext += _('address %s %s.\ntelephone %s\n') % (
|
|
task.abon.street.name if task.abon.street is not None else '<'+_('not chosen')+'>',
|
|
task.abon.house,
|
|
task.abon.telephone
|
|
)
|
|
fulltext += _('Task type - %s.') % task.get_mode_display() + '\n'
|
|
fulltext += task.descr if task.descr else ''
|
|
|
|
print('task.state:', task.state)
|
|
|
|
if task.state == 'F' or task.state == 'C':
|
|
# Если задача завершена или провалена то отправляем одно оповещение автору
|
|
try:
|
|
send_notify(fulltext, author, tag='taskap')
|
|
except ChatException as e:
|
|
raise TaskException(e)
|
|
else:
|
|
send_notify(fulltext, dst_account, tag='taskap')
|
|
except ChatException as e:
|
|
errors.append(e)
|
|
if len(errors) > 0:
|
|
raise MultipleException(errors)
|