mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
23 lines
742 B
Python
23 lines
742 B
Python
from royalnet.commands import *
|
||
from royalnet.utils import *
|
||
from ..tables import Diario
|
||
|
||
|
||
class DiarioquoteCommand(Command):
|
||
name: str = "diarioquote"
|
||
|
||
description: str = "Cita una riga del diario."
|
||
|
||
aliases = ["dq", "quote", "dquote"]
|
||
|
||
syntax = "{id}"
|
||
|
||
async def run(self, args: CommandArgs, data: CommandData) -> None:
|
||
try:
|
||
entry_id = int(args[0].lstrip("#"))
|
||
except ValueError:
|
||
raise CommandError("L'id che hai specificato non è valido.")
|
||
entry: Diario = await asyncify(data.session.query(self.alchemy.get(Diario)).get, entry_id)
|
||
if entry is None:
|
||
raise CommandError("Nessuna riga con quell'id trovata.")
|
||
await data.reply(f"ℹ️ {entry}")
|