tinkoff_invest_client 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (193) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +9 -0
  3. data/README.md +169 -0
  4. data/Rakefile +10 -0
  5. data/docs/BrokerAccountType.md +15 -0
  6. data/docs/Candle.md +32 -0
  7. data/docs/CandleResolution.md +15 -0
  8. data/docs/Candles.md +22 -0
  9. data/docs/CandlesResponse.md +22 -0
  10. data/docs/Currencies.md +18 -0
  11. data/docs/Currency.md +15 -0
  12. data/docs/CurrencyPosition.md +22 -0
  13. data/docs/Empty.md +22 -0
  14. data/docs/Error.md +22 -0
  15. data/docs/ErrorPayload.md +20 -0
  16. data/docs/InstrumentType.md +15 -0
  17. data/docs/LimitOrderRequest.md +22 -0
  18. data/docs/LimitOrderResponse.md +22 -0
  19. data/docs/MarketApi.md +547 -0
  20. data/docs/MarketInstrument.md +34 -0
  21. data/docs/MarketInstrumentList.md +20 -0
  22. data/docs/MarketInstrumentListResponse.md +22 -0
  23. data/docs/MarketInstrumentResponse.md +22 -0
  24. data/docs/MarketOrderRequest.md +20 -0
  25. data/docs/MarketOrderResponse.md +22 -0
  26. data/docs/MoneyAmount.md +20 -0
  27. data/docs/Operation.md +44 -0
  28. data/docs/OperationStatus.md +15 -0
  29. data/docs/OperationTrade.md +24 -0
  30. data/docs/OperationType.md +15 -0
  31. data/docs/OperationTypeWithCommission.md +15 -0
  32. data/docs/Operations.md +18 -0
  33. data/docs/OperationsApi.md +83 -0
  34. data/docs/OperationsResponse.md +22 -0
  35. data/docs/Order.md +32 -0
  36. data/docs/OrderResponse.md +20 -0
  37. data/docs/OrderStatus.md +15 -0
  38. data/docs/OrderType.md +15 -0
  39. data/docs/Orderbook.md +38 -0
  40. data/docs/OrderbookResponse.md +22 -0
  41. data/docs/OrdersApi.md +297 -0
  42. data/docs/OrdersResponse.md +22 -0
  43. data/docs/PlacedLimitOrder.md +32 -0
  44. data/docs/PlacedMarketOrder.md +32 -0
  45. data/docs/Portfolio.md +18 -0
  46. data/docs/PortfolioApi.md +147 -0
  47. data/docs/PortfolioCurrenciesResponse.md +22 -0
  48. data/docs/PortfolioPosition.md +38 -0
  49. data/docs/PortfolioResponse.md +22 -0
  50. data/docs/SandboxAccount.md +20 -0
  51. data/docs/SandboxApi.md +367 -0
  52. data/docs/SandboxCurrency.md +15 -0
  53. data/docs/SandboxRegisterRequest.md +18 -0
  54. data/docs/SandboxRegisterResponse.md +22 -0
  55. data/docs/SandboxSetCurrencyBalanceRequest.md +20 -0
  56. data/docs/SandboxSetPositionBalanceRequest.md +20 -0
  57. data/docs/SearchMarketInstrument.md +32 -0
  58. data/docs/SearchMarketInstrumentResponse.md +22 -0
  59. data/docs/TradeStatus.md +15 -0
  60. data/docs/UserAccount.md +20 -0
  61. data/docs/UserAccounts.md +18 -0
  62. data/docs/UserAccountsResponse.md +22 -0
  63. data/docs/UserApi.md +72 -0
  64. data/generator_options.md +1 -0
  65. data/git_push.sh +58 -0
  66. data/lib/tinkoff_invest_client.rb +98 -0
  67. data/lib/tinkoff_invest_client/api/market_api.rb +518 -0
  68. data/lib/tinkoff_invest_client/api/operations_api.rb +97 -0
  69. data/lib/tinkoff_invest_client/api/orders_api.rb +291 -0
  70. data/lib/tinkoff_invest_client/api/portfolio_api.rb +138 -0
  71. data/lib/tinkoff_invest_client/api/sandbox_api.rb +335 -0
  72. data/lib/tinkoff_invest_client/api/user_api.rb +77 -0
  73. data/lib/tinkoff_invest_client/api_client.rb +390 -0
  74. data/lib/tinkoff_invest_client/api_error.rb +57 -0
  75. data/lib/tinkoff_invest_client/configuration.rb +281 -0
  76. data/lib/tinkoff_invest_client/models/broker_account_type.rb +37 -0
  77. data/lib/tinkoff_invest_client/models/candle.rb +322 -0
  78. data/lib/tinkoff_invest_client/models/candle_resolution.rb +46 -0
  79. data/lib/tinkoff_invest_client/models/candles.rb +253 -0
  80. data/lib/tinkoff_invest_client/models/candles_response.rb +253 -0
  81. data/lib/tinkoff_invest_client/models/currencies.rb +225 -0
  82. data/lib/tinkoff_invest_client/models/currency.rb +44 -0
  83. data/lib/tinkoff_invest_client/models/currency_position.rb +246 -0
  84. data/lib/tinkoff_invest_client/models/empty.rb +253 -0
  85. data/lib/tinkoff_invest_client/models/error.rb +253 -0
  86. data/lib/tinkoff_invest_client/models/error_payload.rb +227 -0
  87. data/lib/tinkoff_invest_client/models/instrument_type.rb +39 -0
  88. data/lib/tinkoff_invest_client/models/limit_order_request.rb +251 -0
  89. data/lib/tinkoff_invest_client/models/limit_order_response.rb +253 -0
  90. data/lib/tinkoff_invest_client/models/market_instrument.rb +317 -0
  91. data/lib/tinkoff_invest_client/models/market_instrument_list.rb +239 -0
  92. data/lib/tinkoff_invest_client/models/market_instrument_list_response.rb +253 -0
  93. data/lib/tinkoff_invest_client/models/market_instrument_response.rb +253 -0
  94. data/lib/tinkoff_invest_client/models/market_order_request.rb +237 -0
  95. data/lib/tinkoff_invest_client/models/market_order_response.rb +253 -0
  96. data/lib/tinkoff_invest_client/models/money_amount.rb +237 -0
  97. data/lib/tinkoff_invest_client/models/operation.rb +370 -0
  98. data/lib/tinkoff_invest_client/models/operation_status.rb +38 -0
  99. data/lib/tinkoff_invest_client/models/operation_trade.rb +266 -0
  100. data/lib/tinkoff_invest_client/models/operation_type.rb +37 -0
  101. data/lib/tinkoff_invest_client/models/operation_type_with_commission.rb +56 -0
  102. data/lib/tinkoff_invest_client/models/operations.rb +225 -0
  103. data/lib/tinkoff_invest_client/models/operations_response.rb +253 -0
  104. data/lib/tinkoff_invest_client/models/order.rb +321 -0
  105. data/lib/tinkoff_invest_client/models/order_response.rb +237 -0
  106. data/lib/tinkoff_invest_client/models/order_status.rb +44 -0
  107. data/lib/tinkoff_invest_client/models/order_type.rb +37 -0
  108. data/lib/tinkoff_invest_client/models/orderbook.rb +346 -0
  109. data/lib/tinkoff_invest_client/models/orderbook_response.rb +253 -0
  110. data/lib/tinkoff_invest_client/models/orders_response.rb +255 -0
  111. data/lib/tinkoff_invest_client/models/placed_limit_order.rb +307 -0
  112. data/lib/tinkoff_invest_client/models/placed_market_order.rb +307 -0
  113. data/lib/tinkoff_invest_client/models/portfolio.rb +225 -0
  114. data/lib/tinkoff_invest_client/models/portfolio_currencies_response.rb +253 -0
  115. data/lib/tinkoff_invest_client/models/portfolio_position.rb +333 -0
  116. data/lib/tinkoff_invest_client/models/portfolio_response.rb +253 -0
  117. data/lib/tinkoff_invest_client/models/sandbox_account.rb +237 -0
  118. data/lib/tinkoff_invest_client/models/sandbox_currency.rb +44 -0
  119. data/lib/tinkoff_invest_client/models/sandbox_register_request.rb +218 -0
  120. data/lib/tinkoff_invest_client/models/sandbox_register_response.rb +253 -0
  121. data/lib/tinkoff_invest_client/models/sandbox_set_currency_balance_request.rb +237 -0
  122. data/lib/tinkoff_invest_client/models/sandbox_set_position_balance_request.rb +232 -0
  123. data/lib/tinkoff_invest_client/models/search_market_instrument.rb +307 -0
  124. data/lib/tinkoff_invest_client/models/search_market_instrument_response.rb +253 -0
  125. data/lib/tinkoff_invest_client/models/trade_status.rb +37 -0
  126. data/lib/tinkoff_invest_client/models/user_account.rb +237 -0
  127. data/lib/tinkoff_invest_client/models/user_accounts.rb +225 -0
  128. data/lib/tinkoff_invest_client/models/user_accounts_response.rb +253 -0
  129. data/lib/tinkoff_invest_client/version.rb +15 -0
  130. data/spec/api/market_api_spec.rb +123 -0
  131. data/spec/api/operations_api_spec.rb +49 -0
  132. data/spec/api/orders_api_spec.rb +84 -0
  133. data/spec/api/portfolio_api_spec.rb +57 -0
  134. data/spec/api/sandbox_api_spec.rb +95 -0
  135. data/spec/api/user_api_spec.rb +45 -0
  136. data/spec/api_client_spec.rb +226 -0
  137. data/spec/configuration_spec.rb +42 -0
  138. data/spec/models/broker_account_type_spec.rb +28 -0
  139. data/spec/models/candle_resolution_spec.rb +28 -0
  140. data/spec/models/candle_spec.rb +76 -0
  141. data/spec/models/candles_response_spec.rb +46 -0
  142. data/spec/models/candles_spec.rb +46 -0
  143. data/spec/models/currencies_spec.rb +34 -0
  144. data/spec/models/currency_position_spec.rb +46 -0
  145. data/spec/models/currency_spec.rb +28 -0
  146. data/spec/models/empty_spec.rb +46 -0
  147. data/spec/models/error_payload_spec.rb +40 -0
  148. data/spec/models/error_spec.rb +46 -0
  149. data/spec/models/instrument_type_spec.rb +28 -0
  150. data/spec/models/limit_order_request_spec.rb +46 -0
  151. data/spec/models/limit_order_response_spec.rb +46 -0
  152. data/spec/models/market_instrument_list_response_spec.rb +46 -0
  153. data/spec/models/market_instrument_list_spec.rb +40 -0
  154. data/spec/models/market_instrument_response_spec.rb +46 -0
  155. data/spec/models/market_instrument_spec.rb +82 -0
  156. data/spec/models/market_order_request_spec.rb +40 -0
  157. data/spec/models/market_order_response_spec.rb +46 -0
  158. data/spec/models/money_amount_spec.rb +40 -0
  159. data/spec/models/operation_spec.rb +112 -0
  160. data/spec/models/operation_status_spec.rb +28 -0
  161. data/spec/models/operation_trade_spec.rb +52 -0
  162. data/spec/models/operation_type_spec.rb +28 -0
  163. data/spec/models/operation_type_with_commission_spec.rb +28 -0
  164. data/spec/models/operations_response_spec.rb +46 -0
  165. data/spec/models/operations_spec.rb +34 -0
  166. data/spec/models/order_response_spec.rb +40 -0
  167. data/spec/models/order_spec.rb +76 -0
  168. data/spec/models/order_status_spec.rb +28 -0
  169. data/spec/models/order_type_spec.rb +28 -0
  170. data/spec/models/orderbook_response_spec.rb +46 -0
  171. data/spec/models/orderbook_spec.rb +94 -0
  172. data/spec/models/orders_response_spec.rb +46 -0
  173. data/spec/models/placed_limit_order_spec.rb +76 -0
  174. data/spec/models/placed_market_order_spec.rb +76 -0
  175. data/spec/models/portfolio_currencies_response_spec.rb +46 -0
  176. data/spec/models/portfolio_position_spec.rb +94 -0
  177. data/spec/models/portfolio_response_spec.rb +46 -0
  178. data/spec/models/portfolio_spec.rb +34 -0
  179. data/spec/models/sandbox_account_spec.rb +40 -0
  180. data/spec/models/sandbox_currency_spec.rb +28 -0
  181. data/spec/models/sandbox_register_request_spec.rb +34 -0
  182. data/spec/models/sandbox_register_response_spec.rb +46 -0
  183. data/spec/models/sandbox_set_currency_balance_request_spec.rb +40 -0
  184. data/spec/models/sandbox_set_position_balance_request_spec.rb +40 -0
  185. data/spec/models/search_market_instrument_response_spec.rb +46 -0
  186. data/spec/models/search_market_instrument_spec.rb +76 -0
  187. data/spec/models/trade_status_spec.rb +28 -0
  188. data/spec/models/user_account_spec.rb +40 -0
  189. data/spec/models/user_accounts_response_spec.rb +46 -0
  190. data/spec/models/user_accounts_spec.rb +34 -0
  191. data/spec/spec_helper.rb +111 -0
  192. data/tinkoff_invest_client.gemspec +38 -0
  193. metadata +336 -0
