2018-05-16 19:28:39 +02:00
|
|
|
import json
|
2020-06-11 00:54:34 +02:00
|
|
|
import re
|
2020-11-24 12:31:28 +01:00
|
|
|
from typing import Any, Optional, Tuple
|
2018-05-16 19:28:39 +02:00
|
|
|
|
2020-11-24 12:31:28 +01:00
|
|
|
from zerver.lib.message import SendMessageRequest
|
2018-05-16 19:28:39 +02:00
|
|
|
from zerver.models import SubMessage
|
|
|
|
|
|
|
|
|
2018-06-28 21:17:55 +02:00
|
|
|
def get_widget_data(content: str) -> Tuple[Optional[str], Optional[str]]:
|
2020-10-31 17:23:08 +01:00
|
|
|
valid_widget_types = ['poll', 'todo']
|
2018-06-28 21:17:55 +02:00
|
|
|
tokens = content.split(' ')
|
|
|
|
|
2018-08-23 14:51:17 +02:00
|
|
|
# tokens[0] will always exist
|
2018-06-28 21:17:55 +02:00
|
|
|
if tokens[0].startswith('/'):
|
|
|
|
widget_type = tokens[0][1:]
|
|
|
|
if widget_type in valid_widget_types:
|
2019-01-28 18:37:28 +01:00
|
|
|
remaining_content = content.replace(tokens[0], '', 1).strip()
|
|
|
|
extra_data = get_extra_data_from_widget_type(remaining_content, widget_type)
|
2018-06-28 21:17:55 +02:00
|
|
|
return widget_type, extra_data
|
|
|
|
|
|
|
|
return None, None
|
|
|
|
|
2019-01-28 18:37:28 +01:00
|
|
|
def get_extra_data_from_widget_type(content: str,
|
2018-06-28 21:17:55 +02:00
|
|
|
widget_type: Optional[str]) -> Any:
|
|
|
|
if widget_type == 'poll':
|
|
|
|
# This is used to extract the question from the poll command.
|
|
|
|
# The command '/poll question' will pre-set the question in the poll
|
2019-01-28 18:37:28 +01:00
|
|
|
lines = content.splitlines()
|
|
|
|
question = ''
|
|
|
|
options = []
|
|
|
|
if lines and lines[0]:
|
|
|
|
question = lines.pop(0).strip()
|
|
|
|
for line in lines:
|
|
|
|
# If someone is using the list syntax, we remove it
|
|
|
|
# before adding an option.
|
2019-01-28 19:13:56 +01:00
|
|
|
option = re.sub(r'(\s*[-*]?\s*)', '', line.strip(), 1)
|
2019-01-28 18:37:28 +01:00
|
|
|
if len(option) > 0:
|
|
|
|
options.append(option)
|
|
|
|
extra_data = {
|
|
|
|
'question': question,
|
|
|
|
'options': options,
|
|
|
|
}
|
2018-06-28 21:17:55 +02:00
|
|
|
return extra_data
|
|
|
|
return None
|
|
|
|
|
2020-11-24 12:31:28 +01:00
|
|
|
def do_widget_post_save_actions(send_request: SendMessageRequest) -> None:
|
2018-02-23 12:26:56 +01:00
|
|
|
'''
|
2019-01-29 16:57:45 +01:00
|
|
|
This code works with the webapp; mobile and other
|
|
|
|
clients should also start supporting this soon.
|
2018-02-23 12:26:56 +01:00
|
|
|
'''
|
2020-11-24 12:31:28 +01:00
|
|
|
message_content = send_request.message.content
|
|
|
|
sender_id = send_request.message.sender_id
|
|
|
|
message_id = send_request.message.id
|
2018-05-16 19:28:39 +02:00
|
|
|
|
|
|
|
widget_type = None
|
|
|
|
extra_data = None
|
|
|
|
|
2020-11-24 11:35:24 +01:00
|
|
|
widget_type, extra_data = get_widget_data(message_content)
|
2020-11-24 12:31:28 +01:00
|
|
|
widget_content = send_request.widget_content
|
2018-05-21 15:23:46 +02:00
|
|
|
if widget_content is not None:
|
|
|
|
# Note that we validate this data in check_message,
|
|
|
|
# so we can trust it here.
|
|
|
|
widget_type = widget_content['widget_type']
|
|
|
|
extra_data = widget_content['extra_data']
|
|
|
|
|
2018-05-16 19:28:39 +02:00
|
|
|
if widget_type:
|
|
|
|
content = dict(
|
|
|
|
widget_type=widget_type,
|
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
|
|
|
extra_data=extra_data,
|
2018-05-16 19:28:39 +02:00
|
|
|
)
|
|
|
|
submessage = SubMessage(
|
|
|
|
sender_id=sender_id,
|
|
|
|
message_id=message_id,
|
|
|
|
msg_type='widget',
|
|
|
|
content=json.dumps(content),
|
|
|
|
)
|
|
|
|
submessage.save()
|
2020-11-24 12:31:28 +01:00
|
|
|
send_request.submessages = SubMessage.get_raw_db_rows([message_id])
|