1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
|
from __future__ import annotations
import re
from enum import Enum
from typing import TYPE_CHECKING, List, Match, Optional
from slack.log import print_exception_once
from slack.python_compatibility import removeprefix
from slack.shared import shared
from slack.slack_user import format_bot_nick
from slack.task import gather
from slack.util import with_color
if TYPE_CHECKING:
from slack_api.slack_conversations_history import SlackMessage as SlackMessageDict
from slack.slack_conversation import SlackConversation
from slack.slack_workspace import SlackWorkspace
class MessagePriority(Enum):
LOW = 0
MESSAGE = 1
PRIVATE = 2
HIGHLIGHT = 3
class SlackTs:
def __init__(self, ts: str):
self.major, self.minor = [int(x) for x in ts.split(".", 1)]
def __eq__(self, other: object) -> bool:
if not isinstance(other, SlackTs):
return False
return self.major == other.major and self.minor == other.minor
def __hash__(self) -> int:
return hash((self.major, self.minor))
class SlackMessage:
def __init__(self, conversation: SlackConversation, message_json: SlackMessageDict):
self._message_json = message_json
self._rendered = None
self.conversation = conversation
self.ts = SlackTs(message_json["ts"])
@property
def workspace(self) -> SlackWorkspace:
return self.conversation.workspace
@property
def sender_user_id(self) -> Optional[str]:
return self._message_json.get("user")
@property
def priority(self) -> MessagePriority:
return MessagePriority.MESSAGE
async def render(self) -> str:
if self._rendered is not None:
return self._rendered
prefix_coro = self._prefix()
message_coro = self._unfurl_refs(self._message_json["text"])
prefix, message = await gather(prefix_coro, message_coro)
self._rendered = f"{prefix}\t{message}"
return self._rendered
async def _prefix(self) -> str:
if (
"subtype" in self._message_json
and self._message_json["subtype"] == "bot_message"
):
username = self._message_json.get("username")
if username:
return format_bot_nick(username, colorize=True)
else:
bot = await self.workspace.bots[self._message_json["bot_id"]]
return bot.nick(colorize=True)
else:
user = await self.workspace.users[self._message_json["user"]]
return user.nick(colorize=True)
def _item_prefix(self, item_id: str):
if item_id.startswith("#") or item_id.startswith("@"):
return item_id[0]
elif item_id.startswith("!subteam^") or item_id in [
"!here",
"!channel",
"!everyone",
]:
return "@"
else:
return ""
async def _lookup_item_id(self, item_id: str):
if item_id.startswith("#"):
conversation = await self.workspace.conversations[
removeprefix(item_id, "#")
]
color = shared.config.color.channel_mention_color.value
name = conversation.name_prefix("short_name") + await conversation.name()
return (color, name)
elif item_id.startswith("@"):
user = await self.workspace.users[removeprefix(item_id, "@")]
color = shared.config.color.user_mention_color.value
return (color, self._item_prefix(item_id) + user.nick())
elif item_id.startswith("!subteam^"):
usergroup = await self.workspace.usergroups[
removeprefix(item_id, "!subteam^")
]
color = shared.config.color.usergroup_mention_color.value
return (color, self._item_prefix(item_id) + usergroup.handle())
elif item_id in ["!here", "!channel", "!everyone"]:
color = shared.config.color.usergroup_mention_color.value
return (color, self._item_prefix(item_id) + removeprefix(item_id, "!"))
async def _unfurl_refs(self, message: str) -> str:
re_mention = re.compile(r"<(?P<id>[^|>]+)(?:\|(?P<fallback_name>[^>]*))?>")
mention_matches = list(re_mention.finditer(message))
mention_ids: List[str] = [match["id"] for match in mention_matches]
items_list = await gather(
*(self._lookup_item_id(mention_id) for mention_id in mention_ids),
return_exceptions=True,
)
items = dict(zip(mention_ids, items_list))
def unfurl_ref(match: Match[str]):
item = items[match["id"]]
if item and not isinstance(item, BaseException):
return with_color(item[0], item[1])
elif match["fallback_name"]:
prefix = self._item_prefix(match["id"])
if match["fallback_name"].startswith(prefix):
return match["fallback_name"]
else:
return prefix + match["fallback_name"]
elif item:
print_exception_once(item)
return match[0]
return re_mention.sub(unfurl_ref, message)
|