2016-12-31 18:06:29 +01:00
|
|
|
# Webhooks for external integrations.
|
2017-11-16 00:43:10 +01:00
|
|
|
from typing import Any, Dict
|
|
|
|
|
2016-12-31 18:06:29 +01:00
|
|
|
from django.http import HttpRequest, HttpResponse
|
|
|
|
|
2020-08-20 00:32:15 +02:00
|
|
|
from zerver.decorator import webhook_view
|
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
|
2018-03-16 22:53:50 +01: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-12-31 18:06:29 +01:00
|
|
|
|
2019-04-18 23:25:03 +02:00
|
|
|
MESSAGE_TEMPLATE = """
|
|
|
|
Build update (see [build log]({build_log_url})):
|
|
|
|
* **Author**: {author}
|
|
|
|
* **Commit**: [{commit_id}]({commit_url})
|
|
|
|
* **Status**: {status} {emoji}
|
|
|
|
""".strip()
|
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
2020-08-20 00:32:15 +02:00
|
|
|
@webhook_view('SolanoLabs')
|
2016-12-31 18:06:29 +01:00
|
|
|
@has_request_variables
|
2021-02-12 08:19:30 +01:00
|
|
|
def api_solano_webhook(
|
|
|
|
request: HttpRequest,
|
|
|
|
user_profile: UserProfile,
|
|
|
|
payload: Dict[str, Any] = REQ(argument_type='body'),
|
|
|
|
) -> HttpResponse:
|
2017-04-11 08:58:23 +02:00
|
|
|
event = payload.get('event')
|
2018-03-16 22:53:50 +01:00
|
|
|
topic = 'build update'
|
2017-04-11 08:58:23 +02:00
|
|
|
if event == 'test':
|
2018-03-16 22:53:50 +01:00
|
|
|
return handle_test_event(request, user_profile, topic)
|
2016-12-31 18:06:29 +01:00
|
|
|
try:
|
2017-08-24 17:31:04 +02:00
|
|
|
author = payload['committers'][0]
|
|
|
|
except KeyError:
|
|
|
|
author = 'Unknown'
|
|
|
|
status = payload['status']
|
|
|
|
build_log = payload['url']
|
|
|
|
repository = payload['repository']['url']
|
|
|
|
commit_id = payload['commit_id']
|
2016-12-31 18:06:29 +01:00
|
|
|
|
|
|
|
good_status = ['passed']
|
2021-02-12 08:19:30 +01:00
|
|
|
bad_status = ['failed', 'error']
|
2017-01-05 01:02:03 +01:00
|
|
|
neutral_status = ['running']
|
2016-12-31 18:06:29 +01:00
|
|
|
emoji = ''
|
|
|
|
if status in good_status:
|
2018-02-07 03:26:08 +01:00
|
|
|
emoji = ':thumbs_up:'
|
2016-12-31 18:06:29 +01:00
|
|
|
elif status in bad_status:
|
2018-02-07 03:26:08 +01:00
|
|
|
emoji = ':thumbs_down:'
|
2017-01-05 01:02:03 +01:00
|
|
|
elif status in neutral_status:
|
|
|
|
emoji = ':arrows_counterclockwise:'
|
2016-12-31 18:06:29 +01:00
|
|
|
|
2020-10-23 02:43:28 +02:00
|
|
|
# If the service is not one of the following, the URL is of the repository home, not the individual
|
2016-12-31 18:06:29 +01:00
|
|
|
# commit itself.
|
|
|
|
commit_url = repository.split('@')[1]
|
|
|
|
if 'github' in repository:
|
2020-06-09 00:25:09 +02:00
|
|
|
commit_url += f'/commit/{commit_id}'
|
2016-12-31 18:06:29 +01:00
|
|
|
elif 'bitbucket' in repository:
|
2020-06-09 00:25:09 +02:00
|
|
|
commit_url += f'/commits/{commit_id}'
|
2016-12-31 18:06:29 +01:00
|
|
|
elif 'gitlab' in repository:
|
2020-06-09 00:25:09 +02:00
|
|
|
commit_url += f'/pipelines/{commit_id}'
|
2016-12-31 18:06:29 +01:00
|
|
|
|
2019-04-18 23:25:03 +02:00
|
|
|
body = MESSAGE_TEMPLATE.format(
|
2021-02-12 08:19:30 +01:00
|
|
|
author=author,
|
|
|
|
build_log_url=build_log,
|
|
|
|
commit_id=commit_id[:7],
|
|
|
|
commit_url=commit_url,
|
|
|
|
status=status,
|
|
|
|
emoji=emoji,
|
2019-04-18 23:25:03 +02:00
|
|
|
)
|
2016-12-31 18:06:29 +01:00
|
|
|
|
2018-03-16 22:53:50 +01:00
|
|
|
check_send_webhook_message(request, user_profile, topic, body)
|
2016-12-31 18:06:29 +01:00
|
|
|
return json_success()
|
2017-04-11 08:58:23 +02:00
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
|
|
|
def handle_test_event(request: HttpRequest, user_profile: UserProfile, topic: str) -> HttpResponse:
|
2019-04-18 23:25:03 +02:00
|
|
|
body = 'Solano webhook set up correctly.'
|
2018-03-16 22:53:50 +01:00
|
|
|
check_send_webhook_message(request, user_profile, topic, body)
|
2017-04-11 08:58:23 +02:00
|
|
|
return json_success()
|