20#include <xrpld/app/main/Application.h>
21#include <xrpld/app/misc/NetworkOPs.h>
22#include <xrpld/ledger/ReadView.h>
23#include <xrpld/rpc/BookChanges.h>
24#include <xrpld/rpc/Context.h>
25#include <xrpld/rpc/detail/RPCHelpers.h>
26#include <xrpl/basics/Log.h>
27#include <xrpl/protocol/ErrorCodes.h>
28#include <xrpl/protocol/RPCErr.h>
29#include <xrpl/protocol/UintTypes.h>
30#include <xrpl/protocol/jss.h>
31#include <xrpl/resource/Fees.h>
65 if (!taker_pays.
isMember(jss::currency))
68 if (!taker_pays[jss::currency].isString())
71 if (!taker_gets.
isMember(jss::currency))
74 if (!taker_gets[jss::currency].isString())
79 if (!
to_currency(pay_currency, taker_pays[jss::currency].asString()))
81 JLOG(context.
j.
info()) <<
"Bad taker_pays currency.";
84 "Invalid field 'taker_pays.currency', bad currency.");
89 if (!
to_currency(get_currency, taker_gets[jss::currency].asString()))
91 JLOG(context.
j.
info()) <<
"Bad taker_gets currency.";
94 "Invalid field 'taker_gets.currency', bad currency.");
99 if (taker_pays.
isMember(jss::issuer))
101 if (!taker_pays[jss::issuer].isString())
104 if (!
to_issuer(pay_issuer, taker_pays[jss::issuer].asString()))
107 "Invalid field 'taker_pays.issuer', bad issuer.");
112 "Invalid field 'taker_pays.issuer', bad issuer account one.");
119 if (
isXRP(pay_currency) && !
isXRP(pay_issuer))
122 "Unneeded field 'taker_pays.issuer' for "
123 "XRP currency specification.");
125 if (!
isXRP(pay_currency) &&
isXRP(pay_issuer))
128 "Invalid field 'taker_pays.issuer', expected non-XRP issuer.");
132 if (taker_gets.
isMember(jss::issuer))
134 if (!taker_gets[jss::issuer].isString())
137 if (!
to_issuer(get_issuer, taker_gets[jss::issuer].asString()))
140 "Invalid field 'taker_gets.issuer', bad issuer.");
145 "Invalid field 'taker_gets.issuer', bad issuer account one.");
152 if (
isXRP(get_currency) && !
isXRP(get_issuer))
155 "Unneeded field 'taker_gets.issuer' for "
156 "XRP currency specification.");
158 if (!
isXRP(get_currency) &&
isXRP(get_issuer))
161 "Invalid field 'taker_gets.issuer', expected non-XRP issuer.");
169 takerID = parseBase58<AccountID>(context.
params[jss::taker].
asString());
174 if (pay_currency == get_currency && pay_issuer == get_issuer)
176 JLOG(context.
j.
info()) <<
"taker_gets same as taker_pays.";
192 {{pay_currency, pay_issuer}, {get_currency, get_issuer}},
193 takerID ? *takerID : beast::zero,
210 if (ledger ==
nullptr)
bool isObjectOrNull() const
std::string asString() const
Returns the unquoted string value.
bool isMember(const char *key) const
Return true if the object has a member named key.
virtual JobQueue & getJobQueue()=0
int getJobCountGE(JobType t) const
All waiting jobs at or greater than this priority.
virtual void getBookPage(std::shared_ptr< ReadView const > &lpLedger, Book const &book, AccountID const &uTakerID, bool const bProof, unsigned int iLimit, Json::Value const &jvMarker, Json::Value &jvResult)=0
static LimitRange constexpr bookOffers
Limits for the book_offers command.
Json::Value make_error(error_code_i code)
Returns a new json object that reflects the error code.
Json::Value computeBookChanges(std::shared_ptr< L const > const &lpAccepted)
Json::Value invalid_field_error(std::string const &name)
Json::Value object_field_error(std::string const &name)
Json::Value expected_field_error(std::string const &name, std::string const &type)
Status lookupLedger(std::shared_ptr< ReadView const > &ledger, JsonContext &context, Json::Value &result)
Look up a ledger from a request and fill a Json::Result with the data representing a ledger.
Json::Value missing_field_error(std::string const &name)
Charge const feeMediumBurdenRPC
Use hash_* containers for keys that do not need a cryptographically secure hashing algorithm.
AccountID const & noAccount()
A placeholder for empty accounts.
bool isXRP(AccountID const &c)
AccountID const & xrpAccount()
Compute AccountID from public key.
bool to_issuer(AccountID &, std::string const &)
Convert hex or base58 string to AccountID.
Json::Value doBookChanges(RPC::JsonContext &context)
Json::Value rpcError(int iError)
Json::Value doBookOffers(RPC::JsonContext &context)
bool to_currency(Currency &, std::string const &)
Tries to convert a string to a Currency, returns true on success.
Resource::Charge & loadType