Files
clio/src/rpc/handlers/Tx.hpp
2025-04-25 09:55:39 -04:00

345 lines
12 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 "data/Types.hpp"
#include "etlng/ETLServiceInterface.hpp"
#include "rpc/Errors.hpp"
#include "rpc/JS.hpp"
#include "rpc/RPCHelpers.hpp"
#include "rpc/common/JsonBool.hpp"
#include "rpc/common/Specs.hpp"
#include "rpc/common/Types.hpp"
#include "rpc/common/Validators.hpp"
#include "util/Assert.hpp"
#include "util/JsonUtils.hpp"
#include <boost/asio/spawn.hpp>
#include <boost/json/conversion.hpp>
#include <boost/json/object.hpp>
#include <boost/json/value.hpp>
#include <boost/json/value_to.hpp>
#include <fmt/core.h>
#include <xrpl/basics/base_uint.h>
#include <xrpl/basics/chrono.h>
#include <xrpl/basics/strHex.h>
#include <xrpl/protocol/ErrorCodes.h>
#include <xrpl/protocol/LedgerHeader.h>
#include <xrpl/protocol/jss.h>
#include <cstdint>
#include <memory>
#include <optional>
#include <string>
#include <utility>
namespace rpc {
/**
* @brief The tx method retrieves information on a single transaction, by its identifying hash.
*
* For more details see: https://xrpl.org/tx.html
*/
class TxHandler {
std::shared_ptr<BackendInterface> sharedPtrBackend_;
std::shared_ptr<etlng::ETLServiceInterface const> etl_;
public:
/**
* @brief A struct to hold the output data of the command
*/
struct Output {
uint32_t date = 0u;
std::string hash = {}; // NOLINT(readability-redundant-member-init)
uint32_t ledgerIndex = 0u;
std::optional<boost::json::object> meta = std::nullopt; // NOLINT(readability-redundant-member-init)
std::optional<boost::json::object> tx = std::nullopt; // NOLINT(readability-redundant-member-init)
std::optional<std::string> metaStr = std::nullopt; // NOLINT(readability-redundant-member-init)
std::optional<std::string> txStr = std::nullopt; // NOLINT(readability-redundant-member-init)
std::optional<std::string> ctid =
std::nullopt; // NOLINT(readability-redundant-member-init) ctid when binary=true
std::optional<ripple::LedgerHeader> ledgerHeader =
std::nullopt; // NOLINT(readability-redundant-member-init) ledger hash when apiVersion >= 2
uint32_t apiVersion = 0u;
bool validated = true;
};
/**
* @brief A struct to hold the input data for the command
*/
struct Input {
std::optional<std::string> transaction;
std::optional<std::string> ctid;
bool binary = false;
std::optional<uint32_t> minLedger;
std::optional<uint32_t> maxLedger;
};
using Result = HandlerReturnType<Output>;
/**
* @brief Construct a new TxHandler object
*
* @param sharedPtrBackend The backend to use
* @param etl The ETL service to use
*/
TxHandler(
std::shared_ptr<BackendInterface> const& sharedPtrBackend,
std::shared_ptr<etlng::ETLServiceInterface const> const& etl
)
: sharedPtrBackend_(sharedPtrBackend), etl_(etl)
{
}
/**
* @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(uint32_t apiVersion)
{
static RpcSpec const kRPC_SPEC_FOR_V1 = {
{JS(transaction), validation::CustomValidators::uint256HexStringValidator},
{JS(min_ledger), validation::Type<uint32_t>{}},
{JS(max_ledger), validation::Type<uint32_t>{}},
{JS(ctid), validation::Type<std::string>{}},
};
static auto const kRPC_SPEC = RpcSpec{kRPC_SPEC_FOR_V1, {{JS(binary), validation::Type<bool>{}}}};
return apiVersion == 1 ? kRPC_SPEC_FOR_V1 : kRPC_SPEC;
}
/**
* @brief Process the Tx 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
{
if (input.ctid && input.transaction) // ambiguous identifier
return Error{Status{RippledError::rpcINVALID_PARAMS}};
if (!input.ctid && !input.transaction) // at least one identifier must be supplied
return Error{Status{RippledError::rpcINVALID_PARAMS}};
static constexpr auto kMAX_LEDGER_RANGE = 1000u;
auto const rangeSupplied = input.minLedger && input.maxLedger;
if (rangeSupplied) {
if (*input.minLedger > *input.maxLedger)
return Error{Status{RippledError::rpcINVALID_LGR_RANGE}};
if (*input.maxLedger - *input.minLedger > kMAX_LEDGER_RANGE)
return Error{Status{RippledError::rpcEXCESSIVE_LGR_RANGE}};
}
std::optional<uint32_t> currentNetId = std::nullopt;
if (auto const& etlState = etl_->getETLState(); etlState.has_value())
currentNetId = etlState->networkID;
std::optional<data::TransactionAndMetadata> dbResponse;
if (input.ctid) {
auto const ctid = rpc::decodeCTID(*input.ctid);
if (!ctid)
return Error{Status{RippledError::rpcINVALID_PARAMS}};
auto const [lgrSeq, txnIdx, netId] = *ctid;
// when current network id is available, let us check the network id from parameter
if (currentNetId && netId != *currentNetId) {
return Error{Status{
RippledError::rpcWRONG_NETWORK,
fmt::format(
"Wrong network. You should submit this request to a node running on NetworkID: {}", netId
)
}};
}
dbResponse = fetchTxViaCtid(lgrSeq, txnIdx, ctx.yield);
} else {
dbResponse = sharedPtrBackend_->fetchTransaction(ripple::uint256{input.transaction->c_str()}, ctx.yield);
}
auto output = TxHandler::Output{.apiVersion = ctx.apiVersion};
if (!dbResponse) {
if (rangeSupplied && input.transaction) // ranges not for ctid
{
auto const range = sharedPtrBackend_->fetchLedgerRange();
ASSERT(range.has_value(), "Tx's ledger range must be available");
auto const searchedAll =
range->maxSequence >= *input.maxLedger && range->minSequence <= *input.minLedger;
boost::json::object extra;
extra["searched_all"] = searchedAll;
return Error{Status{RippledError::rpcTXN_NOT_FOUND, std::move(extra)}};
}
return Error{Status{RippledError::rpcTXN_NOT_FOUND}};
}
auto const [txn, meta] = toExpandedJson(*dbResponse, ctx.apiVersion, NFTokenjson::ENABLE, currentNetId);
if (!input.binary) {
output.tx = txn;
output.meta = meta;
} else {
output.txStr = ripple::strHex(dbResponse->transaction);
output.metaStr = ripple::strHex(dbResponse->metadata);
// input.transaction might be not available, get hash via tx object
if (txn.contains(JS(hash)))
output.hash = txn.at(JS(hash)).as_string();
}
// append ctid here to mimic rippled behavior
auto const txnIdx = boost::json::value_to<uint64_t>(meta.at("TransactionIndex"));
if (txnIdx <= 0xFFFFU && dbResponse->ledgerSequence < 0x0FFF'FFFFUL && currentNetId &&
*currentNetId <= 0xFFFFU) {
output.ctid = rpc::encodeCTID(
dbResponse->ledgerSequence, static_cast<uint16_t>(txnIdx), static_cast<uint16_t>(*currentNetId)
);
}
output.date = dbResponse->date;
output.ledgerIndex = dbResponse->ledgerSequence;
// fetch ledger hash
if (ctx.apiVersion > 1u)
output.ledgerHeader = sharedPtrBackend_->fetchLedgerBySequence(dbResponse->ledgerSequence, ctx.yield);
return output;
}
private:
std::optional<data::TransactionAndMetadata>
fetchTxViaCtid(uint32_t ledgerSeq, uint32_t txId, boost::asio::yield_context yield) const
{
auto const txs = sharedPtrBackend_->fetchAllTransactionsInLedger(ledgerSeq, yield);
for (auto const& tx : txs) {
auto const [txn, meta] = deserializeTxPlusMeta(tx, ledgerSeq);
if (meta->getIndex() == txId)
return tx;
}
return std::nullopt;
}
friend void
tag_invoke(boost::json::value_from_tag, boost::json::value& jv, Output const& output)
{
auto const getJsonV1 = [&]() {
auto obj = boost::json::object{};
if (output.tx) {
obj = *output.tx;
obj[JS(meta)] = *output.meta;
} else {
obj[JS(meta)] = *output.metaStr;
obj[JS(tx)] = *output.txStr;
obj[JS(hash)] = output.hash;
}
obj[JS(validated)] = output.validated;
obj[JS(date)] = output.date;
obj[JS(ledger_index)] = output.ledgerIndex;
obj[JS(inLedger)] = output.ledgerIndex;
return obj;
};
auto const getJsonV2 = [&]() {
auto obj = boost::json::object{};
if (output.tx) {
obj[JS(tx_json)] = *output.tx;
obj[JS(tx_json)].as_object()[JS(date)] = output.date;
if (output.ctid)
obj[JS(tx_json)].as_object()[JS(ctid)] = *output.ctid;
obj[JS(tx_json)].as_object()[JS(ledger_index)] = output.ledgerIndex;
// move hash from tx_json to root
if (obj[JS(tx_json)].as_object().contains(JS(hash))) {
obj[JS(hash)] = obj[JS(tx_json)].as_object()[JS(hash)];
obj[JS(tx_json)].as_object().erase(JS(hash));
}
obj[JS(meta)] = *output.meta;
} else {
obj[JS(meta_blob)] = *output.metaStr;
obj[JS(tx_blob)] = *output.txStr;
obj[JS(hash)] = output.hash;
}
obj[JS(validated)] = output.validated;
obj[JS(ledger_index)] = output.ledgerIndex;
if (output.ledgerHeader) {
obj[JS(ledger_hash)] = ripple::strHex(output.ledgerHeader->hash);
obj[JS(close_time_iso)] = ripple::to_string_iso(output.ledgerHeader->closeTime);
}
return obj;
};
auto obj = output.apiVersion > 1u ? getJsonV2() : getJsonV1();
if (output.ctid)
obj[JS(ctid)] = *output.ctid;
jv = std::move(obj);
}
friend Input
tag_invoke(boost::json::value_to_tag<Input>, boost::json::value const& jv)
{
auto input = TxHandler::Input{};
auto const& jsonObject = jv.as_object();
if (jsonObject.contains(JS(transaction)))
input.transaction = boost::json::value_to<std::string>(jv.at(JS(transaction)));
if (jsonObject.contains(JS(ctid))) {
input.ctid = boost::json::value_to<std::string>(jv.at(JS(ctid)));
input.ctid = util::toUpper(*input.ctid);
}
if (jsonObject.contains(JS(binary)))
input.binary = boost::json::value_to<JsonBool>(jsonObject.at(JS(binary)));
if (jsonObject.contains(JS(min_ledger)))
input.minLedger = jv.at(JS(min_ledger)).as_int64();
if (jsonObject.contains(JS(max_ledger)))
input.maxLedger = jv.at(JS(max_ledger)).as_int64();
return input;
}
};
} // namespace rpc