20 #include <ripple/app/main/Application.h>
21 #include <ripple/app/misc/NetworkOPs.h>
22 #include <ripple/basics/Log.h>
23 #include <ripple/ledger/ReadView.h>
24 #include <ripple/net/RPCErr.h>
25 #include <ripple/protocol/ErrorCodes.h>
26 #include <ripple/protocol/UintTypes.h>
27 #include <ripple/protocol/jss.h>
28 #include <ripple/resource/Fees.h>
29 #include <ripple/rpc/BookChanges.h>
30 #include <ripple/rpc/Context.h>
31 #include <ripple/rpc/impl/RPCHelpers.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,
209 if (std::holds_alternative<Json::Value>(res))
210 return std::get<Json::Value>(res);
bool to_currency(Currency ¤cy, std::string const &code)
Tries to convert a string to a Currency, returns true on success.
Json::Value rpcError(int iError)
const Charge feeMediumBurdenRPC
Resource::Charge & loadType
Json::Value computeBookChanges(std::shared_ptr< L const > const &lpAccepted)
static constexpr LimitRange bookOffers
Limits for the book_offers command.
std::variant< std::shared_ptr< Ledger const >, Json::Value > getLedgerByContext(RPC::JsonContext &context)
Return a ledger based on ledger_hash or ledger_index, or an RPC error.
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 object_field_error(std::string const &name)
Json::Value expected_field_error(std::string const &name, std::string const &type)
Json::Value missing_field_error(std::string const &name)
Integers of any length that is a multiple of 32-bits.
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
virtual JobQueue & getJobQueue()=0
AccountID const & xrpAccount()
Compute AccountID from public key.
bool isXRP(AccountID const &c)
bool isMember(const char *key) const
Return true if the object has a member named key.
Json::Value doBookOffers(RPC::JsonContext &context)
int getJobCountGE(JobType t) const
All waiting jobs at or greater than this priority.
Use hash_* containers for keys that do not need a cryptographically secure hashing algorithm.
Json::Value invalid_field_error(std::string const &name)
bool isObjectOrNull() const
AccountID const & noAccount()
A placeholder for empty accounts.
Json::Value make_error(error_code_i code)
Returns a new json object that reflects the error code.
Json::Value doBookChanges(RPC::JsonContext &context)
bool to_issuer(AccountID &, std::string const &)
Convert hex or base58 string to AccountID.
std::string asString() const
Returns the unquoted string value.