tensors-ruby 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (60) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +9 -0
  3. data/README.md +154 -0
  4. data/lib/tensors-ruby/api/auth_api.rb +387 -0
  5. data/lib/tensors-ruby/api/civit_ai_api.rb +85 -0
  6. data/lib/tensors-ruby/api/comfy_uiapi_api.rb +582 -0
  7. data/lib/tensors-ruby/api/database_api.rb +655 -0
  8. data/lib/tensors-ruby/api/default_api.rb +77 -0
  9. data/lib/tensors-ruby/api/download_api.rb +210 -0
  10. data/lib/tensors-ruby/api/gallery_api.rb +416 -0
  11. data/lib/tensors-ruby/api/search_api.rb +129 -0
  12. data/lib/tensors-ruby/api_client.rb +441 -0
  13. data/lib/tensors-ruby/api_error.rb +58 -0
  14. data/lib/tensors-ruby/api_model_base.rb +88 -0
  15. data/lib/tensors-ruby/configuration.rb +399 -0
  16. data/lib/tensors-ruby/models/cache_request.rb +165 -0
  17. data/lib/tensors-ruby/models/download_request.rb +179 -0
  18. data/lib/tensors-ruby/models/generate_request.rb +444 -0
  19. data/lib/tensors-ruby/models/generate_response.rb +213 -0
  20. data/lib/tensors-ruby/models/http_validation_error.rb +149 -0
  21. data/lib/tensors-ruby/models/location_inner.rb +103 -0
  22. data/lib/tensors-ruby/models/metadata_update.rb +181 -0
  23. data/lib/tensors-ruby/models/models_response.rb +205 -0
  24. data/lib/tensors-ruby/models/provider.rb +41 -0
  25. data/lib/tensors-ruby/models/queue_status_response.rb +161 -0
  26. data/lib/tensors-ruby/models/scan_request.rb +165 -0
  27. data/lib/tensors-ruby/models/sort_order.rb +41 -0
  28. data/lib/tensors-ruby/models/system_stats_response.rb +161 -0
  29. data/lib/tensors-ruby/models/validation_error.rb +237 -0
  30. data/lib/tensors-ruby/models/workflow_request.rb +168 -0
  31. data/lib/tensors-ruby/models/workflow_response.rb +222 -0
  32. data/lib/tensors-ruby/version.rb +15 -0
  33. data/lib/tensors-ruby.rb +64 -0
  34. data/spec/api/auth_api_spec.rb +109 -0
  35. data/spec/api/civit_ai_api_spec.rb +47 -0
  36. data/spec/api/comfy_uiapi_api_spec.rb +141 -0
  37. data/spec/api/database_api_spec.rb +155 -0
  38. data/spec/api/default_api_spec.rb +45 -0
  39. data/spec/api/download_api_spec.rb +70 -0
  40. data/spec/api/gallery_api_spec.rb +109 -0
  41. data/spec/api/search_api_spec.rb +60 -0
  42. data/spec/models/cache_request_spec.rb +36 -0
  43. data/spec/models/download_request_spec.rb +54 -0
  44. data/spec/models/generate_request_spec.rb +108 -0
  45. data/spec/models/generate_response_spec.rb +54 -0
  46. data/spec/models/http_validation_error_spec.rb +36 -0
  47. data/spec/models/location_inner_spec.rb +21 -0
  48. data/spec/models/metadata_update_spec.rb +54 -0
  49. data/spec/models/models_response_spec.rb +66 -0
  50. data/spec/models/provider_spec.rb +30 -0
  51. data/spec/models/queue_status_response_spec.rb +42 -0
  52. data/spec/models/scan_request_spec.rb +36 -0
  53. data/spec/models/sort_order_spec.rb +30 -0
  54. data/spec/models/system_stats_response_spec.rb +42 -0
  55. data/spec/models/validation_error_spec.rb +60 -0
  56. data/spec/models/workflow_request_spec.rb +36 -0
  57. data/spec/models/workflow_response_spec.rb +60 -0
  58. data/spec/spec_helper.rb +111 -0
  59. data/tensors-ruby.gemspec +41 -0
  60. metadata +194 -0
