2017-09-30 04:18:16 +02:00
|
|
|
# Webhooks pfor external integrations.
|
2018-05-10 19:34:01 +02:00
|
|
|
from typing import Any, Dict
|
2016-05-25 15:02:02 +02:00
|
|
|
|
2016-06-06 00:43:22 +02:00
|
|
|
from django.http import HttpRequest, HttpResponse
|
2016-05-25 15:02:02 +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
|
2017-05-02 01:00:50 +02:00
|
|
|
from zerver.models import UserProfile
|
2016-03-14 22:12:46 +01:00
|
|
|
|
2021-02-12 08:20:45 +01:00
|
|
|
PINGDOM_TOPIC_TEMPLATE = "{name} status."
|
2016-03-14 22:12:46 +01:00
|
|
|
|
2019-04-17 21:59:11 +02:00
|
|
|
MESSAGE_TEMPLATE = """
|
|
|
|
Service {service_url} changed its {type} status from {previous_state} to {current_state}:
|
|
|
|
""".strip()
|
|
|
|
|
|
|
|
DESC_TEMPLATE = """
|
|
|
|
|
|
|
|
``` quote
|
|
|
|
{description}
|
|
|
|
```
|
|
|
|
""".rstrip()
|
2016-03-14 22:12:46 +01:00
|
|
|
|
|
|
|
SUPPORTED_CHECK_TYPES = (
|
2021-02-12 08:20:45 +01:00
|
|
|
"HTTP",
|
|
|
|
"HTTP_CUSTOM",
|
|
|
|
"HTTPS",
|
|
|
|
"SMTP",
|
|
|
|
"POP3",
|
|
|
|
"IMAP",
|
|
|
|
"PING",
|
|
|
|
"DNS",
|
|
|
|
"UDP",
|
|
|
|
"PORT_TCP",
|
2016-03-14 22:12:46 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
|
2021-02-12 08:20:45 +01:00
|
|
|
@webhook_view("Pingdom")
|
2016-03-14 22:12:46 +01:00
|
|
|
@has_request_variables
|
2021-02-12 08:19:30 +01:00
|
|
|
def api_pingdom_webhook(
|
|
|
|
request: HttpRequest,
|
|
|
|
user_profile: UserProfile,
|
2021-02-12 08:20:45 +01:00
|
|
|
payload: Dict[str, Any] = REQ(argument_type="body"),
|
2021-02-12 08:19:30 +01:00
|
|
|
) -> HttpResponse:
|
2016-03-14 22:12:46 +01:00
|
|
|
check_type = get_check_type(payload)
|
|
|
|
|
|
|
|
if check_type in SUPPORTED_CHECK_TYPES:
|
|
|
|
subject = get_subject_for_http_request(payload)
|
|
|
|
body = get_body_for_http_request(payload)
|
|
|
|
else:
|
2020-08-20 00:50:06 +02:00
|
|
|
raise UnsupportedWebhookEventType(check_type)
|
2016-03-14 22:12:46 +01:00
|
|
|
|
2018-03-16 22:53:50 +01:00
|
|
|
check_send_webhook_message(request, user_profile, subject, body)
|
2016-03-14 22:12:46 +01:00
|
|
|
return json_success()
|
|
|
|
|
|
|
|
|
2018-05-10 19:34:01 +02:00
|
|
|
def get_subject_for_http_request(payload: Dict[str, Any]) -> str:
|
2021-02-12 08:20:45 +01:00
|
|
|
return PINGDOM_TOPIC_TEMPLATE.format(name=payload["check_name"])
|
2016-03-14 22:12:46 +01:00
|
|
|
|
|
|
|
|
2018-05-10 19:34:01 +02:00
|
|
|
def get_body_for_http_request(payload: Dict[str, Any]) -> str:
|
2021-02-12 08:20:45 +01:00
|
|
|
current_state = payload["current_state"]
|
|
|
|
previous_state = payload["previous_state"]
|
2016-03-14 22:12:46 +01:00
|
|
|
|
|
|
|
data = {
|
2021-02-12 08:20:45 +01:00
|
|
|
"service_url": payload["check_params"]["hostname"],
|
|
|
|
"previous_state": previous_state,
|
|
|
|
"current_state": current_state,
|
|
|
|
"type": get_check_type(payload),
|
2016-03-14 22:12:46 +01:00
|
|
|
}
|
2019-04-17 21:59:11 +02:00
|
|
|
body = MESSAGE_TEMPLATE.format(**data)
|
2021-02-12 08:20:45 +01:00
|
|
|
if current_state == "DOWN" and previous_state == "UP":
|
|
|
|
description = DESC_TEMPLATE.format(description=payload["long_description"])
|
2019-04-17 21:59:11 +02:00
|
|
|
body += description
|
|
|
|
else:
|
2021-02-12 08:20:45 +01:00
|
|
|
body = f"{body[:-1]}."
|
2019-04-17 21:59:11 +02:00
|
|
|
|
2016-03-14 22:12:46 +01:00
|
|
|
return body
|
|
|
|
|
|
|
|
|
2018-05-10 19:34:01 +02:00
|
|
|
def get_check_type(payload: Dict[str, Any]) -> str:
|
2021-02-12 08:20:45 +01:00
|
|
|
return payload["check_type"]
|