nft_storage 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/Gemfile +9 -0
- data/Gemfile.lock +68 -0
- data/README.md +118 -0
- data/Rakefile +10 -0
- data/docs/Deal.md +36 -0
- data/docs/DeleteResponse.md +18 -0
- data/docs/ErrorResponse.md +20 -0
- data/docs/ErrorResponseError.md +20 -0
- data/docs/ForbiddenErrorResponse.md +20 -0
- data/docs/ForbiddenErrorResponseError.md +20 -0
- data/docs/GetResponse.md +20 -0
- data/docs/Links.md +22 -0
- data/docs/LinksFile.md +20 -0
- data/docs/ListResponse.md +20 -0
- data/docs/NFT.md +32 -0
- data/docs/NFTStorageAPI.md +289 -0
- data/docs/Pin.md +26 -0
- data/docs/PinStatus.md +15 -0
- data/docs/UnauthorizedErrorResponse.md +20 -0
- data/docs/UnauthorizedErrorResponseError.md +20 -0
- data/docs/UploadResponse.md +20 -0
- data/git_push.sh +58 -0
- data/lib/nft_storage/api/nft_storage_api.rb +282 -0
- data/lib/nft_storage/api_client.rb +390 -0
- data/lib/nft_storage/api_error.rb +57 -0
- data/lib/nft_storage/configuration.rb +278 -0
- data/lib/nft_storage/models/deal.rb +364 -0
- data/lib/nft_storage/models/delete_response.rb +218 -0
- data/lib/nft_storage/models/error_response.rb +229 -0
- data/lib/nft_storage/models/error_response_error.rb +227 -0
- data/lib/nft_storage/models/forbidden_error_response.rb +229 -0
- data/lib/nft_storage/models/forbidden_error_response_error.rb +263 -0
- data/lib/nft_storage/models/get_response.rb +229 -0
- data/lib/nft_storage/models/links.rb +238 -0
- data/lib/nft_storage/models/links_file.rb +227 -0
- data/lib/nft_storage/models/list_response.rb +231 -0
- data/lib/nft_storage/models/nft.rb +329 -0
- data/lib/nft_storage/models/pin.rb +256 -0
- data/lib/nft_storage/models/pin_status.rb +39 -0
- data/lib/nft_storage/models/unauthorized_error_response.rb +229 -0
- data/lib/nft_storage/models/unauthorized_error_response_error.rb +231 -0
- data/lib/nft_storage/models/upload_response.rb +229 -0
- data/lib/nft_storage/version.rb +15 -0
- data/lib/nft_storage.rb +56 -0
- data/nft_storage.gemspec +38 -0
- data/spec/api/nft_storage_api_spec.rb +83 -0
- data/spec/api_client_spec.rb +226 -0
- data/spec/configuration_spec.rb +42 -0
- data/spec/models/deal_spec.rb +96 -0
- data/spec/models/delete_response_spec.rb +34 -0
- data/spec/models/error_response_error_spec.rb +40 -0
- data/spec/models/error_response_spec.rb +40 -0
- data/spec/models/forbidden_error_response_error_spec.rb +44 -0
- data/spec/models/forbidden_error_response_spec.rb +40 -0
- data/spec/models/get_response_spec.rb +40 -0
- data/spec/models/links_file_spec.rb +40 -0
- data/spec/models/links_spec.rb +46 -0
- data/spec/models/list_response_spec.rb +40 -0
- data/spec/models/nft_spec.rb +80 -0
- data/spec/models/pin_spec.rb +58 -0
- data/spec/models/pin_status_spec.rb +28 -0
- data/spec/models/unauthorized_error_response_error_spec.rb +40 -0
- data/spec/models/unauthorized_error_response_spec.rb +40 -0
- data/spec/models/upload_response_spec.rb +40 -0
- data/spec/spec_helper.rb +111 -0
- metadata +168 -0
@@ -0,0 +1,282 @@
|
|
1
|
+
=begin
|
2
|
+
#NFT Storage API
|
3
|
+
|
4
|
+
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 1.0
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 5.1.1-SNAPSHOT
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'cgi'
|
14
|
+
|
15
|
+
module NFTStorage
|
16
|
+
class NFTStorageAPI
|
17
|
+
attr_accessor :api_client
|
18
|
+
|
19
|
+
def initialize(api_client = ApiClient.default)
|
20
|
+
@api_client = api_client
|
21
|
+
end
|
22
|
+
# Stop storing the content with the passed CID
|
23
|
+
# Stop storing the content with the passed CID on nft.storage. - Unpin the item from the underlying IPFS pinning service. - Cease renewals for expired Filecoin deals involving the CID. ⚠️ This does not remove the content from the network. - Does not terminate any established Filecoin deal. - Does not remove the content from other IPFS nodes in the network that already cached or pinned the CID. Note: the content will remain available if another user has stored the CID with nft.storage.
|
24
|
+
# @param cid [String] CID for the NFT
|
25
|
+
# @param [Hash] opts the optional parameters
|
26
|
+
# @return [DeleteResponse]
|
27
|
+
def delete(cid, opts = {})
|
28
|
+
data, _status_code, _headers = delete_with_http_info(cid, opts)
|
29
|
+
data
|
30
|
+
end
|
31
|
+
|
32
|
+
# Stop storing the content with the passed CID
|
33
|
+
# Stop storing the content with the passed CID on nft.storage. - Unpin the item from the underlying IPFS pinning service. - Cease renewals for expired Filecoin deals involving the CID. ⚠️ This does not remove the content from the network. - Does not terminate any established Filecoin deal. - Does not remove the content from other IPFS nodes in the network that already cached or pinned the CID. Note: the content will remain available if another user has stored the CID with nft.storage.
|
34
|
+
# @param cid [String] CID for the NFT
|
35
|
+
# @param [Hash] opts the optional parameters
|
36
|
+
# @return [Array<(DeleteResponse, Integer, Hash)>] DeleteResponse data, response status code and response headers
|
37
|
+
def delete_with_http_info(cid, opts = {})
|
38
|
+
if @api_client.config.debugging
|
39
|
+
@api_client.config.logger.debug 'Calling API: NFTStorageAPI.delete ...'
|
40
|
+
end
|
41
|
+
# verify the required parameter 'cid' is set
|
42
|
+
if @api_client.config.client_side_validation && cid.nil?
|
43
|
+
fail ArgumentError, "Missing the required parameter 'cid' when calling NFTStorageAPI.delete"
|
44
|
+
end
|
45
|
+
# resource path
|
46
|
+
local_var_path = '/{cid}'.sub('{' + 'cid' + '}', CGI.escape(cid.to_s))
|
47
|
+
|
48
|
+
# query parameters
|
49
|
+
query_params = opts[:query_params] || {}
|
50
|
+
|
51
|
+
# header parameters
|
52
|
+
header_params = opts[:header_params] || {}
|
53
|
+
# HTTP header 'Accept' (if needed)
|
54
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
55
|
+
|
56
|
+
# form parameters
|
57
|
+
form_params = opts[:form_params] || {}
|
58
|
+
|
59
|
+
# http body (model)
|
60
|
+
post_body = opts[:debug_body]
|
61
|
+
|
62
|
+
# return_type
|
63
|
+
return_type = opts[:debug_return_type] || 'DeleteResponse'
|
64
|
+
|
65
|
+
# auth_names
|
66
|
+
auth_names = opts[:debug_auth_names] || ['bearerAuth']
|
67
|
+
|
68
|
+
new_options = opts.merge(
|
69
|
+
:operation => :"NFTStorageAPI.delete",
|
70
|
+
:header_params => header_params,
|
71
|
+
:query_params => query_params,
|
72
|
+
:form_params => form_params,
|
73
|
+
:body => post_body,
|
74
|
+
:auth_names => auth_names,
|
75
|
+
:return_type => return_type
|
76
|
+
)
|
77
|
+
|
78
|
+
data, status_code, headers = @api_client.call_api(:DELETE, local_var_path, new_options)
|
79
|
+
if @api_client.config.debugging
|
80
|
+
@api_client.config.logger.debug "API called: NFTStorageAPI#delete\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
81
|
+
end
|
82
|
+
return data, status_code, headers
|
83
|
+
end
|
84
|
+
|
85
|
+
# List all stored files
|
86
|
+
# @param [Hash] opts the optional parameters
|
87
|
+
# @option opts [Time] :before Return results created before provided timestamp
|
88
|
+
# @option opts [Integer] :limit Max records to return (default to 10)
|
89
|
+
# @return [ListResponse]
|
90
|
+
def list(opts = {})
|
91
|
+
data, _status_code, _headers = list_with_http_info(opts)
|
92
|
+
data
|
93
|
+
end
|
94
|
+
|
95
|
+
# List all stored files
|
96
|
+
# @param [Hash] opts the optional parameters
|
97
|
+
# @option opts [Time] :before Return results created before provided timestamp
|
98
|
+
# @option opts [Integer] :limit Max records to return
|
99
|
+
# @return [Array<(ListResponse, Integer, Hash)>] ListResponse data, response status code and response headers
|
100
|
+
def list_with_http_info(opts = {})
|
101
|
+
if @api_client.config.debugging
|
102
|
+
@api_client.config.logger.debug 'Calling API: NFTStorageAPI.list ...'
|
103
|
+
end
|
104
|
+
if @api_client.config.client_side_validation && !opts[:'limit'].nil? && opts[:'limit'] > 100
|
105
|
+
fail ArgumentError, 'invalid value for "opts[:"limit"]" when calling NFTStorageAPI.list, must be smaller than or equal to 100.'
|
106
|
+
end
|
107
|
+
|
108
|
+
if @api_client.config.client_side_validation && !opts[:'limit'].nil? && opts[:'limit'] < 1
|
109
|
+
fail ArgumentError, 'invalid value for "opts[:"limit"]" when calling NFTStorageAPI.list, must be greater than or equal to 1.'
|
110
|
+
end
|
111
|
+
|
112
|
+
# resource path
|
113
|
+
local_var_path = '/'
|
114
|
+
|
115
|
+
# query parameters
|
116
|
+
query_params = opts[:query_params] || {}
|
117
|
+
query_params[:'before'] = opts[:'before'] if !opts[:'before'].nil?
|
118
|
+
query_params[:'limit'] = opts[:'limit'] if !opts[:'limit'].nil?
|
119
|
+
|
120
|
+
# header parameters
|
121
|
+
header_params = opts[:header_params] || {}
|
122
|
+
# HTTP header 'Accept' (if needed)
|
123
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
124
|
+
|
125
|
+
# form parameters
|
126
|
+
form_params = opts[:form_params] || {}
|
127
|
+
|
128
|
+
# http body (model)
|
129
|
+
post_body = opts[:debug_body]
|
130
|
+
|
131
|
+
# return_type
|
132
|
+
return_type = opts[:debug_return_type] || 'ListResponse'
|
133
|
+
|
134
|
+
# auth_names
|
135
|
+
auth_names = opts[:debug_auth_names] || ['bearerAuth']
|
136
|
+
|
137
|
+
new_options = opts.merge(
|
138
|
+
:operation => :"NFTStorageAPI.list",
|
139
|
+
:header_params => header_params,
|
140
|
+
:query_params => query_params,
|
141
|
+
:form_params => form_params,
|
142
|
+
:body => post_body,
|
143
|
+
:auth_names => auth_names,
|
144
|
+
:return_type => return_type
|
145
|
+
)
|
146
|
+
|
147
|
+
data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
|
148
|
+
if @api_client.config.debugging
|
149
|
+
@api_client.config.logger.debug "API called: NFTStorageAPI#list\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
150
|
+
end
|
151
|
+
return data, status_code, headers
|
152
|
+
end
|
153
|
+
|
154
|
+
# Get information for the stored file CID
|
155
|
+
# Includes the IPFS pinning state and the Filecoin deal state.
|
156
|
+
# @param cid [String] CID for the NFT
|
157
|
+
# @param [Hash] opts the optional parameters
|
158
|
+
# @return [GetResponse]
|
159
|
+
def status(cid, opts = {})
|
160
|
+
data, _status_code, _headers = status_with_http_info(cid, opts)
|
161
|
+
data
|
162
|
+
end
|
163
|
+
|
164
|
+
# Get information for the stored file CID
|
165
|
+
# Includes the IPFS pinning state and the Filecoin deal state.
|
166
|
+
# @param cid [String] CID for the NFT
|
167
|
+
# @param [Hash] opts the optional parameters
|
168
|
+
# @return [Array<(GetResponse, Integer, Hash)>] GetResponse data, response status code and response headers
|
169
|
+
def status_with_http_info(cid, opts = {})
|
170
|
+
if @api_client.config.debugging
|
171
|
+
@api_client.config.logger.debug 'Calling API: NFTStorageAPI.status ...'
|
172
|
+
end
|
173
|
+
# verify the required parameter 'cid' is set
|
174
|
+
if @api_client.config.client_side_validation && cid.nil?
|
175
|
+
fail ArgumentError, "Missing the required parameter 'cid' when calling NFTStorageAPI.status"
|
176
|
+
end
|
177
|
+
# resource path
|
178
|
+
local_var_path = '/{cid}'.sub('{' + 'cid' + '}', CGI.escape(cid.to_s))
|
179
|
+
|
180
|
+
# query parameters
|
181
|
+
query_params = opts[:query_params] || {}
|
182
|
+
|
183
|
+
# header parameters
|
184
|
+
header_params = opts[:header_params] || {}
|
185
|
+
# HTTP header 'Accept' (if needed)
|
186
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
187
|
+
|
188
|
+
# form parameters
|
189
|
+
form_params = opts[:form_params] || {}
|
190
|
+
|
191
|
+
# http body (model)
|
192
|
+
post_body = opts[:debug_body]
|
193
|
+
|
194
|
+
# return_type
|
195
|
+
return_type = opts[:debug_return_type] || 'GetResponse'
|
196
|
+
|
197
|
+
# auth_names
|
198
|
+
auth_names = opts[:debug_auth_names] || ['bearerAuth']
|
199
|
+
|
200
|
+
new_options = opts.merge(
|
201
|
+
:operation => :"NFTStorageAPI.status",
|
202
|
+
:header_params => header_params,
|
203
|
+
:query_params => query_params,
|
204
|
+
:form_params => form_params,
|
205
|
+
:body => post_body,
|
206
|
+
:auth_names => auth_names,
|
207
|
+
:return_type => return_type
|
208
|
+
)
|
209
|
+
|
210
|
+
data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
|
211
|
+
if @api_client.config.debugging
|
212
|
+
@api_client.config.logger.debug "API called: NFTStorageAPI#status\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
213
|
+
end
|
214
|
+
return data, status_code, headers
|
215
|
+
end
|
216
|
+
|
217
|
+
# Store a file
|
218
|
+
# Store a file with nft.storage. - Submit a HTTP `POST` request passing the file data in the request body. - To store multiple files in a directory, submit a `multipart/form-data` HTTP `POST` request. Use the `Content-Disposition` header for each part to specify a filename.
|
219
|
+
# @param body [File]
|
220
|
+
# @param [Hash] opts the optional parameters
|
221
|
+
# @return [UploadResponse]
|
222
|
+
def store(body, opts = {})
|
223
|
+
data, _status_code, _headers = store_with_http_info(body, opts)
|
224
|
+
data
|
225
|
+
end
|
226
|
+
|
227
|
+
# Store a file
|
228
|
+
# Store a file with nft.storage. - Submit a HTTP `POST` request passing the file data in the request body. - To store multiple files in a directory, submit a `multipart/form-data` HTTP `POST` request. Use the `Content-Disposition` header for each part to specify a filename.
|
229
|
+
# @param body [File]
|
230
|
+
# @param [Hash] opts the optional parameters
|
231
|
+
# @return [Array<(UploadResponse, Integer, Hash)>] UploadResponse data, response status code and response headers
|
232
|
+
def store_with_http_info(body, opts = {})
|
233
|
+
if @api_client.config.debugging
|
234
|
+
@api_client.config.logger.debug 'Calling API: NFTStorageAPI.store ...'
|
235
|
+
end
|
236
|
+
# verify the required parameter 'body' is set
|
237
|
+
if @api_client.config.client_side_validation && body.nil?
|
238
|
+
fail ArgumentError, "Missing the required parameter 'body' when calling NFTStorageAPI.store"
|
239
|
+
end
|
240
|
+
# resource path
|
241
|
+
local_var_path = '/upload'
|
242
|
+
|
243
|
+
# query parameters
|
244
|
+
query_params = opts[:query_params] || {}
|
245
|
+
|
246
|
+
# header parameters
|
247
|
+
header_params = opts[:header_params] || {}
|
248
|
+
# HTTP header 'Accept' (if needed)
|
249
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
250
|
+
# HTTP header 'Content-Type'
|
251
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(['image/png', 'application/octet-stream', 'multipart/form-data'])
|
252
|
+
|
253
|
+
# form parameters
|
254
|
+
form_params = opts[:form_params] || {}
|
255
|
+
|
256
|
+
# http body (model)
|
257
|
+
post_body = opts[:debug_body] || @api_client.object_to_http_body(body)
|
258
|
+
|
259
|
+
# return_type
|
260
|
+
return_type = opts[:debug_return_type] || 'UploadResponse'
|
261
|
+
|
262
|
+
# auth_names
|
263
|
+
auth_names = opts[:debug_auth_names] || ['bearerAuth']
|
264
|
+
|
265
|
+
new_options = opts.merge(
|
266
|
+
:operation => :"NFTStorageAPI.store",
|
267
|
+
:header_params => header_params,
|
268
|
+
:query_params => query_params,
|
269
|
+
:form_params => form_params,
|
270
|
+
:body => post_body,
|
271
|
+
:auth_names => auth_names,
|
272
|
+
:return_type => return_type
|
273
|
+
)
|
274
|
+
|
275
|
+
data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
|
276
|
+
if @api_client.config.debugging
|
277
|
+
@api_client.config.logger.debug "API called: NFTStorageAPI#store\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
278
|
+
end
|
279
|
+
return data, status_code, headers
|
280
|
+
end
|
281
|
+
end
|
282
|
+
end
|
@@ -0,0 +1,390 @@
|
|
1
|
+
=begin
|
2
|
+
#NFT Storage API
|
3
|
+
|
4
|
+
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 1.0
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 5.1.1-SNAPSHOT
|
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 NFTStorage
|
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 = NFTStorage.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
|