Clio develop
The XRP Ledger API server.
Loading...
Searching...
No Matches
AccountTx.hpp
1//------------------------------------------------------------------------------
2/*
3 This file is part of clio: https://github.com/XRPLF/clio
4 Copyright (c) 2023, the clio developers.
5
6 Permission to use, copy, modify, and distribute this software for any
7 purpose with or without fee is hereby granted, provided that the above
8 copyright notice and this permission notice appear in all copies.
9
10 THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16 OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17*/
18//==============================================================================
19
20#pragma once
21
22#include "data/BackendInterface.hpp"
23#include "rpc/Errors.hpp"
24#include "rpc/JS.hpp"
25#include "rpc/common/JsonBool.hpp"
26#include "rpc/common/MetaProcessors.hpp"
27#include "rpc/common/Modifiers.hpp"
28#include "rpc/common/Specs.hpp"
29#include "rpc/common/Types.hpp"
30#include "rpc/common/Validators.hpp"
31#include "util/TxUtils.hpp"
32#include "util/log/Logger.hpp"
33
34#include <boost/json/array.hpp>
35#include <boost/json/conversion.hpp>
36#include <boost/json/object.hpp>
37#include <boost/json/value.hpp>
38#include <xrpl/protocol/ErrorCodes.h>
39#include <xrpl/protocol/TxFormats.h>
40#include <xrpl/protocol/jss.h>
41
42#include <cstdint>
43#include <memory>
44#include <optional>
45#include <string>
46#include <unordered_set>
47
48namespace rpc {
49
56 util::Logger log_{"RPC"};
57 std::shared_ptr<BackendInterface> sharedPtrBackend_;
58
59public:
60 static constexpr auto kLIMIT_MIN = 1;
61 static constexpr auto kLIMIT_MAX = 1000;
62 static constexpr auto kLIMIT_DEFAULT = 200;
63
67 struct Marker {
68 uint32_t ledger;
69 uint32_t seq;
70 };
71
75 struct Output {
76 std::string account;
77 uint32_t ledgerIndexMin{0};
78 uint32_t ledgerIndexMax{0};
79 std::optional<uint32_t> limit;
80 std::optional<Marker> marker;
81 // TODO: use a better type than json
82 boost::json::array transactions;
83 // validated should be sent via framework
84 bool validated = true;
85 };
86
90 struct Input {
91 std::string account;
92 // You must use at least one of the following fields in your request:
93 // ledger_index, ledger_hash, ledger_index_min, or ledger_index_max.
94 std::optional<std::string> ledgerHash;
95 std::optional<uint32_t> ledgerIndex;
96 std::optional<int32_t> ledgerIndexMin;
97 std::optional<int32_t> ledgerIndexMax;
98 bool usingValidatedLedger = false;
99 JsonBool binary{false};
100 JsonBool forward{false};
101 std::optional<uint32_t> limit;
102 std::optional<Marker> marker;
103 std::optional<std::string> transactionTypeInLowercase;
104 };
105
106 using Result = HandlerReturnType<Output>;
107
113 AccountTxHandler(std::shared_ptr<BackendInterface> const& sharedPtrBackend) : sharedPtrBackend_(sharedPtrBackend)
114 {
115 }
116
123 static RpcSpecConstRef
124 spec([[maybe_unused]] uint32_t apiVersion)
125 {
126 auto const& typesKeysInLowercase = util::getTxTypesInLowercase();
127 static auto const kRPC_SPEC_FOR_V1 = RpcSpec{
131 {JS(ledger_index_min), validation::Type<int32_t>{}},
132 {JS(ledger_index_max), validation::Type<int32_t>{}},
133 {JS(limit),
135 validation::Min(1u),
136 modifiers::Clamp<int32_t>{kLIMIT_MIN, kLIMIT_MAX}},
137 {JS(marker),
140 Status{RippledError::rpcINVALID_PARAMS, "invalidMarker"},
141 },
145 }},
146 {
147 "tx_type",
150 validation::OneOf<std::string>(typesKeysInLowercase.cbegin(), typesKeysInLowercase.cend()),
151 },
152 };
153
154 static auto const kRPC_SPEC = RpcSpec{
155 kRPC_SPEC_FOR_V1,
156 {
157 {JS(binary), validation::Type<bool>{}},
158 {JS(forward), validation::Type<bool>{}},
159 }
160 };
161
162 return apiVersion == 1 ? kRPC_SPEC_FOR_V1 : kRPC_SPEC;
163 }
164
172 Result
173 process(Input input, Context const& ctx) const;
174
175private:
182 friend void
183 tag_invoke(boost::json::value_from_tag, boost::json::value& jv, Output const& output);
184
191 friend Input
192 tag_invoke(boost::json::value_to_tag<Input>, boost::json::value const& jv);
193
200 friend void
201 tag_invoke(boost::json::value_from_tag, boost::json::value& jv, Marker const& marker);
202};
203} // namespace rpc
The account_tx method retrieves a list of transactions that involved the specified account.
Definition AccountTx.hpp:55
AccountTxHandler(std::shared_ptr< BackendInterface > const &sharedPtrBackend)
Construct a new AccountTxHandler object.
Definition AccountTx.hpp:113
static RpcSpecConstRef spec(uint32_t apiVersion)
Returns the API specification for the command.
Definition AccountTx.hpp:124
friend void tag_invoke(boost::json::value_from_tag, boost::json::value &jv, Output const &output)
Convert the Output to a JSON object.
Definition AccountTx.cpp:203
Result process(Input input, Context const &ctx) const
Process the AccountTx command.
Definition AccountTx.cpp:56
A meta-processor that acts as a spec for a sub-object/section.
Definition MetaProcessors.hpp:43
A meta-processor that wraps a validator and produces a custom error in case the wrapped validator fai...
Definition MetaProcessors.hpp:166
Clamp value between min and max.
Definition Modifiers.hpp:42
Validate that value is equal or greater than the specified min.
Definition Validators.hpp:215
Validates that the value is one of the values passed in.
Definition Validators.hpp:369
A simple thread-safe logger for the channel specified in the constructor.
Definition Logger.hpp:110
This namespace contains all the RPC logic and handlers.
Definition AMMHelpers.cpp:36
RpcSpec const & RpcSpecConstRef
An alias for a const reference to RpcSpec.
Definition Specs.hpp:145
std::expected< OutputType, Status > HandlerReturnType
Return type for each individual handler.
Definition Types.hpp:81
std::unordered_set< std::string > const & getTxTypesInLowercase()
Get the transaction types in lowercase.
Definition TxUtils.cpp:37
A struct to hold the input data for the command.
Definition AccountTx.hpp:90
A struct to hold the marker data.
Definition AccountTx.hpp:67
A struct to hold the output data of the command.
Definition AccountTx.hpp:75
Context of an RPC call.
Definition Types.hpp:118
A wrapper around bool that allows to convert from any JSON value.
Definition JsonBool.hpp:34
Result type used to return responses or error statuses to the Webserver subsystem.
Definition Types.hpp:129
Represents a Specification of an entire RPC command.
Definition Specs.hpp:98
A status returned from any RPC handler.
Definition Errors.hpp:82
Convert input string to lower case.
Definition Modifiers.hpp:85
static CustomValidator accountValidator
Provides a commonly used validator for accounts.
Definition Validators.hpp:491
static CustomValidator ledgerIndexValidator
Provides a commonly used validator for ledger index.
Definition Validators.hpp:484
static CustomValidator uint256HexStringValidator
Provides a commonly used validator for uint256 hex string.
Definition Validators.hpp:530
A validator that simply requires a field to be present.
Definition Validators.hpp:47
Validates that the type of the value is one of the given types.
Definition Validators.hpp:142