zulip/zerver/webhooks/insping/view.py

48 lines
1.2 KiB
Python
Raw Normal View History

import time
from typing import Any, Dict
2018-01-29 11:33:21 +01:00
from django.http import HttpRequest, HttpResponse
from zerver.decorator import REQ, has_request_variables, webhook_view
from zerver.lib.response import json_success
from zerver.lib.webhooks.common import check_send_webhook_message
from zerver.models import UserProfile
2018-01-29 11:33:21 +01:00
MESSAGE_TEMPLATE = """
State changed to **{state}**:
* **URL**: {url}
* **Response time**: {response_time} ms
* **Timestamp**: {timestamp}
""".strip()
2018-01-29 11:33:21 +01:00
@webhook_view("Insping")
2018-01-29 11:33:21 +01:00
@has_request_variables
def api_insping_webhook(
request: HttpRequest,
user_profile: UserProfile,
payload: Dict[str, Dict[str, Any]] = REQ(argument_type="body"),
2018-01-29 11:33:21 +01:00
) -> HttpResponse:
data = payload["webhook_event_data"]
2018-01-29 11:33:21 +01:00
state_name = data["check_state_name"]
url_tested = data["request_url"]
response_time = data["response_time"]
timestamp = data["request_start_time"]
2018-01-29 11:33:21 +01:00
time_formatted = time.strftime("%c", time.strptime(timestamp, "%Y-%m-%dT%H:%M:%S.%f+00:00"))
2018-01-29 11:33:21 +01:00
body = MESSAGE_TEMPLATE.format(
state=state_name,
url=url_tested,
response_time=response_time,
timestamp=time_formatted,
)
topic = "insping"
2018-01-29 11:33:21 +01:00
check_send_webhook_message(request, user_profile, topic, body)
2018-01-29 11:33:21 +01:00
return json_success()