JishoBot/cogs/search.py

102 lines
2.9 KiB
Python
Raw Normal View History

2020-08-11 09:09:11 +00:00
import discord
from discord.ext import commands
2020-08-11 09:21:09 +00:00
from utils import jisho
2020-08-11 09:09:11 +00:00
2020-08-11 11:11:46 +00:00
class JishoObject():
def __init__(self, query):
self.response = jisho.JishoResponse(query)
self.total_pages = self.response.entries
self.page = 0
2020-08-11 11:16:57 +00:00
def prev(self):
self.page -= 1
if self.page < 0:
self.page = self.total_pages - 1
def next(self):
self.page += 1
if self.page >= self.total_pages:
self.page = 0
2020-08-11 09:09:11 +00:00
class Search(commands.Cog):
def __init__(self, bot: commands.Bot):
self.bot = bot
2020-08-11 11:11:46 +00:00
self.activeObject = None
2020-08-11 11:25:36 +00:00
self.latestMessage = 0
2020-08-11 11:11:46 +00:00
async def createEmbed(self):
response = self.activeObject.response
node = response.nodes[self.activeObject.page]
embed = discord.Embed(
title = node.japanese[0][0],
url = f"https://jisho.org/word/{node.slug}",
description = node.japanese[0][1],
colour = 0x56d926
)
i = 1
for sense in node.senses:
embed.add_field(name=f"{i}. {sense.fenglish_definitions}", value=sense.fparts_of_speech, inline=False)
i += 1
if len(node.japanese) > 1:
other = ""
for word, reading in node.japanese[1:]:
other += word
if reading != "":
other += f"{reading}"
other += "\n"
embed.add_field(name="Other forms", value=other)
embed.set_footer(
2020-08-11 11:16:57 +00:00
text = f"{node.ftags} \t\t {self.activeObject.page + 1}/{self.activeObject.total_pages}"
2020-08-11 11:11:46 +00:00
)
return embed
2020-08-11 09:09:11 +00:00
2020-08-11 11:16:57 +00:00
@commands.Cog.listener()
async def on_reaction_add(self, reaction, user):
2020-08-11 11:25:36 +00:00
message = reaction.message
if message.id != self.latestMessage:
return
2020-08-11 11:16:57 +00:00
if user == self.bot.user:
return
if reaction.me:
if reaction.emoji == "⬅️":
2020-08-11 11:25:36 +00:00
self.activeObject.prev()
if reaction.emoji == "➡️":
self.activeObject.next()
embed = await self.createEmbed()
await message.edit(embed=embed)
await reaction.remove(user)
2020-08-11 11:16:57 +00:00
2020-08-11 09:09:11 +00:00
@commands.command(name="search", description="Searches Jisho", usage="<query>", aliases=["s"])
@commands.cooldown(1, 5)
async def search(self, ctx: commands.Context, *, query: str = None):
if query == None:
return
2020-08-11 11:11:46 +00:00
self.activeObject = JishoObject(query)
embed = await self.createEmbed()
message = await ctx.send(embed=embed)
2020-08-11 11:25:36 +00:00
self.latestMessage = message.id
2020-08-11 11:11:46 +00:00
await message.add_reaction("⬅️")
await message.add_reaction("➡️")
2020-08-11 09:21:09 +00:00
@search.error
async def search_error(self, ctx, error):
if isinstance(error, commands.CommandOnCooldown):
2020-08-11 10:09:59 +00:00
return # Suppress that annoying exception everytime someone is on cooldown
2020-08-11 09:21:09 +00:00
2020-08-11 10:09:59 +00:00
raise error
2020-08-11 09:09:11 +00:00
def setup(bot: commands.Bot):
bot.add_cog(Search(bot))