2017-11-16 00:43:10 +01:00
|
|
|
import re
|
2019-04-10 06:46:29 +02:00
|
|
|
import string
|
2018-05-10 19:34:01 +02:00
|
|
|
from typing import Any, Dict
|
2017-11-16 00:43:10 +01:00
|
|
|
|
2017-03-14 20:04:11 +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
|
2020-06-11 00:54:34 +02:00
|
|
|
from zerver.lib.webhooks.common import UnexpectedWebhookEventType, check_send_webhook_message
|
2017-05-02 01:00:50 +02:00
|
|
|
from zerver.models import UserProfile
|
2017-03-14 20:04:11 +01:00
|
|
|
|
|
|
|
from .support_event import SUPPORT_EVENTS
|
|
|
|
|
|
|
|
DOCUMENT_TEMPLATE = "{user_name} {verb} the document [{title}]({url})"
|
|
|
|
QUESTION_TEMPLATE = "{user_name} {verb} the question [{title}]({url})"
|
2017-10-27 02:36:54 +02:00
|
|
|
QUESTIONS_ANSWER_TEMPLATE = ("{user_name} {verb} the [answer]({answer_url}) " +
|
|
|
|
"of the question [{question_title}]({question_url})")
|
|
|
|
COMMENT_TEMPLATE = ("{user_name} {verb} the [comment]({answer_url}) "
|
|
|
|
"of the task [{task_title}]({task_url})")
|
2017-03-14 20:04:11 +01:00
|
|
|
MESSAGE_TEMPLATE = "{user_name} {verb} the message [{title}]({url})"
|
|
|
|
TODO_LIST_TEMPLATE = "{user_name} {verb} the todo list [{title}]({url})"
|
|
|
|
TODO_TEMPLATE = "{user_name} {verb} the todo task [{title}]({url})"
|
|
|
|
|
|
|
|
@api_key_only_webhook_view('Basecamp')
|
|
|
|
@has_request_variables
|
2017-12-06 19:38:47 +01:00
|
|
|
def api_basecamp_webhook(request: HttpRequest, user_profile: UserProfile,
|
2018-03-13 23:43:02 +01:00
|
|
|
payload: Dict[str, Any]=REQ(argument_type='body')) -> HttpResponse:
|
2017-03-14 20:04:11 +01:00
|
|
|
event = get_event_type(payload)
|
|
|
|
|
|
|
|
if event not in SUPPORT_EVENTS:
|
2018-05-22 16:46:45 +02:00
|
|
|
raise UnexpectedWebhookEventType('Basecamp', event)
|
2017-03-14 20:04:11 +01:00
|
|
|
|
|
|
|
subject = get_project_name(payload)
|
|
|
|
if event.startswith('document_'):
|
|
|
|
body = get_document_body(event, payload)
|
|
|
|
elif event.startswith('question_answer_'):
|
|
|
|
body = get_questions_answer_body(event, payload)
|
|
|
|
elif event.startswith('question_'):
|
|
|
|
body = get_questions_body(event, payload)
|
|
|
|
elif event.startswith('message_'):
|
|
|
|
body = get_message_body(event, payload)
|
|
|
|
elif event.startswith('todolist_'):
|
|
|
|
body = get_todo_list_body(event, payload)
|
|
|
|
elif event.startswith('todo_'):
|
|
|
|
body = get_todo_body(event, payload)
|
|
|
|
elif event.startswith('comment_'):
|
|
|
|
body = get_comment_body(event, payload)
|
|
|
|
else:
|
2018-05-22 16:46:45 +02:00
|
|
|
raise UnexpectedWebhookEventType('Basecamp', event)
|
2017-03-14 20:04:11 +01:00
|
|
|
|
2018-03-13 23:43:02 +01:00
|
|
|
check_send_webhook_message(request, user_profile, subject, body)
|
2017-03-14 20:04:11 +01:00
|
|
|
return json_success()
|
|
|
|
|
2018-05-10 19:34:01 +02:00
|
|
|
def get_project_name(payload: Dict[str, Any]) -> str:
|
2017-03-14 20:04:11 +01:00
|
|
|
return payload['recording']['bucket']['name']
|
|
|
|
|
2018-05-10 19:34:01 +02:00
|
|
|
def get_event_type(payload: Dict[str, Any]) -> str:
|
2017-03-14 20:04:11 +01:00
|
|
|
return payload['kind']
|
|
|
|
|
2018-05-10 19:34:01 +02:00
|
|
|
def get_event_creator(payload: Dict[str, Any]) -> str:
|
2017-03-14 20:04:11 +01:00
|
|
|
return payload['creator']['name']
|
|
|
|
|
2018-05-10 19:34:01 +02:00
|
|
|
def get_subject_url(payload: Dict[str, Any]) -> str:
|
2017-03-14 20:04:11 +01:00
|
|
|
return payload['recording']['app_url']
|
|
|
|
|
2018-05-10 19:34:01 +02:00
|
|
|
def get_subject_title(payload: Dict[str, Any]) -> str:
|
2017-03-14 20:04:11 +01:00
|
|
|
return payload['recording']['title']
|
|
|
|
|
2018-05-10 19:34:01 +02:00
|
|
|
def get_verb(event: str, prefix: str) -> str:
|
2017-03-14 20:04:11 +01:00
|
|
|
verb = event.replace(prefix, '')
|
|
|
|
if verb == 'active':
|
|
|
|
return 'activated'
|
|
|
|
|
|
|
|
matched = re.match(r"(?P<subject>[A-z]*)_changed", verb)
|
|
|
|
if matched:
|
|
|
|
return "changed {} of".format(matched.group('subject'))
|
|
|
|
return verb
|
|
|
|
|
2019-04-10 06:46:29 +02:00
|
|
|
def add_punctuation_if_necessary(body: str, title: str) -> str:
|
|
|
|
if title[-1] not in string.punctuation:
|
2020-06-09 00:25:09 +02:00
|
|
|
body = f'{body}.'
|
2019-04-10 06:46:29 +02:00
|
|
|
return body
|
|
|
|
|
2018-05-10 19:34:01 +02:00
|
|
|
def get_document_body(event: str, payload: Dict[str, Any]) -> str:
|
2017-03-14 20:04:11 +01:00
|
|
|
return get_generic_body(event, payload, 'document_', DOCUMENT_TEMPLATE)
|
|
|
|
|
2018-05-10 19:34:01 +02:00
|
|
|
def get_questions_answer_body(event: str, payload: Dict[str, Any]) -> str:
|
2017-03-14 20:04:11 +01:00
|
|
|
verb = get_verb(event, 'question_answer_')
|
|
|
|
question = payload['recording']['parent']
|
2019-04-10 06:46:29 +02:00
|
|
|
title = question['title']
|
|
|
|
template = add_punctuation_if_necessary(QUESTIONS_ANSWER_TEMPLATE, title)
|
2017-03-14 20:04:11 +01:00
|
|
|
|
2019-04-10 06:46:29 +02:00
|
|
|
return template.format(
|
2017-03-14 20:04:11 +01:00
|
|
|
user_name=get_event_creator(payload),
|
|
|
|
verb=verb,
|
|
|
|
answer_url=get_subject_url(payload),
|
2019-04-10 06:46:29 +02:00
|
|
|
question_title=title,
|
python: Use trailing commas consistently.
Automatically generated by the following script, based on the output
of lint with flake8-comma:
import re
import sys
last_filename = None
last_row = None
lines = []
for msg in sys.stdin:
m = re.match(
r"\x1b\[35mflake8 \|\x1b\[0m \x1b\[1;31m(.+):(\d+):(\d+): (\w+)", msg
)
if m:
filename, row_str, col_str, err = m.groups()
row, col = int(row_str), int(col_str)
if filename == last_filename:
assert last_row != row
else:
if last_filename is not None:
with open(last_filename, "w") as f:
f.writelines(lines)
with open(filename) as f:
lines = f.readlines()
last_filename = filename
last_row = row
line = lines[row - 1]
if err in ["C812", "C815"]:
lines[row - 1] = line[: col - 1] + "," + line[col - 1 :]
elif err in ["C819"]:
assert line[col - 2] == ","
lines[row - 1] = line[: col - 2] + line[col - 1 :].lstrip(" ")
if last_filename is not None:
with open(last_filename, "w") as f:
f.writelines(lines)
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-10 05:23:40 +02:00
|
|
|
question_url=question['app_url'],
|
2017-03-14 20:04:11 +01:00
|
|
|
)
|
|
|
|
|
2018-05-10 19:34:01 +02:00
|
|
|
def get_comment_body(event: str, payload: Dict[str, Any]) -> str:
|
2017-03-14 20:04:11 +01:00
|
|
|
verb = get_verb(event, 'comment_')
|
|
|
|
task = payload['recording']['parent']
|
2019-04-10 06:46:29 +02:00
|
|
|
template = add_punctuation_if_necessary(COMMENT_TEMPLATE, task['title'])
|
2017-03-14 20:04:11 +01:00
|
|
|
|
2019-04-10 06:46:29 +02:00
|
|
|
return template.format(
|
2017-03-14 20:04:11 +01:00
|
|
|
user_name=get_event_creator(payload),
|
|
|
|
verb=verb,
|
|
|
|
answer_url=get_subject_url(payload),
|
|
|
|
task_title=task['title'],
|
python: Use trailing commas consistently.
Automatically generated by the following script, based on the output
of lint with flake8-comma:
import re
import sys
last_filename = None
last_row = None
lines = []
for msg in sys.stdin:
m = re.match(
r"\x1b\[35mflake8 \|\x1b\[0m \x1b\[1;31m(.+):(\d+):(\d+): (\w+)", msg
)
if m:
filename, row_str, col_str, err = m.groups()
row, col = int(row_str), int(col_str)
if filename == last_filename:
assert last_row != row
else:
if last_filename is not None:
with open(last_filename, "w") as f:
f.writelines(lines)
with open(filename) as f:
lines = f.readlines()
last_filename = filename
last_row = row
line = lines[row - 1]
if err in ["C812", "C815"]:
lines[row - 1] = line[: col - 1] + "," + line[col - 1 :]
elif err in ["C819"]:
assert line[col - 2] == ","
lines[row - 1] = line[: col - 2] + line[col - 1 :].lstrip(" ")
if last_filename is not None:
with open(last_filename, "w") as f:
f.writelines(lines)
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-10 05:23:40 +02:00
|
|
|
task_url=task['app_url'],
|
2017-03-14 20:04:11 +01:00
|
|
|
)
|
|
|
|
|
2018-05-10 19:34:01 +02:00
|
|
|
def get_questions_body(event: str, payload: Dict[str, Any]) -> str:
|
2017-03-14 20:04:11 +01:00
|
|
|
return get_generic_body(event, payload, 'question_', QUESTION_TEMPLATE)
|
|
|
|
|
2018-05-10 19:34:01 +02:00
|
|
|
def get_message_body(event: str, payload: Dict[str, Any]) -> str:
|
2017-03-14 20:04:11 +01:00
|
|
|
return get_generic_body(event, payload, 'message_', MESSAGE_TEMPLATE)
|
|
|
|
|
2018-05-10 19:34:01 +02:00
|
|
|
def get_todo_list_body(event: str, payload: Dict[str, Any]) -> str:
|
2017-03-14 20:04:11 +01:00
|
|
|
return get_generic_body(event, payload, 'todolist_', TODO_LIST_TEMPLATE)
|
|
|
|
|
2018-05-10 19:34:01 +02:00
|
|
|
def get_todo_body(event: str, payload: Dict[str, Any]) -> str:
|
2017-03-14 20:04:11 +01:00
|
|
|
return get_generic_body(event, payload, 'todo_', TODO_TEMPLATE)
|
|
|
|
|
2018-05-10 19:34:01 +02:00
|
|
|
def get_generic_body(event: str, payload: Dict[str, Any], prefix: str, template: str) -> str:
|
2017-03-14 20:04:11 +01:00
|
|
|
verb = get_verb(event, prefix)
|
2019-04-10 06:46:29 +02:00
|
|
|
title = get_subject_title(payload)
|
|
|
|
template = add_punctuation_if_necessary(template, title)
|
2017-03-14 20:04:11 +01:00
|
|
|
|
|
|
|
return template.format(
|
|
|
|
user_name=get_event_creator(payload),
|
|
|
|
verb=verb,
|
|
|
|
title=get_subject_title(payload),
|
|
|
|
url=get_subject_url(payload),
|
|
|
|
)
|