@@ -0,0 +1,335 @@
1
+ =begin
2
+ #OpenAPI
3
+
4
+ #tinkoff.ru/invest OpenAPI.
5
+
6
+ The version of the OpenAPI document: 1.0.0
7
+ Contact: al.a.volkov@tinkoff.ru
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 5.0.1
10
+
11
+ =end
12
+
13
+ require 'cgi'
14
+
15
+ module TinkoffInvestClient
16
+ class SandboxApi
17
+ attr_accessor :api_client
18
+
19
+ def initialize(api_client = ApiClient.default)
20
+ @api_client = api_client
21
+ end
22
+ # Удаление всех позиций
23
+ # Удаление всех позиций клиента
24
+ # @param [Hash] opts the optional parameters
25
+ # @option opts [String] :broker_account_id Номер счета (по умолчанию - Тинькофф)
26
+ # @return [Empty]
27
+ def sandbox_clear_post(opts = {})
28
+ data, _status_code, _headers = sandbox_clear_post_with_http_info(opts)
29
+ data
30
+ end
31
+
32
+ # Удаление всех позиций
33
+ # Удаление всех позиций клиента
34
+ # @param [Hash] opts the optional parameters
35
+ # @option opts [String] :broker_account_id Номер счета (по умолчанию - Тинькофф)
36
+ # @return [Array<(Empty, Integer, Hash)>] Empty data, response status code and response headers
37
+ def sandbox_clear_post_with_http_info(opts = {})
38
+ if @api_client.config.debugging
39
+ @api_client.config.logger.debug 'Calling API: SandboxApi.sandbox_clear_post ...'
40
+ end
41
+ # resource path
42
+ local_var_path = '/sandbox/clear'
43
+
44
+ # query parameters
45
+ query_params = opts[:query_params] || {}
46
+ query_params[:'brokerAccountId'] = opts[:'broker_account_id'] if !opts[:'broker_account_id'].nil?
47
+
48
+ # header parameters
49
+ header_params = opts[:header_params] || {}
50
+ # HTTP header 'Accept' (if needed)
51
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
52
+
53
+ # form parameters
54
+ form_params = opts[:form_params] || {}
55
+
56
+ # http body (model)
57
+ post_body = opts[:debug_body]
58
+
59
+ # return_type
60
+ return_type = opts[:debug_return_type] || 'Empty'
61
+
62
+ # auth_names
63
+ auth_names = opts[:debug_auth_names] || ['sso_auth']
64
+
65
+ new_options = opts.merge(
66
+ :operation => :"SandboxApi.sandbox_clear_post",
67
+ :header_params => header_params,
68
+ :query_params => query_params,
69
+ :form_params => form_params,
70
+ :body => post_body,
71
+ :auth_names => auth_names,
72
+ :return_type => return_type
73
+ )
74
+
75
+ data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
76
+ if @api_client.config.debugging
77
+ @api_client.config.logger.debug "API called: SandboxApi#sandbox_clear_post\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
78
+ end
79
+ return data, status_code, headers
80
+ end
81
+
82
+ # Выставление баланса по валютным позициям
83
+ # @param sandbox_set_currency_balance_request [SandboxSetCurrencyBalanceRequest] Запрос на выставление баланса по валютным позициям
84
+ # @param [Hash] opts the optional parameters
85
+ # @option opts [String] :broker_account_id Номер счета (по умолчанию - Тинькофф)
86
+ # @return [Empty]
87
+ def sandbox_currencies_balance_post(sandbox_set_currency_balance_request, opts = {})
88
+ data, _status_code, _headers = sandbox_currencies_balance_post_with_http_info(sandbox_set_currency_balance_request, opts)
89
+ data
90
+ end
91
+
92
+ # Выставление баланса по валютным позициям
93
+ # @param sandbox_set_currency_balance_request [SandboxSetCurrencyBalanceRequest] Запрос на выставление баланса по валютным позициям
94
+ # @param [Hash] opts the optional parameters
95
+ # @option opts [String] :broker_account_id Номер счета (по умолчанию - Тинькофф)
96
+ # @return [Array<(Empty, Integer, Hash)>] Empty data, response status code and response headers
97
+ def sandbox_currencies_balance_post_with_http_info(sandbox_set_currency_balance_request, opts = {})
98
+ if @api_client.config.debugging
99
+ @api_client.config.logger.debug 'Calling API: SandboxApi.sandbox_currencies_balance_post ...'
100
+ end
101
+ # verify the required parameter 'sandbox_set_currency_balance_request' is set
102
+ if @api_client.config.client_side_validation && sandbox_set_currency_balance_request.nil?
103
+ fail ArgumentError, "Missing the required parameter 'sandbox_set_currency_balance_request' when calling SandboxApi.sandbox_currencies_balance_post"
104
+ end
105
+ # resource path
106
+ local_var_path = '/sandbox/currencies/balance'
107
+
108
+ # query parameters
109
+ query_params = opts[:query_params] || {}
110
+ query_params[:'brokerAccountId'] = opts[:'broker_account_id'] if !opts[:'broker_account_id'].nil?
111
+
112
+ # header parameters
113
+ header_params = opts[:header_params] || {}
114
+ # HTTP header 'Accept' (if needed)
115
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
116
+ # HTTP header 'Content-Type'
117
+ header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
118
+
119
+ # form parameters
120
+ form_params = opts[:form_params] || {}
121
+
122
+ # http body (model)
123
+ post_body = opts[:debug_body] || @api_client.object_to_http_body(sandbox_set_currency_balance_request)
124
+
125
+ # return_type
126
+ return_type = opts[:debug_return_type] || 'Empty'
127
+
128
+ # auth_names
129
+ auth_names = opts[:debug_auth_names] || ['sso_auth']
130
+
131
+ new_options = opts.merge(
132
+ :operation => :"SandboxApi.sandbox_currencies_balance_post",
133
+ :header_params => header_params,
134
+ :query_params => query_params,
135
+ :form_params => form_params,
136
+ :body => post_body,
137
+ :auth_names => auth_names,
138
+ :return_type => return_type
139
+ )
140
+
141
+ data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
142
+ if @api_client.config.debugging
143
+ @api_client.config.logger.debug "API called: SandboxApi#sandbox_currencies_balance_post\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
144
+ end
145
+ return data, status_code, headers
146
+ end
147
+
148
+ # Выставление баланса по инструментным позициям
149
+ # @param sandbox_set_position_balance_request [SandboxSetPositionBalanceRequest] Запрос на выставление баланса по инструментным позициям
150
+ # @param [Hash] opts the optional parameters
151
+ # @option opts [String] :broker_account_id Номер счета (по умолчанию - Тинькофф)
152
+ # @return [Empty]
153
+ def sandbox_positions_balance_post(sandbox_set_position_balance_request, opts = {})
154
+ data, _status_code, _headers = sandbox_positions_balance_post_with_http_info(sandbox_set_position_balance_request, opts)
155
+ data
156
+ end
157
+
158
+ # Выставление баланса по инструментным позициям
159
+ # @param sandbox_set_position_balance_request [SandboxSetPositionBalanceRequest] Запрос на выставление баланса по инструментным позициям
160
+ # @param [Hash] opts the optional parameters
161
+ # @option opts [String] :broker_account_id Номер счета (по умолчанию - Тинькофф)
162
+ # @return [Array<(Empty, Integer, Hash)>] Empty data, response status code and response headers
163
+ def sandbox_positions_balance_post_with_http_info(sandbox_set_position_balance_request, opts = {})
164
+ if @api_client.config.debugging
165
+ @api_client.config.logger.debug 'Calling API: SandboxApi.sandbox_positions_balance_post ...'
166
+ end
167
+ # verify the required parameter 'sandbox_set_position_balance_request' is set
168
+ if @api_client.config.client_side_validation && sandbox_set_position_balance_request.nil?
169
+ fail ArgumentError, "Missing the required parameter 'sandbox_set_position_balance_request' when calling SandboxApi.sandbox_positions_balance_post"
170
+ end
171
+ # resource path
172
+ local_var_path = '/sandbox/positions/balance'
173
+
174
+ # query parameters
175
+ query_params = opts[:query_params] || {}
176
+ query_params[:'brokerAccountId'] = opts[:'broker_account_id'] if !opts[:'broker_account_id'].nil?
177
+
178
+ # header parameters
179
+ header_params = opts[:header_params] || {}
180
+ # HTTP header 'Accept' (if needed)
181
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
182
+ # HTTP header 'Content-Type'
183
+ header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
184
+
185
+ # form parameters
186
+ form_params = opts[:form_params] || {}
187
+
188
+ # http body (model)
189
+ post_body = opts[:debug_body] || @api_client.object_to_http_body(sandbox_set_position_balance_request)
190
+
191
+ # return_type
192
+ return_type = opts[:debug_return_type] || 'Empty'
193
+
194
+ # auth_names
195
+ auth_names = opts[:debug_auth_names] || ['sso_auth']
196
+
197
+ new_options = opts.merge(
198
+ :operation => :"SandboxApi.sandbox_positions_balance_post",
199
+ :header_params => header_params,
200
+ :query_params => query_params,
201
+ :form_params => form_params,
202
+ :body => post_body,
203
+ :auth_names => auth_names,
204
+ :return_type => return_type
205
+ )
206
+
207
+ data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
208
+ if @api_client.config.debugging
209
+ @api_client.config.logger.debug "API called: SandboxApi#sandbox_positions_balance_post\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
210
+ end
211
+ return data, status_code, headers
212
+ end
213
+
214
+ # Регистрация клиента в sandbox
215
+ # Создание счета и валютных позиций для клиента
216
+ # @param [Hash] opts the optional parameters
217
+ # @option opts [SandboxRegisterRequest] :sandbox_register_request Запрос на создание счета и выставление баланса по валютным позициям
218
+ # @return [SandboxRegisterResponse]
219
+ def sandbox_register_post(opts = {})
220
+ data, _status_code, _headers = sandbox_register_post_with_http_info(opts)
221
+ data
222
+ end
223
+
224
+ # Регистрация клиента в sandbox
225
+ # Создание счета и валютных позиций для клиента
226
+ # @param [Hash] opts the optional parameters
227
+ # @option opts [SandboxRegisterRequest] :sandbox_register_request Запрос на создание счета и выставление баланса по валютным позициям
228
+ # @return [Array<(SandboxRegisterResponse, Integer, Hash)>] SandboxRegisterResponse data, response status code and response headers
229
+ def sandbox_register_post_with_http_info(opts = {})
230
+ if @api_client.config.debugging
231
+ @api_client.config.logger.debug 'Calling API: SandboxApi.sandbox_register_post ...'
232
+ end
233
+ # resource path
234
+ local_var_path = '/sandbox/register'
235
+
236
+ # query parameters
237
+ query_params = opts[:query_params] || {}
238
+
239
+ # header parameters
240
+ header_params = opts[:header_params] || {}
241
+ # HTTP header 'Accept' (if needed)
242
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
243
+ # HTTP header 'Content-Type'
244
+ header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
245
+
246
+ # form parameters
247
+ form_params = opts[:form_params] || {}
248
+
249
+ # http body (model)
250
+ post_body = opts[:debug_body] || @api_client.object_to_http_body(opts[:'sandbox_register_request'])
251
+
252
+ # return_type
253
+ return_type = opts[:debug_return_type] || 'SandboxRegisterResponse'
254
+
255
+ # auth_names
256
+ auth_names = opts[:debug_auth_names] || ['sso_auth']
257
+
258
+ new_options = opts.merge(
259
+ :operation => :"SandboxApi.sandbox_register_post",
260
+ :header_params => header_params,
261
+ :query_params => query_params,
262
+ :form_params => form_params,
263
+ :body => post_body,
264
+ :auth_names => auth_names,
265
+ :return_type => return_type
266
+ )
267
+
268
+ data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
269
+ if @api_client.config.debugging
270
+ @api_client.config.logger.debug "API called: SandboxApi#sandbox_register_post\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
271
+ end
272
+ return data, status_code, headers
273
+ end
274
+
275
+ # Удаление счета
276
+ # Удаление счета клиента
277
+ # @param [Hash] opts the optional parameters
278
+ # @option opts [String] :broker_account_id Номер счета (по умолчанию - Тинькофф)
279
+ # @return [Empty]
280
+ def sandbox_remove_post(opts = {})
281
+ data, _status_code, _headers = sandbox_remove_post_with_http_info(opts)
282
+ data
283
+ end
284
+
285
+ # Удаление счета
286
+ # Удаление счета клиента
287
+ # @param [Hash] opts the optional parameters
288
+ # @option opts [String] :broker_account_id Номер счета (по умолчанию - Тинькофф)
289
+ # @return [Array<(Empty, Integer, Hash)>] Empty data, response status code and response headers
290
+ def sandbox_remove_post_with_http_info(opts = {})
291
+ if @api_client.config.debugging
292
+ @api_client.config.logger.debug 'Calling API: SandboxApi.sandbox_remove_post ...'
293
+ end
294
+ # resource path
295
+ local_var_path = '/sandbox/remove'
296
+
297
+ # query parameters
298
+ query_params = opts[:query_params] || {}
299
+ query_params[:'brokerAccountId'] = opts[:'broker_account_id'] if !opts[:'broker_account_id'].nil?
300
+
301
+ # header parameters
302
+ header_params = opts[:header_params] || {}
303
+ # HTTP header 'Accept' (if needed)
304
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
305
+
306
+ # form parameters
307
+ form_params = opts[:form_params] || {}
308
+
309
+ # http body (model)
310
+ post_body = opts[:debug_body]
311
+
312
+ # return_type
313
+ return_type = opts[:debug_return_type] || 'Empty'
314
+
315
+ # auth_names
316
+ auth_names = opts[:debug_auth_names] || ['sso_auth']
317
+
318
+ new_options = opts.merge(
319
+ :operation => :"SandboxApi.sandbox_remove_post",
320
+ :header_params => header_params,
321
+ :query_params => query_params,
322
+ :form_params => form_params,
323
+ :body => post_body,
324
+ :auth_names => auth_names,
325
+ :return_type => return_type
326
+ )
327
+
328
+ data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
329
+ if @api_client.config.debugging
330
+ @api_client.config.logger.debug "API called: SandboxApi#sandbox_remove_post\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
331
+ end
332
+ return data, status_code, headers
333
+ end
334
+ end
335
+ end
@@ -0,0 +1,77 @@
1
+ =begin
2
+ #OpenAPI
3
+
4
+ #tinkoff.ru/invest OpenAPI.
5
+
6
+ The version of the OpenAPI document: 1.0.0
7
+ Contact: al.a.volkov@tinkoff.ru
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 5.0.1
10
+
11
+ =end
12
+
13
+ require 'cgi'
14
+
15
+ module TinkoffInvestClient
16
+ class UserApi
17
+ attr_accessor :api_client
18
+
19
+ def initialize(api_client = ApiClient.default)
20
+ @api_client = api_client
21
+ end
22
+ # Получение брокерских счетов клиента
23
+ # @param [Hash] opts the optional parameters
24
+ # @return [UserAccountsResponse]
25
+ def user_accounts_get(opts = {})
26
+ data, _status_code, _headers = user_accounts_get_with_http_info(opts)
27
+ data
28
+ end
29
+
30
+ # Получение брокерских счетов клиента
31
+ # @param [Hash] opts the optional parameters
32
+ # @return [Array<(UserAccountsResponse, Integer, Hash)>] UserAccountsResponse data, response status code and response headers
33
+ def user_accounts_get_with_http_info(opts = {})
34
+ if @api_client.config.debugging
35
+ @api_client.config.logger.debug 'Calling API: UserApi.user_accounts_get ...'
36
+ end
37
+ # resource path
38
+ local_var_path = '/user/accounts'
39
+
40
+ # query parameters
41
+ query_params = opts[:query_params] || {}
42
+
43
+ # header parameters
44
+ header_params = opts[:header_params] || {}
45
+ # HTTP header 'Accept' (if needed)
46
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
47
+
48
+ # form parameters
49
+ form_params = opts[:form_params] || {}
50
+
51
+ # http body (model)
52
+ post_body = opts[:debug_body]
53
+
54
+ # return_type
55
+ return_type = opts[:debug_return_type] || 'UserAccountsResponse'
56
+
57
+ # auth_names
58
+ auth_names = opts[:debug_auth_names] || ['sso_auth']
59
+
60
+ new_options = opts.merge(
61
+ :operation => :"UserApi.user_accounts_get",
62
+ :header_params => header_params,
63
+ :query_params => query_params,
64
+ :form_params => form_params,
65
+ :body => post_body,
66
+ :auth_names => auth_names,
67
+ :return_type => return_type
68
+ )
69
+
70
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
71
+ if @api_client.config.debugging
72
+ @api_client.config.logger.debug "API called: UserApi#user_accounts_get\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
73
+ end
74
+ return data, status_code, headers
75
+ end
76
+ end
77
+ end
@@ -0,0 +1,390 @@
1
+ =begin
2
+ #OpenAPI
3
+
4
+ #tinkoff.ru/invest OpenAPI.
5
+
6
+ The version of the OpenAPI document: 1.0.0
7
+ Contact: al.a.volkov@tinkoff.ru
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 5.0.1
10
+
11
+ =end
12
+
13
+ require 'date'
14
+ require 'json'
15
+ require 'logger'
16
+ require 'tempfile'
17
+ require 'time'
18
+ require 'typhoeus'
19
+
20
+ module TinkoffInvestClient
21
+ class ApiClient
22
+ # The Configuration object holding settings to be used in the API client.
23
+ attr_accessor :config
24
+
25
+ # Defines the headers to be used in HTTP requests of all API calls by default.
26
+ #
27
+ # @return [Hash]
28
+ attr_accessor :default_headers
29
+
30
+ # Initializes the ApiClient
31
+ # @option config [Configuration] Configuration for initializing the object, default to Configuration.default
32
+ def initialize(config = Configuration.default)
33
+ @config = config
34
+ @user_agent = "OpenAPI-Generator/#{VERSION}/ruby"
35
+ @default_headers = {
36
+ 'Content-Type' => 'application/json',
37
+ 'User-Agent' => @user_agent
38
+ }
39
+ end
40
+
41
+ def self.default
42
+ @@default ||= ApiClient.new
43
+ end
44
+
45
+ # Call an API with given options.
46
+ #
47
+ # @return [Array<(Object, Integer, Hash)>] an array of 3 elements:
48
+ # the data deserialized from response body (could be nil), response status code and response headers.
49
+ def call_api(http_method, path, opts = {})
50
+ request = build_request(http_method, path, opts)
51
+ response = request.run
52
+
53
+ if @config.debugging
54
+ @config.logger.debug "HTTP response body ~BEGIN~\n#{response.body}\n~END~\n"
55
+ end
56
+
57
+ unless response.success?
58
+ if response.timed_out?
59
+ fail ApiError.new('Connection timed out')
60
+ elsif response.code == 0
61
+ # Errors from libcurl will be made visible here
62
+ fail ApiError.new(:code => 0,
63
+ :message => response.return_message)
64
+ else
65
+ fail ApiError.new(:code => response.code,
66
+ :response_headers => response.headers,
67
+ :response_body => response.body),
68
+ response.status_message
69
+ end
70
+ end
71
+
72
+ if opts[:return_type]
73
+ data = deserialize(response, opts[:return_type])
74
+ else
75
+ data = nil
76
+ end
77
+ return data, response.code, response.headers
78
+ end
79
+
80
+ # Builds the HTTP request
81
+ #
82
+ # @param [String] http_method HTTP method/verb (e.g. POST)
83
+ # @param [String] path URL path (e.g. /account/new)
84
+ # @option opts [Hash] :header_params Header parameters
85
+ # @option opts [Hash] :query_params Query parameters
86
+ # @option opts [Hash] :form_params Query parameters
87
+ # @option opts [Object] :body HTTP body (JSON/XML)
88
+ # @return [Typhoeus::Request] A Typhoeus Request
89
+ def build_request(http_method, path, opts = {})
90
+ url = build_request_url(path, opts)
91
+ http_method = http_method.to_sym.downcase
92
+
93
+ header_params = @default_headers.merge(opts[:header_params] || {})
94
+ query_params = opts[:query_params] || {}
95
+ form_params = opts[:form_params] || {}
96
+
97
+ update_params_for_auth! header_params, query_params, opts[:auth_names]
98
+
99
+ # set ssl_verifyhosts option based on @config.verify_ssl_host (true/false)
100
+ _verify_ssl_host = @config.verify_ssl_host ? 2 : 0
101
+
102
+ req_opts = {
103
+ :method => http_method,
104
+ :headers => header_params,
105
+ :params => query_params,
106
+ :params_encoding => @config.params_encoding,
107
+ :timeout => @config.timeout,
108
+ :ssl_verifypeer => @config.verify_ssl,
109
+ :ssl_verifyhost => _verify_ssl_host,
110
+ :sslcert => @config.cert_file,
111
+ :sslkey => @config.key_file,
112
+ :verbose => @config.debugging
113
+ }
114
+
115
+ # set custom cert, if provided
116
+ req_opts[:cainfo] = @config.ssl_ca_cert if @config.ssl_ca_cert
117
+
118
+ if [:post, :patch, :put, :delete].include?(http_method)
119
+ req_body = build_request_body(header_params, form_params, opts[:body])
120
+ req_opts.update :body => req_body
121
+ if @config.debugging
122
+ @config.logger.debug "HTTP request body param ~BEGIN~\n#{req_body}\n~END~\n"
123
+ end
124
+ end
125
+
126
+ request = Typhoeus::Request.new(url, req_opts)
127
+ download_file(request) if opts[:return_type] == 'File'
128
+ request
129
+ end
130
+
131
+ # Builds the HTTP request body
132
+ #
133
+ # @param [Hash] header_params Header parameters
134
+ # @param [Hash] form_params Query parameters
135
+ # @param [Object] body HTTP body (JSON/XML)
136
+ # @return [String] HTTP body data in the form of string
137
+ def build_request_body(header_params, form_params, body)
138
+ # http form
139
+ if header_params['Content-Type'] == 'application/x-www-form-urlencoded' ||
140
+ header_params['Content-Type'] == 'multipart/form-data'
141
+ data = {}
142
+ form_params.each do |key, value|
143
+ case value
144
+ when ::File, ::Array, nil
145
+ # let typhoeus handle File, Array and nil parameters
146
+ data[key] = value
147
+ else
148
+ data[key] = value.to_s
149
+ end
150
+ end
151
+ elsif body
152
+ data = body.is_a?(String) ? body : body.to_json
153
+ else
154
+ data = nil
155
+ end
156
+ data
157
+ end
158
+
159
+ # Save response body into a file in (the defined) temporary folder, using the filename
160
+ # from the "Content-Disposition" header if provided, otherwise a random filename.
161
+ # The response body is written to the file in chunks in order to handle files which
162
+ # size is larger than maximum Ruby String or even larger than the maximum memory a Ruby
163
+ # process can use.
164
+ #
165
+ # @see Configuration#temp_folder_path
166
+ def download_file(request)
167
+ tempfile = nil
168
+ encoding = nil
169
+ request.on_headers do |response|
170
+ content_disposition = response.headers['Content-Disposition']
171
+ if content_disposition && content_disposition =~ /filename=/i
172
+ filename = content_disposition[/filename=['"]?([^'"\s]+)['"]?/, 1]
173
+ prefix = sanitize_filename(filename)
174
+ else
175
+ prefix = 'download-'
176
+ end
177
+ prefix = prefix + '-' unless prefix.end_with?('-')
178
+ encoding = response.body.encoding
179
+ tempfile = Tempfile.open(prefix, @config.temp_folder_path, encoding: encoding)
180
+ @tempfile = tempfile
181
+ end
182
+ request.on_body do |chunk|
183
+ chunk.force_encoding(encoding)
184
+ tempfile.write(chunk)
185
+ end
186
+ request.on_complete do |response|
187
+ if tempfile
188
+ tempfile.close
189
+ @config.logger.info "Temp file written to #{tempfile.path}, please copy the file to a proper folder "\
190
+ "with e.g. `FileUtils.cp(tempfile.path, '/new/file/path')` otherwise the temp file "\
191
+ "will be deleted automatically with GC. It's also recommended to delete the temp file "\
192
+ "explicitly with `tempfile.delete`"
193
+ end
194
+ end
195
+ end
196
+
197
+ # Check if the given MIME is a JSON MIME.
198
+ # JSON MIME examples:
199
+ # application/json
200
+ # application/json; charset=UTF8
201
+ # APPLICATION/JSON
202
+ # */*
203
+ # @param [String] mime MIME
204
+ # @return [Boolean] True if the MIME is application/json
205
+ def json_mime?(mime)
206
+ (mime == '*/*') || !(mime =~ /Application\/.*json(?!p)(;.*)?/i).nil?
207
+ end
208
+
209
+ # Deserialize the response to the given return type.
210
+ #
211
+ # @param [Response] response HTTP response
212
+ # @param [String] return_type some examples: "User", "Array<User>", "Hash<String, Integer>"
213
+ def deserialize(response, return_type)
214
+ body = response.body
215
+
216
+ # handle file downloading - return the File instance processed in request callbacks
217
+ # note that response body is empty when the file is written in chunks in request on_body callback
218
+ return @tempfile if return_type == 'File'
219
+
220
+ return nil if body.nil? || body.empty?
221
+
222
+ # return response body directly for String return type
223
+ return body if return_type == 'String'
224
+
225
+ # ensuring a default content type
226
+ content_type = response.headers['Content-Type'] || 'application/json'
227
+
228
+ fail "Content-Type is not supported: #{content_type}" unless json_mime?(content_type)
229
+
230
+ begin
231
+ data = JSON.parse("[#{body}]", :symbolize_names => true)[0]
232
+ rescue JSON::ParserError => e
233
+ if %w(String Date Time).include?(return_type)
234
+ data = body
235
+ else
236
+ raise e
237
+ end
238
+ end
239
+
240
+ convert_to_type data, return_type
241
+ end
242
+
243
+ # Convert data to the given return type.
244
+ # @param [Object] data Data to be converted
245
+ # @param [String] return_type Return type
246
+ # @return [Mixed] Data in a particular type
247
+ def convert_to_type(data, return_type)
248
+ return nil if data.nil?
249
+ case return_type
250
+ when 'String'
251
+ data.to_s
252
+ when 'Integer'
253
+ data.to_i
254
+ when 'Float'
255
+ data.to_f
256
+ when 'Boolean'
257
+ data == true
258
+ when 'Time'
259
+ # parse date time (expecting ISO 8601 format)
260
+ Time.parse data
261
+ when 'Date'
262
+ # parse date time (expecting ISO 8601 format)
263
+ Date.parse data
264
+ when 'Object'
265
+ # generic object (usually a Hash), return directly
266
+ data
267
+ when /\AArray<(.+)>\z/
268
+ # e.g. Array<Pet>
269
+ sub_type = $1
270
+ data.map { |item| convert_to_type(item, sub_type) }
271
+ when /\AHash\<String, (.+)\>\z/
272
+ # e.g. Hash<String, Integer>
273
+ sub_type = $1
274
+ {}.tap do |hash|
275
+ data.each { |k, v| hash[k] = convert_to_type(v, sub_type) }
276
+ end
277
+ else
278
+ # models (e.g. Pet) or oneOf
279
+ klass = TinkoffInvestClient.const_get(return_type)
280
+ klass.respond_to?(:openapi_one_of) ? klass.build(data) : klass.build_from_hash(data)
281
+ end
282
+ end
283
+
284
+ # Sanitize filename by removing path.
285
+ # e.g. ../../sun.gif becomes sun.gif
286
+ #
287
+ # @param [String] filename the filename to be sanitized
288
+ # @return [String] the sanitized filename
289
+ def sanitize_filename(filename)
290
+ filename.gsub(/.*[\/\\]/, '')
291
+ end
292
+
293
+ def build_request_url(path, opts = {})
294
+ # Add leading and trailing slashes to path
295
+ path = "/#{path}".gsub(/\/+/, '/')
296
+ @config.base_url(opts[:operation]) + path
297
+ end
298
+
299
+ # Update hearder and query params based on authentication settings.
300
+ #
301
+ # @param [Hash] header_params Header parameters
302
+ # @param [Hash] query_params Query parameters
303
+ # @param [String] auth_names Authentication scheme name
304
+ def update_params_for_auth!(header_params, query_params, auth_names)
305
+ Array(auth_names).each do |auth_name|
306
+ auth_setting = @config.auth_settings[auth_name]
307
+ next unless auth_setting
308
+ case auth_setting[:in]
309
+ when 'header' then header_params[auth_setting[:key]] = auth_setting[:value]
310
+ when 'query' then query_params[auth_setting[:key]] = auth_setting[:value]
311
+ else fail ArgumentError, 'Authentication token must be in `query` or `header`'
312
+ end
313
+ end
314
+ end
315
+
316
+ # Sets user agent in HTTP header
317
+ #
318
+ # @param [String] user_agent User agent (e.g. openapi-generator/ruby/1.0.0)
319
+ def user_agent=(user_agent)
320
+ @user_agent = user_agent
321
+ @default_headers['User-Agent'] = @user_agent
322
+ end
323
+
324
+ # Return Accept header based on an array of accepts provided.
325
+ # @param [Array] accepts array for Accept
326
+ # @return [String] the Accept header (e.g. application/json)
327
+ def select_header_accept(accepts)
328
+ return nil if accepts.nil? || accepts.empty?
329
+ # use JSON when present, otherwise use all of the provided
330
+ json_accept = accepts.find { |s| json_mime?(s) }
331
+ json_accept || accepts.join(',')
332
+ end
333
+
334
+ # Return Content-Type header based on an array of content types provided.
335
+ # @param [Array] content_types array for Content-Type
336
+ # @return [String] the Content-Type header (e.g. application/json)
337
+ def select_header_content_type(content_types)
338
+ # use application/json by default
339
+ return 'application/json' if content_types.nil? || content_types.empty?
340
+ # use JSON when present, otherwise use the first one
341
+ json_content_type = content_types.find { |s| json_mime?(s) }
342
+ json_content_type || content_types.first
343
+ end
344
+
345
+ # Convert object (array, hash, object, etc) to JSON string.
346
+ # @param [Object] model object to be converted into JSON string
347
+ # @return [String] JSON string representation of the object
348
+ def object_to_http_body(model)
349
+ return model if model.nil? || model.is_a?(String)
350
+ local_body = nil
351
+ if model.is_a?(Array)
352
+ local_body = model.map { |m| object_to_hash(m) }
353
+ else
354
+ local_body = object_to_hash(model)
355
+ end
356
+ local_body.to_json
357
+ end
358
+
359
+ # Convert object(non-array) to hash.
360
+ # @param [Object] obj object to be converted into JSON string
361
+ # @return [String] JSON string representation of the object
362
+ def object_to_hash(obj)
363
+ if obj.respond_to?(:to_hash)
364
+ obj.to_hash
365
+ else
366
+ obj
367
+ end
368
+ end
369
+
370
+ # Build parameter value according to the given collection format.
371
+ # @param [String] collection_format one of :csv, :ssv, :tsv, :pipes and :multi
372
+ def build_collection_param(param, collection_format)
373
+ case collection_format
374
+ when :csv
375
+ param.join(',')
376
+ when :ssv
377
+ param.join(' ')
378
+ when :tsv
379
+ param.join("\t")
380
+ when :pipes
381
+ param.join('|')
382
+ when :multi
383
+ # return the array directly as typhoeus will handle it as expected
384
+ param
385
+ else
386
+ fail "unknown collection format: #{collection_format.inspect}"
387
+ end
388
+ end
389
+ end
390
+ end