//------------------------------------------------------------------------------ /* This file is part of clio: https://github.com/XRPLF/clio Copyright (c) 2024, 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/MPTHolders.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 #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace ripple; namespace rpc { MPTHoldersHandler::Result MPTHoldersHandler::process(MPTHoldersHandler::Input const& input, Context const& ctx) const { auto const range = sharedPtrBackend_->fetchLedgerRange(); ASSERT(range.has_value(), "MPTHolder'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(MPTHoldersHandler::kLIMIT_DEFAULT); auto const mptID = ripple::uint192{input.mptID.c_str()}; auto const issuanceLedgerObject = sharedPtrBackend_->fetchLedgerObject(ripple::keylet::mptIssuance(mptID).key, lgrInfo.seq, ctx.yield); if (!issuanceLedgerObject) return Error{Status{RippledError::rpcOBJECT_NOT_FOUND, "objectNotFound"}}; std::optional cursor; if (input.marker) cursor = ripple::AccountID{input.marker->c_str()}; auto const dbResponse = sharedPtrBackend_->fetchMPTHolders(mptID, limit, cursor, lgrInfo.seq, ctx.yield); auto output = MPTHoldersHandler::Output{}; output.mptID = to_string(mptID); output.limit = limit; output.ledgerIndex = lgrInfo.seq; boost::json::array const mpts; for (auto const& mpt : dbResponse.mptokens) { ripple::STLedgerEntry const sle{ripple::SerialIter{mpt.data(), mpt.size()}, keylet::mptIssuance(mptID).key}; boost::json::object mptJson; mptJson[JS(account)] = toBase58(sle[ripple::sfAccount]); mptJson[JS(flags)] = sle.getFlags(); mptJson["mpt_amount"] = toBoostJson(ripple::STUInt64{ripple::sfMPTAmount, sle[ripple::sfMPTAmount]}.getJson(JsonOptions::none)); mptJson["mptoken_index"] = ripple::to_string(ripple::keylet::mptoken(mptID, sle[ripple::sfAccount]).key); output.mpts.push_back(mptJson); } if (dbResponse.cursor.has_value()) output.marker = strHex(*dbResponse.cursor); return output; } void tag_invoke(boost::json::value_from_tag, boost::json::value& jv, MPTHoldersHandler::Output const& output) { jv = { {JS(mpt_issuance_id), output.mptID}, {JS(limit), output.limit}, {JS(ledger_index), output.ledgerIndex}, {"mptokens", output.mpts}, {JS(validated), output.validated}, }; if (output.marker.has_value()) jv.as_object()[JS(marker)] = *(output.marker); } MPTHoldersHandler::Input tag_invoke(boost::json::value_to_tag, boost::json::value const& jv) { auto const& jsonObject = jv.as_object(); MPTHoldersHandler::Input input; input.mptID = jsonObject.at(JS(mpt_issuance_id)).as_string().c_str(); if (jsonObject.contains(JS(ledger_hash))) input.ledgerHash = jsonObject.at(JS(ledger_hash)).as_string().c_str(); if (jsonObject.contains(JS(ledger_index))) { if (!jsonObject.at(JS(ledger_index)).is_string()) { input.ledgerIndex = util::integralValueAs(jsonObject.at(JS(ledger_index))); } else if (jsonObject.at(JS(ledger_index)).as_string() != "validated") { input.ledgerIndex = std::stoi(jsonObject.at(JS(ledger_index)).as_string().c_str()); } } if (jsonObject.contains(JS(limit))) input.limit = util::integralValueAs(jsonObject.at(JS(limit))); if (jsonObject.contains(JS(marker))) input.marker = jsonObject.at(JS(marker)).as_string().c_str(); return input; } } // namespace rpc