2016-04-11 22:32:07 +02:00
|
|
|
# Webhooks for external integrations.
|
2016-05-25 15:02:02 +02:00
|
|
|
|
2017-03-03 19:01:52 +01:00
|
|
|
from typing import Any, Dict
|
2016-05-25 15:02:02 +02:00
|
|
|
|
2017-11-16 00:43:10 +01:00
|
|
|
import ujson
|
|
|
|
from django.http import HttpRequest, HttpResponse
|
|
|
|
from django.utils.translation import ugettext as _
|
|
|
|
|
2017-10-31 04:25:48 +01:00
|
|
|
from zerver.decorator import api_key_only_webhook_view
|
2017-09-30 04:18:16 +02:00
|
|
|
from zerver.lib.actions import check_send_stream_message
|
2017-10-31 04:25:48 +01:00
|
|
|
from zerver.lib.request import REQ, has_request_variables
|
2017-11-16 00:43:10 +01:00
|
|
|
from zerver.lib.response import json_error, json_success
|
2017-05-02 01:00:50 +02:00
|
|
|
from zerver.models import UserProfile
|
2016-04-11 22:32:07 +02:00
|
|
|
|
|
|
|
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',
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-05-12 22:49:36 +02:00
|
|
|
@api_key_only_webhook_view('Codeship')
|
2016-04-11 22:32:07 +02:00
|
|
|
@has_request_variables
|
2017-12-25 10:20:12 +01:00
|
|
|
def api_codeship_webhook(request: HttpRequest, user_profile: UserProfile,
|
|
|
|
payload: Dict[str, Any]=REQ(argument_type='body'),
|
|
|
|
stream: str=REQ(default='codeship')) -> HttpResponse:
|
2017-08-24 17:31:04 +02:00
|
|
|
payload = payload['build']
|
|
|
|
subject = get_subject_for_http_request(payload)
|
|
|
|
body = get_body_for_http_request(payload)
|
2016-04-11 22:32:07 +02:00
|
|
|
|
2017-09-30 04:18:16 +02:00
|
|
|
check_send_stream_message(user_profile, request.client, stream, subject, body)
|
2016-04-11 22:32:07 +02:00
|
|
|
return json_success()
|
|
|
|
|
|
|
|
|
2017-11-04 07:47:46 +01:00
|
|
|
def get_subject_for_http_request(payload: Dict[str, Any]) -> str:
|
2016-04-11 22:32:07 +02:00
|
|
|
return CODESHIP_SUBJECT_TEMPLATE.format(project_name=payload['project_name'])
|
|
|
|
|
|
|
|
|
2017-11-04 07:47:46 +01:00
|
|
|
def get_body_for_http_request(payload: Dict[str, Any]) -> str:
|
2016-04-11 22:32:07 +02:00
|
|
|
return CODESHIP_MESSAGE_TEMPLATE.format(
|
|
|
|
build_url=payload['build_url'],
|
|
|
|
committer=payload['committer'],
|
|
|
|
branch=payload['branch'],
|
|
|
|
status=get_status_message(payload)
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2017-11-04 07:47:46 +01:00
|
|
|
def get_status_message(payload: Dict[str, Any]) -> str:
|
2016-04-11 22:32:07 +02:00
|
|
|
build_status = payload['status']
|
|
|
|
return CODESHIP_STATUS_MAPPER.get(build_status, CODESHIP_DEFAULT_STATUS.format(status=build_status))
|