forked from Charcoal-SE/SmokeDetector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
chatcommunicate.py
275 lines (245 loc) · 12 KB
/
chatcommunicate.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
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
# coding=utf-8
from threading import Thread, Lock
from parsing import *
from datahandling import *
from globalvars import GlobalVars
import os
import re
from termcolor import colored
from deletionwatcher import DeletionWatcher
from ChatExchange.chatexchange.messages import Message
import chatcommands
from helpers import Response, log
import traceback
from excepthook import log_exception
import sys
# Please note: If new !!/ commands are added or existing ones are modified, don't forget to
# update the wiki at https://github.com/Charcoal-SE/SmokeDetector/wiki/Commands/_edit.
add_latest_message_lock = Lock()
command_aliases = {
"f": "fp-",
"notspam": "fp-",
"k": "tpu-",
"spam": "tpu-",
"rude": "tpu-",
"abuse": "tpu-",
"abusive": "tpu-",
"offensive": "tpu-",
"vandalism": "tp-",
"vand": "tp-",
"v": "tp-",
"n": "naa-",
u"\U0001F4A9": "naa-",
}
cmds = chatcommands.command_dict
subcmds = chatcommands.subcommand_dict
# noinspection PyMissingTypeHints
def is_smokedetector_message(user_id, room_id):
return user_id == GlobalVars.smokeDetector_user_id[room_id]
# noinspection PyMissingTypeHints
def add_to_listen_if_edited(host, message_id):
if host + str(message_id) not in GlobalVars.listen_to_these_if_edited:
GlobalVars.listen_to_these_if_edited.append(host + str(message_id))
if len(GlobalVars.listen_to_these_if_edited) > 500:
GlobalVars.listen_to_these_if_edited = GlobalVars.listen_to_these_if_edited[-500:]
# noinspection PyMissingTypeHints
def print_chat_message(ev):
message = colored("Chat message in " + ev.data["room_name"] + " (" + str(ev.data["room_id"]) + "): \"",
attrs=['bold'])
message += ev.data['content']
message += "\""
log('info', message + colored(" - " + ev.data['user_name'], attrs=['bold']))
# noinspection PyUnusedLocal,PyMissingTypeHints
def special_room_watcher(ev, wrap2):
if ev.type_id != 1:
return
ev_user_id = str(ev.data["user_id"])
content_source = ev.message.content_source
if is_smokedetector_message(ev_user_id, GlobalVars.charcoal_room_id):
post_site_id = fetch_post_id_and_site_from_msg_content(content_source)
post_url = fetch_post_url_from_msg_content(content_source)
if post_site_id is not None and post_url is not None:
t_check_websocket = Thread(name="DeletionWatcher check",
target=DeletionWatcher.check_if_report_was_deleted,
args=(post_site_id, post_url, ev.message))
t_check_websocket.daemon = True
t_check_websocket.start()
# noinspection PyMissingTypeHints,PyBroadException
def watcher(ev, wrap2):
try:
if ev.type_id != 1 and ev.type_id != 2:
return
if ev.type_id == 2 and (wrap2.host + str(ev.message.id)) not in GlobalVars.listen_to_these_if_edited:
return
print_chat_message(ev)
ev_room = str(ev.data["room_id"])
ev_user_id = str(ev.data["user_id"])
ev_room_name = ev.data["room_name"].encode('utf-8')
if ev.type_id == 2:
ev.message = Message(ev.message.id, wrap2)
content_source = ev.message.content_source
message_id = ev.message.id
if is_smokedetector_message(ev_user_id, ev_room):
add_latest_message_lock.acquire()
add_latest_smokedetector_message(ev_room, message_id)
add_latest_message_lock.release()
post_site_id = fetch_post_id_and_site_from_msg_content(content_source)
post_url = fetch_post_url_from_msg_content(content_source)
if post_site_id is not None and (ev_room == GlobalVars.meta_tavern_room_id or
ev_room == GlobalVars.socvr_room_id):
t_check_websocket = Thread(name="DeletionWatcher check",
target=DeletionWatcher.check_if_report_was_deleted,
args=(post_site_id, post_url, ev.message))
t_check_websocket.daemon = True
t_check_websocket.start()
message_parts = re.split('[ ,]+', content_source)
ev_user_name = ev.data["user_name"]
ev_user_link = "//chat.{host}/users/{user_id}".format(host=wrap2.host, user_id=ev.user.id)
if ev_user_name != "SmokeDetector":
GlobalVars.users_chatting[ev_room].append((ev_user_name, ev_user_link))
shortcut_messages = []
if message_parts[0].lower() == "sd":
message_parts = preprocess_shortcut_command(content_source).split(" ")
latest_smokedetector_messages = GlobalVars.latest_smokedetector_messages[ev_room]
commands = message_parts[1:]
if len(latest_smokedetector_messages) == 0:
ev.message.reply("I don't have a record of any messages posted.")
return
if len(commands) > len(latest_smokedetector_messages):
ev.message.reply("I only have a record of {} of my messages; that's not enough to execute all "
"commands. No commands were executed.".format(len(latest_smokedetector_messages)))
return
for i in range(0, len(commands)):
shortcut_messages.append(u":{message} {command_name}".format(
message=latest_smokedetector_messages[-(i + 1)], command_name=commands[i]))
reply = ""
amount_none = 0
amount_skipped = 0
amount_unrecognized = 0
length = len(shortcut_messages)
for i in range(0, length):
current_message = shortcut_messages[i]
if length > 1:
reply += str(i + 1) + ". "
reply += u"[{0}] ".format(current_message.split(" ")[0])
if current_message.split(" ")[1] != "-":
result = handle_commands(content_lower=current_message.lower(),
message_parts=current_message.split(" "),
ev_room=ev_room,
ev_room_name=ev_room_name,
ev_user_id=ev_user_id,
ev_user_name=ev_user_name,
wrap2=wrap2,
content=current_message,
message_id=message_id)
if not result: # avoiding errors due to unprivileged commands
result = Response(command_status=True, message=None)
if result.command_status and result.message:
reply += result.message + os.linesep
if result.command_status is False:
reply += "<unrecognized command>" + os.linesep
amount_unrecognized += 1
if result.message is None and result.command_status is not False:
reply += "<processed without return value>" + os.linesep
amount_none += 1
else:
reply += "<skipped>" + os.linesep
amount_skipped += 1
if amount_unrecognized == length:
add_to_listen_if_edited(wrap2.host, message_id)
if amount_none + amount_skipped + amount_unrecognized == length:
reply = ""
reply = reply.strip()
if reply != "":
message_with_reply = u":{} {}".format(message_id, reply)
if len(message_with_reply) <= 500 or "\n" in reply:
ev.message.reply(reply, False)
else:
try:
result = handle_commands(content_lower=content_source.lower(),
message_parts=message_parts,
ev_room=ev_room,
ev_room_name=ev_room_name,
ev_user_id=ev_user_id,
ev_user_name=ev_user_name,
wrap2=wrap2,
content=content_source,
message_id=message_id)
except requests.exceptions.HTTPError as e:
if "404 Client Error: Not Found for url:" in e.message and "/history" in e.message:
return # Return and do nothing.
else:
traceback.print_exc()
raise e # Raise an error if it's not the 'expected' nonexistent link error.
if result.message:
if wrap2.host + str(message_id) in GlobalVars.listen_to_these_if_edited:
GlobalVars.listen_to_these_if_edited.remove(wrap2.host + str(message_id))
message_with_reply = u":{} {}".format(message_id, result.message)
if len(message_with_reply) <= 500 or "\n" in result.message:
ev.message.reply(result.message, False)
if result.command_status is False:
add_to_listen_if_edited(wrap2.host, message_id)
except:
try:
# log the error
log_exception(*sys.exc_info())
ev.message.reply("I hit an error while trying to run that command; run `!!/errorlogs` for details.")
return
except:
print("An exception was thrown while handling an exception: ")
traceback.print_exc()
# noinspection PyMissingTypeHints
def handle_commands(content_lower, message_parts, ev_room, ev_room_name, ev_user_id, ev_user_name, wrap2, content,
message_id):
message_url = "//chat.{host}/transcript/message/{id}#{id}".format(host=wrap2.host, id=message_id)
second_part_lower = "" if len(message_parts) < 2 else message_parts[1].lower()
if command_aliases.get(second_part_lower):
second_part_lower = command_aliases.get(second_part_lower)
match = re.match(r"[!/]*[\w-]+", content_lower)
command = match.group(0) if match else ""
if re.compile("^:[0-9]{4,}$").search(message_parts[0]):
msg_id = int(message_parts[0][1:])
msg = wrap2.get_message(msg_id)
msg_content = msg.content_source
quiet_action = ("-" in second_part_lower)
if str(msg.owner.id) != GlobalVars.smokeDetector_user_id[ev_room] or msg_content is None:
return Response(command_status=False, message=None)
post_url = fetch_post_url_from_msg_content(msg_content)
post_site_id = fetch_post_id_and_site_from_msg_content(msg_content)
if post_site_id is not None:
post_type = post_site_id[2]
else:
post_type = None
subcommand_parameters = {
'msg_content': msg_content,
'ev_room': ev_room,
'ev_room_name': ev_room_name,
'ev_user_id': ev_user_id,
'ev_user_name': ev_user_name,
'message_url': message_url,
'msg': msg,
'post_site_id': post_site_id,
'post_type': post_type,
'post_url': post_url,
'quiet_action': quiet_action,
'second_part_lower': second_part_lower,
'wrap2': wrap2,
}
if second_part_lower not in subcmds:
return Response(command_status=False, message=None) # Unrecognized subcommand
return subcmds[second_part_lower](**subcommand_parameters)
# Process additional commands
command_parameters = {
'content': content,
'content_lower': content_lower,
'ev_room': ev_room,
'ev_room_name': ev_room_name,
'ev_user_id': ev_user_id,
'ev_user_name': ev_user_name,
'message_parts': message_parts,
'message_url': message_url,
'wrap2': wrap2,
}
if command not in cmds:
return Response(command_status=False, message=None) # Unrecognized command, can be edited later.
return cmds[command](**command_parameters)