2
0
mirror of synced 2025-01-13 10:04:29 +00:00

43 lines
1.6 KiB
C#
Raw Normal View History

2023-10-24 15:25:45 +02:00
using BiblioTech.Options;
using CodexContractsPlugin;
2023-10-20 09:49:23 +02:00
using Core;
using GethPlugin;
2023-10-22 10:38:46 +02:00
namespace BiblioTech.Commands
2023-10-20 09:49:23 +02:00
{
public class GetBalanceCommand : BaseNetCommand
{
2023-10-22 10:10:52 +02:00
private readonly UserAssociateCommand userAssociateCommand;
private readonly UserOption optionalUser = new UserOption(
2023-10-22 10:38:46 +02:00
description: "If set, get balance for another user. (Optional, admin-only)",
2023-10-22 10:10:52 +02:00
isRequired: false);
2023-10-20 09:49:23 +02:00
2023-10-25 11:25:27 +02:00
public GetBalanceCommand(CoreInterface ci, UserAssociateCommand userAssociateCommand)
: base(ci)
2023-10-20 09:49:23 +02:00
{
2023-10-22 10:10:52 +02:00
this.userAssociateCommand = userAssociateCommand;
2023-10-20 09:49:23 +02:00
}
public override string Name => "balance";
public override string StartingMessage => "Fetching balance...";
2023-10-20 09:49:23 +02:00
public override string Description => "Shows Eth and TestToken balance of an eth address.";
2023-10-22 10:10:52 +02:00
public override CommandOption[] Options => new[] { optionalUser };
2023-10-20 09:49:23 +02:00
2023-10-24 15:25:45 +02:00
protected override async Task Execute(CommandContext context, IGethNode gethNode, ICodexContracts contracts)
2023-10-20 09:49:23 +02:00
{
2023-10-25 11:25:27 +02:00
var userId = GetUserFromCommand(optionalUser, context);
2023-10-22 10:10:52 +02:00
var addr = Program.UserRepo.GetCurrentAddressForUser(userId);
if (addr == null)
{
2023-10-25 10:54:26 +02:00
await context.Followup($"No address has been set for this user. Please use '/{userAssociateCommand.Name}' to set it first.");
2023-10-22 10:10:52 +02:00
return;
}
2023-10-20 09:49:23 +02:00
var eth = gethNode.GetEthBalance(addr);
var testTokens = contracts.GetTestTokenBalance(gethNode, addr);
2023-10-25 10:54:26 +02:00
await context.Followup($"{context.Command.User.Username} has {eth} and {testTokens}.");
2023-10-20 09:49:23 +02:00
}
}
}