openapi_iplocation 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 +72 -0
- data/README.md +96 -0
- data/Rakefile +10 -0
- data/bin/bundle +109 -0
- data/bin/byebug +27 -0
- data/bin/coderay +27 -0
- data/bin/htmldiff +27 -0
- data/bin/ldiff +27 -0
- data/bin/pry +27 -0
- data/bin/racc +27 -0
- data/bin/rake +27 -0
- data/bin/rspec +27 -0
- data/bin/rubocop +27 -0
- data/bin/ruby-parse +27 -0
- data/bin/ruby-rewrite +27 -0
- data/docs/DefaultApi.md +78 -0
- data/docs/Get200Response.md +32 -0
- data/docs/Get400Response.md +20 -0
- data/git_push.sh +57 -0
- data/lib/openapi_iplocation/api/default_api.rb +92 -0
- data/lib/openapi_iplocation/api_client.rb +393 -0
- data/lib/openapi_iplocation/api_error.rb +58 -0
- data/lib/openapi_iplocation/configuration.rb +291 -0
- data/lib/openapi_iplocation/models/get200_response.rb +285 -0
- data/lib/openapi_iplocation/models/get400_response.rb +225 -0
- data/lib/openapi_iplocation/version.rb +15 -0
- data/lib/openapi_iplocation.rb +42 -0
- data/openapi_iplocation.gemspec +39 -0
- data/spec/api/default_api_spec.rb +49 -0
- data/spec/models/get200_response_spec.rb +78 -0
- data/spec/models/get400_response_spec.rb +42 -0
- data/spec/spec_helper.rb +111 -0
- metadata +120 -0
@@ -0,0 +1,58 @@
|
|
1
|
+
=begin
|
2
|
+
#iplocation.net API
|
3
|
+
|
4
|
+
#OpenAPI v3 specification and a set of generated API clients for iplocation.net
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 1.0.0
|
7
|
+
Contact: blah+oapicf@cliffano.com
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
Generator version: 7.6.0
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
module OpenApiIplocationClient
|
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,291 @@
|
|
1
|
+
=begin
|
2
|
+
#iplocation.net API
|
3
|
+
|
4
|
+
#OpenAPI v3 specification and a set of generated API clients for iplocation.net
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 1.0.0
|
7
|
+
Contact: blah+oapicf@cliffano.com
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
Generator version: 7.6.0
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
module OpenApiIplocationClient
|
14
|
+
class Configuration
|
15
|
+
# Defines url scheme
|
16
|
+
attr_accessor :scheme
|
17
|
+
|
18
|
+
# Defines url host
|
19
|
+
attr_accessor :host
|
20
|
+
|
21
|
+
# Defines url base path
|
22
|
+
attr_accessor :base_path
|
23
|
+
|
24
|
+
# Define server configuration index
|
25
|
+
attr_accessor :server_index
|
26
|
+
|
27
|
+
# Define server operation configuration index
|
28
|
+
attr_accessor :server_operation_index
|
29
|
+
|
30
|
+
# Default server variables
|
31
|
+
attr_accessor :server_variables
|
32
|
+
|
33
|
+
# Default server operation variables
|
34
|
+
attr_accessor :server_operation_variables
|
35
|
+
|
36
|
+
# Defines API keys used with API Key authentications.
|
37
|
+
#
|
38
|
+
# @return [Hash] key: parameter name, value: parameter value (API key)
|
39
|
+
#
|
40
|
+
# @example parameter name is "api_key", API key is "xxx" (e.g. "api_key=xxx" in query string)
|
41
|
+
# config.api_key['api_key'] = 'xxx'
|
42
|
+
attr_accessor :api_key
|
43
|
+
|
44
|
+
# Defines API key prefixes used with API Key authentications.
|
45
|
+
#
|
46
|
+
# @return [Hash] key: parameter name, value: API key prefix
|
47
|
+
#
|
48
|
+
# @example parameter name is "Authorization", API key prefix is "Token" (e.g. "Authorization: Token xxx" in headers)
|
49
|
+
# config.api_key_prefix['api_key'] = 'Token'
|
50
|
+
attr_accessor :api_key_prefix
|
51
|
+
|
52
|
+
# Defines the username used with HTTP basic authentication.
|
53
|
+
#
|
54
|
+
# @return [String]
|
55
|
+
attr_accessor :username
|
56
|
+
|
57
|
+
# Defines the password used with HTTP basic authentication.
|
58
|
+
#
|
59
|
+
# @return [String]
|
60
|
+
attr_accessor :password
|
61
|
+
|
62
|
+
# Defines the access token (Bearer) used with OAuth2.
|
63
|
+
attr_accessor :access_token
|
64
|
+
|
65
|
+
# Defines a Proc used to fetch or refresh access tokens (Bearer) used with OAuth2.
|
66
|
+
# Overrides the access_token if set
|
67
|
+
# @return [Proc]
|
68
|
+
attr_accessor :access_token_getter
|
69
|
+
|
70
|
+
# Set this to return data as binary instead of downloading a temp file. When enabled (set to true)
|
71
|
+
# HTTP responses with return type `File` will be returned as a stream of binary data.
|
72
|
+
# Default to false.
|
73
|
+
attr_accessor :return_binary_data
|
74
|
+
|
75
|
+
# Set this to enable/disable debugging. When enabled (set to true), HTTP request/response
|
76
|
+
# details will be logged with `logger.debug` (see the `logger` attribute).
|
77
|
+
# Default to false.
|
78
|
+
#
|
79
|
+
# @return [true, false]
|
80
|
+
attr_accessor :debugging
|
81
|
+
|
82
|
+
# Defines the logger used for debugging.
|
83
|
+
# Default to `Rails.logger` (when in Rails) or logging to STDOUT.
|
84
|
+
#
|
85
|
+
# @return [#debug]
|
86
|
+
attr_accessor :logger
|
87
|
+
|
88
|
+
# Defines the temporary folder to store downloaded files
|
89
|
+
# (for API endpoints that have file response).
|
90
|
+
# Default to use `Tempfile`.
|
91
|
+
#
|
92
|
+
# @return [String]
|
93
|
+
attr_accessor :temp_folder_path
|
94
|
+
|
95
|
+
# The time limit for HTTP request in seconds.
|
96
|
+
# Default to 0 (never times out).
|
97
|
+
attr_accessor :timeout
|
98
|
+
|
99
|
+
# Set this to false to skip client side validation in the operation.
|
100
|
+
# Default to true.
|
101
|
+
# @return [true, false]
|
102
|
+
attr_accessor :client_side_validation
|
103
|
+
|
104
|
+
### TLS/SSL setting
|
105
|
+
# Set this to false to skip verifying SSL certificate when calling API from https server.
|
106
|
+
# Default to true.
|
107
|
+
#
|
108
|
+
# @note Do NOT set it to false in production code, otherwise you would face multiple types of cryptographic attacks.
|
109
|
+
#
|
110
|
+
# @return [true, false]
|
111
|
+
attr_accessor :verify_ssl
|
112
|
+
|
113
|
+
### TLS/SSL setting
|
114
|
+
# Set this to false to skip verifying SSL host name
|
115
|
+
# Default to true.
|
116
|
+
#
|
117
|
+
# @note Do NOT set it to false in production code, otherwise you would face multiple types of cryptographic attacks.
|
118
|
+
#
|
119
|
+
# @return [true, false]
|
120
|
+
attr_accessor :verify_ssl_host
|
121
|
+
|
122
|
+
### TLS/SSL setting
|
123
|
+
# Set this to customize the certificate file to verify the peer.
|
124
|
+
#
|
125
|
+
# @return [String] the path to the certificate file
|
126
|
+
#
|
127
|
+
# @see The `cainfo` option of Typhoeus, `--cert` option of libcurl. Related source code:
|
128
|
+
# https://github.com/typhoeus/typhoeus/blob/master/lib/typhoeus/easy_factory.rb#L145
|
129
|
+
attr_accessor :ssl_ca_cert
|
130
|
+
|
131
|
+
### TLS/SSL setting
|
132
|
+
# Client certificate file (for client certificate)
|
133
|
+
attr_accessor :cert_file
|
134
|
+
|
135
|
+
### TLS/SSL setting
|
136
|
+
# Client private key file (for client certificate)
|
137
|
+
attr_accessor :key_file
|
138
|
+
|
139
|
+
# Set this to customize parameters encoding of array parameter with multi collectionFormat.
|
140
|
+
# Default to nil.
|
141
|
+
#
|
142
|
+
# @see The params_encoding option of Ethon. Related source code:
|
143
|
+
# https://github.com/typhoeus/ethon/blob/master/lib/ethon/easy/queryable.rb#L96
|
144
|
+
attr_accessor :params_encoding
|
145
|
+
|
146
|
+
|
147
|
+
attr_accessor :inject_format
|
148
|
+
|
149
|
+
attr_accessor :force_ending_format
|
150
|
+
|
151
|
+
def initialize
|
152
|
+
@scheme = 'https'
|
153
|
+
@host = 'api.iplocation.net'
|
154
|
+
@base_path = ''
|
155
|
+
@server_index = nil
|
156
|
+
@server_operation_index = {}
|
157
|
+
@server_variables = {}
|
158
|
+
@server_operation_variables = {}
|
159
|
+
@api_key = {}
|
160
|
+
@api_key_prefix = {}
|
161
|
+
@client_side_validation = true
|
162
|
+
@verify_ssl = true
|
163
|
+
@verify_ssl_host = true
|
164
|
+
@cert_file = nil
|
165
|
+
@key_file = nil
|
166
|
+
@timeout = 0
|
167
|
+
@params_encoding = nil
|
168
|
+
@debugging = false
|
169
|
+
@inject_format = false
|
170
|
+
@force_ending_format = false
|
171
|
+
@logger = defined?(Rails) ? Rails.logger : Logger.new(STDOUT)
|
172
|
+
|
173
|
+
yield(self) if block_given?
|
174
|
+
end
|
175
|
+
|
176
|
+
# The default Configuration object.
|
177
|
+
def self.default
|
178
|
+
@@default ||= Configuration.new
|
179
|
+
end
|
180
|
+
|
181
|
+
def configure
|
182
|
+
yield(self) if block_given?
|
183
|
+
end
|
184
|
+
|
185
|
+
def scheme=(scheme)
|
186
|
+
# remove :// from scheme
|
187
|
+
@scheme = scheme.sub(/:\/\//, '')
|
188
|
+
end
|
189
|
+
|
190
|
+
def host=(host)
|
191
|
+
# remove http(s):// and anything after a slash
|
192
|
+
@host = host.sub(/https?:\/\//, '').split('/').first
|
193
|
+
end
|
194
|
+
|
195
|
+
def base_path=(base_path)
|
196
|
+
# Add leading and trailing slashes to base_path
|
197
|
+
@base_path = "/#{base_path}".gsub(/\/+/, '/')
|
198
|
+
@base_path = '' if @base_path == '/'
|
199
|
+
end
|
200
|
+
|
201
|
+
# Returns base URL for specified operation based on server settings
|
202
|
+
def base_url(operation = nil)
|
203
|
+
if operation_server_settings.key?(operation) then
|
204
|
+
index = server_operation_index.fetch(operation, server_index)
|
205
|
+
server_url(index.nil? ? 0 : index, server_operation_variables.fetch(operation, server_variables), operation_server_settings[operation])
|
206
|
+
else
|
207
|
+
server_index.nil? ? "#{scheme}://#{[host, base_path].join('/').gsub(/\/+/, '/')}".sub(/\/+\z/, '') : server_url(server_index, server_variables, nil)
|
208
|
+
end
|
209
|
+
end
|
210
|
+
|
211
|
+
# Gets API key (with prefix if set).
|
212
|
+
# @param [String] param_name the parameter name of API key auth
|
213
|
+
def api_key_with_prefix(param_name, param_alias = nil)
|
214
|
+
key = @api_key[param_name]
|
215
|
+
key = @api_key.fetch(param_alias, key) unless param_alias.nil?
|
216
|
+
if @api_key_prefix[param_name]
|
217
|
+
"#{@api_key_prefix[param_name]} #{key}"
|
218
|
+
else
|
219
|
+
key
|
220
|
+
end
|
221
|
+
end
|
222
|
+
|
223
|
+
# Gets access_token using access_token_getter or uses the static access_token
|
224
|
+
def access_token_with_refresh
|
225
|
+
return access_token if access_token_getter.nil?
|
226
|
+
access_token_getter.call
|
227
|
+
end
|
228
|
+
|
229
|
+
# Gets Basic Auth token string
|
230
|
+
def basic_auth_token
|
231
|
+
'Basic ' + ["#{username}:#{password}"].pack('m').delete("\r\n")
|
232
|
+
end
|
233
|
+
|
234
|
+
# Returns Auth Settings hash for api client.
|
235
|
+
def auth_settings
|
236
|
+
{
|
237
|
+
}
|
238
|
+
end
|
239
|
+
|
240
|
+
# Returns an array of Server setting
|
241
|
+
def server_settings
|
242
|
+
[
|
243
|
+
{
|
244
|
+
url: "https://api.iplocation.net",
|
245
|
+
description: "No description provided",
|
246
|
+
}
|
247
|
+
]
|
248
|
+
end
|
249
|
+
|
250
|
+
def operation_server_settings
|
251
|
+
{
|
252
|
+
}
|
253
|
+
end
|
254
|
+
|
255
|
+
# Returns URL based on server settings
|
256
|
+
#
|
257
|
+
# @param index array index of the server settings
|
258
|
+
# @param variables hash of variable and the corresponding value
|
259
|
+
def server_url(index, variables = {}, servers = nil)
|
260
|
+
servers = server_settings if servers == nil
|
261
|
+
|
262
|
+
# check array index out of bound
|
263
|
+
if (index.nil? || index < 0 || index >= servers.size)
|
264
|
+
fail ArgumentError, "Invalid index #{index} when selecting the server. Must not be nil and must be less than #{servers.size}"
|
265
|
+
end
|
266
|
+
|
267
|
+
server = servers[index]
|
268
|
+
url = server[:url]
|
269
|
+
|
270
|
+
return url unless server.key? :variables
|
271
|
+
|
272
|
+
# go through variable and assign a value
|
273
|
+
server[:variables].each do |name, variable|
|
274
|
+
if variables.key?(name)
|
275
|
+
if (!server[:variables][name].key?(:enum_values) || server[:variables][name][:enum_values].include?(variables[name]))
|
276
|
+
url.gsub! "{" + name.to_s + "}", variables[name]
|
277
|
+
else
|
278
|
+
fail ArgumentError, "The variable `#{name}` in the server URL has invalid value #{variables[name]}. Must be #{server[:variables][name][:enum_values]}."
|
279
|
+
end
|
280
|
+
else
|
281
|
+
# use default value
|
282
|
+
url.gsub! "{" + name.to_s + "}", server[:variables][name][:default_value]
|
283
|
+
end
|
284
|
+
end
|
285
|
+
|
286
|
+
url
|
287
|
+
end
|
288
|
+
|
289
|
+
|
290
|
+
end
|
291
|
+
end
|
@@ -0,0 +1,285 @@
|
|
1
|
+
=begin
|
2
|
+
#iplocation.net API
|
3
|
+
|
4
|
+
#OpenAPI v3 specification and a set of generated API clients for iplocation.net
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 1.0.0
|
7
|
+
Contact: blah+oapicf@cliffano.com
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
Generator version: 7.6.0
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'date'
|
14
|
+
require 'time'
|
15
|
+
|
16
|
+
module OpenApiIplocationClient
|
17
|
+
class Get200Response
|
18
|
+
# IPv4 or IPv6 address used to lookup geolocation.
|
19
|
+
attr_accessor :ip
|
20
|
+
|
21
|
+
# IP number in long integer (represented as string).
|
22
|
+
attr_accessor :ip_number
|
23
|
+
|
24
|
+
# IP version either 4 or 6.
|
25
|
+
attr_accessor :ip_version
|
26
|
+
|
27
|
+
# Full name of the IP country.
|
28
|
+
attr_accessor :country_name
|
29
|
+
|
30
|
+
# ISO ALPHA-2 Country Code.
|
31
|
+
attr_accessor :country_code2
|
32
|
+
|
33
|
+
# Internet Service Provider (ISP) who owns the IP address.
|
34
|
+
attr_accessor :isp
|
35
|
+
|
36
|
+
# Response status code to indicate success or failed completion of the API call.
|
37
|
+
attr_accessor :response_code
|
38
|
+
|
39
|
+
# Response message to indicate success or failed completion of the API call.
|
40
|
+
attr_accessor :response_message
|
41
|
+
|
42
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
43
|
+
def self.attribute_map
|
44
|
+
{
|
45
|
+
:'ip' => :'ip',
|
46
|
+
:'ip_number' => :'ip_number',
|
47
|
+
:'ip_version' => :'ip_version',
|
48
|
+
:'country_name' => :'country_name',
|
49
|
+
:'country_code2' => :'country_code2',
|
50
|
+
:'isp' => :'isp',
|
51
|
+
:'response_code' => :'response_code',
|
52
|
+
:'response_message' => :'response_message'
|
53
|
+
}
|
54
|
+
end
|
55
|
+
|
56
|
+
# Returns all the JSON keys this model knows about
|
57
|
+
def self.acceptable_attributes
|
58
|
+
attribute_map.values
|
59
|
+
end
|
60
|
+
|
61
|
+
# Attribute type mapping.
|
62
|
+
def self.openapi_types
|
63
|
+
{
|
64
|
+
:'ip' => :'String',
|
65
|
+
:'ip_number' => :'String',
|
66
|
+
:'ip_version' => :'Integer',
|
67
|
+
:'country_name' => :'String',
|
68
|
+
:'country_code2' => :'String',
|
69
|
+
:'isp' => :'String',
|
70
|
+
:'response_code' => :'String',
|
71
|
+
:'response_message' => :'String'
|
72
|
+
}
|
73
|
+
end
|
74
|
+
|
75
|
+
# List of attributes with nullable: true
|
76
|
+
def self.openapi_nullable
|
77
|
+
Set.new([
|
78
|
+
])
|
79
|
+
end
|
80
|
+
|
81
|
+
# Initializes the object
|
82
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
83
|
+
def initialize(attributes = {})
|
84
|
+
if (!attributes.is_a?(Hash))
|
85
|
+
fail ArgumentError, "The input argument (attributes) must be a hash in `OpenApiIplocationClient::Get200Response` initialize method"
|
86
|
+
end
|
87
|
+
|
88
|
+
# check to see if the attribute exists and convert string to symbol for hash key
|
89
|
+
attributes = attributes.each_with_object({}) { |(k, v), h|
|
90
|
+
if (!self.class.attribute_map.key?(k.to_sym))
|
91
|
+
fail ArgumentError, "`#{k}` is not a valid attribute in `OpenApiIplocationClient::Get200Response`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
|
92
|
+
end
|
93
|
+
h[k.to_sym] = v
|
94
|
+
}
|
95
|
+
|
96
|
+
if attributes.key?(:'ip')
|
97
|
+
self.ip = attributes[:'ip']
|
98
|
+
end
|
99
|
+
|
100
|
+
if attributes.key?(:'ip_number')
|
101
|
+
self.ip_number = attributes[:'ip_number']
|
102
|
+
end
|
103
|
+
|
104
|
+
if attributes.key?(:'ip_version')
|
105
|
+
self.ip_version = attributes[:'ip_version']
|
106
|
+
end
|
107
|
+
|
108
|
+
if attributes.key?(:'country_name')
|
109
|
+
self.country_name = attributes[:'country_name']
|
110
|
+
end
|
111
|
+
|
112
|
+
if attributes.key?(:'country_code2')
|
113
|
+
self.country_code2 = attributes[:'country_code2']
|
114
|
+
end
|
115
|
+
|
116
|
+
if attributes.key?(:'isp')
|
117
|
+
self.isp = attributes[:'isp']
|
118
|
+
end
|
119
|
+
|
120
|
+
if attributes.key?(:'response_code')
|
121
|
+
self.response_code = attributes[:'response_code']
|
122
|
+
end
|
123
|
+
|
124
|
+
if attributes.key?(:'response_message')
|
125
|
+
self.response_message = attributes[:'response_message']
|
126
|
+
end
|
127
|
+
end
|
128
|
+
|
129
|
+
# Show invalid properties with the reasons. Usually used together with valid?
|
130
|
+
# @return Array for valid properties with the reasons
|
131
|
+
def list_invalid_properties
|
132
|
+
warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
|
133
|
+
invalid_properties = Array.new
|
134
|
+
invalid_properties
|
135
|
+
end
|
136
|
+
|
137
|
+
# Check to see if the all the properties in the model are valid
|
138
|
+
# @return true if the model is valid
|
139
|
+
def valid?
|
140
|
+
warn '[DEPRECATED] the `valid?` method is obsolete'
|
141
|
+
true
|
142
|
+
end
|
143
|
+
|
144
|
+
# Checks equality by comparing each attribute.
|
145
|
+
# @param [Object] Object to be compared
|
146
|
+
def ==(o)
|
147
|
+
return true if self.equal?(o)
|
148
|
+
self.class == o.class &&
|
149
|
+
ip == o.ip &&
|
150
|
+
ip_number == o.ip_number &&
|
151
|
+
ip_version == o.ip_version &&
|
152
|
+
country_name == o.country_name &&
|
153
|
+
country_code2 == o.country_code2 &&
|
154
|
+
isp == o.isp &&
|
155
|
+
response_code == o.response_code &&
|
156
|
+
response_message == o.response_message
|
157
|
+
end
|
158
|
+
|
159
|
+
# @see the `==` method
|
160
|
+
# @param [Object] Object to be compared
|
161
|
+
def eql?(o)
|
162
|
+
self == o
|
163
|
+
end
|
164
|
+
|
165
|
+
# Calculates hash code according to all attributes.
|
166
|
+
# @return [Integer] Hash code
|
167
|
+
def hash
|
168
|
+
[ip, ip_number, ip_version, country_name, country_code2, isp, response_code, response_message].hash
|
169
|
+
end
|
170
|
+
|
171
|
+
# Builds the object from hash
|
172
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
173
|
+
# @return [Object] Returns the model itself
|
174
|
+
def self.build_from_hash(attributes)
|
175
|
+
return nil unless attributes.is_a?(Hash)
|
176
|
+
attributes = attributes.transform_keys(&:to_sym)
|
177
|
+
transformed_hash = {}
|
178
|
+
openapi_types.each_pair do |key, type|
|
179
|
+
if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
|
180
|
+
transformed_hash["#{key}"] = nil
|
181
|
+
elsif type =~ /\AArray<(.*)>/i
|
182
|
+
# check to ensure the input is an array given that the attribute
|
183
|
+
# is documented as an array but the input is not
|
184
|
+
if attributes[attribute_map[key]].is_a?(Array)
|
185
|
+
transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) }
|
186
|
+
end
|
187
|
+
elsif !attributes[attribute_map[key]].nil?
|
188
|
+
transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]])
|
189
|
+
end
|
190
|
+
end
|
191
|
+
new(transformed_hash)
|
192
|
+
end
|
193
|
+
|
194
|
+
# Deserializes the data based on type
|
195
|
+
# @param string type Data type
|
196
|
+
# @param string value Value to be deserialized
|
197
|
+
# @return [Object] Deserialized data
|
198
|
+
def self._deserialize(type, value)
|
199
|
+
case type.to_sym
|
200
|
+
when :Time
|
201
|
+
Time.parse(value)
|
202
|
+
when :Date
|
203
|
+
Date.parse(value)
|
204
|
+
when :String
|
205
|
+
value.to_s
|
206
|
+
when :Integer
|
207
|
+
value.to_i
|
208
|
+
when :Float
|
209
|
+
value.to_f
|
210
|
+
when :Boolean
|
211
|
+
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
212
|
+
true
|
213
|
+
else
|
214
|
+
false
|
215
|
+
end
|
216
|
+
when :Object
|
217
|
+
# generic object (usually a Hash), return directly
|
218
|
+
value
|
219
|
+
when /\AArray<(?<inner_type>.+)>\z/
|
220
|
+
inner_type = Regexp.last_match[:inner_type]
|
221
|
+
value.map { |v| _deserialize(inner_type, v) }
|
222
|
+
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
223
|
+
k_type = Regexp.last_match[:k_type]
|
224
|
+
v_type = Regexp.last_match[:v_type]
|
225
|
+
{}.tap do |hash|
|
226
|
+
value.each do |k, v|
|
227
|
+
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
228
|
+
end
|
229
|
+
end
|
230
|
+
else # model
|
231
|
+
# models (e.g. Pet) or oneOf
|
232
|
+
klass = OpenApiIplocationClient.const_get(type)
|
233
|
+
klass.respond_to?(:openapi_any_of) || klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
|
234
|
+
end
|
235
|
+
end
|
236
|
+
|
237
|
+
# Returns the string representation of the object
|
238
|
+
# @return [String] String presentation of the object
|
239
|
+
def to_s
|
240
|
+
to_hash.to_s
|
241
|
+
end
|
242
|
+
|
243
|
+
# to_body is an alias to to_hash (backward compatibility)
|
244
|
+
# @return [Hash] Returns the object in the form of hash
|
245
|
+
def to_body
|
246
|
+
to_hash
|
247
|
+
end
|
248
|
+
|
249
|
+
# Returns the object in the form of hash
|
250
|
+
# @return [Hash] Returns the object in the form of hash
|
251
|
+
def to_hash
|
252
|
+
hash = {}
|
253
|
+
self.class.attribute_map.each_pair do |attr, param|
|
254
|
+
value = self.send(attr)
|
255
|
+
if value.nil?
|
256
|
+
is_nullable = self.class.openapi_nullable.include?(attr)
|
257
|
+
next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
|
258
|
+
end
|
259
|
+
|
260
|
+
hash[param] = _to_hash(value)
|
261
|
+
end
|
262
|
+
hash
|
263
|
+
end
|
264
|
+
|
265
|
+
# Outputs non-array value in the form of hash
|
266
|
+
# For object, use to_hash. Otherwise, just return the value
|
267
|
+
# @param [Object] value Any valid value
|
268
|
+
# @return [Hash] Returns the value in the form of hash
|
269
|
+
def _to_hash(value)
|
270
|
+
if value.is_a?(Array)
|
271
|
+
value.compact.map { |v| _to_hash(v) }
|
272
|
+
elsif value.is_a?(Hash)
|
273
|
+
{}.tap do |hash|
|
274
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
275
|
+
end
|
276
|
+
elsif value.respond_to? :to_hash
|
277
|
+
value.to_hash
|
278
|
+
else
|
279
|
+
value
|
280
|
+
end
|
281
|
+
end
|
282
|
+
|
283
|
+
end
|
284
|
+
|
285
|
+
end
|