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
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
|
import aiosqlite
import discord
import redbot.core
from redbot.core import Config
from redbot.core import commands
import math
import random
import re
import unicodedata
from .errors import *
MAX_BLACKLISTED_STRINGS_PER_GUILD = 50
MAX_TOKEN_GENERATION_ITERATIONS = 1000
MAX_TOKEN_LENGTH = 70
class Markov(commands.Cog):
def __init__(self, bot):
self.bot = bot
self.config = Config.get_conf(
self, identifier="551742410770612234|085c218a-e850-4b07-9fc9-535c1b0d4c73"
)
self.config.register_guild(use_messages=False, blacklisted_strings=[])
self.config.register_member(use_messages=True)
self.config.register_channel(use_messages=False)
self.db_path = redbot.core.data_manager.cog_data_path(self) / "markov.db"
async def cog_load(self):
with open(
redbot.core.data_manager.bundled_data_path(self) / "init.sql", "r"
) as setup_script_file:
async with aiosqlite.connect(self.db_path) as db:
await db.executescript(setup_script_file.read())
@commands.Cog.listener()
async def on_message_without_command(self, message):
if message.guild is None:
return
if not await self.config.guild(message.guild).use_messages():
return
if not await self.config.channel(message.channel).use_messages():
return
if not await self.config.member(message.author).use_messages():
return
if message.author.id == self.bot.user.id:
return
await self.process_message(
message.clean_content, message.guild.id, message.author.id
)
async def process_message(self, clean_content: str, guild_id: int, member_id: int):
# Normalize
clean_content = unicodedata.normalize("NFKC", clean_content)
clean_content = clean_content.replace("’", "'")
# Ignore messages with blacklisted strings
for blacklisted_string in await self.config.guild_from_id(
guild_id
).blacklisted_strings():
if blacklisted_string in clean_content:
return
# Strip out URL-esque patterns - a run of characters without spaces that contains '://' within it
clean_content = re.sub(r"(?: |^)\w+:\/\/[^ ]+(?: |$)", " ", clean_content)
# Extract words, punctuation, and custom emoji as individual
# tokens, then add sentinel (empty string) on either end.
# NOTE: if changing the punctuation in the regex, also change PUNCTUATION in generate()
tokens = (
[""]
+ [
token
for token in re.findall(r"[\w']+|[\.,!?\/]|<:\w+:\d+>", clean_content)
if len(token) <= MAX_TOKEN_LENGTH
]
+ [""]
)
if len(tokens) <= 2:
return
async with aiosqlite.connect(self.db_path) as db:
for i in range(len(tokens) - 1):
first_token = tokens[i]
second_token = tokens[i + 1]
await db.execute(
"INSERT INTO guild_pairs(guild_id, first_token, second_token, frequency)"
" VALUES (?, ?, ?, 1)"
" ON CONFLICT(guild_id, first_token, second_token)"
" DO UPDATE SET frequency = frequency + 1;",
(self.uint_to_bytes(guild_id), first_token, second_token),
)
await db.execute(
"INSERT INTO guild_total_completion_count(guild_id, first_token, total_completion_count)"
" VALUES(?, ?, 1)"
" ON CONFLICT(guild_id, first_token)"
" DO UPDATE SET total_completion_count = total_completion_count + 1;",
(self.uint_to_bytes(guild_id), first_token),
)
await db.execute(
"INSERT INTO member_pairs(guild_id, member_id, first_token, second_token, frequency)"
" VALUES (?, ?, ?, ?, 1)"
" ON CONFLICT(guild_id, member_id, first_token, second_token)"
" DO UPDATE SET frequency = frequency + 1;",
(
self.uint_to_bytes(guild_id),
self.uint_to_bytes(member_id),
first_token,
second_token,
),
)
await db.execute(
"INSERT INTO member_total_completion_count(guild_id, member_id, first_token, total_completion_count)"
" VALUES(?, ?, ?, 1)"
" ON CONFLICT(guild_id, member_id, first_token)"
" DO UPDATE SET total_completion_count = total_completion_count + 1;",
(
self.uint_to_bytes(guild_id),
self.uint_to_bytes(member_id),
first_token,
),
)
await db.commit()
def uint_to_bytes(self, x: int):
if x < 0:
raise ValueError(f"x must be non-negative (got {x})")
return x.to_bytes(math.ceil(x.bit_length() / 8), byteorder="big", signed=False)
@commands.group()
async def markov(self, _ctx):
"""
Base for all markov commands.
"""
pass
@markov.command()
async def optout(self, ctx):
"""
Opt out of processing your messages to build Markov chains.
"""
await self.config.member(ctx.author).use_messages.set(False)
await ctx.reply(
"Words in your messages will no longer be processed by the markov cog.\n"
f"You can use `{ctx.clean_prefix}markov optin` to opt back in."
)
@markov.command()
async def optin(self, ctx):
"""
Opt in to processing your messages to build Markov chains. (This is the default.)
"""
await self.config.member(ctx.author).use_messages.set(True)
await ctx.reply(
"Words in your messages will now be processed by the markov cog.\n"
f"You can use `{ctx.clean_prefix}markov optout` to opt out."
)
@markov.command()
@commands.admin_or_can_manage_channel()
async def toggle_channel(self, ctx):
"""
Enable/disable processing in this channel (must be enabled for the guild
using toggle_guild as well).
"""
channel_conf = self.config.channel(ctx.channel)
new_state = not (await channel_conf.use_messages())
await channel_conf.use_messages.set(new_state)
await ctx.reply(
f"This channel will be {'processed' if new_state else 'ignored'} by the markov cog."
)
@markov.command()
@commands.admin_or_permissions(manage_server=True)
async def enable_all_channels(self, ctx):
"""
Enable processing in all channels. You can disable the undesired ones individually.
The default for a new channel will remain disabled.
"""
for channel in await ctx.guild.fetch_channels():
await self.config.channel(channel).use_messages.set(True)
await ctx.reply("Enabled markov processing in all existing channels.")
@markov.command()
@commands.admin_or_permissions(manage_server=True)
async def disable_all_channels(self, ctx):
"""
Disable processing in all channels. You can enable the desired ones individually.
"""
for channel in await ctx.guild.fetch_channels():
await self.config.channel(channel).use_messages.set(False)
await ctx.reply("Disabled markov processing in all existing channels.")
@markov.command()
@commands.admin_or_permissions(manage_guild=True)
async def toggle_guild(self, ctx):
"""
Enable/disable the markov cog in this guild. You still need to enable processing
of each channel with toggle_channel or enable_all_channels/disable_all_channels.
"""
guild_conf = self.config.guild(ctx.guild)
new_state = not (await guild_conf.use_messages())
await guild_conf.use_messages.set(new_state)
await ctx.reply(
f"The markov cog is now {'enabled' if new_state else 'disabled'} in this guild."
)
@markov.group()
async def blacklist_string(self, _ctx):
pass
@blacklist_string.command()
@commands.admin_or_permissions(manage_guild=True)
async def add(self, ctx, *, blacklisted_string: str):
"""
Exclude every message containing this string from processing.
"""
if not blacklisted_string:
await ctx.reply("Error: blacklisted_string must have length greater than 0")
return
async with self.config.guild(
ctx.guild
).blacklisted_strings() as blacklisted_strings:
if len(blacklisted_strings) >= MAX_BLACKLISTED_STRINGS_PER_GUILD:
await ctx.reply(
"Error: you already have the maximum number of blacklisted strings in this guild"
f" ({MAX_BLACKLISTED_STRINGS_PER_GUILD})."
)
return
blacklisted_strings.append(blacklisted_string)
await ctx.reply(f"Added that to the blacklisted strings for this guild.")
@blacklist_string.command()
@commands.admin_or_permissions(manage_guild=True)
async def remove(self, ctx, num: int):
"""
Remove blacklisted string with ID num. You can see the IDs in `markov blacklisted_string list`.
"""
async with self.config.guild(
ctx.guild
).blacklisted_strings() as blacklisted_strings:
string = blacklisted_strings[num - 1]
try:
del blacklisted_strings[num - 1]
except IndexError:
await ctx.reply("Error: no blacklisted string with that ID exists.")
else:
await ctx.reply(
f"Removed {repr(string)} from your blacklisted strings."
)
@blacklist_string.command()
@commands.admin_or_permissions(manage_guild=True)
async def list(self, ctx):
text = ""
for i, question in enumerate(
await self.config.guild(ctx.guild).blacklisted_strings()
):
text += f"{i + 1}. {repr(question)}\n"
pages = list(redbot.core.utils.chat_formatting.pagify(text))
if pages:
message = await ctx.reply(".")
await redbot.core.utils.menus.menu(ctx, pages, message=message)
else:
await ctx.reply("No blacklisted strings yet.")
@markov.command()
async def generate(self, ctx, member: discord.Member | None):
if not await self.config.guild(ctx.guild).use_messages():
await ctx.reply("Not enabled in this guild.")
return
if member is not None:
if not await self.config.member(member).use_messages():
await ctx.reply("That member has opted out of markov generation.")
return
# NOTE: if changing PUNCTUATION, also change the regex in process_message() with the corresponding note
PUNCTUATION = ".,!?/"
if member is None:
result = ""
token = ""
async with aiosqlite.connect(self.db_path) as db:
while True:
row = await (
await db.execute(
"SELECT total_completion_count FROM guild_total_completion_count"
" WHERE guild_id = ? AND first_token = ?;",
(self.uint_to_bytes(ctx.guild.id), token),
)
).fetchone()
if row is None:
if token == "":
await ctx.reply("Error: no data for this guild yet!")
return
raise MarkovGenerationError(
"Table guild_total_completion_count had no row for token"
f" {repr(token)} for guild {ctx.guild.id} - this should never happen!"
)
completion_count = row[0]
for i in range(MAX_TOKEN_GENERATION_ITERATIONS):
row = await (
await db.execute(
"SELECT second_token, frequency FROM guild_pairs"
" WHERE guild_id = ? AND first_token = ?"
" ORDER BY frequency DESC LIMIT 1 OFFSET ?;",
(self.uint_to_bytes(ctx.guild.id), token, i),
)
).fetchone()
if row is None:
raise MarkovGenerationError(
"There was no completion in guild_pairs for token"
f" {repr(token)} for guild {ctx.guild.id} on iteration {i}"
" - this should never happen!"
)
next_token, frequency = row
if random.randint(1, completion_count) <= frequency:
if next_token in PUNCTUATION:
result = result[:-1] + next_token + " "
else:
result += next_token + " "
token = next_token
break
completion_count -= frequency
if completion_count <= 0:
raise MarkovGenerationError(
"Sum of all frequencies in guild_pairs for token"
f" {repr(token)} in guild {ctx.guild.id} added up"
" to more than completion_count or we failed to"
" choose a completion despite trying all of them"
" This should never happen!"
)
else:
token = ""
if token == "":
break
await ctx.send(result, allowed_mentions=discord.AllowedMentions.none())
else:
result = ""
token = ""
async with aiosqlite.connect(self.db_path) as db:
while True:
row = await (
await db.execute(
"SELECT total_completion_count FROM member_total_completion_count"
" WHERE guild_id = ? AND member_id = ? AND first_token = ?;",
(
self.uint_to_bytes(ctx.guild.id),
self.uint_to_bytes(member.id),
token,
),
)
).fetchone()
if row is None:
if token == "":
await ctx.reply("Error: no data for this member yet!")
return
raise MarkovGenerationError(
"Table member_total_completion_count had no row for token"
f" {repr(token)} for guild {ctx.guild.id} member {member.id}"
" - this should never happen!"
)
completion_count = row[0]
next_token = None
for i in range(MAX_TOKEN_GENERATION_ITERATIONS):
row = await (
await db.execute(
"SELECT second_token, frequency FROM member_pairs"
" WHERE guild_id = ? AND member_id = ? AND first_token = ?"
" ORDER BY frequency DESC LIMIT 1 OFFSET ?;",
(
self.uint_to_bytes(ctx.guild.id),
self.uint_to_bytes(member.id),
token,
i,
),
)
).fetchone()
if row is None:
raise MarkovGenerationError(
"There was no completion in guild_pairs for token"
f" {repr(token)} for guild {ctx.guild.id} member {member.id}"
f" on iteration {i} - this should never happen!"
)
next_token, frequency = row
if random.randint(1, completion_count) <= frequency:
if next_token in PUNCTUATION:
result = result[:-1] + next_token + " "
else:
result += next_token + " "
token = next_token
break
completion_count -= frequency
if completion_count <= 0:
raise MarkovGenerationError(
"Sum of all frequencies in guild_pairs for token"
f" {repr(token)} for guild {ctx.guild.id} member"
f" {member.id} added up to more than completion_count"
" or we failed to choose a completion despite trying"
" all of them. This should never happen!"
)
else:
# If we went through MAX_TOKEN_GENERATION_ITERATIONS completions
# without selecting any, then just select the last one we considered
# (round off the probability, effectively).
token = next_token
if token == "":
break
await ctx.send(result, allowed_mentions=discord.AllowedMentions.none())
|