-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathutils.py
54 lines (44 loc) · 1.95 KB
/
utils.py
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
import json
import re
def escape(s: str) -> str:
return s.replace("&", "&").replace("<", "<").replace(">", ">")
def unescape(s: str) -> str:
return s.replace("<", "<").replace(">", ">").replace("&", "&")
def handle_text(msg: str):
text_begin = 0
msg = msg.replace("@everyone", "")
msg = re.sub(r"\<qqbot-at-everyone\s/\>", "", msg)
for embed in re.finditer(
r"\<(?P<type>(?:@|#|emoji:))!?(?P<id>\w+?)\>|\<(?P<type1>qqbot-at-user) id=\"(?P<id1>\w+)\"\s/\>",
msg,
):
if content := msg[text_begin : embed.pos + embed.start()]:
yield {"type": "text", "text": unescape(content)}
text_begin = embed.pos + embed.end()
if embed["type"] == "@":
yield {"type": "mention_user", "user_id": embed.group("id")}
elif embed["type"] == "#":
yield {"type": "mention_channel", "channel_id": embed.group("id")}
elif embed["type"] == "emoji":
yield {"type": "emoji", "id": embed.group("id")}
elif embed["type1"] == "qqbot-at-user":
yield {"type": "mention_user", "user_id": embed.group("id1")}
if content := msg[text_begin:]:
yield {"type": "text", "text": unescape(content)}
def form_data(message: dict):
if not (file_image := message.pop("file_image", None)):
return "post", message
files = {"file_image": {"value": file_image, "content_type": None, "filename": "file_image"}}
data_ = {}
for key, value in message.items():
if isinstance(value, (list, dict)):
files[key] = {
"value": json.dumps({key: value}).encode("utf-8"),
"content_type": "application/json",
"filename": f"{key}.json",
}
else:
data_[key] = value
return "multipart", {"files": files, "data": data_}
def remove_empty(d: dict):
return {k: (remove_empty(v) if isinstance(v, dict) else v) for k, v in d.items() if v is not None}