2020-01-14 22:06:24 +01:00
|
|
|
import time
|
2018-01-29 11:33:21 +01:00
|
|
|
|
|
|
|
from django.http import HttpRequest, HttpResponse
|
|
|
|
|
2021-07-16 22:11:10 +02:00
|
|
|
from zerver.decorator import webhook_view
|
|
|
|
from zerver.lib.request import REQ, has_request_variables
|
2020-01-14 22:06:24 +01:00
|
|
|
from zerver.lib.response import json_success
|
2022-10-08 19:23:35 +02:00
|
|
|
from zerver.lib.validator import WildValue, check_int, check_string, to_wild_value
|
2020-01-14 22:06:24 +01:00
|
|
|
from zerver.lib.webhooks.common import check_send_webhook_message
|
|
|
|
from zerver.models import UserProfile
|
2018-01-29 11:33:21 +01:00
|
|
|
|
2019-04-17 21:32:23 +02: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
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
2021-02-12 08:20:45 +01:00
|
|
|
@webhook_view("Insping")
|
2018-01-29 11:33:21 +01:00
|
|
|
@has_request_variables
|
|
|
|
def api_insping_webhook(
|
2021-02-12 08:19:30 +01:00
|
|
|
request: HttpRequest,
|
|
|
|
user_profile: UserProfile,
|
2022-10-08 19:23:35 +02:00
|
|
|
payload: WildValue = REQ(argument_type="body", converter=to_wild_value),
|
2018-01-29 11:33:21 +01:00
|
|
|
) -> HttpResponse:
|
2021-02-12 08:20:45 +01:00
|
|
|
data = payload["webhook_event_data"]
|
2018-01-29 11:33:21 +01:00
|
|
|
|
2022-10-08 19:23:35 +02:00
|
|
|
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)
|
2018-01-29 11:33:21 +01:00
|
|
|
|
2021-02-12 08:19:30 +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
|
|
|
|
2019-04-17 21:32:23 +02:00
|
|
|
body = MESSAGE_TEMPLATE.format(
|
2021-02-12 08:19:30 +01:00
|
|
|
state=state_name,
|
|
|
|
url=url_tested,
|
|
|
|
response_time=response_time,
|
|
|
|
timestamp=time_formatted,
|
2019-04-17 21:32:23 +02:00
|
|
|
)
|
|
|
|
|
2021-02-12 08:20:45 +01:00
|
|
|
topic = "insping"
|
2018-01-29 11:33:21 +01:00
|
|
|
|
2018-03-16 22:53:50 +01:00
|
|
|
check_send_webhook_message(request, user_profile, topic, body)
|
2018-01-29 11:33:21 +01:00
|
|
|
|
2022-01-31 13:44:02 +01:00
|
|
|
return json_success(request)
|