2016-12-04 18:45:46 +01:00
|
|
|
from typing import Dict, Tuple, Any, Optional, MutableMapping, Mapping, Text
|
2016-05-05 07:06:41 +02:00
|
|
|
from datetime import datetime
|
|
|
|
from .exceptions import UnknownUpdateCardAction
|
|
|
|
|
|
|
|
SUPPORTED_CARD_ACTIONS = [
|
|
|
|
u'updateCard',
|
|
|
|
u'createCard',
|
|
|
|
u'addLabelToCard',
|
|
|
|
u'removeLabelFromCard',
|
|
|
|
u'addMemberToCard',
|
|
|
|
u'removeMemberFromCard',
|
|
|
|
u'addAttachmentToCard',
|
|
|
|
u'addChecklistToCard',
|
|
|
|
u'commentCard'
|
|
|
|
]
|
|
|
|
|
|
|
|
CREATE = u'createCard'
|
|
|
|
CHANGE_LIST = u'changeList'
|
|
|
|
CHANGE_NAME = u'changeName'
|
2017-07-04 19:24:59 +02:00
|
|
|
SET_DESC = u'setDesc'
|
|
|
|
CHANGE_DESC = u'changeDesc'
|
|
|
|
REMOVE_DESC = u'removeDesc'
|
2016-05-05 07:06:41 +02:00
|
|
|
ARCHIVE = u'archiveCard'
|
|
|
|
REOPEN = u'reopenCard'
|
|
|
|
SET_DUE_DATE = u'setDueDate'
|
|
|
|
CHANGE_DUE_DATE = u'changeDueDate'
|
|
|
|
REMOVE_DUE_DATE = u'removeDueDate'
|
|
|
|
ADD_LABEL = u'addLabelToCard'
|
|
|
|
REMOVE_LABEL = u'removeLabelFromCard'
|
|
|
|
ADD_MEMBER = u'addMemberToCard'
|
|
|
|
REMOVE_MEMBER = u'removeMemberFromCard'
|
|
|
|
ADD_ATTACHMENT = u'addAttachmentToCard'
|
|
|
|
ADD_CHECKLIST = u'addChecklistToCard'
|
|
|
|
COMMENT = u'commentCard'
|
|
|
|
|
|
|
|
TRELLO_CARD_URL_TEMPLATE = u'[{card_name}]({card_url})'
|
|
|
|
|
|
|
|
ACTIONS_TO_MESSAGE_MAPPER = {
|
2017-09-24 01:07:17 +02:00
|
|
|
CREATE: u'created {card_url_template}.',
|
|
|
|
CHANGE_LIST: u'moved {card_url_template} from {old_list} to {new_list}.',
|
|
|
|
CHANGE_NAME: u'renamed the card from "{old_name}" to {card_url_template}.',
|
2017-07-04 19:24:59 +02:00
|
|
|
SET_DESC: u'set description for {card_url_template} to\n~~~ quote\n{desc}\n~~~\n',
|
|
|
|
CHANGE_DESC: u'changed description for {card_url_template} from\n~~~ quote\n{old_desc}\n~~~\nto\n~~~ quote\n{desc}\n~~~\n',
|
2017-09-24 01:07:17 +02:00
|
|
|
REMOVE_DESC: u'removed description from {card_url_template}.',
|
|
|
|
ARCHIVE: u'archived {card_url_template}.',
|
|
|
|
REOPEN: u'reopened {card_url_template}.',
|
|
|
|
SET_DUE_DATE: u'set due date for {card_url_template} to {due_date}.',
|
|
|
|
CHANGE_DUE_DATE: u'changed due date for {card_url_template} from {old_due_date} to {due_date}.',
|
|
|
|
REMOVE_DUE_DATE: u'removed the due date from {card_url_template}.',
|
|
|
|
ADD_LABEL: u'added a {color} label with \"{text}\" to {card_url_template}.',
|
|
|
|
REMOVE_LABEL: u'removed a {color} label with \"{text}\" from {card_url_template}.',
|
|
|
|
ADD_MEMBER: u'added {member_name} to {card_url_template}.',
|
|
|
|
REMOVE_MEMBER: u'removed {member_name} from {card_url_template}.',
|
|
|
|
ADD_ATTACHMENT: u'added [{attachment_name}]({attachment_url}) to {card_url_template}.',
|
|
|
|
ADD_CHECKLIST: u'added the {checklist_name} checklist to {card_url_template}.',
|
2017-07-04 18:58:49 +02:00
|
|
|
COMMENT: u'commented on {card_url_template}\n~~~ quote\n{text}\n~~~\n'
|
2016-05-05 07:06:41 +02:00
|
|
|
}
|
|
|
|
|
2017-02-26 09:10:14 +01:00
|
|
|
def prettify_date(date_string):
|
|
|
|
# type: (str) -> str
|
|
|
|
return date_string.replace('T', ' ').replace('.000', '').replace('Z', ' UTC')
|
|
|
|
|
2016-05-05 07:06:41 +02:00
|
|
|
def process_card_action(payload, action_type):
|
2017-07-27 06:33:57 +02:00
|
|
|
# type: (Mapping[str, Any], Text) -> Optional[Tuple[Text, Text]]
|
2017-08-06 08:31:36 +02:00
|
|
|
proper_action = get_proper_action(payload, action_type)
|
|
|
|
if proper_action is not None:
|
|
|
|
return get_subject(payload), get_body(payload, proper_action)
|
2017-07-27 06:33:57 +02:00
|
|
|
return None
|
2016-05-05 07:06:41 +02:00
|
|
|
|
|
|
|
def get_proper_action(payload, action_type):
|
2017-07-27 06:33:57 +02:00
|
|
|
# type: (Mapping[str, Any], Text) -> Optional[Text]
|
2016-05-05 07:06:41 +02:00
|
|
|
if action_type == 'updateCard':
|
|
|
|
data = get_action_data(payload)
|
2017-05-24 23:03:06 +02:00
|
|
|
old_data = data['old']
|
|
|
|
card_data = data['card']
|
2016-05-05 07:06:41 +02:00
|
|
|
if data.get('listBefore'):
|
|
|
|
return CHANGE_LIST
|
2017-05-24 23:03:06 +02:00
|
|
|
if old_data.get('name'):
|
2016-05-05 07:06:41 +02:00
|
|
|
return CHANGE_NAME
|
2017-07-04 19:24:59 +02:00
|
|
|
if old_data.get('desc') == "":
|
|
|
|
return SET_DESC
|
|
|
|
if old_data.get('desc'):
|
|
|
|
if card_data.get('desc') == "":
|
|
|
|
return REMOVE_DESC
|
|
|
|
else:
|
|
|
|
return CHANGE_DESC
|
2017-05-24 23:03:06 +02:00
|
|
|
if old_data.get('due', False) is None:
|
2016-05-05 07:06:41 +02:00
|
|
|
return SET_DUE_DATE
|
2017-05-24 23:03:06 +02:00
|
|
|
if old_data.get('due'):
|
|
|
|
if card_data.get('due', False) is None:
|
2016-05-05 07:06:41 +02:00
|
|
|
return REMOVE_DUE_DATE
|
|
|
|
else:
|
|
|
|
return CHANGE_DUE_DATE
|
2017-05-24 23:03:06 +02:00
|
|
|
if old_data.get('closed') is False and card_data.get('closed'):
|
2016-05-05 07:06:41 +02:00
|
|
|
return ARCHIVE
|
2017-05-24 23:03:06 +02:00
|
|
|
if old_data.get('closed') and card_data.get('closed') is False:
|
2016-05-05 07:06:41 +02:00
|
|
|
return REOPEN
|
2017-07-27 06:33:57 +02:00
|
|
|
# we don't support events for when a card is moved up or down
|
|
|
|
# within a single list
|
|
|
|
if old_data.get('pos'):
|
|
|
|
return None
|
2016-05-05 07:06:41 +02:00
|
|
|
raise UnknownUpdateCardAction()
|
|
|
|
|
|
|
|
return action_type
|
|
|
|
|
|
|
|
def get_subject(payload):
|
2016-12-04 18:45:46 +01:00
|
|
|
# type: (Mapping[str, Any]) -> Text
|
2017-09-24 01:07:17 +02:00
|
|
|
return get_action_data(payload)['board'].get('name')
|
2016-05-05 07:06:41 +02:00
|
|
|
|
|
|
|
def get_body(payload, action_type):
|
2016-12-04 18:45:46 +01:00
|
|
|
# type: (Mapping[str, Any], Text) -> Text
|
2017-05-24 23:03:06 +02:00
|
|
|
message_body = ACTIONS_TO_FILL_BODY_MAPPER[action_type](payload, action_type)
|
|
|
|
creator = payload['action']['memberCreator'].get('fullName')
|
2017-09-24 01:07:17 +02:00
|
|
|
return u'{full_name} {rest}'.format(full_name=creator, rest=message_body)
|
2016-05-05 07:06:41 +02:00
|
|
|
|
|
|
|
def get_added_checklist_body(payload, action_type):
|
2016-12-04 18:45:46 +01:00
|
|
|
# type: (Mapping[str, Any], Text) -> Text
|
2016-05-05 07:06:41 +02:00
|
|
|
data = {
|
2017-05-24 23:03:06 +02:00
|
|
|
'checklist_name': get_action_data(payload)['checklist'].get('name'),
|
2016-05-05 07:06:41 +02:00
|
|
|
}
|
|
|
|
return fill_appropriate_message_content(payload, action_type, data)
|
|
|
|
|
|
|
|
def get_added_attachment_body(payload, action_type):
|
2016-12-04 18:45:46 +01:00
|
|
|
# type: (Mapping[str, Any], Text) -> Text
|
2016-05-05 07:06:41 +02:00
|
|
|
data = {
|
2017-05-24 23:03:06 +02:00
|
|
|
'attachment_url': get_action_data(payload)['attachment'].get('url'),
|
|
|
|
'attachment_name': get_action_data(payload)['attachment'].get('name'),
|
2016-05-05 07:06:41 +02:00
|
|
|
}
|
|
|
|
return fill_appropriate_message_content(payload, action_type, data)
|
|
|
|
|
|
|
|
def get_updated_card_body(payload, action_type):
|
2016-12-04 18:45:46 +01:00
|
|
|
# type: (Mapping[str, Any], Text) -> Text
|
2016-05-05 07:06:41 +02:00
|
|
|
data = {
|
|
|
|
'card_name': get_card_name(payload),
|
2017-05-24 23:03:06 +02:00
|
|
|
'old_list': get_action_data(payload)['listBefore'].get('name'),
|
|
|
|
'new_list': get_action_data(payload)['listAfter'].get('name'),
|
2016-05-05 07:06:41 +02:00
|
|
|
}
|
|
|
|
return fill_appropriate_message_content(payload, action_type, data)
|
|
|
|
|
|
|
|
def get_renamed_card_body(payload, action_type):
|
2016-12-04 18:45:46 +01:00
|
|
|
# type: (Mapping[str, Any], Text) -> Text
|
2017-05-24 23:03:06 +02:00
|
|
|
|
2016-05-05 07:06:41 +02:00
|
|
|
data = {
|
2017-05-24 23:03:06 +02:00
|
|
|
'old_name': get_action_data(payload)['old'].get('name'),
|
|
|
|
'new_name': get_action_data(payload)['old'].get('name'),
|
2016-05-05 07:06:41 +02:00
|
|
|
}
|
|
|
|
return fill_appropriate_message_content(payload, action_type, data)
|
|
|
|
|
|
|
|
def get_added_label_body(payload, action_type):
|
2016-12-04 18:45:46 +01:00
|
|
|
# type: (Mapping[str, Any], Text) -> Text
|
2016-05-05 07:06:41 +02:00
|
|
|
data = {
|
|
|
|
'color': get_action_data(payload).get('value'),
|
|
|
|
'text': get_action_data(payload).get('text'),
|
|
|
|
}
|
|
|
|
return fill_appropriate_message_content(payload, action_type, data)
|
|
|
|
|
|
|
|
def get_managed_member_body(payload, action_type):
|
2016-12-04 18:45:46 +01:00
|
|
|
# type: (Mapping[str, Any], Text) -> Text
|
2016-05-05 07:06:41 +02:00
|
|
|
data = {
|
2017-05-24 23:03:06 +02:00
|
|
|
'member_name': payload['action']['member'].get('fullName')
|
2016-05-05 07:06:41 +02:00
|
|
|
}
|
|
|
|
return fill_appropriate_message_content(payload, action_type, data)
|
|
|
|
|
2017-07-04 18:58:49 +02:00
|
|
|
def get_comment_body(payload, action_type):
|
|
|
|
# type: (Mapping[str, Any], Text) -> Text
|
|
|
|
data = {
|
|
|
|
'text': get_action_data(payload)['text'],
|
|
|
|
}
|
|
|
|
return fill_appropriate_message_content(payload, action_type, data)
|
|
|
|
|
2016-05-05 07:06:41 +02:00
|
|
|
def get_managed_due_date_body(payload, action_type):
|
2016-12-04 18:45:46 +01:00
|
|
|
# type: (Mapping[str, Any], Text) -> Text
|
2016-05-05 07:06:41 +02:00
|
|
|
data = {
|
2017-05-24 23:03:06 +02:00
|
|
|
'due_date': prettify_date(get_action_data(payload)['card'].get('due'))
|
2016-05-05 07:06:41 +02:00
|
|
|
}
|
|
|
|
return fill_appropriate_message_content(payload, action_type, data)
|
|
|
|
|
|
|
|
def get_changed_due_date_body(payload, action_type):
|
2016-12-04 18:45:46 +01:00
|
|
|
# type: (Mapping[str, Any], Text) -> Text
|
2016-05-05 07:06:41 +02:00
|
|
|
data = {
|
2017-05-24 23:03:06 +02:00
|
|
|
'due_date': prettify_date(get_action_data(payload)['card'].get('due')),
|
|
|
|
'old_due_date': prettify_date(get_action_data(payload)['old'].get('due'))
|
2016-05-05 07:06:41 +02:00
|
|
|
}
|
|
|
|
return fill_appropriate_message_content(payload, action_type, data)
|
|
|
|
|
2017-07-04 19:24:59 +02:00
|
|
|
def get_managed_desc_body(payload, action_type):
|
|
|
|
# type: (Mapping[str, Any], Text) -> Text
|
|
|
|
data = {
|
|
|
|
'desc': prettify_date(get_action_data(payload)['card']['desc'])
|
|
|
|
}
|
|
|
|
return fill_appropriate_message_content(payload, action_type, data)
|
|
|
|
|
|
|
|
def get_changed_desc_body(payload, action_type):
|
|
|
|
# type: (Mapping[str, Any], Text) -> Text
|
|
|
|
data = {
|
|
|
|
'desc': prettify_date(get_action_data(payload)['card']['desc']),
|
|
|
|
'old_desc': prettify_date(get_action_data(payload)['old']['desc'])
|
|
|
|
}
|
|
|
|
return fill_appropriate_message_content(payload, action_type, data)
|
|
|
|
|
2016-05-05 07:06:41 +02:00
|
|
|
def get_body_by_action_type_without_data(payload, action_type):
|
2016-12-04 18:45:46 +01:00
|
|
|
# type: (Mapping[str, Any], Text) -> Text
|
2016-05-05 07:06:41 +02:00
|
|
|
return fill_appropriate_message_content(payload, action_type)
|
|
|
|
|
|
|
|
def fill_appropriate_message_content(payload, action_type, data=None):
|
2016-12-04 18:45:46 +01:00
|
|
|
# type: (Mapping[str, Any], Text, Optional[Dict[str, Any]]) -> Text
|
2016-05-05 07:06:41 +02:00
|
|
|
data = {} if data is None else data
|
|
|
|
data['card_url_template'] = data.get('card_url_template', get_filled_card_url_template(payload))
|
|
|
|
message_body = get_message_body(action_type)
|
|
|
|
return message_body.format(**data)
|
|
|
|
|
|
|
|
def get_filled_card_url_template(payload):
|
2016-12-04 18:45:46 +01:00
|
|
|
# type: (Mapping[str, Any]) -> Text
|
2016-05-05 07:06:41 +02:00
|
|
|
return TRELLO_CARD_URL_TEMPLATE.format(card_name=get_card_name(payload), card_url=get_card_url(payload))
|
|
|
|
|
|
|
|
def get_card_url(payload):
|
2016-12-04 18:45:46 +01:00
|
|
|
# type: (Mapping[str, Any]) -> Text
|
2017-05-24 23:03:06 +02:00
|
|
|
return u'https://trello.com/c/{}'.format(get_action_data(payload)['card'].get('shortLink'))
|
2016-05-05 07:06:41 +02:00
|
|
|
|
|
|
|
def get_message_body(action_type):
|
2016-12-04 18:45:46 +01:00
|
|
|
# type: (Text) -> Text
|
2017-05-24 23:03:06 +02:00
|
|
|
return ACTIONS_TO_MESSAGE_MAPPER[action_type]
|
2016-05-05 07:06:41 +02:00
|
|
|
|
|
|
|
def get_card_name(payload):
|
2016-12-04 18:45:46 +01:00
|
|
|
# type: (Mapping[str, Any]) -> Text
|
2017-05-24 23:03:06 +02:00
|
|
|
return get_action_data(payload)['card'].get('name')
|
2016-05-05 07:06:41 +02:00
|
|
|
|
|
|
|
def get_action_data(payload):
|
|
|
|
# type: (Mapping[str, Any]) -> Mapping[str, Any]
|
2017-05-24 23:03:06 +02:00
|
|
|
return payload['action'].get('data')
|
2016-05-05 07:06:41 +02:00
|
|
|
|
|
|
|
ACTIONS_TO_FILL_BODY_MAPPER = {
|
|
|
|
CREATE: get_body_by_action_type_without_data,
|
|
|
|
CHANGE_LIST: get_updated_card_body,
|
|
|
|
CHANGE_NAME: get_renamed_card_body,
|
2017-07-04 19:24:59 +02:00
|
|
|
SET_DESC: get_managed_desc_body,
|
|
|
|
CHANGE_DESC: get_changed_desc_body,
|
|
|
|
REMOVE_DESC: get_body_by_action_type_without_data,
|
2016-05-05 07:06:41 +02:00
|
|
|
ARCHIVE: get_body_by_action_type_without_data,
|
|
|
|
REOPEN: get_body_by_action_type_without_data,
|
|
|
|
SET_DUE_DATE: get_managed_due_date_body,
|
|
|
|
CHANGE_DUE_DATE: get_changed_due_date_body,
|
|
|
|
REMOVE_DUE_DATE: get_body_by_action_type_without_data,
|
|
|
|
ADD_LABEL: get_added_label_body,
|
|
|
|
REMOVE_LABEL: get_added_label_body,
|
|
|
|
ADD_MEMBER: get_managed_member_body,
|
|
|
|
REMOVE_MEMBER: get_managed_member_body,
|
|
|
|
ADD_ATTACHMENT: get_added_attachment_body,
|
|
|
|
ADD_CHECKLIST: get_added_checklist_body,
|
2017-07-04 18:58:49 +02:00
|
|
|
COMMENT: get_comment_body,
|
2016-05-05 07:06:41 +02:00
|
|
|
}
|