mirror of
https://github.com/XRPLF/clio.git
synced 2025-11-20 19:56:00 +00:00
181 lines
6.2 KiB
C++
181 lines
6.2 KiB
C++
//------------------------------------------------------------------------------
|
|
/*
|
|
This file is part of clio: https://github.com/XRPLF/clio
|
|
Copyright (c) 2023, the clio developers.
|
|
|
|
Permission to use, copy, modify, and distribute this software for any
|
|
purpose with or without fee is hereby granted, provided that the above
|
|
copyright notice and this permission notice appear in all copies.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
*/
|
|
//==============================================================================
|
|
|
|
#pragma once
|
|
|
|
#include "data/BackendInterface.hpp"
|
|
#include "rpc/Errors.hpp"
|
|
#include "rpc/JS.hpp"
|
|
#include "rpc/common/Specs.hpp"
|
|
#include "rpc/common/Types.hpp"
|
|
#include "rpc/common/Validators.hpp"
|
|
|
|
#include <boost/json/array.hpp>
|
|
#include <boost/json/conversion.hpp>
|
|
#include <boost/json/value.hpp>
|
|
#include <xrpl/protocol/AccountID.h>
|
|
#include <xrpl/protocol/ErrorCodes.h>
|
|
#include <xrpl/protocol/PublicKey.h>
|
|
#include <xrpl/protocol/STAmount.h>
|
|
#include <xrpl/protocol/UintTypes.h>
|
|
#include <xrpl/protocol/jss.h>
|
|
#include <xrpl/protocol/tokens.h>
|
|
|
|
#include <cstdint>
|
|
#include <map>
|
|
#include <memory>
|
|
#include <optional>
|
|
#include <set>
|
|
#include <string>
|
|
#include <string_view>
|
|
#include <vector>
|
|
|
|
namespace rpc {
|
|
|
|
/**
|
|
* @brief Handles the `gateway_balances` command
|
|
*
|
|
* The gateway_balances command calculates the total balances issued by a given account, optionally excluding amounts
|
|
* held by operational addresses.
|
|
*
|
|
* For more details see: https://xrpl.org/gateway_balances.html#gateway_balances
|
|
*/
|
|
class GatewayBalancesHandler {
|
|
std::shared_ptr<BackendInterface> sharedPtrBackend_;
|
|
|
|
public:
|
|
/**
|
|
* @brief A struct to hold the output data of the command
|
|
*/
|
|
struct Output {
|
|
std::string ledgerHash;
|
|
uint32_t ledgerIndex;
|
|
std::string accountID;
|
|
bool overflow = false;
|
|
std::map<ripple::Currency, ripple::STAmount> sums;
|
|
std::map<ripple::AccountID, std::vector<ripple::STAmount>> hotBalances;
|
|
std::map<ripple::AccountID, std::vector<ripple::STAmount>> assets;
|
|
std::map<ripple::AccountID, std::vector<ripple::STAmount>> frozenBalances;
|
|
// validated should be sent via framework
|
|
bool validated = true;
|
|
};
|
|
|
|
/**
|
|
* @brief A struct to hold the input data for the command
|
|
*/
|
|
struct Input {
|
|
std::string account;
|
|
std::set<ripple::AccountID> hotWallets;
|
|
std::optional<std::string> ledgerHash;
|
|
std::optional<uint32_t> ledgerIndex;
|
|
};
|
|
|
|
using Result = HandlerReturnType<Output>;
|
|
|
|
/**
|
|
* @brief Construct a new GatewayBalancesHandler object
|
|
*
|
|
* @param sharedPtrBackend The backend to use
|
|
*/
|
|
GatewayBalancesHandler(std::shared_ptr<BackendInterface> const& sharedPtrBackend)
|
|
: sharedPtrBackend_(sharedPtrBackend)
|
|
{
|
|
}
|
|
|
|
/**
|
|
* @brief Returns the API specification for the command
|
|
*
|
|
* @param apiVersion The api version to return the spec for
|
|
* @return The spec for the given apiVersion
|
|
*/
|
|
static RpcSpecConstRef
|
|
spec([[maybe_unused]] uint32_t apiVersion)
|
|
{
|
|
static auto const hotWalletValidator =
|
|
validation::CustomValidator{[](boost::json::value const& value, std::string_view key) -> MaybeError {
|
|
if (!value.is_string() && !value.is_array())
|
|
return Error{Status{RippledError::rpcINVALID_PARAMS, std::string(key) + "NotStringOrArray"}};
|
|
|
|
// wallet needs to be an valid accountID or public key
|
|
auto const wallets = value.is_array() ? value.as_array() : boost::json::array{value};
|
|
auto const getAccountID = [](auto const& j) -> std::optional<ripple::AccountID> {
|
|
if (j.is_string()) {
|
|
auto const pk = ripple::parseBase58<ripple::PublicKey>(
|
|
ripple::TokenType::AccountPublic, boost::json::value_to<std::string>(j)
|
|
);
|
|
|
|
if (pk)
|
|
return ripple::calcAccountID(*pk);
|
|
|
|
return ripple::parseBase58<ripple::AccountID>(boost::json::value_to<std::string>(j));
|
|
}
|
|
|
|
return {};
|
|
};
|
|
|
|
for (auto const& wallet : wallets) {
|
|
if (!getAccountID(wallet))
|
|
return Error{Status{RippledError::rpcINVALID_PARAMS, std::string(key) + "Malformed"}};
|
|
}
|
|
|
|
return MaybeError{};
|
|
}};
|
|
|
|
static auto const rpcSpec = RpcSpec{
|
|
{JS(account), validation::Required{}, validation::CustomValidators::AccountValidator},
|
|
{JS(ledger_hash), validation::CustomValidators::Uint256HexStringValidator},
|
|
{JS(ledger_index), validation::CustomValidators::LedgerIndexValidator},
|
|
{JS(hotwallet), hotWalletValidator}
|
|
};
|
|
|
|
return rpcSpec;
|
|
}
|
|
|
|
/**
|
|
* @brief Process the GatewayBalances command
|
|
*
|
|
* @param input The input data for the command
|
|
* @param ctx The context of the request
|
|
* @return The result of the operation
|
|
*/
|
|
Result
|
|
process(Input input, Context const& ctx) const;
|
|
|
|
private:
|
|
/**
|
|
* @brief Convert the Output to a JSON object
|
|
*
|
|
* @param [out] jv The JSON object to convert to
|
|
* @param output The output to convert
|
|
*/
|
|
friend void
|
|
tag_invoke(boost::json::value_from_tag, boost::json::value& jv, Output const& output);
|
|
|
|
/**
|
|
* @brief Convert a JSON object to Input type
|
|
*
|
|
* @param jv The JSON object to convert
|
|
* @return Input parsed from the JSON object
|
|
*/
|
|
friend Input
|
|
tag_invoke(boost::json::value_to_tag<Input>, boost::json::value const& jv);
|
|
};
|
|
|
|
} // namespace rpc
|