2016-05-05 07:06:41 +02:00
|
|
|
# Webhooks for external integrations.
|
2020-01-14 22:06:24 +01:00
|
|
|
from typing import Any, Mapping, Optional, Tuple
|
|
|
|
|
2020-08-07 01:09:47 +02:00
|
|
|
import orjson
|
2016-05-05 07:06:41 +02:00
|
|
|
from django.http import HttpRequest, HttpResponse
|
2020-01-14 22:06:24 +01:00
|
|
|
|
2020-08-20 00:32:15 +02:00
|
|
|
from zerver.decorator import return_success_on_head_request, webhook_view
|
2020-08-19 22:26:38 +02:00
|
|
|
from zerver.lib.exceptions import UnsupportedWebhookEventType
|
2017-10-31 04:25:48 +01:00
|
|
|
from zerver.lib.request import REQ, has_request_variables
|
2020-01-14 22:06:24 +01:00
|
|
|
from zerver.lib.response import json_success
|
2020-08-19 22:14:40 +02:00
|
|
|
from zerver.lib.webhooks.common import check_send_webhook_message
|
2017-05-02 01:00:50 +02:00
|
|
|
from zerver.models import UserProfile
|
2016-05-05 07:06:41 +02:00
|
|
|
|
|
|
|
from .board_actions import SUPPORTED_BOARD_ACTIONS, process_board_action
|
2020-06-11 00:54:34 +02:00
|
|
|
from .card_actions import IGNORED_CARD_ACTIONS, SUPPORTED_CARD_ACTIONS, process_card_action
|
2020-01-14 22:06:24 +01:00
|
|
|
|
2016-05-05 07:06:41 +02:00
|
|
|
|
2021-02-12 08:20:45 +01:00
|
|
|
@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
|
2021-02-12 08:19:30 +01:00
|
|
|
def api_trello_webhook(
|
|
|
|
request: HttpRequest,
|
|
|
|
user_profile: UserProfile,
|
2021-02-12 08:20:45 +01:00
|
|
|
payload: Mapping[str, Any] = REQ(argument_type="body"),
|
2021-02-12 08:19:30 +01:00
|
|
|
) -> HttpResponse:
|
2020-08-07 01:09:47 +02:00
|
|
|
payload = orjson.loads(request.body)
|
2021-02-12 08:20:45 +01:00
|
|
|
action_type = payload["action"].get("type")
|
2020-08-31 22:10:21 +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
|
|
|
|
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()
|
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
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)
|
2020-08-31 22:10:21 +02:00
|
|
|
if action_type in IGNORED_CARD_ACTIONS:
|
|
|
|
return None
|
2016-05-05 07:06:41 +02:00
|
|
|
if action_type in SUPPORTED_BOARD_ACTIONS:
|
|
|
|
return process_board_action(payload, action_type)
|
2018-05-22 16:46:45 +02:00
|
|
|
|
2020-08-20 00:50:06 +02:00
|
|
|
raise UnsupportedWebhookEventType(action_type)
|