2016-03-13 15:14:29 +01:00
|
|
|
# Webhooks for external integrations.
|
2016-06-05 23:42:30 +02:00
|
|
|
|
2017-11-16 00:43:10 +01:00
|
|
|
from typing import Dict
|
|
|
|
|
|
|
|
import ujson
|
2016-06-05 23:42:30 +02:00
|
|
|
from django.http import HttpRequest, HttpResponse
|
|
|
|
|
2017-10-31 04:25:48 +01:00
|
|
|
from zerver.decorator import api_key_only_webhook_view
|
|
|
|
from zerver.lib.request import REQ, has_request_variables
|
2017-11-16 00:43:10 +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
|
2017-11-16 00:43:10 +01:00
|
|
|
from zerver.lib.validator import check_bool, check_dict, check_string
|
2017-05-02 01:00:50 +02:00
|
|
|
from zerver.models import UserProfile
|
2016-03-13 15:14:29 +01:00
|
|
|
|
2017-03-06 05:56:36 +01:00
|
|
|
GOOD_STATUSES = ['Passed', 'Fixed']
|
|
|
|
BAD_STATUSES = ['Failed', 'Broken', 'Still Failing']
|
|
|
|
|
|
|
|
MESSAGE_TEMPLATE = (
|
|
|
|
u'Author: {}\n'
|
|
|
|
u'Build status: {} {}\n'
|
|
|
|
u'Details: [changes]({}), [build log]({})'
|
|
|
|
)
|
2016-03-13 15:14:29 +01:00
|
|
|
|
2016-05-12 22:49:36 +02:00
|
|
|
@api_key_only_webhook_view('Travis')
|
2016-03-13 15:14:29 +01:00
|
|
|
@has_request_variables
|
2017-12-19 18:50:49 +01:00
|
|
|
def api_travis_webhook(request: HttpRequest, user_profile: UserProfile,
|
|
|
|
ignore_pull_requests: bool = REQ(validator=check_bool, default=True),
|
|
|
|
message: Dict[str, str]=REQ('payload', validator=check_dict([
|
2016-06-03 20:21:57 +02:00
|
|
|
('author_name', check_string),
|
|
|
|
('status_message', check_string),
|
|
|
|
('compare_url', check_string),
|
2017-12-19 18:50:49 +01:00
|
|
|
]))) -> HttpResponse:
|
2017-03-06 05:56:36 +01:00
|
|
|
|
|
|
|
message_status = message['status_message']
|
2017-03-06 07:12:40 +01:00
|
|
|
if ignore_pull_requests and message['type'] == 'pull_request':
|
|
|
|
return json_success()
|
2017-03-06 05:56:36 +01:00
|
|
|
|
|
|
|
if message_status in GOOD_STATUSES:
|
2018-02-07 03:26:08 +01:00
|
|
|
emoji = ':thumbs_up:'
|
2017-03-06 05:56:36 +01:00
|
|
|
elif message_status in BAD_STATUSES:
|
2018-02-07 03:26:08 +01:00
|
|
|
emoji = ':thumbs_down:'
|
2016-03-13 15:14:29 +01:00
|
|
|
else:
|
2017-03-06 05:56:36 +01:00
|
|
|
emoji = "(No emoji specified for status '{}'.)".format(message_status)
|
|
|
|
|
|
|
|
body = MESSAGE_TEMPLATE.format(
|
|
|
|
message['author_name'],
|
|
|
|
message_status,
|
|
|
|
emoji,
|
|
|
|
message['compare_url'],
|
|
|
|
message['build_url']
|
|
|
|
)
|
2018-03-16 22:53:50 +01:00
|
|
|
topic = 'builds'
|
2016-03-13 15:14:29 +01:00
|
|
|
|
2018-03-16 22:53:50 +01:00
|
|
|
check_send_webhook_message(request, user_profile, topic, body)
|
2016-03-13 15:14:29 +01:00
|
|
|
return json_success()
|