2016-05-25 20:42:28 +02:00
|
|
|
# Webhooks for external integrations.
|
|
|
|
import re
|
2017-03-03 19:01:52 +01:00
|
|
|
from typing import Any, Dict, List
|
2017-11-16 00:43:10 +01:00
|
|
|
|
2016-05-25 20:42:28 +02:00
|
|
|
from django.http import HttpRequest, HttpResponse
|
2017-07-21 01:55:10 +02:00
|
|
|
|
2020-08-20 00:32:15 +02:00
|
|
|
from zerver.decorator import 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
|
2019-02-02 23:53:55 +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
|
2019-02-02 23:53:55 +01:00
|
|
|
from zerver.models import UserProfile
|
2016-05-25 20:42:28 +02:00
|
|
|
|
2018-11-09 21:02:59 +01:00
|
|
|
TOPIC_TEMPLATE = "{service_url}"
|
2016-05-25 20:42:28 +02:00
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
|
|
|
def send_message_for_event(
|
|
|
|
request: HttpRequest, user_profile: UserProfile, event: Dict[str, Any]
|
|
|
|
) -> None:
|
2017-08-24 17:31:04 +02:00
|
|
|
event_type = get_event_type(event)
|
2021-02-12 08:20:45 +01:00
|
|
|
subject = TOPIC_TEMPLATE.format(service_url=event["check"]["url"])
|
2017-08-24 17:31:04 +02:00
|
|
|
body = EVENT_TYPE_BODY_MAPPER[event_type](event)
|
2021-07-16 11:40:46 +02:00
|
|
|
check_send_webhook_message(request, user_profile, subject, body, event_type)
|
2016-05-25 20:42:28 +02:00
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
2017-11-04 07:47:46 +01:00
|
|
|
def get_body_for_up_event(event: Dict[str, Any]) -> str:
|
2016-05-25 20:42:28 +02:00
|
|
|
body = "Service is `up`"
|
2021-02-12 08:20:45 +01:00
|
|
|
event_downtime = event["downtime"]
|
|
|
|
if event_downtime["started_at"]:
|
2020-06-09 00:25:09 +02:00
|
|
|
body = f"{body} again"
|
2021-02-12 08:20:45 +01:00
|
|
|
string_date = get_time_string_based_on_duration(event_downtime["duration"])
|
2016-05-25 20:42:28 +02:00
|
|
|
if string_date:
|
2020-06-09 00:25:09 +02:00
|
|
|
body = f"{body} after {string_date}"
|
|
|
|
return f"{body}."
|
2016-05-25 20:42:28 +02:00
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
2017-11-04 07:47:46 +01:00
|
|
|
def get_time_string_based_on_duration(duration: int) -> str:
|
2016-05-25 20:42:28 +02:00
|
|
|
days, reminder = divmod(duration, 86400)
|
|
|
|
hours, reminder = divmod(reminder, 3600)
|
|
|
|
minutes, seconds = divmod(reminder, 60)
|
|
|
|
|
2021-02-12 08:20:45 +01:00
|
|
|
string_date = ""
|
|
|
|
string_date += add_time_part_to_string_date_if_needed(days, "day")
|
|
|
|
string_date += add_time_part_to_string_date_if_needed(hours, "hour")
|
|
|
|
string_date += add_time_part_to_string_date_if_needed(minutes, "minute")
|
|
|
|
string_date += add_time_part_to_string_date_if_needed(seconds, "second")
|
2016-05-25 20:42:28 +02:00
|
|
|
return string_date.rstrip()
|
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
2017-11-04 07:47:46 +01:00
|
|
|
def add_time_part_to_string_date_if_needed(value: int, text_name: str) -> str:
|
2016-05-25 20:42:28 +02:00
|
|
|
if value == 1:
|
2020-06-09 00:25:09 +02:00
|
|
|
return f"1 {text_name} "
|
2016-05-25 20:42:28 +02:00
|
|
|
if value > 1:
|
2020-06-09 00:25:09 +02:00
|
|
|
return f"{value} {text_name}s "
|
2021-02-12 08:20:45 +01:00
|
|
|
return ""
|
2016-05-25 20:42:28 +02:00
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
2017-11-04 07:47:46 +01:00
|
|
|
def get_body_for_down_event(event: Dict[str, Any]) -> str:
|
2017-02-26 09:10:14 +01:00
|
|
|
return "Service is `down`. It returned a {} error at {}.".format(
|
2021-02-12 08:20:45 +01:00
|
|
|
event["downtime"]["error"],
|
|
|
|
event["downtime"]["started_at"].replace("T", " ").replace("Z", " UTC"),
|
2021-02-12 08:19:30 +01:00
|
|
|
)
|
|
|
|
|
2016-05-25 20:42:28 +02:00
|
|
|
|
2021-07-16 11:40:46 +02:00
|
|
|
EVENT_TYPE_BODY_MAPPER = {
|
|
|
|
"up": get_body_for_up_event,
|
|
|
|
"down": get_body_for_down_event,
|
|
|
|
}
|
|
|
|
ALL_EVENT_TYPES = list(EVENT_TYPE_BODY_MAPPER.keys())
|
|
|
|
|
|
|
|
|
|
|
|
@webhook_view("Updown", all_event_types=ALL_EVENT_TYPES)
|
2016-05-25 20:42:28 +02:00
|
|
|
@has_request_variables
|
2018-03-16 22:53:50 +01:00
|
|
|
def api_updown_webhook(
|
2021-02-12 08:19:30 +01:00
|
|
|
request: HttpRequest,
|
|
|
|
user_profile: UserProfile,
|
2021-02-12 08:20:45 +01:00
|
|
|
payload: List[Dict[str, Any]] = REQ(argument_type="body"),
|
2018-03-16 22:53:50 +01:00
|
|
|
) -> HttpResponse:
|
2016-05-25 20:42:28 +02:00
|
|
|
for event in payload:
|
2018-03-16 22:53:50 +01:00
|
|
|
send_message_for_event(request, user_profile, event)
|
2022-01-31 13:44:02 +01:00
|
|
|
return json_success(request)
|
2016-05-25 20:42:28 +02:00
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
2017-11-04 07:47:46 +01:00
|
|
|
def get_event_type(event: Dict[str, Any]) -> str:
|
2021-02-12 08:20:45 +01:00
|
|
|
event_type_match = re.match("check.(.*)", event["event"])
|
2016-05-25 20:42:28 +02:00
|
|
|
if event_type_match:
|
|
|
|
event_type = event_type_match.group(1)
|
|
|
|
if event_type in EVENT_TYPE_BODY_MAPPER:
|
|
|
|
return event_type
|
2021-02-12 08:20:45 +01:00
|
|
|
raise UnsupportedWebhookEventType(event["event"])
|