mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-24 03:54:20 +00:00
45 lines
1.6 KiB
Python
45 lines
1.6 KiB
Python
|
from typing import *
|
||
|
import royalnet.commands as rc
|
||
|
import royalnet.backpack.tables as rbt
|
||
|
|
||
|
from ..tables import FiorygiTransaction
|
||
|
|
||
|
|
||
|
class GivefiorygiCommand(rc.Command):
|
||
|
name: str = "givefiorygi"
|
||
|
|
||
|
description: str = "Cedi fiorygi a un altro utente."
|
||
|
|
||
|
syntax: str = "{destinatario} {quantità} {motivo}"
|
||
|
|
||
|
async def run(self, args: rc.CommandArgs, data: rc.CommandData) -> None:
|
||
|
author = await data.get_author(error_if_none=True)
|
||
|
|
||
|
user_arg = args[0]
|
||
|
qty_arg = args[1]
|
||
|
reason_arg = " ".join(args[2:])
|
||
|
|
||
|
if user_arg is None:
|
||
|
raise rc.InvalidInputError("Non hai specificato un destinatario!")
|
||
|
user = await rbt.User.find(self.alchemy, data.session, user_arg)
|
||
|
if user is None:
|
||
|
raise rc.InvalidInputError("L'utente specificato non esiste!")
|
||
|
|
||
|
if qty_arg is None:
|
||
|
raise rc.InvalidInputError("Non hai specificato una quantità!")
|
||
|
try:
|
||
|
qty = int(qty_arg)
|
||
|
except ValueError:
|
||
|
raise rc.InvalidInputError("La quantità specificata non è un numero!")
|
||
|
if qty <= 0:
|
||
|
raise rc.InvalidInputError("La quantità specificata deve essere almeno 1!")
|
||
|
|
||
|
if reason_arg == "":
|
||
|
raise rc.InvalidInputError("Non hai specificato un motivo!")
|
||
|
|
||
|
if author.fiorygi.fiorygi < qty:
|
||
|
raise rc.InvalidInputError("Non hai abbastanza fiorygi per effettuare la transazione!")
|
||
|
|
||
|
await FiorygiTransaction.spawn_fiorygi(data, author, -qty, reason_arg)
|
||
|
await FiorygiTransaction.spawn_fiorygi(data, user, qty, reason_arg)
|