2016-03-13 15:14:29 +01:00
|
|
|
# Webhooks for external integrations.
|
|
|
|
from __future__ import absolute_import
|
2016-06-05 23:42:30 +02:00
|
|
|
|
|
|
|
from django.http import HttpRequest, HttpResponse
|
|
|
|
|
|
|
|
from zerver.decorator import REQ, has_request_variables, api_key_only_webhook_view
|
2016-03-13 15:14:29 +01:00
|
|
|
from zerver.lib.actions import check_send_message
|
|
|
|
from zerver.lib.response import json_success
|
2017-03-06 07:12:40 +01:00
|
|
|
from zerver.lib.validator import check_dict, check_string, check_bool
|
2017-05-02 01:00:50 +02:00
|
|
|
from zerver.models import UserProfile
|
2017-03-03 19:01:52 +01:00
|
|
|
from typing import Dict
|
2016-06-05 23:42:30 +02:00
|
|
|
|
2016-03-13 15:14:29 +01:00
|
|
|
import ujson
|
|
|
|
|
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-05-02 01:00:50 +02:00
|
|
|
def api_travis_webhook(request, user_profile,
|
2016-05-12 22:49:36 +02:00
|
|
|
stream=REQ(default='travis'),
|
2016-05-07 20:22:01 +02:00
|
|
|
topic=REQ(default=None),
|
2017-03-06 07:12:40 +01:00
|
|
|
ignore_pull_requests=REQ(validator=check_bool, default=True),
|
2016-05-07 20:22:01 +02:00
|
|
|
message=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),
|
2016-05-07 20:22:01 +02:00
|
|
|
]))):
|
2017-05-02 01:00:50 +02:00
|
|
|
# type: (HttpRequest, UserProfile, str, str, str, Dict[str, str]) -> 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:
|
2016-03-13 15:14:29 +01:00
|
|
|
emoji = ':thumbsup:'
|
2017-03-06 05:56:36 +01:00
|
|
|
elif message_status in BAD_STATUSES:
|
2016-03-13 15:14:29 +01:00
|
|
|
emoji = ':thumbsdown:'
|
|
|
|
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']
|
|
|
|
)
|
2016-03-13 15:14:29 +01:00
|
|
|
|
2017-05-02 01:00:50 +02:00
|
|
|
check_send_message(user_profile, request.client, 'stream', [stream], topic, body)
|
2016-03-13 15:14:29 +01:00
|
|
|
return json_success()
|