summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorsuhas <hi@suhas.one>2023-11-16 23:48:47 -0600
committersuhas <hi@suhas.one>2023-11-16 23:48:47 -0600
commit97bc8e613f90bb498484c861ec63ea839a48da00 (patch)
tree293ba5df62101794d3214cc5520adf2cafefdc33
parentf2df3f66b3d64b7bedb1c44d9f074087db4b7bde (diff)
downloadqbb-97bc8e613f90bb498484c861ec63ea839a48da00.tar.gz
allow finding other users stats
-rw-r--r--cogs/stats.py16
1 files changed, 9 insertions, 7 deletions
diff --git a/cogs/stats.py b/cogs/stats.py
index 575dab5..54037c2 100644
--- a/cogs/stats.py
+++ b/cogs/stats.py
@@ -1,8 +1,9 @@
 from discord.ext.commands import Cog, Bot
-from discord.app_commands import command
-from discord import Interaction, Embed, Color
+from discord.app_commands import command 
+from discord import Interaction, Embed, Color, User
 from prisma import Prisma
 from common.types import category_field_translations
+from typing import Optional
 
 reverse_categories = {v: k for k, v in category_field_translations.items()}
 
@@ -12,15 +13,16 @@ class Stats(Cog):
         super().__init__()
 
     @command(description="Get your statistics for qbb")
-    async def stats(self, ctx: Interaction):
+    async def stats(self, ctx: Interaction, user: Optional[User] = None):
         db = Prisma()
         await db.connect()
-        stats = await db.user.find_first(where={'id': ctx.user.id})
-        cb = await db.categorybreakdown.find_first(where={'userId': ctx.user.id})
+        person = user if user is not None else ctx.user
+        stats = await db.user.find_first(where={'id': person.id})
+        cb = await db.categorybreakdown.find_first(where={'userId': person.id})
         if stats is None or cb is None:
-            embed = Embed(title="No Stats!", description="You have no stats! Trying using the bot and then running this command", color=Color.red())
+            embed = Embed(title="No Stats!", description=f"@{person.name} has no stats! Trying using the bot and then running this command", color=Color.red())
             return await ctx.response.send_message(embed=embed)
-        embed = Embed(title="Your Stats!", description=f"""**Number of correct tossups:** {stats.questions_correct}
+        embed = Embed(title="@{person.name}'s qbb stats", description=f"""**Number of correct tossups:** {stats.questions_correct}
         **Number of incorrect tossups:** {stats.questions_incorrect}
         """)
         for cat in category_field_translations.values():
n177'>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