blob: 473e778caf66d7e374eaf4dd5854a01fcf7eee92 (
plain) (
blame)
| 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
 | from http import HTTPStatus
import discord
from discord.ext import commands
class StatusCats(commands.Cog):
    """Commands that give HTTP statuses described and visualized by cats and dogs."""
    def __init__(self, bot: commands.Bot):
        self.bot = bot
    @commands.group(name="http_status", aliases=("status", "httpstatus"))
    async def http_status_group(self, ctx: commands.Context) -> None:
        """Group containing dog and cat http status code commands."""
        if not ctx.invoked_subcommand:
            await ctx.send_help(ctx.command)
    @http_status_group.command(aliases=['cat'])
    async def http_cat(self, ctx: commands.Context, code: int) -> None:
        """Sends an embed with an image of a cat, portraying the status code."""
        embed = discord.Embed(title=f'**Status: {code}**')
        try:
            HTTPStatus(code)
        except ValueError:
            embed.set_footer(text='Inputted status code does not exist.')
        else:
            embed.set_image(url=f'https://http.cat/{code}.jpg')
        finally:
            await ctx.send(embed=embed)
    @http_status_group.command(aliases=['dog'])
    async def http_dog(self, ctx: commands.Context, code: int) -> None:
        """Sends an embed with an image of a dog, portraying the status code."""
        embed = discord.Embed(title=f'**Status: {code}**')
        try:
            HTTPStatus(code)
            async with self.bot.http_session.get(
                    f'https://httpstatusdogs.com/img/{code}.jpg',
                    allow_redirects=False
            ) as response:
                if response.status != 302:
                    embed.set_image(url=f'https://httpstatusdogs.com/img/{code}.jpg')
                else:
                    raise ValueError
        except ValueError:
            embed.set_footer(text='Inputted status code does not exist.')
        finally:
            await ctx.send(embed=embed)
def setup(bot: commands.Bot) -> None:
    """Load the StatusCats cog."""
    bot.add_cog(StatusCats(bot))
 |