mirror of
https://github.com/XRPLF/clio.git
synced 2025-11-19 19:25:53 +00:00
Fix: https://github.com/XRPLF/clio/issues/2275 --------- Co-authored-by: Sergey Kuznetsov <skuznetsov@ripple.com>
155 lines
5.0 KiB
C++
155 lines
5.0 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/JS.hpp"
|
|
#include "rpc/common/Modifiers.hpp"
|
|
#include "rpc/common/Specs.hpp"
|
|
#include "rpc/common/Types.hpp"
|
|
#include "rpc/common/Validators.hpp"
|
|
|
|
#include <boost/json/conversion.hpp>
|
|
#include <boost/json/value.hpp>
|
|
#include <xrpl/protocol/STLedgerEntry.h>
|
|
#include <xrpl/protocol/jss.h>
|
|
|
|
#include <cstdint>
|
|
#include <memory>
|
|
#include <optional>
|
|
#include <string>
|
|
#include <unordered_map>
|
|
#include <unordered_set>
|
|
#include <vector>
|
|
|
|
namespace rpc {
|
|
|
|
/**
|
|
* @brief The account_objects command returns the raw ledger format for all objects owned by an account.
|
|
* The results can be filtered by the type.
|
|
* The valid types are: check, deposit_preauth, escrow, nft_offer, offer, payment_channel, signer_list, state (trust
|
|
* line), did and ticket.
|
|
*
|
|
* For more details see: https://xrpl.org/account_objects.html
|
|
*/
|
|
class AccountObjectsHandler {
|
|
// dependencies
|
|
std::shared_ptr<BackendInterface> sharedPtrBackend_;
|
|
|
|
public:
|
|
static constexpr auto kLIMIT_MIN = 10;
|
|
static constexpr auto kLIMIT_MAX = 400;
|
|
static constexpr auto kLIMIT_DEFAULT = 200;
|
|
|
|
/**
|
|
* @brief A struct to hold the output data of the command
|
|
*/
|
|
struct Output {
|
|
std::string account;
|
|
std::string ledgerHash;
|
|
uint32_t ledgerIndex{};
|
|
std::optional<std::string> marker;
|
|
uint32_t limit{};
|
|
std::vector<ripple::SLE> accountObjects;
|
|
bool validated = true;
|
|
};
|
|
|
|
/**
|
|
* @brief A struct to hold the input data for the command
|
|
*/
|
|
struct Input {
|
|
std::string account;
|
|
std::optional<std::string> ledgerHash;
|
|
std::optional<uint32_t> ledgerIndex;
|
|
uint32_t limit = kLIMIT_DEFAULT; // [10,400]
|
|
std::optional<std::string> marker;
|
|
std::optional<ripple::LedgerEntryType> type;
|
|
bool deletionBlockersOnly = false;
|
|
};
|
|
|
|
using Result = HandlerReturnType<Output>;
|
|
|
|
/**
|
|
* @brief Construct a new AccountObjectsHandler object
|
|
*
|
|
* @param sharedPtrBackend The backend to use
|
|
*/
|
|
AccountObjectsHandler(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 kRPC_SPEC = RpcSpec{
|
|
{JS(account), validation::Required{}, validation::CustomValidators::accountValidator},
|
|
{JS(ledger_hash), validation::CustomValidators::uint256HexStringValidator},
|
|
{JS(ledger_index), validation::CustomValidators::ledgerIndexValidator},
|
|
{JS(limit),
|
|
validation::Type<uint32_t>{},
|
|
validation::Min(1u),
|
|
modifiers::Clamp<int32_t>(kLIMIT_MIN, kLIMIT_MAX)},
|
|
{JS(type), validation::CustomValidators::accountTypeValidator},
|
|
{JS(marker), validation::CustomValidators::accountMarkerValidator},
|
|
{JS(deletion_blockers_only), validation::Type<bool>{}},
|
|
};
|
|
|
|
return kRPC_SPEC;
|
|
}
|
|
|
|
/**
|
|
* @brief Process the AccountObjects 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 const& 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
|