2018-05-10 19:34:01 +02: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
|
2017-11-16 00:43:10 +01:00
|
|
|
from zerver.lib.response import json_success
|
2018-03-16 22:53:50 +01:00
|
|
|
from zerver.lib.webhooks.common import check_send_webhook_message
|
2017-10-09 16:54:32 +02:00
|
|
|
from zerver.models import UserProfile
|
|
|
|
|
2020-04-09 21:51:58 +02:00
|
|
|
GCI_MESSAGE_TEMPLATE = '**{actor}** {action} the task [{task_name}]({task_url}).'
|
|
|
|
GCI_TOPIC_TEMPLATE = '{student_name}'
|
2017-10-09 16:54:32 +02:00
|
|
|
|
|
|
|
|
2017-11-28 23:08:44 +01:00
|
|
|
def build_instance_url(instance_id: str) -> str:
|
2020-06-09 00:25:09 +02:00
|
|
|
return f"https://codein.withgoogle.com/dashboard/task-instances/{instance_id}/"
|
2017-11-28 22:38:11 +01:00
|
|
|
|
2017-10-09 16:54:32 +02:00
|
|
|
class UnknownEventType(Exception):
|
|
|
|
pass
|
|
|
|
|
2018-05-10 19:34:01 +02:00
|
|
|
def get_abandon_event_body(payload: Dict[str, Any]) -> str:
|
2017-10-09 16:54:32 +02:00
|
|
|
return GCI_MESSAGE_TEMPLATE.format(
|
2017-10-16 21:44:14 +02:00
|
|
|
actor=payload['task_claimed_by'],
|
2017-11-02 20:09:48 +01:00
|
|
|
action='{}ed'.format(payload['event_type']),
|
2017-10-09 16:54:32 +02:00
|
|
|
task_name=payload['task_definition_name'],
|
2017-11-28 22:38:11 +01:00
|
|
|
task_url=build_instance_url(payload['task_instance']),
|
2017-10-09 16:54:32 +02:00
|
|
|
)
|
|
|
|
|
2018-05-10 19:34:01 +02:00
|
|
|
def get_submit_event_body(payload: Dict[str, Any]) -> str:
|
2017-10-16 21:44:14 +02:00
|
|
|
return GCI_MESSAGE_TEMPLATE.format(
|
|
|
|
actor=payload['task_claimed_by'],
|
2017-11-02 20:09:48 +01:00
|
|
|
action='{}ted'.format(payload['event_type']),
|
2017-10-16 21:44:14 +02:00
|
|
|
task_name=payload['task_definition_name'],
|
2017-11-28 22:38:11 +01:00
|
|
|
task_url=build_instance_url(payload['task_instance']),
|
2017-10-16 21:44:14 +02:00
|
|
|
)
|
|
|
|
|
2018-05-10 19:34:01 +02:00
|
|
|
def get_comment_event_body(payload: Dict[str, Any]) -> str:
|
2017-10-16 21:44:14 +02:00
|
|
|
return GCI_MESSAGE_TEMPLATE.format(
|
|
|
|
actor=payload['author'],
|
2017-11-02 20:09:48 +01:00
|
|
|
action='{}ed on'.format(payload['event_type']),
|
2017-10-16 21:44:14 +02:00
|
|
|
task_name=payload['task_definition_name'],
|
2017-11-28 22:38:11 +01:00
|
|
|
task_url=build_instance_url(payload['task_instance']),
|
2017-10-16 21:44:14 +02:00
|
|
|
)
|
|
|
|
|
2018-05-10 19:34:01 +02:00
|
|
|
def get_claim_event_body(payload: Dict[str, Any]) -> str:
|
2017-10-16 21:44:14 +02:00
|
|
|
return GCI_MESSAGE_TEMPLATE.format(
|
|
|
|
actor=payload['task_claimed_by'],
|
2017-11-02 20:09:48 +01:00
|
|
|
action='{}ed'.format(payload['event_type']),
|
2017-10-16 21:44:14 +02:00
|
|
|
task_name=payload['task_definition_name'],
|
2017-11-28 22:38:11 +01:00
|
|
|
task_url=build_instance_url(payload['task_instance']),
|
2017-10-16 21:44:14 +02:00
|
|
|
)
|
|
|
|
|
2018-05-10 19:34:01 +02:00
|
|
|
def get_approve_event_body(payload: Dict[str, Any]) -> str:
|
2017-10-16 21:44:14 +02:00
|
|
|
return GCI_MESSAGE_TEMPLATE.format(
|
|
|
|
actor=payload['author'],
|
2017-11-02 20:09:48 +01:00
|
|
|
action='{}d'.format(payload['event_type']),
|
2017-10-16 21:44:14 +02:00
|
|
|
task_name=payload['task_definition_name'],
|
2017-11-28 22:38:11 +01:00
|
|
|
task_url=build_instance_url(payload['task_instance']),
|
2017-10-16 21:44:14 +02:00
|
|
|
)
|
|
|
|
|
2018-05-10 19:34:01 +02:00
|
|
|
def get_approve_pending_pc_event_body(payload: Dict[str, Any]) -> str:
|
2017-12-17 23:56:29 +01:00
|
|
|
template = "{} (pending parental consent).".format(GCI_MESSAGE_TEMPLATE.rstrip('.'))
|
|
|
|
return template.format(
|
|
|
|
actor=payload['author'],
|
|
|
|
action='approved',
|
|
|
|
task_name=payload['task_definition_name'],
|
|
|
|
task_url=build_instance_url(payload['task_instance']),
|
|
|
|
)
|
|
|
|
|
2018-05-10 19:34:01 +02:00
|
|
|
def get_needswork_event_body(payload: Dict[str, Any]) -> str:
|
2017-11-02 20:16:11 +01:00
|
|
|
template = "{} for more work.".format(GCI_MESSAGE_TEMPLATE.rstrip('.'))
|
|
|
|
return template.format(
|
|
|
|
actor=payload['author'],
|
|
|
|
action='submitted',
|
|
|
|
task_name=payload['task_definition_name'],
|
2017-11-28 22:38:11 +01:00
|
|
|
task_url=build_instance_url(payload['task_instance']),
|
2017-11-02 20:16:11 +01:00
|
|
|
)
|
2017-10-09 16:54:32 +02:00
|
|
|
|
2018-05-10 19:34:01 +02:00
|
|
|
def get_extend_event_body(payload: Dict[str, Any]) -> str:
|
2018-01-02 22:07:42 +01:00
|
|
|
template = "{} by {days} day(s).".format(GCI_MESSAGE_TEMPLATE.rstrip('.'),
|
|
|
|
days=payload['extension_days'])
|
|
|
|
return template.format(
|
|
|
|
actor=payload['author'],
|
|
|
|
action='extended the deadline for',
|
|
|
|
task_name=payload['task_definition_name'],
|
|
|
|
task_url=build_instance_url(payload['task_instance']),
|
|
|
|
)
|
|
|
|
|
2018-05-10 19:34:01 +02:00
|
|
|
def get_unassign_event_body(payload: Dict[str, Any]) -> str:
|
2018-01-02 22:19:34 +01:00
|
|
|
return GCI_MESSAGE_TEMPLATE.format(
|
|
|
|
actor=payload['author'],
|
|
|
|
action='unassigned **{student}** from'.format(student=payload['task_claimed_by']),
|
|
|
|
task_name=payload['task_definition_name'],
|
|
|
|
task_url=build_instance_url(payload['task_instance']),
|
|
|
|
)
|
|
|
|
|
2018-05-10 19:34:01 +02:00
|
|
|
def get_outoftime_event_body(payload: Dict[str, Any]) -> str:
|
2020-04-09 21:51:58 +02:00
|
|
|
return 'The deadline for the task [{task_name}]({task_url}) has passed.'.format(
|
2018-01-17 00:28:14 +01:00
|
|
|
task_name=payload['task_definition_name'],
|
|
|
|
task_url=build_instance_url(payload['task_instance']),
|
|
|
|
)
|
|
|
|
|
2017-10-09 16:54:32 +02:00
|
|
|
@api_key_only_webhook_view("Google-Code-In")
|
|
|
|
@has_request_variables
|
2018-03-16 22:53:50 +01:00
|
|
|
def api_gci_webhook(request: HttpRequest, user_profile: UserProfile,
|
2018-05-10 19:34:01 +02:00
|
|
|
payload: Dict[str, Any]=REQ(argument_type='body')) -> HttpResponse:
|
2017-10-09 16:54:32 +02:00
|
|
|
event = get_event(payload)
|
|
|
|
if event is not None:
|
|
|
|
body = get_body_based_on_event(event)(payload)
|
2018-11-09 21:02:59 +01:00
|
|
|
subject = GCI_TOPIC_TEMPLATE.format(
|
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
|
|
|
student_name=payload['task_claimed_by'],
|
2017-10-09 16:54:32 +02:00
|
|
|
)
|
2018-03-16 22:53:50 +01:00
|
|
|
check_send_webhook_message(request, user_profile, subject, body)
|
2017-10-09 16:54:32 +02:00
|
|
|
|
|
|
|
return json_success()
|
|
|
|
|
|
|
|
EVENTS_FUNCTION_MAPPER = {
|
|
|
|
'abandon': get_abandon_event_body,
|
2017-11-02 20:16:11 +01:00
|
|
|
'approve': get_approve_event_body,
|
2017-12-17 23:56:29 +01:00
|
|
|
'approve-pending-pc': get_approve_pending_pc_event_body,
|
2017-11-02 20:16:11 +01:00
|
|
|
'claim': get_claim_event_body,
|
2017-10-16 21:44:14 +02:00
|
|
|
'comment': get_comment_event_body,
|
2018-01-02 22:07:42 +01:00
|
|
|
'extend': get_extend_event_body,
|
2017-11-02 20:16:11 +01:00
|
|
|
'needswork': get_needswork_event_body,
|
2018-01-17 00:28:14 +01:00
|
|
|
'outoftime': get_outoftime_event_body,
|
2017-10-16 21:44:14 +02:00
|
|
|
'submit': get_submit_event_body,
|
2018-01-02 22:19:34 +01:00
|
|
|
'unassign': get_unassign_event_body,
|
2017-10-09 16:54:32 +02:00
|
|
|
}
|
|
|
|
|
2018-05-10 19:34:01 +02:00
|
|
|
def get_event(payload: Dict[str, Any]) -> Optional[str]:
|
2017-11-02 20:09:48 +01:00
|
|
|
event = payload['event_type']
|
2017-10-09 16:54:32 +02:00
|
|
|
if event in EVENTS_FUNCTION_MAPPER:
|
|
|
|
return event
|
|
|
|
|
2020-06-09 00:25:09 +02:00
|
|
|
raise UnknownEventType(f"Event '{event}' is unknown and cannot be handled") # nocoverage
|
2017-10-09 16:54:32 +02:00
|
|
|
|
2018-05-10 19:34:01 +02:00
|
|
|
def get_body_based_on_event(event: str) -> Any:
|
2017-10-09 16:54:32 +02:00
|
|
|
return EVENTS_FUNCTION_MAPPER[event]
|