2021-01-23 23:40:49 +01:00
|
|
|
import discord
|
|
|
|
from discord.ext import commands
|
2021-08-30 23:21:34 +02:00
|
|
|
from dislash import slash_command, SlashInteraction, Option, OptionType
|
2021-01-23 23:40:49 +01:00
|
|
|
from decorators import help
|
|
|
|
from enums.help_categories import Category
|
2021-08-31 00:13:27 +02:00
|
|
|
from functions.scrapers.google import google_search, SearchResult
|
2021-01-23 23:40:49 +01:00
|
|
|
|
|
|
|
|
2021-08-31 00:13:27 +02:00
|
|
|
def _create_google_embed(result: SearchResult) -> discord.Embed:
|
2021-08-30 23:21:34 +02:00
|
|
|
embed = discord.Embed(colour=discord.Colour.blue())
|
|
|
|
embed.set_author(name="Google Search")
|
|
|
|
|
|
|
|
# Empty list of results
|
2021-08-31 00:13:27 +02:00
|
|
|
if len(result.results) == 0:
|
|
|
|
embed.colour = discord.Colour.red()
|
2021-08-30 23:21:34 +02:00
|
|
|
embed.description = "Geen resultaten gevonden."
|
|
|
|
return embed
|
|
|
|
|
2021-08-31 00:13:27 +02:00
|
|
|
# Add results into a field
|
2021-08-30 23:21:34 +02:00
|
|
|
links = []
|
|
|
|
|
2021-08-31 00:13:27 +02:00
|
|
|
for index, link in enumerate(result.results):
|
|
|
|
links.append(f"{index + 1}: {link}")
|
2021-08-30 23:21:34 +02:00
|
|
|
|
|
|
|
embed.description = "\n".join(links)
|
|
|
|
|
|
|
|
return embed
|
|
|
|
|
|
|
|
|
2021-01-23 23:40:49 +01:00
|
|
|
class Google(commands.Cog):
|
|
|
|
def __init__(self, client):
|
|
|
|
self.client = client
|
|
|
|
|
|
|
|
# Don't allow any commands to work when locked
|
|
|
|
def cog_check(self, ctx):
|
|
|
|
return not self.client.locked
|
|
|
|
|
2021-08-30 23:21:34 +02:00
|
|
|
@slash_command(name="google",
|
|
|
|
description="Google search",
|
|
|
|
options=[
|
|
|
|
Option("query", "Search query", OptionType.STRING, required=True)
|
|
|
|
],
|
|
|
|
guild_ids=[880175869841277008]
|
|
|
|
)
|
|
|
|
async def _google_slash(self, interaction: SlashInteraction, query: str):
|
2021-08-31 00:13:27 +02:00
|
|
|
result = google_search(query)
|
2021-08-30 23:21:34 +02:00
|
|
|
|
2021-08-31 00:13:27 +02:00
|
|
|
if not result.results:
|
|
|
|
return await interaction.reply("Er ging iets fout (Response {})".format(result.status_code))
|
2021-08-30 23:21:34 +02:00
|
|
|
|
2021-08-31 00:13:27 +02:00
|
|
|
embed = _create_google_embed(result)
|
2021-08-30 23:21:34 +02:00
|
|
|
await interaction.reply(embed=embed)
|
|
|
|
|
2021-01-24 13:08:58 +01:00
|
|
|
@commands.command(name="Google", aliases=["Gtfm", "Search"], usage="[Query]", case_insensitive=True)
|
2021-01-23 23:40:49 +01:00
|
|
|
@help.Category(Category.Other)
|
|
|
|
async def google(self, ctx, *query):
|
2021-01-24 13:08:58 +01:00
|
|
|
if not query:
|
|
|
|
return await ctx.reply("Je hebt geen query opgegeven.", mention_author=True)
|
|
|
|
|
2021-08-31 00:13:27 +02:00
|
|
|
result = google_search(" ".join(query))
|
2021-01-23 23:40:49 +01:00
|
|
|
|
2021-08-31 00:13:27 +02:00
|
|
|
if not result.results:
|
|
|
|
return await ctx.send("Er ging iets fout (Response {})".format(result.status_code))
|
2021-01-23 23:40:49 +01:00
|
|
|
|
2021-08-31 00:13:27 +02:00
|
|
|
embed = _create_google_embed(result)
|
2021-01-24 13:08:58 +01:00
|
|
|
await ctx.reply(embed=embed, mention_author=False)
|
|
|
|
|
2021-01-23 23:40:49 +01:00
|
|
|
|
|
|
|
def setup(client):
|
|
|
|
client.add_cog(Google(client))
|