@@ -0,0 +1,441 @@
1
+ =begin
2
+ #tensors
3
+
4
+ #API for CivitAI model management and image gallery
5
+
6
+ The version of the OpenAPI document: 0.1.18
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.21.0
10
+
11
+ =end
12
+
13
+ require 'date'
14
+ require 'json'
15
+ require 'logger'
16
+ require 'tempfile'
17
+ require 'time'
18
+ require 'faraday'
19
+ require 'faraday/multipart' if Gem::Version.new(Faraday::VERSION) >= Gem::Version.new('2.0')
20
+ require 'marcel'
21
+
22
+
23
+ module TensorsApi
24
+ class ApiClient
25
+ # The Configuration object holding settings to be used in the API client.
26
+ attr_accessor :config
27
+
28
+ # Defines the headers to be used in HTTP requests of all API calls by default.
29
+ #
30
+ # @return [Hash]
31
+ attr_accessor :default_headers
32
+
33
+ # Initializes the ApiClient
34
+ # @option config [Configuration] Configuration for initializing the object, default to Configuration.default
35
+ def initialize(config = Configuration.default)
36
+ @config = config
37
+ @user_agent = "OpenAPI-Generator/#{VERSION}/ruby"
38
+ @default_headers = {
39
+ 'Content-Type' => 'application/json',
40
+ 'User-Agent' => @user_agent
41
+ }
42
+ end
43
+
44
+ def self.default
45
+ @@default ||= ApiClient.new
46
+ end
47
+
48
+ # Call an API with given options.
49
+ #
50
+ # @return [Array<(Object, Integer, Hash)>] an array of 3 elements:
51
+ # the data deserialized from response body (could be nil), response status code and response headers.
52
+ def call_api(http_method, path, opts = {})
53
+ stream = nil
54
+ begin
55
+ response = connection(opts).public_send(http_method.to_sym.downcase) do |req|
56
+ request = build_request(http_method, path, req, opts)
57
+ stream = download_file(request) if opts[:return_type] == 'File' || opts[:return_type] == 'Binary'
58
+ end
59
+
60
+ if config.debugging
61
+ config.logger.debug "HTTP response body ~BEGIN~\n#{response.body}\n~END~\n"
62
+ end
63
+
64
+ unless response.success?
65
+ if response.status == 0 && response.respond_to?(:return_message)
66
+ # Errors from libcurl will be made visible here
67
+ fail ApiError.new(code: 0,
68
+ message: response.return_message)
69
+ else
70
+ fail ApiError.new(code: response.status,
71
+ response_headers: response.headers,
72
+ response_body: response.body),
73
+ response.reason_phrase
74
+ end
75
+ end
76
+ rescue Faraday::TimeoutError
77
+ fail ApiError.new('Connection timed out')
78
+ rescue Faraday::ConnectionFailed
79
+ fail ApiError.new('Connection failed')
80
+ end
81
+
82
+ if opts[:return_type] == 'File' || opts[:return_type] == 'Binary'
83
+ data = deserialize_file(response, stream)
84
+ elsif opts[:return_type]
85
+ data = deserialize(response, opts[:return_type])
86
+ else
87
+ data = nil
88
+ end
89
+ return data, response.status, response.headers
90
+ end
91
+
92
+ # Builds the HTTP request
93
+ #
94
+ # @param [String] http_method HTTP method/verb (e.g. POST)
95
+ # @param [String] path URL path (e.g. /account/new)
96
+ # @option opts [Hash] :header_params Header parameters
97
+ # @option opts [Hash] :query_params Query parameters
98
+ # @option opts [Hash] :form_params Query parameters
99
+ # @option opts [Object] :body HTTP body (JSON/XML)
100
+ # @return [Faraday::Request] A Faraday Request
101
+ def build_request(http_method, path, request, opts = {})
102
+ url = build_request_url(path, opts)
103
+ http_method = http_method.to_sym.downcase
104
+
105
+ header_params = @default_headers.merge(opts[:header_params] || {})
106
+ query_params = opts[:query_params] || {}
107
+ form_params = opts[:form_params] || {}
108
+
109
+ update_params_for_auth! header_params, query_params, opts[:auth_names]
110
+
111
+ if [:post, :patch, :put, :delete].include?(http_method)
112
+ req_body = build_request_body(header_params, form_params, opts[:body])
113
+ if config.debugging
114
+ config.logger.debug "HTTP request body param ~BEGIN~\n#{req_body}\n~END~\n"
115
+ end
116
+ end
117
+ request.headers = header_params
118
+ request.body = req_body
119
+
120
+ # Overload default options only if provided
121
+ request.options.params_encoder = config.params_encoder if config.params_encoder
122
+ request.options.timeout = config.timeout if config.timeout
123
+
124
+ request.url url
125
+ request.params = query_params
126
+ request
127
+ end
128
+
129
+ # Builds the HTTP request body
130
+ #
131
+ # @param [Hash] header_params Header parameters
132
+ # @param [Hash] form_params Query parameters
133
+ # @param [Object] body HTTP body (JSON/XML)
134
+ # @return [String] HTTP body data in the form of string
135
+ def build_request_body(header_params, form_params, body)
136
+ # http form
137
+ if header_params['Content-Type'] == 'application/x-www-form-urlencoded'
138
+ data = URI.encode_www_form(form_params)
139
+ elsif header_params['Content-Type'] == 'multipart/form-data'
140
+ data = {}
141
+ form_params.each do |key, value|
142
+ case value
143
+ when ::File, ::Tempfile
144
+ data[key] = Faraday::FilePart.new(value.path, Marcel::MimeType.for(Pathname.new(value.path)))
145
+ when ::Array, nil
146
+ # let Faraday handle Array and nil parameters
147
+ data[key] = value
148
+ else
149
+ data[key] = value.to_s
150
+ end
151
+ end
152
+ elsif body
153
+ data = body.is_a?(String) ? body : body.to_json
154
+ else
155
+ data = nil
156
+ end
157
+ data
158
+ end
159
+
160
+ def download_file(request)
161
+ stream = []
162
+
163
+ # handle streaming Responses
164
+ request.options.on_data = Proc.new do |chunk, overall_received_bytes|
165
+ stream << chunk
166
+ end
167
+
168
+ stream
169
+ end
170
+
171
+ def deserialize_file(response, stream)
172
+ body = response.body
173
+ encoding = body.encoding
174
+
175
+ # reconstruct content
176
+ content = stream.join
177
+ content = content.unpack('m').join if response.headers['Content-Transfer-Encoding'] == 'binary'
178
+ content = content.force_encoding(encoding)
179
+
180
+ # return byte stream
181
+ return content if @config.return_binary_data == true
182
+
183
+ # return file instead of binary data
184
+ content_disposition = response.headers['Content-Disposition']
185
+ if content_disposition && content_disposition =~ /filename=/i
186
+ filename = content_disposition[/filename=['"]?([^'"\s]+)['"]?/, 1]
187
+ prefix = sanitize_filename(filename)
188
+ else
189
+ prefix = 'download-'
190
+ end
191
+ prefix = prefix + '-' unless prefix.end_with?('-')
192
+
193
+ tempfile = Tempfile.open(prefix, @config.temp_folder_path, encoding: encoding)
194
+ tempfile.write(content)
195
+ tempfile.close
196
+
197
+ config.logger.info "Temp file written to #{tempfile.path}, please copy the file to a proper folder "\
198
+ "with e.g. `FileUtils.cp(tempfile.path, '/new/file/path')` otherwise the temp file "\
199
+ "will be deleted automatically with GC. It's also recommended to delete the temp file "\
200
+ "explicitly with `tempfile.delete`"
201
+ tempfile
202
+ end
203
+
204
+ def connection(opts)
205
+ opts[:header_params]['Content-Type'] == 'multipart/form-data' ? connection_multipart : connection_regular
206
+ end
207
+
208
+ def connection_multipart
209
+ @connection_multipart ||= build_connection do |conn|
210
+ conn.request :multipart
211
+ conn.request :url_encoded
212
+ end
213
+ end
214
+
215
+ def connection_regular
216
+ @connection_regular ||= build_connection
217
+ end
218
+
219
+ def build_connection
220
+ Faraday.new(url: config.base_url, ssl: ssl_options, proxy: config.proxy) do |conn|
221
+ basic_auth(conn)
222
+ config.configure_middleware(conn)
223
+ yield(conn) if block_given?
224
+ conn.adapter(Faraday.default_adapter)
225
+ config.configure_connection(conn)
226
+ end
227
+ end
228
+
229
+ def ssl_options
230
+ {
231
+ ca_file: config.ssl_ca_file,
232
+ verify: config.ssl_verify,
233
+ verify_mode: config.ssl_verify_mode,
234
+ client_cert: config.ssl_client_cert,
235
+ client_key: config.ssl_client_key
236
+ }
237
+ end
238
+
239
+ def basic_auth(conn)
240
+ if config.username && config.password
241
+ if Gem::Version.new(Faraday::VERSION) >= Gem::Version.new('2.0')
242
+ conn.request(:authorization, :basic, config.username, config.password)
243
+ else
244
+ conn.request(:basic_auth, config.username, config.password)
245
+ end
246
+ end
247
+ end
248
+
249
+ # Check if the given MIME is a JSON MIME.
250
+ # JSON MIME examples:
251
+ # application/json
252
+ # application/json; charset=UTF8
253
+ # APPLICATION/JSON
254
+ # */*
255
+ # @param [String] mime MIME
256
+ # @return [Boolean] True if the MIME is application/json
257
+ def json_mime?(mime)
258
+ (mime == '*/*') || !(mime =~ /^Application\/.*json(?!p)(;.*)?/i).nil?
259
+ end
260
+
261
+ # Deserialize the response to the given return type.
262
+ #
263
+ # @param [Response] response HTTP response
264
+ # @param [String] return_type some examples: "User", "Array<User>", "Hash<String, Integer>"
265
+ def deserialize(response, return_type)
266
+ body = response.body
267
+ return nil if body.nil? || body.empty?
268
+
269
+ # return response body directly for String return type
270
+ return body.to_s if return_type == 'String'
271
+
272
+ # ensuring a default content type
273
+ content_type = response.headers['Content-Type'] || 'application/json'
274
+
275
+ fail "Content-Type is not supported: #{content_type}" unless json_mime?(content_type)
276
+
277
+ begin
278
+ data = JSON.parse("[#{body}]", :symbolize_names => true)[0]
279
+ rescue JSON::ParserError => e
280
+ if %w(String Date Time).include?(return_type)
281
+ data = body
282
+ else
283
+ raise e
284
+ end
285
+ end
286
+
287
+ convert_to_type data, return_type
288
+ end
289
+
290
+ # Convert data to the given return type.
291
+ # @param [Object] data Data to be converted
292
+ # @param [String] return_type Return type
293
+ # @return [Mixed] Data in a particular type
294
+ def convert_to_type(data, return_type)
295
+ return nil if data.nil?
296
+ case return_type
297
+ when 'String'
298
+ data.to_s
299
+ when 'Integer'
300
+ data.to_i
301
+ when 'Float'
302
+ data.to_f
303
+ when 'Boolean'
304
+ data == true
305
+ when 'Time'
306
+ # parse date time (expecting ISO 8601 format)
307
+ Time.parse data
308
+ when 'Date'
309
+ # parse date time (expecting ISO 8601 format)
310
+ Date.parse data
311
+ when 'Object'
312
+ # generic object (usually a Hash), return directly
313
+ data
314
+ when /\AArray<(.+)>\z/
315
+ # e.g. Array<Pet>
316
+ sub_type = $1
317
+ data.map { |item| convert_to_type(item, sub_type) }
318
+ when /\AHash\<String, (.+)\>\z/
319
+ # e.g. Hash<String, Integer>
320
+ sub_type = $1
321
+ {}.tap do |hash|
322
+ data.each { |k, v| hash[k] = convert_to_type(v, sub_type) }
323
+ end
324
+ else
325
+ # models (e.g. Pet) or oneOf/anyOf
326
+ klass = TensorsApi.const_get(return_type)
327
+ if klass.respond_to?(:openapi_one_of) || klass.respond_to?(:openapi_any_of)
328
+ klass.build(data)
329
+ else
330
+ klass.build_from_hash(data)
331
+ end
332
+ end
333
+ end
334
+
335
+ # Sanitize filename by removing path.
336
+ # e.g. ../../sun.gif becomes sun.gif
337
+ #
338
+ # @param [String] filename the filename to be sanitized
339
+ # @return [String] the sanitized filename
340
+ def sanitize_filename(filename)
341
+ filename.split(/[\/\\]/).last
342
+ end
343
+
344
+ def build_request_url(path, opts = {})
345
+ # Add leading and trailing slashes to path
346
+ path = "/#{path}".gsub(/\/+/, '/')
347
+ @config.base_url(opts[:operation]) + path
348
+ end
349
+
350
+ # Update header and query params based on authentication settings.
351
+ #
352
+ # @param [Hash] header_params Header parameters
353
+ # @param [Hash] query_params Query parameters
354
+ # @param [String] auth_names Authentication scheme name
355
+ def update_params_for_auth!(header_params, query_params, auth_names)
356
+ Array(auth_names).each do |auth_name|
357
+ auth_setting = @config.auth_settings[auth_name]
358
+ next unless auth_setting
359
+ case auth_setting[:in]
360
+ when 'header' then header_params[auth_setting[:key]] = auth_setting[:value]
361
+ when 'query' then query_params[auth_setting[:key]] = auth_setting[:value]
362
+ else fail ArgumentError, 'Authentication token must be in `query` or `header`'
363
+ end
364
+ end
365
+ end
366
+
367
+ # Sets user agent in HTTP header
368
+ #
369
+ # @param [String] user_agent User agent (e.g. openapi-generator/ruby/1.0.0)
370
+ def user_agent=(user_agent)
371
+ @user_agent = user_agent
372
+ @default_headers['User-Agent'] = @user_agent
373
+ end
374
+
375
+ # Return Accept header based on an array of accepts provided.
376
+ # @param [Array] accepts array for Accept
377
+ # @return [String] the Accept header (e.g. application/json)
378
+ def select_header_accept(accepts)
379
+ return nil if accepts.nil? || accepts.empty?
380
+ # use JSON when present, otherwise use all of the provided
381
+ json_accept = accepts.find { |s| json_mime?(s) }
382
+ json_accept || accepts.join(',')
383
+ end
384
+
385
+ # Return Content-Type header based on an array of content types provided.
386
+ # @param [Array] content_types array for Content-Type
387
+ # @return [String] the Content-Type header (e.g. application/json)
388
+ def select_header_content_type(content_types)
389
+ # return nil by default
390
+ return if content_types.nil? || content_types.empty?
391
+ # use JSON when present, otherwise use the first one
392
+ json_content_type = content_types.find { |s| json_mime?(s) }
393
+ json_content_type || content_types.first
394
+ end
395
+
396
+ # Convert object (array, hash, object, etc) to JSON string.
397
+ # @param [Object] model object to be converted into JSON string
398
+ # @return [String] JSON string representation of the object
399
+ def object_to_http_body(model)
400
+ return model if model.nil? || model.is_a?(String)
401
+ local_body = nil
402
+ if model.is_a?(Array)
403
+ local_body = model.map { |m| object_to_hash(m) }
404
+ else
405
+ local_body = object_to_hash(model)
406
+ end
407
+ local_body.to_json
408
+ end
409
+
410
+ # Convert object(non-array) to hash.
411
+ # @param [Object] obj object to be converted into JSON string
412
+ # @return [String] JSON string representation of the object
413
+ def object_to_hash(obj)
414
+ if obj.respond_to?(:to_hash)
415
+ obj.to_hash
416
+ else
417
+ obj
418
+ end
419
+ end
420
+
421
+ # Build parameter value according to the given collection format.
422
+ # @param [String] collection_format one of :csv, :ssv, :tsv, :pipes and :multi
423
+ def build_collection_param(param, collection_format)
424
+ case collection_format
425
+ when :csv
426
+ param.join(',')
427
+ when :ssv
428
+ param.join(' ')
429
+ when :tsv
430
+ param.join("\t")
431
+ when :pipes
432
+ param.join('|')
433
+ when :multi
434
+ # return the array directly as typhoeus will handle it as expected
435
+ param
436
+ else
437
+ fail "unknown collection format: #{collection_format.inspect}"
438
+ end
439
+ end
440
+ end
441
+ end
@@ -0,0 +1,58 @@
1
+ =begin
2
+ #tensors
3
+
4
+ #API for CivitAI model management and image gallery
5
+
6
+ The version of the OpenAPI document: 0.1.18
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.21.0
10
+
11
+ =end
12
+
13
+ module TensorsApi
14
+ class ApiError < StandardError
15
+ attr_reader :code, :response_headers, :response_body
16
+
17
+ # Usage examples:
18
+ # ApiError.new
19
+ # ApiError.new("message")
20
+ # ApiError.new(:code => 500, :response_headers => {}, :response_body => "")
21
+ # ApiError.new(:code => 404, :message => "Not Found")
22
+ def initialize(arg = nil)
23
+ if arg.is_a? Hash
24
+ if arg.key?(:message) || arg.key?('message')
25
+ super(arg[:message] || arg['message'])
26
+ else
27
+ super arg
28
+ end
29
+
30
+ arg.each do |k, v|
31
+ instance_variable_set "@#{k}", v
32
+ end
33
+ else
34
+ super arg
35
+ @message = arg
36
+ end
37
+ end
38
+
39
+ # Override to_s to display a friendly error message
40
+ def to_s
41
+ message
42
+ end
43
+
44
+ def message
45
+ if @message.nil?
46
+ msg = "Error message: the server returns an error"
47
+ else
48
+ msg = @message
49
+ end
50
+
51
+ msg += "\nHTTP status code: #{code}" if code
52
+ msg += "\nResponse headers: #{response_headers}" if response_headers
53
+ msg += "\nResponse body: #{response_body}" if response_body
54
+
55
+ msg
56
+ end
57
+ end
58
+ end
@@ -0,0 +1,88 @@
1
+ =begin
2
+ #tensors
3
+
4
+ #API for CivitAI model management and image gallery
5
+
6
+ The version of the OpenAPI document: 0.1.18
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.21.0
10
+
11
+ =end
12
+
13
+ module TensorsApi
14
+ class ApiModelBase
15
+ # Deserializes the data based on type
16
+ # @param string type Data type
17
+ # @param string value Value to be deserialized
18
+ # @return [Object] Deserialized data
19
+ def self._deserialize(type, value)
20
+ case type.to_sym
21
+ when :Time
22
+ Time.parse(value)
23
+ when :Date
24
+ Date.parse(value)
25
+ when :String
26
+ value.to_s
27
+ when :Integer
28
+ value.to_i
29
+ when :Float
30
+ value.to_f
31
+ when :Boolean
32
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
33
+ true
34
+ else
35
+ false
36
+ end
37
+ when :Object
38
+ # generic object (usually a Hash), return directly
39
+ value
40
+ when /\AArray<(?<inner_type>.+)>\z/
41
+ inner_type = Regexp.last_match[:inner_type]
42
+ value.map { |v| _deserialize(inner_type, v) }
43
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
44
+ k_type = Regexp.last_match[:k_type]
45
+ v_type = Regexp.last_match[:v_type]
46
+ {}.tap do |hash|
47
+ value.each do |k, v|
48
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
49
+ end
50
+ end
51
+ else # model
52
+ # models (e.g. Pet) or oneOf
53
+ klass = TensorsApi.const_get(type)
54
+ klass.respond_to?(:openapi_any_of) || klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
55
+ end
56
+ end
57
+
58
+ # Returns the string representation of the object
59
+ # @return [String] String presentation of the object
60
+ def to_s
61
+ to_hash.to_s
62
+ end
63
+
64
+ # to_body is an alias to to_hash (backward compatibility)
65
+ # @return [Hash] Returns the object in the form of hash
66
+ def to_body
67
+ to_hash
68
+ end
69
+
70
+ # Outputs non-array value in the form of hash
71
+ # For object, use to_hash. Otherwise, just return the value
72
+ # @param [Object] value Any valid value
73
+ # @return [Hash] Returns the value in the form of hash
74
+ def _to_hash(value)
75
+ if value.is_a?(Array)
76
+ value.compact.map { |v| _to_hash(v) }
77
+ elsif value.is_a?(Hash)
78
+ {}.tap do |hash|
79
+ value.each { |k, v| hash[k] = _to_hash(v) }
80
+ end
81
+ elsif value.respond_to? :to_hash
82
+ value.to_hash
83
+ else
84
+ value
85
+ end
86
+ end
87
+ end
88
+ end