Skip to content

Commit

Permalink
fix: fixed discord info
Browse files Browse the repository at this point in the history
  • Loading branch information
suchencjusz committed Jan 5, 2025
1 parent 6b8c23b commit 1d1b710
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/filman_discord/endpoints/info.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,20 @@

@info_plugin.command()
@lightbulb.command("info", "informacje o bocie")
@lightbulb.implements(lightbulb.SlashCommand)
async def info_group(ctx: lightbulb.SlashContext) -> None:
@lightbulb.implements(lightbulb.SlashCommandGroup)
async def info_group(_: lightbulb.SlashContext) -> None:
pass


@info_group.child
@lightbulb.command("basic", "podstawowe informacje o bocie")
@lightbulb.implements(lightbulb.SlashCommand)
@lightbulb.implements(lightbulb.SlashSubCommand)
async def info_basic_command(ctx: lightbulb.SlashContext) -> None:
embed = hikari.Embed(title="`Filman`", colour=0xFFC200, timestamp=datetime.now().astimezone())

embed.add_field(
name="Wersja i ostatnia aktualizacja",
value="`1.1.8v` - `2025-01-04`",
value="`1.1.8Av` - `2025-01-05`",
)

embed.add_field(
Expand All @@ -44,16 +44,16 @@ async def info_basic_command(ctx: lightbulb.SlashContext) -> None:

@info_group.child
@lightbulb.command("database", "informacje o bazie danych")
@lightbulb.implements(lightbulb.SlashCommand)
@lightbulb.implements(lightbulb.SlashSubCommand)
async def info_database_command(ctx: lightbulb.SlashContext) -> None:
async with ctx.bot.d.client_session.get("http://filman_server:8000/utils/database_info") as response:
data = await response.json()

embed = hikari.Embed(title="`Filman`", colour=0xFFC200, timestamp=datetime.now().astimezone())

embed.add_field(
name=f"W bazie danych znajduje się {data['users_count']} użytkowników \n którzy wszyscy obejrzeli {data['filmweb_watched_movies']} filmów \n oraz {data['filmweb_watched_series']} seriali, \n a także jest zarejestrowanych {data['discord_guilds']} serwerów.",
value="",
name="Informacje o bazie danych",
value=f"W bazie danych znajduje się {data['users_count']} użytkowników, wszyscy obejrzeli {data['filmweb_watched_movies']} filmów oraz {data['filmweb_watched_series']} seriali, a w bazie jest zarejestrowanych {data['discord_guilds']} serwerów.",
)

embed.set_footer(
Expand Down

0 comments on commit 1d1b710

Please sign in to comment.