-
Notifications
You must be signed in to change notification settings - Fork 0
/
Bot.py
309 lines (244 loc) · 10.5 KB
/
Bot.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
# Author: Michael Conard
# Purpose: An Axie Infinity utility bot. Gives QR codes and daily progress/alerts.
import datetime
import os
import time
import discord
import pandas as pd
import plotly.graph_objects as go
from discord.ext import tasks
from loguru import logger
import Commands
import Common
import DB
import UtilBot
from Common import prefix, client
from SeedStorage import DiscordBotToken
from Slash import *
# Event Listeners
@client.event
async def on_ready():
await client.change_presence(activity=discord.Game(prefix + 'qr to get QR code!'))
print('\nWe are logged in as {0.user}'.format(client))
await DB.createMainTables()
for guild in client.guilds:
found = False
for emoji in guild.emojis:
if emoji.name == "slp":
found = True
UtilBot.slpEmojiID[guild.id] = emoji.id
if not found:
UtilBot.slpEmojiID[guild.id] = None
@client.event
# Listen for an incomming message
async def on_message(message):
global forceAlert
global alertPing
# check if the message fits our prefix
if not message.content.startswith(prefix):
return
# set important IDs
discordId = message.author.id
channelId = message.channel.id
guildId = None
if message.guild is None:
# command was DMed to the bot
guildId = None
else:
# command was in a server channel
guildId = message.guild.id
# If the author is the robot itself, then do nothing!
if message.author == client.user:
return
isManager = False
managerIds = await DB.getAllManagerIDs()
logger.info("Manager IDs")
logger.info(managerIds)
if int(discordId) in managerIds:
isManager = True
args = message.content.split(" ")
# If the user requests a QR code
if message.content == prefix + "qr":
await Commands.qrCommand(message, isManager, discordId, guildId)
return
# If the user requests login info
if message.content == prefix + "login":
await Commands.loginInfoCommand(message, isManager, discordId, guildId)
return
# user requests daily progress
elif args[0] == prefix + "daily":
await Commands.dailyCommand(message, args, isManager, discordId, guildId)
return
# user requests recent battles
elif args[0] == prefix + "battles":
await message.reply("Sorry, following the latest Axie Infinity update battle logs are no longer available. :(")
# await Commands.battlesCommand(message, args, isManager, discordId, guildId)
return
# user requests axie data
elif args[0] == prefix + "axies":
await Commands.axiesCommand(message, args, isManager, discordId, guildId)
return
# user requests scholar summary data, can be restricted to manager only via the comment
elif args[0] == prefix + "summary": # and isManager:
logger.info("Starting processing of a summary request, may take a while for large programs")
await Commands.summaryCommand(message, args, isManager, discordId, guildId)
return
# user requests scholar top10 data, can be restricted to manager only via the comment
elif args[0] == prefix + "top": # and isManager:
await Commands.topCommand(message, args, isManager, discordId, guildId)
return
# user requests alerts, must be manager
elif args[0] == prefix + "alert" and isManager:
await Commands.alertsCommand(message, args)
return
# get export csv of scholars
elif args[0] == prefix + "export" and isManager:
await Commands.exportCommand(message, isManager)
return
elif args[0] == prefix + "getProperty":
await Commands.getPropertyCommand(message, args, isManager, discordId, guildId)
return
elif args[0] == prefix + "setProperty" and isManager:
await Commands.setPropertyCommand(message, args, isManager, discordId, guildId)
return
elif args[0] == prefix + "getScholar":
await Commands.getScholar(message, args, isManager, discordId, guildId)
return
elif args[0] == prefix + "addScholar" and isManager:
await Commands.addScholar(message, args, isManager, discordId, guildId)
return
elif args[0] == prefix + "removeScholar" and isManager:
await Commands.removeScholar(message, args, isManager, discordId, guildId)
return
elif args[0] == prefix + "updateScholarShare" and isManager:
if guildId is None:
await message.reply(content="Please do not use payout commands in DMs with the bot, so records are available in the Discord server.")
return
await Commands.updateScholarShare(message, args, isManager, discordId, guildId)
return
elif args[0] == prefix + "setPayoutAddress":
if guildId is None:
await message.reply(content="Please do not use payout commands in DMs with the bot, so records are available in the Discord server.")
return
await Commands.updateScholarAddress(message, args, isManager, discordId, guildId)
return
elif args[0] == prefix + "setAccountLogin":
await Commands.updateScholarLogin(message, args, isManager, discordId, guildId)
return
elif args[0] == prefix + "addManager" and isManager:
await Commands.addManager(message, args, isManager, discordId, guildId)
return
elif args[0] == prefix + "removeManager" and isManager:
await Commands.removeManager(message, args, isManager, discordId, guildId)
return
elif args[0] == prefix + "membership":
await Commands.membershipCommand(message, args, isManager, discordId, guildId)
return
elif args[0] == prefix + "payout":
if guildId is None:
await message.reply(content="Please do not use payout commands in DMs with the bot, so records are available in the Discord server.")
return
await Commands.payoutCommand(message, args, isManager, discordId, guildId)
return
elif args[0] == prefix + "massPayout" and isManager:
if guildId is None:
await message.reply(content="Please do not use payout commands in DMs with the bot, so records are available in the Discord server.")
return
await Commands.payoutAllScholars(message, args, isManager, discordId, guildId)
return
elif args[0] == prefix + "exportRole" and isManager:
guild = message.guild
# Check for role name parameter
roleName = None
if len(args) > 0:
roleName = ''
for arg in args[1:]:
roleName += arg + " "
roleName = roleName[:-1]
else:
await message.reply("Provide a role name")
return
# Search server for role
roleObj = None
for r in guild.roles:
if r.name.startswith(roleName):
roleObj = r
break
# Role not found
if roleObj is None:
await message.reply(f"Role matching {roleName} was not found")
# Construct table of members with the role
df = pd.DataFrame(columns=["Discord_ID", "Discord_Name", "Role"])
for member in roleObj.members:
df.loc[len(df.index)] = [member.id, member.name + '#' + member.discriminator, roleObj.name]
# Produce CSV for the member list
fName = roleObj.name + "_export.csv"
df.to_csv(fName, index=False)
# Send the CSV and clean up
await message.reply(content=f"Member export for {roleObj.name} role, {len(roleObj.members)} members", file=discord.File(fName))
os.remove(fName)
return
elif message.content == prefix + "wipeClaims":
await Commands.wipeClaims(message, isManager, discordId)
return
# user asked for command help
elif message.content == prefix + "help":
await Commands.helpCommand(message, isManager, discordId)
return
logger.warning('Unknown command entered: {}'.format(message.content))
return
# Cron Jobs
# task to send alerts at scheduled intervals regarding scholar progress
@tasks.loop(seconds=60.0)
async def checkEnergyQuest():
await client.wait_until_ready()
try:
rn = datetime.datetime.now(datetime.timezone.utc)
# check if it's time to run a task
if rn.hour == 23 and rn.minute == 0: # allow 7pm EST / 11pm UTC
# energy / quest alerts
logger.info("Processing 1 hour before reset alerts")
await UtilBot.nearResetAlerts(rn)
if Common.leaderboardPeriod < 25 and rn.hour % Common.leaderboardPeriod == 0 and rn.minute == 0: # allow periodically
logger.info("Processing scheduled leaderboard posting")
channel = client.get_channel(Common.leaderboardChannelId)
# fetch the data
sort = "mmr"
ascText = "desc"
table, cacheExp = await UtilBot.getScholarSummary(sort, False)
# error
if table is None or cacheExp is None:
logger.error("Failed to build scheduled leaderboard post")
else:
# send results
msg = 'Hello ' + Common.programName + ', here is the scholar summary sorted by `' + sort + " " + ascText + "`:"
fig = go.Figure(data=[go.Table(
columnwidth=[75, 400, 100, 200, 150, 200, 150, 150, 150, 150, 100, 200],
header=dict(values=list(table.columns),
fill_color="paleturquoise",
align='center'),
cells=dict(values=table.T.values,
fill_color='lavender',
align='center'))
])
fig.update_layout(margin=dict(
l=0, # left margin
r=0, # right margin
b=0, # bottom margin
t=0 # top margin
))
fName = 'images/summary' + str(int(time.time())) + '.png'
fig.write_image(fName, width=1200, height=20 * len(table) + 30)
await channel.send(content=msg, file=discord.File(fName))
os.remove(fName)
pass
except Exception as e:
logger.error("Error in checkEnergyQuest")
logger.error(e)
# traceback.print_exc()
await UtilBot.sendErrorToManagers(e, "cron job")
pass
# Run tasks
checkEnergyQuest.start()
# Run the client
client.run(DiscordBotToken)