2017-01-28 18:42:59 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# vim:fenc=utf-8
|
2019-02-02 23:53:55 +01:00
|
|
|
from typing import Any, Dict, Optional
|
2017-11-16 00:43:10 +01: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
|
2019-02-02 23:53:55 +01:00
|
|
|
from zerver.lib.response import json_success
|
2018-04-24 20:54:13 +02:00
|
|
|
from zerver.lib.webhooks.common import check_send_webhook_message, \
|
2018-05-22 16:46:45 +02:00
|
|
|
validate_extract_webhook_http_header, UnexpectedWebhookEventType
|
2018-11-09 20:59:15 +01:00
|
|
|
from zerver.lib.webhooks.git import TOPIC_WITH_BRANCH_TEMPLATE, \
|
|
|
|
TOPIC_WITH_PR_OR_ISSUE_INFO_TEMPLATE, get_create_branch_event_message, \
|
2017-11-16 00:43:10 +01:00
|
|
|
get_pull_request_event_message, get_push_commits_event_message
|
2017-10-31 04:25:48 +01:00
|
|
|
from zerver.models import UserProfile
|
2017-01-28 18:42:59 +01:00
|
|
|
|
2018-05-11 01:43:34 +02:00
|
|
|
def format_push_event(payload: Dict[str, Any]) -> str:
|
2017-01-28 18:42:59 +01:00
|
|
|
|
|
|
|
for commit in payload['commits']:
|
|
|
|
commit['sha'] = commit['id']
|
2017-04-26 02:57:47 +02:00
|
|
|
commit['name'] = (commit['author']['username'] or
|
|
|
|
commit['author']['name'].split()[0])
|
2017-01-28 18:42:59 +01:00
|
|
|
|
|
|
|
data = {
|
|
|
|
'user_name': payload['sender']['username'],
|
|
|
|
'compare_url': payload['compare_url'],
|
|
|
|
'branch_name': payload['ref'].replace('refs/heads/', ''),
|
|
|
|
'commits_data': payload['commits']
|
|
|
|
}
|
|
|
|
|
|
|
|
return get_push_commits_event_message(**data)
|
|
|
|
|
2018-05-11 01:43:34 +02:00
|
|
|
def format_new_branch_event(payload: Dict[str, Any]) -> str:
|
2017-01-28 18:42:59 +01:00
|
|
|
|
|
|
|
branch_name = payload['ref']
|
|
|
|
url = '{}/src/{}'.format(payload['repository']['html_url'], branch_name)
|
|
|
|
|
|
|
|
data = {
|
|
|
|
'user_name': payload['sender']['username'],
|
|
|
|
'url': url,
|
|
|
|
'branch_name': branch_name
|
|
|
|
}
|
|
|
|
return get_create_branch_event_message(**data)
|
|
|
|
|
2018-07-23 20:14:24 +02:00
|
|
|
def format_pull_request_event(payload: Dict[str, Any],
|
|
|
|
include_title: Optional[bool]=False) -> str:
|
2017-01-28 18:42:59 +01:00
|
|
|
|
|
|
|
data = {
|
|
|
|
'user_name': payload['pull_request']['user']['username'],
|
|
|
|
'action': payload['action'],
|
|
|
|
'url': payload['pull_request']['html_url'],
|
|
|
|
'number': payload['pull_request']['number'],
|
|
|
|
'target_branch': payload['pull_request']['head_branch'],
|
|
|
|
'base_branch': payload['pull_request']['base_branch'],
|
2018-07-23 20:14:24 +02:00
|
|
|
'title': payload['pull_request']['title'] if include_title else None
|
2017-01-28 18:42:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if payload['pull_request']['merged']:
|
|
|
|
data['user_name'] = payload['pull_request']['merged_by']['username']
|
|
|
|
data['action'] = 'merged'
|
|
|
|
|
|
|
|
return get_pull_request_event_message(**data)
|
|
|
|
|
|
|
|
@api_key_only_webhook_view('Gogs')
|
|
|
|
@has_request_variables
|
2017-12-18 15:08:41 +01:00
|
|
|
def api_gogs_webhook(request: HttpRequest, user_profile: UserProfile,
|
|
|
|
payload: Dict[str, Any]=REQ(argument_type='body'),
|
2018-07-23 20:14:24 +02:00
|
|
|
branches: Optional[str]=REQ(default=None),
|
|
|
|
user_specified_topic: Optional[str]=REQ("topic", default=None)) -> HttpResponse:
|
2017-01-28 18:42:59 +01:00
|
|
|
|
|
|
|
repo = payload['repository']['name']
|
2018-04-24 20:54:13 +02:00
|
|
|
event = validate_extract_webhook_http_header(request, 'X_GOGS_EVENT', 'Gogs')
|
2017-08-24 17:31:04 +02:00
|
|
|
if event == 'push':
|
|
|
|
branch = payload['ref'].replace('refs/heads/', '')
|
|
|
|
if branches is not None and branches.find(branch) == -1:
|
|
|
|
return json_success()
|
|
|
|
body = format_push_event(payload)
|
2018-11-09 20:59:15 +01:00
|
|
|
topic = TOPIC_WITH_BRANCH_TEMPLATE.format(
|
2017-08-24 17:31:04 +02:00
|
|
|
repo=repo,
|
|
|
|
branch=branch
|
|
|
|
)
|
|
|
|
elif event == 'create':
|
|
|
|
body = format_new_branch_event(payload)
|
2018-11-09 20:59:15 +01:00
|
|
|
topic = TOPIC_WITH_BRANCH_TEMPLATE.format(
|
2017-08-24 17:31:04 +02:00
|
|
|
repo=repo,
|
|
|
|
branch=payload['ref']
|
|
|
|
)
|
|
|
|
elif event == 'pull_request':
|
2018-07-23 20:14:24 +02:00
|
|
|
body = format_pull_request_event(
|
|
|
|
payload,
|
|
|
|
include_title=user_specified_topic is not None
|
|
|
|
)
|
2018-11-09 20:59:15 +01:00
|
|
|
topic = TOPIC_WITH_PR_OR_ISSUE_INFO_TEMPLATE.format(
|
2017-08-24 17:31:04 +02:00
|
|
|
repo=repo,
|
|
|
|
type='PR',
|
|
|
|
id=payload['pull_request']['id'],
|
|
|
|
title=payload['pull_request']['title']
|
|
|
|
)
|
|
|
|
else:
|
2018-05-22 16:46:45 +02:00
|
|
|
raise UnexpectedWebhookEventType('Gogs', event)
|
2017-01-28 18:42:59 +01:00
|
|
|
|
2018-03-16 22:53:50 +01:00
|
|
|
check_send_webhook_message(request, user_profile, topic, body)
|
2017-01-28 18:42:59 +01:00
|
|
|
return json_success()
|