-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathcounting.py
454 lines (427 loc) · 18.7 KB
/
counting.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
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
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
import discord
import discord
from discord.ext import commands
import json
from simpcalc import simpcalc
import asyncio
import sqlite3
import aiosqlite
from base69 import decode_base69
calculator = simpcalc.Calculate()
# Counting
async def counting(msg, guild, channel, m):
if m.author.bot:
return
try:
if msg.startswith("69*|"):
# use base69
msg = decode_base69(msg)
else:
# use simpcalc
calc = simpcalc.Calculate()
ans = await calc.calculate(msg)
msg = int(ans)
except:
return
async with aiosqlite.connect("./databases/counting.db") as db:
counting_channel = await db.execute(
"SELECT counting_channel FROM counting WHERE Guild_id = ?", (guild.id,)
)
counting_channel = await counting_channel.fetchone()
if counting_channel is None:
return
if counting_channel[0] != channel.id:
return
else:
last_number = await db.execute(
"SELECT lastcounter FROM counting WHERE Guild_id = ?", (guild.id,)
)
last_number = await last_number.fetchone()
last_user = await db.execute(
"SELECT last_user FROM counting WHERE Guild_id = ?", (guild.id,)
)
last_user = await last_user.fetchone()
highest = await db.execute(
"SELECT highest FROM counting WHERE Guild_id = ?", (guild.id,)
)
highest = await highest.fetchone()
attemps = await db.execute(
"SELECT attemps FROM counting WHERE Guild_id = ?", (guild.id,)
)
attemps = await attemps.fetchone()
attemps = attemps[0]
attemps = int(attemps)
if last_number is None:
await db.execute(
"UPDATE counting SET lastcounter = ? WHERE Guild_id = ?",
(msg, guild.id),
)
await db.commit()
return
if msg == last_number[0] + 1:
if last_user[0] == m.author.id:
await m.add_reaction("❌")
em = discord.Embed(
title=f"{m.author.display_name}, You ruined it!",
description="Take it in turns and stop being selfish\nCount reset to zero",
)
await db.execute(
"UPDATE counting SET lastcounter = ? WHERE Guild_id = ?",
(0, guild.id),
)
await db.execute(
"UPDATE counting SET last_user = ? WHERE Guild_id = ?",
(None, guild.id),
)
await db.commit()
async with aiosqlite.connect(
"./databases/user_count_stats.db"
) as db_user:
failed = await db_user.execute(
"SELECT failed FROM user_count_stats WHERE user_id = ? AND guild_id = ?",
(m.author.id, guild.id),
)
failed = await failed.fetchone()
if failed is None:
await db_user.execute(
"INSERT INTO user_count_stats (user_id, guild_id, success, failed) VALUES (?, ?, ?, ?)",
(m.author.id, guild.id, 0, 1),
)
await db_user.commit()
else:
failed = failed[0]
failed = int(failed)
failed += 1
await db_user.execute(
"UPDATE user_count_stats SET failed = ? WHERE user_id = ? AND guild_id = ?",
(failed, m.author.id, guild.id),
)
await db_user.commit()
return await channel.send(embed=em)
else:
await db.execute(
"UPDATE counting SET lastcounter = ? WHERE Guild_id = ?",
(msg, guild.id),
)
await db.execute(
"UPDATE counting SET last_user = ? WHERE Guild_id = ?",
(m.author.id, guild.id),
)
if msg == highest[0] + 1:
await db.execute(
"UPDATE counting SET highest = ? WHERE Guild_id = ?",
(msg, guild.id),
)
await m.add_reaction("☑")
else:
await m.add_reaction("✅")
await db.commit()
if msg == 42:
await channel.send(
"I see you found the answer to ultimate question of life, the universe, and everything"
)
if msg == 69:
await channel.send("nice")
if msg == 420:
await channel.send("nice")
async with aiosqlite.connect(
"./databases/user_count_stats.db"
) as db_user:
success = await db_user.execute(
"SELECT success FROM user_count_stats WHERE user_id = ? AND guild_id = ?",
(m.author.id, guild.id),
)
success = await success.fetchone()
if success is None:
await db_user.execute(
"INSERT INTO user_count_stats (user_id, guild_id, success, failed) VALUES (?, ?, ?, ?)",
(m.author.id, guild.id, 1, 0),
)
await db_user.commit()
else:
success = success[0]
success = int(success)
success += 1
await db_user.execute(
"UPDATE user_count_stats SET success = ? WHERE user_id = ? AND guild_id = ?",
(success, m.author.id, guild.id),
)
await db_user.commit()
return
else:
await m.add_reaction("❌")
em = discord.Embed(
title=f"{m.author.display_name}, You ruined it!",
description=f"Count reset to zero. you were supposed to count {last_number[0] + 1}",
)
await db.execute(
"UPDATE counting SET lastcounter = ? WHERE Guild_id = ?",
(0, guild.id),
)
await db.execute(
"UPDATE counting SET last_user = ? WHERE Guild_id = ?",
(None, guild.id),
)
await db.execute(
"UPDATE counting SET attemps = ? WHERE Guild_id = ?",
(attemps + 1, guild.id),
)
await db.commit()
async with aiosqlite.connect(
"./databases/user_count_stats.db"
) as db_user:
failed = await db_user.execute(
"SELECT failed FROM user_count_stats WHERE user_id = ? AND guild_id = ?",
(m.author.id, guild.id),
)
failed = await failed.fetchone()
if failed is None:
await db_user.execute(
"INSERT INTO user_count_stats (user_id, guild_id, success, failed) VALUES (?, ?, ?, ?)",
(m.author.id, guild.id, 0, 1),
)
await db_user.commit()
else:
failed = failed[0]
failed = int(failed)
failed += 1
await db_user.execute(
"UPDATE user_count_stats SET failed = ? WHERE user_id = ? AND guild_id = ?",
(failed, m.author.id, guild.id),
)
await db_user.commit()
return await channel.send(embed=em)
class Counting(commands.Cog):
def __init__(self, client):
self.client = client
@commands.slash_command(
name="counting_serverlb",
description="Shows the server leaderboard for counting",
)
async def counting_serverlb(self, ctx):
async with aiosqlite.connect("./databases/counting.db") as db:
highestserver = await db.execute(
"SELECT highest, Guild_id FROM counting ORDER BY highest DESC LIMIT 10"
)
highestserver = await highestserver.fetchall()
if highestserver is None:
return await ctx.respond("No one has counted yet")
em = discord.Embed(
title="Counting Leaderboard", description="Top 10 highest counts"
)
for i in highestserver:
try:
if i[0] is None:
continue
guild = await self.client.fetch_guild(i[1])
if guild is None:
continue
em.add_field(name=f"{guild.name}", value=f"{i[0]}", inline=False)
except:
pass
await ctx.respond(embed=em)
await ctx.followup.send(
"Thank you for using simplex. please consider voting or donating so I can stay running.",
ephemeral=True,
)
# @commands.is_owner()
# @commands.command()
# async def makedbtablecounter(self, ctx):
# con = sqlite3.connect("./databases/counting.db")
# cur = con.cursor()
# cur.execute("CREATE TABLE counting (guild_id INTEGER, counting_channel INTEGER, lastcounter INTEGER,highest INTEGER, last_user INTEGER,attemps INTEGER DEFAULT 0)")
# con.commit()
# for i in self.client.guilds:
# cur.execute("INSERT INTO counting VALUES (?, ?, ?, ?,?)", (i.id, None, 0, 0, None))
# con.commit()
# con.close()
# await ctx.send("Done")
#
# @commands.is_owner()
# @commands.command(name="set_user_count_stats")
# async def set_user_count_stats(self, ctx):
# async with aiosqlite.connect("./databases/user_count_stats.db") as db:
# await db.execute("CREATE TABLE IF NOT EXISTS user_count_stats (user_id INTEGER,guild_id INTEGER, failed INTEGER DEFAULT 0, success INTEGER DEFAULT 0)")
# await db.commit()
# await ctx.send("Done")
@commands.Cog.listener()
async def on_message(self, message):
channel = message.channel
msg = message.content
guild = message.guild
await counting(msg, guild, channel, message)
def mic(ctx):
return ctx.author.id == 481377376475938826
@commands.slash_command(
name="counting_stats", description="Get the stats of the counting channel"
)
async def counting_stats(self, ctx):
async with aiosqlite.connect("./databases/counting.db") as db:
counting_channel = await db.execute(
"SELECT counting_channel FROM counting WHERE Guild_id = ?",
(ctx.guild.id,),
)
counting_channel = await counting_channel.fetchone()
if counting_channel is None:
return await ctx.respond(
"There is no counting channel set up. To set one up use `.setcountchannel`"
)
if counting_channel[0] is None:
return await ctx.respond(
"There is no counting channel set up. To set one up use `.setcountchannel`"
)
else:
last_number = await db.execute(
"SELECT lastcounter FROM counting WHERE Guild_id = ?",
(ctx.guild.id,),
)
last_number = await last_number.fetchone()
last_user = await db.execute(
"SELECT last_user FROM counting WHERE Guild_id = ?", (ctx.guild.id,)
)
last_user = await last_user.fetchone()
highest = await db.execute(
"SELECT highest FROM counting WHERE Guild_id = ?", (ctx.guild.id,)
)
highest = await highest.fetchone()
attemps = await db.execute(
"SELECT attemps FROM counting WHERE Guild_id = ?", (ctx.guild.id,)
)
attemps = await attemps.fetchone()
place = await db.execute(
"SELECT highest, Guild_id FROM counting ORDER BY highest DESC"
)
place = await place.fetchall()
place = place.index((highest[0], ctx.guild.id))
embed = discord.Embed(
title=f"Counting Stats for {ctx.guild.name}",
description=f"Counting channel: <#{counting_channel[0]}>",
color=discord.Color.green(),
)
embed.add_field(name="Last number", value=last_number[0])
embed.add_field(name="Highest number", value=highest[0])
embed.add_field(name="Last user", value=f"<@{last_user[0]}>")
embed.add_field(name="Attempts", value=attemps[0])
embed.add_field(name="Place in server leaderboard", value=place + 1)
await ctx.respond(embed=embed)
@commands.is_owner()
@commands.has_permissions(administrator=True)
async def set_num(self, ctx, nums):
con = sqlite3.connect("./databases/counting.db")
cur = con.cursor()
cur.execute("SELECT * FROM counting WHERE guild_id = ?", (ctx.guild.id,))
data = cur.fetchone()
num = int(nums)
cur.execute(
"UPDATE counting SET lastcounter = ? WHERE guild_id = ?",
(nums, ctx.guild.id),
)
con.commit()
con.close()
await ctx.send(f"Numb set to {nums}")
@commands.command()
@commands.has_permissions(administrator=True)
async def setcountchannel(self, ctx, channel: discord.TextChannel):
con = sqlite3.connect("./databases/counting.db")
cur = con.cursor()
cur.execute("SELECT * FROM counting WHERE guild_id = ?", (ctx.guild.id,))
data = cur.fetchone()
if data is None:
cur.execute(
"INSERT INTO counting VALUES (?, ?, ?, ?, ?,?)",
(ctx.guild.id, channel.id, 0, 0, None, 0),
)
con.commit()
con.close()
await ctx.send(f"Counting channel set to {channel.mention}")
else:
cur.execute(
"UPDATE counting SET counting_channel = ? WHERE guild_id = ?",
(channel.id, ctx.guild.id),
)
con.commit()
con.close()
await ctx.send(f"Counting channel set to {channel.mention}")
@commands.command()
@commands.has_permissions(administrator=True)
async def countingoff(self, ctx):
con = sqlite3.connect("./databases/counting.db")
cur = con.cursor()
cur.execute(
"UPDATE counting SET counting_channel = ? WHERE guild_id = ?",
(None, ctx.guild.id),
)
con.commit()
con.close()
await ctx.send(f"Counting channel turned off")
@commands.Cog.listener()
async def on_guild_join(self, guild):
con = sqlite3.connect("./databases/counting.db")
cur = con.cursor()
data = cur.execute(
"SELECT * FROM counting WHERE guild_id = ?", (guild.id,)
).fetchall()
if not data:
cur.execute(
"INSERT INTO counting VALUES (?, ?, ?, ?)", (guild.id, None, None, 0)
)
con.commit()
con.close()
@commands.slash_command(
name="user_counting_stats", description="Get the stats for the counting user"
)
async def user_counting_stats(self, ctx, user: discord.User = None):
if user is None:
user = ctx.author
async with aiosqlite.connect("./databases/user_count_stats.db") as db_user:
person = await db_user.execute(
"SELECT * FROM user_count_stats WHERE user_id = ? AND guild_id = ?",
(user.id, ctx.guild.id),
)
person = await person.fetchone()
if person is None:
await ctx.respond("User has not counted yet on this server")
else:
username = await self.client.fetch_user(person[0])
guild = await self.client.fetch_guild(person[1])
username = username.name
guild = guild.name
embed = discord.Embed(
title=f"Counting stats for {username} in {guild}",
color=discord.Color.green(),
)
faileds = person[2]
success = person[3]
embed.add_field(name="Servers Success Counts", value=success)
embed.add_field(name="Servers Failed Counts", value=faileds)
accuracy = success / (success + faileds)
embed.add_field(
name="Accuracy", value=f"{str(round(accuracy*100, 2))}%"
)
await ctx.respond(embed=embed)
# users total stats
data = await db_user.execute(
"SELECT * FROM user_count_stats WHERE user_id = ?", (user.id,)
)
data = await data.fetchall()
if data is None:
await ctx.respond("User has not counted yet")
else:
success = 0
failed = 0
for i in data:
success += i[3]
failed += i[2]
embed = discord.Embed(
title=f"Counting stats for {username} across all servers",
color=discord.Color.green(),
)
embed.add_field(name="Global Success Counts", value=success)
embed.add_field(name="Global Failed counts", value=failed)
accuracy = success / (success + failed)
embed.add_field(
name="Accuracy", value=f"{str(round(accuracy*100, 2))}%"
)
await ctx.respond(embed=embed)
def setup(client):
client.add_cog(Counting(client))