mirror of
https://github.com/XRPLF/clio.git
synced 2025-12-06 17:27:58 +00:00
Co-authored-by: Ayaz Salikhov <mathbunnyru@users.noreply.github.com> Co-authored-by: Sergey Kuznetsov <kuzzz99@gmail.com>
157 lines
5.5 KiB
C++
157 lines
5.5 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.
|
|
*/
|
|
//==============================================================================
|
|
|
|
#include "rpc/handlers/NFTsByIssuer.hpp"
|
|
|
|
#include "rpc/Errors.hpp"
|
|
#include "rpc/JS.hpp"
|
|
#include "rpc/RPCHelpers.hpp"
|
|
#include "rpc/common/Types.hpp"
|
|
#include "util/Assert.hpp"
|
|
#include "util/JsonUtils.hpp"
|
|
|
|
#include <boost/json/conversion.hpp>
|
|
#include <boost/json/object.hpp>
|
|
#include <boost/json/value.hpp>
|
|
#include <boost/json/value_to.hpp>
|
|
#include <xrpl/basics/base_uint.h>
|
|
#include <xrpl/basics/strHex.h>
|
|
#include <xrpl/protocol/AccountID.h>
|
|
#include <xrpl/protocol/Indexes.h>
|
|
#include <xrpl/protocol/LedgerHeader.h>
|
|
#include <xrpl/protocol/jss.h>
|
|
#include <xrpl/protocol/nft.h>
|
|
|
|
#include <cstdint>
|
|
#include <optional>
|
|
#include <string>
|
|
|
|
using namespace ripple;
|
|
|
|
namespace rpc {
|
|
|
|
NFTsByIssuerHandler::Result
|
|
NFTsByIssuerHandler::process(NFTsByIssuerHandler::Input const& input, Context const& ctx) const
|
|
{
|
|
auto const range = sharedPtrBackend_->fetchLedgerRange();
|
|
ASSERT(range.has_value(), "NFTsByIssuer's ledger range must be available");
|
|
|
|
auto const expectedLgrInfo = getLedgerHeaderFromHashOrSeq(
|
|
*sharedPtrBackend_, ctx.yield, input.ledgerHash, input.ledgerIndex, range->maxSequence
|
|
);
|
|
if (!expectedLgrInfo.has_value())
|
|
return Error{expectedLgrInfo.error()};
|
|
|
|
auto const& lgrInfo = expectedLgrInfo.value();
|
|
|
|
auto const limit = input.limit.value_or(NFTsByIssuerHandler::kLIMIT_DEFAULT);
|
|
|
|
auto const issuer = accountFromStringStrict(input.issuer);
|
|
auto const accountLedgerObject =
|
|
sharedPtrBackend_->fetchLedgerObject(ripple::keylet::account(*issuer).key, lgrInfo.seq, ctx.yield);
|
|
|
|
if (!accountLedgerObject)
|
|
return Error{Status{RippledError::rpcACT_NOT_FOUND, "accountNotFound"}};
|
|
|
|
std::optional<uint256> cursor;
|
|
if (input.marker)
|
|
cursor = uint256{input.marker->c_str()};
|
|
|
|
auto const dbResponse =
|
|
sharedPtrBackend_->fetchNFTsByIssuer(*issuer, input.nftTaxon, lgrInfo.seq, limit, cursor, ctx.yield);
|
|
|
|
auto output = NFTsByIssuerHandler::Output{};
|
|
|
|
output.issuer = toBase58(*issuer);
|
|
output.limit = limit;
|
|
output.ledgerIndex = lgrInfo.seq;
|
|
output.nftTaxon = input.nftTaxon;
|
|
|
|
for (auto const& nft : dbResponse.nfts) {
|
|
boost::json::object nftJson;
|
|
|
|
nftJson[JS(nft_id)] = strHex(nft.tokenID);
|
|
nftJson[JS(ledger_index)] = nft.ledgerSequence;
|
|
nftJson[JS(owner)] = toBase58(nft.owner);
|
|
nftJson[JS(is_burned)] = nft.isBurned;
|
|
nftJson[JS(uri)] = strHex(nft.uri);
|
|
|
|
nftJson[JS(flags)] = nft::getFlags(nft.tokenID);
|
|
nftJson["transfer_fee"] = nft::getTransferFee(nft.tokenID);
|
|
nftJson[JS(issuer)] = toBase58(nft::getIssuer(nft.tokenID));
|
|
nftJson[JS(nft_taxon)] = nft::toUInt32(nft::getTaxon(nft.tokenID));
|
|
nftJson[JS(nft_serial)] = nft::getSerial(nft.tokenID);
|
|
|
|
output.nfts.push_back(nftJson);
|
|
}
|
|
|
|
if (dbResponse.cursor.has_value())
|
|
output.marker = strHex(*dbResponse.cursor);
|
|
|
|
return output;
|
|
}
|
|
|
|
void
|
|
tag_invoke(boost::json::value_from_tag, boost::json::value& jv, NFTsByIssuerHandler::Output const& output)
|
|
{
|
|
jv = {
|
|
{JS(issuer), output.issuer},
|
|
{JS(limit), output.limit},
|
|
{JS(ledger_index), output.ledgerIndex},
|
|
{"nfts", output.nfts},
|
|
{JS(validated), output.validated},
|
|
};
|
|
|
|
if (output.marker.has_value())
|
|
jv.as_object()[JS(marker)] = *(output.marker);
|
|
|
|
if (output.nftTaxon.has_value())
|
|
jv.as_object()[JS(nft_taxon)] = *(output.nftTaxon);
|
|
}
|
|
|
|
NFTsByIssuerHandler::Input
|
|
tag_invoke(boost::json::value_to_tag<NFTsByIssuerHandler::Input>, boost::json::value const& jv)
|
|
{
|
|
auto const& jsonObject = jv.as_object();
|
|
NFTsByIssuerHandler::Input input;
|
|
|
|
input.issuer = boost::json::value_to<std::string>(jsonObject.at(JS(issuer)));
|
|
|
|
if (jsonObject.contains(JS(ledger_hash)))
|
|
input.ledgerHash = boost::json::value_to<std::string>(jsonObject.at(JS(ledger_hash)));
|
|
|
|
if (jsonObject.contains(JS(ledger_index))) {
|
|
auto const expectedLedgerIndex = util::getLedgerIndex(jsonObject.at(JS(ledger_index)));
|
|
if (expectedLedgerIndex.has_value())
|
|
input.ledgerIndex = *expectedLedgerIndex;
|
|
}
|
|
|
|
if (jsonObject.contains(JS(limit)))
|
|
input.limit = util::integralValueAs<uint32_t>(jsonObject.at(JS(limit)));
|
|
|
|
if (jsonObject.contains(JS(nft_taxon)))
|
|
input.nftTaxon = util::integralValueAs<uint32_t>(jsonObject.at(JS(nft_taxon)));
|
|
|
|
if (jsonObject.contains(JS(marker)))
|
|
input.marker = boost::json::value_to<std::string>(jsonObject.at(JS(marker)));
|
|
|
|
return input;
|
|
}
|
|
} // namespace rpc
|