mirror of
https://github.com/zulip/zulip.git
synced 2025-11-04 22:13:26 +00:00
Black 23 enforces some slightly more specific rules about empty line counts and redundant parenthesis removal, but the result is still compatible with Black 22. (This does not actually upgrade our Python environment to Black 23 yet.) Signed-off-by: Anders Kaseorg <anders@zulip.com>
48 lines
1.4 KiB
Python
48 lines
1.4 KiB
Python
import time
|
|
|
|
from django.http import HttpRequest, HttpResponse
|
|
|
|
from zerver.decorator import webhook_view
|
|
from zerver.lib.request import REQ, has_request_variables
|
|
from zerver.lib.response import json_success
|
|
from zerver.lib.validator import WildValue, check_int, check_string, to_wild_value
|
|
from zerver.lib.webhooks.common import check_send_webhook_message
|
|
from zerver.models import UserProfile
|
|
|
|
MESSAGE_TEMPLATE = """
|
|
State changed to **{state}**:
|
|
* **URL**: {url}
|
|
* **Response time**: {response_time} ms
|
|
* **Timestamp**: {timestamp}
|
|
""".strip()
|
|
|
|
|
|
@webhook_view("Insping")
|
|
@has_request_variables
|
|
def api_insping_webhook(
|
|
request: HttpRequest,
|
|
user_profile: UserProfile,
|
|
payload: WildValue = REQ(argument_type="body", converter=to_wild_value),
|
|
) -> HttpResponse:
|
|
data = payload["webhook_event_data"]
|
|
|
|
state_name = data["check_state_name"].tame(check_string)
|
|
url_tested = data["request_url"].tame(check_string)
|
|
response_time = data["response_time"].tame(check_int)
|
|
timestamp = data["request_start_time"].tame(check_string)
|
|
|
|
time_formatted = time.strftime("%c", time.strptime(timestamp, "%Y-%m-%dT%H:%M:%S.%f+00:00"))
|
|
|
|
body = MESSAGE_TEMPLATE.format(
|
|
state=state_name,
|
|
url=url_tested,
|
|
response_time=response_time,
|
|
timestamp=time_formatted,
|
|
)
|
|
|
|
topic = "insping"
|
|
|
|
check_send_webhook_message(request, user_profile, topic, body)
|
|
|
|
return json_success(request)
|