2016-05-05 07:06:41 +02:00
|
|
|
# Webhooks for external integrations.
|
|
|
|
import ujson
|
2018-05-10 19:34:01 +02:00
|
|
|
from typing import Mapping, Any, Tuple, Optional
|
2016-05-05 07:06:41 +02:00
|
|
|
from django.http import HttpRequest, HttpResponse
|
2017-10-31 04:25:48 +01:00
|
|
|
from zerver.decorator import api_key_only_webhook_view, return_success_on_head_request
|
2019-02-02 23:53:55 +01:00
|
|
|
from zerver.lib.response import json_success
|
2017-10-31 04:25:48 +01:00
|
|
|
from zerver.lib.request import REQ, has_request_variables
|
2018-05-22 16:46:45 +02:00
|
|
|
from zerver.lib.webhooks.common import check_send_webhook_message, \
|
|
|
|
UnexpectedWebhookEventType
|
2017-05-02 01:00:50 +02:00
|
|
|
from zerver.models import UserProfile
|
2016-05-05 07:06:41 +02:00
|
|
|
|
2019-02-21 23:16:09 +01:00
|
|
|
from .card_actions import SUPPORTED_CARD_ACTIONS, \
|
|
|
|
IGNORED_CARD_ACTIONS, process_card_action
|
2016-05-05 07:06:41 +02:00
|
|
|
from .board_actions import SUPPORTED_BOARD_ACTIONS, process_board_action
|
|
|
|
from .exceptions import UnsupportedAction
|
|
|
|
|
|
|
|
@api_key_only_webhook_view('Trello')
|
2016-11-15 17:20:22 +01:00
|
|
|
@return_success_on_head_request
|
2016-05-05 07:06:41 +02:00
|
|
|
@has_request_variables
|
2017-11-04 07:47:46 +01:00
|
|
|
def api_trello_webhook(request: HttpRequest,
|
|
|
|
user_profile: UserProfile,
|
2018-03-16 22:53:50 +01:00
|
|
|
payload: Mapping[str, Any]=REQ(argument_type='body')) -> HttpResponse:
|
2016-05-05 07:06:41 +02:00
|
|
|
payload = ujson.loads(request.body)
|
2017-05-24 23:03:06 +02:00
|
|
|
action_type = payload['action'].get('type')
|
2016-05-05 07:06:41 +02:00
|
|
|
try:
|
2017-07-27 06:33:57 +02:00
|
|
|
message = get_subject_and_body(payload, action_type)
|
|
|
|
if message is None:
|
|
|
|
return json_success()
|
|
|
|
else:
|
|
|
|
subject, body = message
|
2016-05-05 07:06:41 +02:00
|
|
|
except UnsupportedAction:
|
2019-02-21 23:16:09 +01:00
|
|
|
if action_type in IGNORED_CARD_ACTIONS:
|
|
|
|
return json_success()
|
|
|
|
|
2018-05-22 16:46:45 +02:00
|
|
|
raise UnexpectedWebhookEventType('Trello', action_type)
|
2016-05-05 07:06:41 +02:00
|
|
|
|
2018-03-16 22:53:50 +01:00
|
|
|
check_send_webhook_message(request, user_profile, subject, body)
|
2016-05-05 07:06:41 +02:00
|
|
|
return json_success()
|
|
|
|
|
2018-05-10 19:34:01 +02:00
|
|
|
def get_subject_and_body(payload: Mapping[str, Any], action_type: str) -> Optional[Tuple[str, str]]:
|
2016-05-05 07:06:41 +02:00
|
|
|
if action_type in SUPPORTED_CARD_ACTIONS:
|
|
|
|
return process_card_action(payload, action_type)
|
|
|
|
if action_type in SUPPORTED_BOARD_ACTIONS:
|
|
|
|
return process_board_action(payload, action_type)
|
2018-05-22 16:46:45 +02:00
|
|
|
|
2016-05-05 07:06:41 +02:00
|
|
|
raise UnsupportedAction('{} if not supported'.format(action_type))
|