mirror of https://github.com/zulip/zulip.git
54 lines
1.7 KiB
Python
54 lines
1.7 KiB
Python
|
# Webhooks for external integrations.
|
||
|
from __future__ import absolute_import
|
||
|
from zerver.models import get_client
|
||
|
from zerver.lib.actions import check_send_message
|
||
|
from zerver.lib.response import json_success, json_error
|
||
|
from zerver.decorator import REQ, has_request_variables, api_key_only_webhook_view
|
||
|
|
||
|
import ujson
|
||
|
|
||
|
|
||
|
CODESHIP_SUBJECT_TEMPLATE = '{project_name}'
|
||
|
CODESHIP_MESSAGE_TEMPLATE = '[Build]({build_url}) triggered by {committer} on {branch} branch {status}.'
|
||
|
|
||
|
CODESHIP_DEFAULT_STATUS = 'has {status} status'
|
||
|
CODESHIP_STATUS_MAPPER = {
|
||
|
'testing': 'started',
|
||
|
'error': 'failed',
|
||
|
'success': 'succeeded',
|
||
|
}
|
||
|
|
||
|
|
||
|
@api_key_only_webhook_view
|
||
|
@has_request_variables
|
||
|
def api_codeship_webhook(request, user_profile, stream=REQ(default='codeship')):
|
||
|
try:
|
||
|
payload = ujson.loads(request.body)['build']
|
||
|
subject = get_subject_for_http_request(payload)
|
||
|
body = get_body_for_http_request(payload)
|
||
|
except KeyError as e:
|
||
|
return json_error("Missing key {} in JSON".format(e.message))
|
||
|
except ValueError as e:
|
||
|
return json_error("Malformed JSON")
|
||
|
|
||
|
check_send_message(user_profile, get_client('ZulipCodeshipWebhook'), 'stream', [stream], subject, body)
|
||
|
return json_success()
|
||
|
|
||
|
|
||
|
def get_subject_for_http_request(payload):
|
||
|
return CODESHIP_SUBJECT_TEMPLATE.format(project_name=payload['project_name'])
|
||
|
|
||
|
|
||
|
def get_body_for_http_request(payload):
|
||
|
return CODESHIP_MESSAGE_TEMPLATE.format(
|
||
|
build_url=payload['build_url'],
|
||
|
committer=payload['committer'],
|
||
|
branch=payload['branch'],
|
||
|
status=get_status_message(payload)
|
||
|
)
|
||
|
|
||
|
|
||
|
def get_status_message(payload):
|
||
|
build_status = payload['status']
|
||
|
return CODESHIP_STATUS_MAPPER.get(build_status, CODESHIP_DEFAULT_STATUS.format(status=build_status))
|