2016-03-13 12:38:57 +01:00
|
|
|
# Webhooks for external integrations.
|
2017-11-16 00:43:10 +01:00
|
|
|
import base64
|
2019-04-26 01:16:38 +02:00
|
|
|
import re
|
2020-01-14 22:06:24 +01:00
|
|
|
from functools import wraps
|
|
|
|
from typing import Any, Dict, List, Optional, Tuple
|
2017-11-16 00:43:10 +01:00
|
|
|
|
2016-06-05 19:29:21 +02:00
|
|
|
from django.http import HttpRequest, HttpResponse
|
2017-11-16 00:43:10 +01:00
|
|
|
|
2017-10-31 04:25:48 +01:00
|
|
|
from zerver.decorator import authenticated_rest_api_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
|
2020-01-14 22:06:24 +01:00
|
|
|
from zerver.lib.types import ViewFuncT
|
|
|
|
from zerver.lib.validator import check_dict
|
2018-03-13 23:43:02 +01:00
|
|
|
from zerver.lib.webhooks.common import check_send_webhook_message
|
2019-04-26 01:16:38 +02:00
|
|
|
from zerver.lib.webhooks.git import TOPIC_WITH_BRANCH_TEMPLATE, \
|
|
|
|
get_push_commits_event_message
|
2019-02-02 23:53:55 +01:00
|
|
|
from zerver.models import UserProfile
|
2019-04-26 01:16:38 +02:00
|
|
|
|
2020-01-14 22:06:24 +01:00
|
|
|
|
2019-04-26 01:16:38 +02:00
|
|
|
def build_message_from_gitlog(user_profile: UserProfile, name: str, ref: str,
|
|
|
|
commits: List[Dict[str, str]], before: str, after: str,
|
|
|
|
url: str, pusher: str, forced: Optional[str]=None,
|
|
|
|
created: Optional[str]=None, deleted: Optional[bool]=False
|
|
|
|
) -> Tuple[str, str]:
|
|
|
|
short_ref = re.sub(r'^refs/heads/', '', ref)
|
|
|
|
subject = TOPIC_WITH_BRANCH_TEMPLATE.format(repo=name, branch=short_ref)
|
|
|
|
|
|
|
|
commits = _transform_commits_list_to_common_format(commits)
|
|
|
|
content = get_push_commits_event_message(pusher, url, short_ref, commits, deleted=deleted)
|
|
|
|
|
|
|
|
return subject, content
|
|
|
|
|
|
|
|
def _transform_commits_list_to_common_format(commits: List[Dict[str, Any]]) -> List[Dict[str, str]]:
|
|
|
|
new_commits_list = []
|
|
|
|
for commit in commits:
|
|
|
|
new_commits_list.append({
|
|
|
|
'name': commit['author'].get('username'),
|
|
|
|
'sha': commit.get('id'),
|
|
|
|
'url': commit.get('url'),
|
|
|
|
'message': commit.get('message'),
|
|
|
|
})
|
|
|
|
return new_commits_list
|
2016-03-13 12:38:57 +01:00
|
|
|
|
|
|
|
# Beanstalk's web hook UI rejects url with a @ in the username section of a url
|
|
|
|
# So we ask the user to replace them with %40
|
|
|
|
# We manually fix the username here before passing it along to @authenticated_rest_api_view
|
2017-11-04 07:47:46 +01:00
|
|
|
def beanstalk_decoder(view_func: ViewFuncT) -> ViewFuncT:
|
2016-03-13 12:38:57 +01:00
|
|
|
@wraps(view_func)
|
2017-11-04 07:47:46 +01:00
|
|
|
def _wrapped_view_func(request: HttpRequest, *args: Any, **kwargs: Any) -> HttpResponse:
|
2018-09-22 22:09:41 +02:00
|
|
|
auth_type, encoded_value = request.META['HTTP_AUTHORIZATION'].split() # type: str, str
|
|
|
|
if auth_type.lower() == "basic":
|
|
|
|
email, api_key = base64.b64decode(encoded_value).decode('utf-8').split(":")
|
|
|
|
email = email.replace('%40', '@')
|
|
|
|
credentials = u"%s:%s" % (email, api_key)
|
|
|
|
encoded_credentials = base64.b64encode(credentials.encode('utf-8')).decode('utf8') # type: str
|
|
|
|
request.META['HTTP_AUTHORIZATION'] = "Basic " + encoded_credentials
|
2016-03-13 12:38:57 +01:00
|
|
|
|
|
|
|
return view_func(request, *args, **kwargs)
|
|
|
|
|
2017-05-07 20:05:35 +02:00
|
|
|
return _wrapped_view_func # type: ignore # https://github.com/python/mypy/issues/1927
|
2016-03-13 12:38:57 +01:00
|
|
|
|
|
|
|
@beanstalk_decoder
|
2018-03-16 23:37:32 +01:00
|
|
|
@authenticated_rest_api_view(webhook_client_name="Beanstalk")
|
2016-03-13 12:38:57 +01:00
|
|
|
@has_request_variables
|
2017-12-18 15:08:27 +01:00
|
|
|
def api_beanstalk_webhook(request: HttpRequest, user_profile: UserProfile,
|
|
|
|
payload: Dict[str, Any]=REQ(validator=check_dict([])),
|
2018-05-11 01:43:34 +02:00
|
|
|
branches: Optional[str]=REQ(default=None)) -> HttpResponse:
|
2016-03-13 12:38:57 +01:00
|
|
|
# Beanstalk supports both SVN and git repositories
|
|
|
|
# We distinguish between the two by checking for a
|
|
|
|
# 'uri' key that is only present for git repos
|
|
|
|
git_repo = 'uri' in payload
|
|
|
|
if git_repo:
|
2017-04-22 02:34:53 +02:00
|
|
|
if branches is not None and branches.find(payload['branch']) == -1:
|
|
|
|
return json_success()
|
2016-03-13 12:38:57 +01:00
|
|
|
# To get a linkable url,
|
2017-04-05 09:12:19 +02:00
|
|
|
for commit in payload['commits']:
|
2017-04-25 22:34:07 +02:00
|
|
|
commit['author'] = {'username': commit['author']['name']}
|
2017-04-05 09:12:19 +02:00
|
|
|
|
2016-03-13 12:38:57 +01:00
|
|
|
subject, content = build_message_from_gitlog(user_profile, payload['repository']['name'],
|
|
|
|
payload['ref'], payload['commits'],
|
|
|
|
payload['before'], payload['after'],
|
|
|
|
payload['repository']['url'],
|
|
|
|
payload['pusher_name'])
|
|
|
|
else:
|
|
|
|
author = payload.get('author_full_name')
|
|
|
|
url = payload.get('changeset_url')
|
|
|
|
revision = payload.get('revision')
|
2017-05-24 23:03:06 +02:00
|
|
|
(short_commit_msg, _, _) = payload['message'].partition("\n")
|
2016-03-13 12:38:57 +01:00
|
|
|
|
|
|
|
subject = "svn r%s" % (revision,)
|
|
|
|
content = "%s pushed [revision %s](%s):\n\n> %s" % (author, revision, url, short_commit_msg)
|
|
|
|
|
2018-03-13 23:43:02 +01:00
|
|
|
check_send_webhook_message(request, user_profile, subject, content)
|
2016-03-13 12:38:57 +01:00
|
|
|
return json_success()
|