created MsgData, reworked cancellation calculations

This commit is contained in:
2021-08-10 20:53:31 -05:00
parent 5776684b20
commit 156715879f
2 changed files with 132 additions and 107 deletions

View File

@@ -6,13 +6,15 @@ from threading import Lock
import discord
from dotenv import load_dotenv
import msg
from jokes import CumJoke, BlackJoke, AssJoke, DominosJoke
from msg import get_and_save, cancellations, cancelled_totals, report_string
logging.basicConfig(level=logging.INFO)
LIL_STINKY_ID = 704043422276780072
LOGGER = logging.getLogger(__name__)
class RoboPage(discord.Client):
db_path: str = 'messages.db'
@@ -31,45 +33,49 @@ class RoboPage(discord.Client):
return super().run(os.getenv('DISCORD_TOKEN'))
async def handle_ready(self):
channel: discord.TextChannel = discord.utils.get(self.get_all_channels(), name='robotics-facility')
await channel.send(f"I'm aliiiiiive {discord.utils.get(self.emojis, name='kaylon')}")
async def alive():
channel: discord.TextChannel = discord.utils.get(self.get_all_channels(), name='robotics-facility')
await channel.send(f"I'm aliiiiiive {discord.utils.get(self.emojis, name='kaylon')}")
self.data: msg.MsgData = await msg.MsgData.create(
client=self,
limit=3000,
# limit=20,
days=14,
)
LOGGER.info(str(self.data.msgs.columns))
LOGGER.info(str(self.data.reactions.columns))
async def handle_message(self, message):
await self.data.add_msg(message)
if message.author != self.user:
if 'most cancelled' in message.content:
msg: discord.Message = await message.reply('Hold please...')
await message.reply(await self.get_cancelled_totals(limit=1000, days=14))
await message.reply(self.get_cancelled_totals(days=14))
elif (m := re.search('top cancelled (?P<name>\w+)', message.content)) is not None:
if self.lock.acquire(blocking=False):
msg: discord.Message = await message.reply('Hold please...')
await message.reply(await self.top_cancellations(user=m.group('name'), limit=1000, days=14))
self.lock.release()
else:
await message.reply("I'm busy!")
async with self.data.lock:
await message.reply(self.top_cancellations(user=m.group('name'), days=14))
for joke in self.jokes:
if (scan_res := joke.scan(message)):
print(f'{joke.__class__.__name__} detected:\n{message.content}\n{scan_res}')
await joke.respond(message, self, scan_res)
async def get_cancelled_totals(self, limit=1000, days: int = 90):
msg_df, react_df = await get_and_save(self.db_path, client=self, limit=limit, days=days)
res = cancelled_totals(cancellations(msg_df, react_df, days=days))
res = f'Cancellation totals, past {days} days\n' + report_string(res.iloc[:5])
def get_cancelled_totals(self, days):
res = self.data.cancellation_totals(days)
res = f'Cancellation totals, past {days} days\n' + msg.report_string(res.iloc[:5])
return res
async def top_cancellations(self, user: str, limit: int, days: int):
msg_df, react_df = await get_and_save(self.db_path, client=self, limit=limit, days=days)
cdf = cancellations(msg_df, react_df, days=days)
def top_cancellations(self, user: str, days: int):
cdf = self.data.cancellations(days)
cdf = cdf[cdf['display_name'].str.contains(user, case=False)]
if cdf.shape[0] > 0:
res = f'{user}\'s top 5 cancellations in the last {days} days:\n'
res += f'\n'.join(f'`{row["count"]} cancellations`\n{row["link"]}' for idx, row in cdf.iloc[:5].iterrows())
else:
res = f'No cancellations in the past {days} days'
res = f'No cancellations for {user} in the past {days} days'
return res
@@ -83,9 +89,8 @@ if __name__ == '__main__':
@client.event
async def on_ready():
print(f'{client.user} has connected to Discord!')
# await client.handle_ready()
# await get_and_save(RoboPage.db_path, client=client, limit=5000, days=7)
# msg_df, react_df = await get_and_save('messages.db', client=client, limit=5000, days=90)
await client.handle_ready()
print(client.data.cancellation_totals(14))
@client.event
@@ -93,4 +98,16 @@ if __name__ == '__main__':
await client.handle_message(message)
@client.event
async def on_raw_reaction_add(payload):
LOGGER.info(payload)
await client.data.update_reaction(payload=payload, client=client)
@client.event
async def on_raw_reaction_remove(payload):
LOGGER.info(payload)
await client.data.update_reaction(payload=payload, client=client)
client.run()