stage-ruby 0.0.02

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 (40) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +9 -0
  3. data/Gemfile.lock +73 -0
  4. data/README.md +143 -0
  5. data/Rakefile +8 -0
  6. data/docs/AccessFeatureForm.md +8 -0
  7. data/docs/AccessForm.md +9 -0
  8. data/docs/ClientUserForm.md +7 -0
  9. data/docs/ClientUserObjectForm.md +13 -0
  10. data/docs/Field.md +8 -0
  11. data/docs/StageApi.md +167 -0
  12. data/docs/StageError.md +11 -0
  13. data/example.rb +41 -0
  14. data/git_push.sh +55 -0
  15. data/lib/stage-ruby/api/stage_api.rb +232 -0
  16. data/lib/stage-ruby/api_client.rb +388 -0
  17. data/lib/stage-ruby/api_error.rb +57 -0
  18. data/lib/stage-ruby/configuration.rb +205 -0
  19. data/lib/stage-ruby/models/access_feature_form.rb +227 -0
  20. data/lib/stage-ruby/models/access_form.rb +246 -0
  21. data/lib/stage-ruby/models/client_user_form.rb +209 -0
  22. data/lib/stage-ruby/models/client_user_object_form.rb +267 -0
  23. data/lib/stage-ruby/models/field.rb +217 -0
  24. data/lib/stage-ruby/models/stage_error.rb +245 -0
  25. data/lib/stage-ruby/utils.rb +13 -0
  26. data/lib/stage-ruby/version.rb +14 -0
  27. data/lib/stage-ruby.rb +45 -0
  28. data/spec/api/stage_api_spec.rb +69 -0
  29. data/spec/api_client_spec.rb +225 -0
  30. data/spec/base_object_spec.rb +109 -0
  31. data/spec/configuration_spec.rb +41 -0
  32. data/spec/models/access_feature_form_spec.rb +46 -0
  33. data/spec/models/access_form_spec.rb +52 -0
  34. data/spec/models/client_user_form_spec.rb +40 -0
  35. data/spec/models/client_user_object_form_spec.rb +76 -0
  36. data/spec/models/field_spec.rb +46 -0
  37. data/spec/models/stage_error_spec.rb +64 -0
  38. data/spec/spec_helper.rb +110 -0
  39. data/stage-ruby.gemspec +38 -0
  40. metadata +152 -0
@@ -0,0 +1,232 @@
1
+ =begin
2
+ #Stage API Docs
3
+
4
+ #Stage Technologies complete API Documentation
5
+
6
+ OpenAPI spec version: 1.0.0
7
+ Contact: support@heystage.com
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 3.0.33
10
+ =end
11
+
12
+ require_relative '../utils'
13
+
14
+ module Stage
15
+ class StageApi
16
+ attr_accessor :api_client
17
+
18
+ def initialize(api_client = ApiClient.default)
19
+ @api_client = api_client
20
+ end
21
+
22
+ # Creates a user and assigning it to a pre-defined role.
23
+ # @param user_identifier The identifier of the user.
24
+ # @param plan_identifier The plan identifier.
25
+ # @return [ClientUserForm]
26
+ def create_user(user_identifier, plan_identifier)
27
+ body = Stage::ClientUserForm.new({
28
+ client_users: [
29
+ Stage::ClientUserObjectForm.new({
30
+ identifier: user_identifier,
31
+ plan_identifier: plan_identifier
32
+ })
33
+ ]
34
+ })
35
+ data, _status_code, _headers = create_user_with_http_info(body, {})
36
+ data
37
+ end
38
+
39
+ # Creates a user and assigning it to a pre-defined role.
40
+ # @param body The payload containing the information to create a user.
41
+ # @param [Hash] opts the optional parameters
42
+ # @return [Array<(ClientUserForm, Integer, Hash)>] ClientUserForm data, response status code and response headers
43
+ def create_user_with_http_info(body, opts = {})
44
+ if @api_client.config.debugging
45
+ @api_client.config.logger.debug 'Calling API: StageApi.create_user ...'
46
+ end
47
+ # verify the required parameter 'body' is set
48
+ if @api_client.config.client_side_validation && body.nil?
49
+ fail ArgumentError, "Missing the required parameter 'body' when calling StageApi.create_user"
50
+ end
51
+ # resource path
52
+ local_var_path = CREATE_USER_PATH
53
+
54
+ # query parameters
55
+ query_params = opts[:query_params] || {}
56
+
57
+ # header parameters
58
+ header_params = opts[:header_params] || {}
59
+ # HTTP header 'Accept' (if needed)
60
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
61
+ # HTTP header 'Content-Type'
62
+ header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
63
+
64
+ # form parameters
65
+ form_params = opts[:form_params] || {}
66
+
67
+ # http body (model)
68
+ post_body = opts[:body] || @api_client.object_to_http_body(body)
69
+
70
+ return_type = opts[:return_type] || 'ClientUserForm'
71
+
72
+ auth_names = opts[:auth_names] || ['stage-api-token']
73
+ data, status_code, headers = @api_client.call_api(:POST, local_var_path,
74
+ :header_params => header_params,
75
+ :query_params => query_params,
76
+ :form_params => form_params,
77
+ :body => post_body,
78
+ :auth_names => auth_names,
79
+ :return_type => return_type)
80
+
81
+ if @api_client.config.debugging
82
+ @api_client.config.logger.debug "API called: StageApi#create_user\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
83
+ end
84
+ return data, status_code, headers
85
+ end
86
+
87
+ # Checks if a user has access to the identified feature.
88
+ # @param user_identifier The identifier of the user who is accessing the feature.
89
+ # @param feature_identifiers identifiers
90
+ # @return [AccessForm]
91
+ def has_access_verbose(user_identifier, feature_identifiers)
92
+ data, _status_code, _headers = has_access_with_http_info(user_identifier, feature_identifiers, {})
93
+ data
94
+ end
95
+
96
+ def has_access(user_identifier, feature_identifier)
97
+ has_access_to_all(user_identifier, [feature_identifier])
98
+ end
99
+
100
+ def has_access_to_any(user_identifier, feature_identifiers)
101
+ data, _status_code, _headers = has_access_with_http_info(user_identifier, feature_identifiers, {})
102
+ data.features.map { |feature| feature[:hasAccess] }.any?
103
+ end
104
+
105
+ def has_access_to_all(user_identifier, feature_identifiers)
106
+ data, _status_code, _headers = has_access_with_http_info(user_identifier, feature_identifiers, {})
107
+ data.features.map { |feature| feature[:hasAccess] }.all?
108
+ end
109
+
110
+ # Checks if a user has access to the identified feature.
111
+ # @param feature_identifiers identifiers
112
+ # @param user_identifier The identifier of the user who is accessing the feature.
113
+ # @param [Hash] opts the optional parameters
114
+ # @return [Array<(AccessForm, Integer, Hash)>] AccessForm data, response status code and response headers
115
+ def has_access_with_http_info(user_identifier, feature_identifiers, opts = {})
116
+ if @api_client.config.debugging
117
+ @api_client.config.logger.debug 'Calling API: StageApi.has_access ...'
118
+ end
119
+ # verify the required parameter 'feature_identifiers' is set
120
+ if @api_client.config.client_side_validation && feature_identifiers.nil?
121
+ fail ArgumentError, "Missing the required parameter 'feature_identifiers' when calling StageApi.has_access"
122
+ end
123
+ # verify the required parameter 'user_identifier' is set
124
+ if @api_client.config.client_side_validation && user_identifier.nil?
125
+ fail ArgumentError, "Missing the required parameter 'user_identifier' when calling StageApi.has_access"
126
+ end
127
+ # resource path
128
+ local_var_path = has_access_path(user_identifier)
129
+
130
+ # query parameters
131
+ query_params = opts[:query_params] || {}
132
+ query_params[:'identifiers'] = @api_client.build_collection_param(feature_identifiers, :csv)
133
+
134
+ # header parameters
135
+ header_params = opts[:header_params] || {}
136
+ # HTTP header 'Accept' (if needed)
137
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
138
+
139
+ # form parameters
140
+ form_params = opts[:form_params] || {}
141
+
142
+ # http body (model)
143
+ post_body = opts[:body]
144
+
145
+ return_type = opts[:return_type] || 'AccessForm'
146
+
147
+ auth_names = opts[:auth_names] || ['stage-api-token']
148
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path,
149
+ :header_params => header_params,
150
+ :query_params => query_params,
151
+ :form_params => form_params,
152
+ :body => post_body,
153
+ :auth_names => auth_names,
154
+ :return_type => return_type)
155
+
156
+ if @api_client.config.debugging
157
+ @api_client.config.logger.debug "API called: StageApi#has_access\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
158
+ end
159
+ return data, status_code, headers
160
+ end
161
+
162
+ # Updates a user's plan..
163
+ # @param user_identifier The identifier of the user.
164
+ # @param plan_identifier The plan identifier.
165
+ # @return [ClientUserForm]
166
+ def update_user_plan(user_identifier, plan_identifier)
167
+ body = Stage::ClientUserForm.new({
168
+ client_users: [
169
+ Stage::ClientUserObjectForm.new({
170
+ identifier: user_identifier,
171
+ plan_identifier: plan_identifier
172
+ })
173
+ ]
174
+ })
175
+ data, _status_code, _headers = update_user_plan_with_http_info(user_identifier, body, {})
176
+ data
177
+ end
178
+
179
+ # Updates a user&#x27;s plan..
180
+ # @param user_identifier The identifier of the user.
181
+ # @param body The payload containing the information to update a user&#x27;s plan. Only identifier and planIdentifier fields are required.
182
+ # @param [Hash] opts the optional parameters
183
+ # @return [Array<(ClientUserForm, Integer, Hash)>] ClientUserForm data, response status code and response headers
184
+ def update_user_plan_with_http_info(user_identifier, body, opts = {})
185
+ if @api_client.config.debugging
186
+ @api_client.config.logger.debug 'Calling API: StageApi.update_user_plan ...'
187
+ end
188
+ # verify the required parameter 'body' is set
189
+ if @api_client.config.client_side_validation && body.nil?
190
+ fail ArgumentError, "Missing the required parameter 'body' when calling StageApi.update_user_plan"
191
+ end
192
+ # verify the required parameter 'user_identifier' is set
193
+ if @api_client.config.client_side_validation && user_identifier.nil?
194
+ fail ArgumentError, "Missing the required parameter 'user_identifier' when calling StageApi.update_user_plan"
195
+ end
196
+ # resource path
197
+ local_var_path = update_user_plan_path(user_identifier)
198
+
199
+ # query parameters
200
+ query_params = opts[:query_params] || {}
201
+
202
+ # header parameters
203
+ header_params = opts[:header_params] || {}
204
+ # HTTP header 'Accept' (if needed)
205
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
206
+ # HTTP header 'Content-Type'
207
+ header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
208
+
209
+ # form parameters
210
+ form_params = opts[:form_params] || {}
211
+
212
+ # http body (model)
213
+ post_body = opts[:body] || @api_client.object_to_http_body(body)
214
+
215
+ return_type = opts[:return_type] || 'ClientUserForm'
216
+
217
+ auth_names = opts[:auth_names] || ['stage-api-token']
218
+ data, status_code, headers = @api_client.call_api(:PUT, local_var_path,
219
+ :header_params => header_params,
220
+ :query_params => query_params,
221
+ :form_params => form_params,
222
+ :body => post_body,
223
+ :auth_names => auth_names,
224
+ :return_type => return_type)
225
+
226
+ if @api_client.config.debugging
227
+ @api_client.config.logger.debug "API called: StageApi#update_user_plan\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
228
+ end
229
+ return data, status_code, headers
230
+ end
231
+ end
232
+ end
@@ -0,0 +1,388 @@
1
+ =begin
2
+ #Stage API Docs
3
+
4
+ #Stage Technologies complete API Documentation
5
+
6
+ OpenAPI spec version: 1.0.0
7
+ Contact: support@heystage.com
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 3.0.33
10
+ =end
11
+
12
+ require 'date'
13
+ require 'json'
14
+ require 'logger'
15
+ require 'tempfile'
16
+ require 'typhoeus'
17
+ require 'uri'
18
+
19
+ module Stage
20
+ class ApiClient
21
+ # The Configuration object holding settings to be used in the API client.
22
+ attr_accessor :config
23
+
24
+ # Defines the headers to be used in HTTP requests of all API calls by default.
25
+ #
26
+ # @return [Hash]
27
+ attr_accessor :default_headers
28
+
29
+ # Initializes the ApiClient
30
+ # @option config [Configuration] Configuration for initializing the object, default to Configuration.default
31
+ def initialize(config = Configuration.default)
32
+ @config = config
33
+ @user_agent = "Swagger-Codegen/#{VERSION}/ruby"
34
+ @default_headers = {
35
+ 'Content-Type' => 'application/json',
36
+ 'User-Agent' => @user_agent
37
+ }
38
+ end
39
+
40
+ def self.default
41
+ @@default ||= ApiClient.new
42
+ end
43
+
44
+ # Call an API with given options.
45
+ #
46
+ # @return [Array<(Object, Integer, Hash)>] an array of 3 elements:
47
+ # the data deserialized from response body (could be nil), response status code and response headers.
48
+ def call_api(http_method, path, opts = {})
49
+ request = build_request(http_method, path, opts)
50
+ response = request.run
51
+
52
+ if @config.debugging
53
+ @config.logger.debug "HTTP response body ~BEGIN~\n#{response.body}\n~END~\n"
54
+ end
55
+
56
+ unless response.success?
57
+ if response.timed_out?
58
+ fail ApiError.new('Connection timed out')
59
+ elsif response.code == 0
60
+ # Errors from libcurl will be made visible here
61
+ fail ApiError.new(:code => 0,
62
+ :message => response.return_message)
63
+ else
64
+ fail ApiError.new(:code => response.code,
65
+ :response_headers => response.headers,
66
+ :response_body => response.body),
67
+ response.status_message
68
+ end
69
+ end
70
+
71
+ if opts[:return_type]
72
+ data = deserialize(response, opts[:return_type])
73
+ else
74
+ data = nil
75
+ end
76
+ return data, response.code, response.headers
77
+ end
78
+
79
+ # Builds the HTTP request
80
+ #
81
+ # @param [String] http_method HTTP method/verb (e.g. POST)
82
+ # @param [String] path URL path (e.g. /account/new)
83
+ # @option opts [Hash] :header_params Header parameters
84
+ # @option opts [Hash] :query_params Query parameters
85
+ # @option opts [Hash] :form_params Query parameters
86
+ # @option opts [Object] :body HTTP body (JSON/XML)
87
+ # @return [Typhoeus::Request] A Typhoeus Request
88
+ def build_request(http_method, path, opts = {})
89
+ url = build_request_url(path)
90
+ http_method = http_method.to_sym.downcase
91
+
92
+ header_params = @default_headers.merge(opts[:header_params] || {})
93
+ query_params = opts[:query_params] || {}
94
+ form_params = opts[:form_params] || {}
95
+
96
+ update_params_for_auth! header_params, query_params, opts[:auth_names]
97
+
98
+ # set ssl_verifyhosts option based on @config.verify_ssl_host (true/false)
99
+ _verify_ssl_host = @config.verify_ssl_host ? 2 : 0
100
+
101
+ req_opts = {
102
+ :method => http_method,
103
+ :headers => header_params,
104
+ :params => query_params,
105
+ :params_encoding => @config.params_encoding,
106
+ :timeout => @config.timeout,
107
+ :ssl_verifypeer => @config.verify_ssl,
108
+ :ssl_verifyhost => _verify_ssl_host,
109
+ :sslcert => @config.cert_file,
110
+ :sslkey => @config.key_file,
111
+ :verbose => @config.debugging
112
+ }
113
+
114
+ # set custom cert, if provided
115
+ req_opts[:cainfo] = @config.ssl_ca_cert if @config.ssl_ca_cert
116
+
117
+ if [:post, :patch, :put, :delete].include?(http_method)
118
+ req_body = build_request_body(header_params, form_params, opts[:body])
119
+ req_opts.update :body => req_body
120
+ if @config.debugging
121
+ @config.logger.debug "HTTP request body param ~BEGIN~\n#{req_body}\n~END~\n"
122
+ end
123
+ end
124
+
125
+ request = Typhoeus::Request.new(url, req_opts)
126
+ download_file(request) if opts[:return_type] == 'File'
127
+ request
128
+ end
129
+
130
+ # Builds the HTTP request body
131
+ #
132
+ # @param [Hash] header_params Header parameters
133
+ # @param [Hash] form_params Query parameters
134
+ # @param [Object] body HTTP body (JSON/XML)
135
+ # @return [String] HTTP body data in the form of string
136
+ def build_request_body(header_params, form_params, body)
137
+ # http form
138
+ if header_params['Content-Type'] == 'application/x-www-form-urlencoded' ||
139
+ header_params['Content-Type'] == 'multipart/form-data'
140
+ data = {}
141
+ form_params.each do |key, value|
142
+ case value
143
+ when ::File, ::Array, nil
144
+ # let typhoeus handle File, Array and nil parameters
145
+ data[key] = value
146
+ else
147
+ data[key] = value.to_s
148
+ end
149
+ end
150
+ elsif body
151
+ data = body.is_a?(String) ? body : body.to_json
152
+ else
153
+ data = nil
154
+ end
155
+ data
156
+ end
157
+
158
+ # Check if the given MIME is a JSON MIME.
159
+ # JSON MIME examples:
160
+ # application/json
161
+ # application/json; charset=UTF8
162
+ # APPLICATION/JSON
163
+ # */*
164
+ # @param [String] mime MIME
165
+ # @return [Boolean] True if the MIME is application/json
166
+ def json_mime?(mime)
167
+ (mime == '*/*') || !(mime =~ /Application\/.*json(?!p)(;.*)?/i).nil?
168
+ end
169
+
170
+ # Deserialize the response to the given return type.
171
+ #
172
+ # @param [Response] response HTTP response
173
+ # @param [String] return_type some examples: "User", "Array<User>", "Hash<String, Integer>"
174
+ def deserialize(response, return_type)
175
+ body = response.body
176
+
177
+ # handle file downloading - return the File instance processed in request callbacks
178
+ # note that response body is empty when the file is written in chunks in request on_body callback
179
+ return @tempfile if return_type == 'File'
180
+
181
+ return nil if body.nil? || body.empty?
182
+
183
+ # return response body directly for String return type
184
+ return body if return_type == 'String'
185
+
186
+ # ensuring a default content type
187
+ content_type = response.headers['Content-Type'] || 'application/json'
188
+
189
+ fail "Content-Type is not supported: #{content_type}" unless json_mime?(content_type)
190
+
191
+ begin
192
+ data = JSON.parse("[#{body}]", :symbolize_names => true)[0]
193
+ rescue JSON::ParserError => e
194
+ if %w(String Date DateTime).include?(return_type)
195
+ data = body
196
+ else
197
+ raise e
198
+ end
199
+ end
200
+
201
+ convert_to_type data, return_type
202
+ end
203
+
204
+ # Convert data to the given return type.
205
+ # @param [Object] data Data to be converted
206
+ # @param [String] return_type Return type
207
+ # @return [Mixed] Data in a particular type
208
+ def convert_to_type(data, return_type)
209
+ return nil if data.nil?
210
+ case return_type
211
+ when 'String'
212
+ data.to_s
213
+ when 'Integer'
214
+ data.to_i
215
+ when 'Float'
216
+ data.to_f
217
+ when 'Boolean'
218
+ data == true
219
+ when 'DateTime'
220
+ # parse date time (expecting ISO 8601 format)
221
+ DateTime.parse data
222
+ when 'Date'
223
+ # parse date time (expecting ISO 8601 format)
224
+ Date.parse data
225
+ when 'Object'
226
+ # generic object (usually a Hash), return directly
227
+ data
228
+ when /\AArray<(.+)>\z/
229
+ # e.g. Array<Pet>
230
+ sub_type = $1
231
+ data.map { |item| convert_to_type(item, sub_type) }
232
+ when /\AHash\<String, (.+)\>\z/
233
+ # e.g. Hash<String, Integer>
234
+ sub_type = $1
235
+ {}.tap do |hash|
236
+ data.each { |k, v| hash[k] = convert_to_type(v, sub_type) }
237
+ end
238
+ else
239
+ # models, e.g. Pet
240
+ Stage.const_get(return_type).build_from_hash(data)
241
+ end
242
+ end
243
+
244
+ # Save response body into a file in (the defined) temporary folder, using the filename
245
+ # from the "Content-Disposition" header if provided, otherwise a random filename.
246
+ # The response body is written to the file in chunks in order to handle files which
247
+ # size is larger than maximum Ruby String or even larger than the maximum memory a Ruby
248
+ # process can use.
249
+ #
250
+ # @see Configuration#temp_folder_path
251
+ def download_file(request)
252
+ tempfile = nil
253
+ encoding = nil
254
+ request.on_headers do |response|
255
+ content_disposition = response.headers['Content-Disposition']
256
+ if content_disposition && content_disposition =~ /filename=/i
257
+ filename = content_disposition[/filename=['"]?([^'"\s]+)['"]?/, 1]
258
+ prefix = sanitize_filename(filename)
259
+ else
260
+ prefix = 'download-'
261
+ end
262
+ prefix = prefix + '-' unless prefix.end_with?('-')
263
+ encoding = response.body.encoding
264
+ tempfile = Tempfile.open(prefix, @config.temp_folder_path, encoding: encoding)
265
+ @tempfile = tempfile
266
+ end
267
+ request.on_body do |chunk|
268
+ chunk.force_encoding(encoding)
269
+ tempfile.write(chunk)
270
+ end
271
+ request.on_complete do |response|
272
+ if tempfile
273
+ tempfile.close
274
+ @config.logger.info "Temp file written to #{tempfile.path}, please copy the file to a proper folder "\
275
+ "with e.g. `FileUtils.cp(tempfile.path, '/new/file/path')` otherwise the temp file "\
276
+ "will be deleted automatically with GC. It's also recommended to delete the temp file "\
277
+ "explicitly with `tempfile.delete`"
278
+ end
279
+ end
280
+ end
281
+
282
+ # Sanitize filename by removing path.
283
+ # e.g. ../../sun.gif becomes sun.gif
284
+ #
285
+ # @param [String] filename the filename to be sanitized
286
+ # @return [String] the sanitized filename
287
+ def sanitize_filename(filename)
288
+ filename.gsub(/.*[\/\\]/, '')
289
+ end
290
+
291
+ def build_request_url(path)
292
+ # Add leading and trailing slashes to path
293
+ path = "/#{path}".gsub(/\/+/, '/')
294
+ @config.base_url + path
295
+ end
296
+
297
+ # Update hearder and query params based on authentication settings.
298
+ #
299
+ # @param [Hash] header_params Header parameters
300
+ # @param [Hash] query_params Query parameters
301
+ # @param [String] auth_names Authentication scheme name
302
+ def update_params_for_auth!(header_params, query_params, auth_names)
303
+ Array(auth_names).each do |auth_name|
304
+ auth_setting = @config.auth_settings[auth_name]
305
+ next unless auth_setting
306
+ case auth_setting[:in]
307
+ when 'header' then header_params[auth_setting[:key]] = auth_setting[:value]
308
+ when 'query' then query_params[auth_setting[:key]] = auth_setting[:value]
309
+ else fail ArgumentError, 'Authentication token must be in `query` of `header`'
310
+ end
311
+ end
312
+ end
313
+
314
+ # Sets user agent in HTTP header
315
+ #
316
+ # @param [String] user_agent User agent (e.g. swagger-codegen/ruby/1.0.0)
317
+ def user_agent=(user_agent)
318
+ @user_agent = user_agent
319
+ @default_headers['User-Agent'] = @user_agent
320
+ end
321
+
322
+ # Return Accept header based on an array of accepts provided.
323
+ # @param [Array] accepts array for Accept
324
+ # @return [String] the Accept header (e.g. application/json)
325
+ def select_header_accept(accepts)
326
+ return nil if accepts.nil? || accepts.empty?
327
+ # use JSON when present, otherwise use all of the provided
328
+ json_accept = accepts.find { |s| json_mime?(s) }
329
+ json_accept || accepts.join(',')
330
+ end
331
+
332
+ # Return Content-Type header based on an array of content types provided.
333
+ # @param [Array] content_types array for Content-Type
334
+ # @return [String] the Content-Type header (e.g. application/json)
335
+ def select_header_content_type(content_types)
336
+ # use application/json by default
337
+ return 'application/json' if content_types.nil? || content_types.empty?
338
+ # use JSON when present, otherwise use the first one
339
+ json_content_type = content_types.find { |s| json_mime?(s) }
340
+ json_content_type || content_types.first
341
+ end
342
+
343
+ # Convert object (array, hash, object, etc) to JSON string.
344
+ # @param [Object] model object to be converted into JSON string
345
+ # @return [String] JSON string representation of the object
346
+ def object_to_http_body(model)
347
+ return model if model.nil? || model.is_a?(String)
348
+ local_body = nil
349
+ if model.is_a?(Array)
350
+ local_body = model.map { |m| object_to_hash(m) }
351
+ else
352
+ local_body = object_to_hash(model)
353
+ end
354
+ local_body.to_json
355
+ end
356
+
357
+ # Convert object(non-array) to hash.
358
+ # @param [Object] obj object to be converted into JSON string
359
+ # @return [String] JSON string representation of the object
360
+ def object_to_hash(obj)
361
+ if obj.respond_to?(:to_hash)
362
+ obj.to_hash
363
+ else
364
+ obj
365
+ end
366
+ end
367
+
368
+ # Build parameter value according to the given collection format.
369
+ # @param [String] collection_format one of :csv, :ssv, :tsv, :pipes and :multi
370
+ def build_collection_param(param, collection_format)
371
+ case collection_format
372
+ when :csv
373
+ param.join(',')
374
+ when :ssv
375
+ param.join(' ')
376
+ when :tsv
377
+ param.join("\t")
378
+ when :pipes
379
+ param.join('|')
380
+ when :multi
381
+ # return the array directly as typhoeus will handle it as expected
382
+ param
383
+ else
384
+ fail "unknown collection format: #{collection_format.inspect}"
385
+ end
386
+ end
387
+ end
388
+ end
@@ -0,0 +1,57 @@
1
+ =begin
2
+ #Stage API Docs
3
+
4
+ #Stage Technologies complete API Documentation
5
+
6
+ OpenAPI spec version: 1.0.0
7
+ Contact: support@heystage.com
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 3.0.33
10
+ =end
11
+
12
+ module Stage
13
+ class ApiError < StandardError
14
+ attr_reader :code, :response_headers, :response_body
15
+
16
+ # Usage examples:
17
+ # ApiError.new
18
+ # ApiError.new("message")
19
+ # ApiError.new(:code => 500, :response_headers => {}, :response_body => "")
20
+ # ApiError.new(:code => 404, :message => "Not Found")
21
+ def initialize(arg = nil)
22
+ if arg.is_a? Hash
23
+ if arg.key?(:message) || arg.key?('message')
24
+ super(arg[:message] || arg['message'])
25
+ else
26
+ super arg
27
+ end
28
+
29
+ arg.each do |k, v|
30
+ instance_variable_set "@#{k}", v
31
+ end
32
+ else
33
+ super arg
34
+ end
35
+ end
36
+
37
+ # Override to_s to display a friendly error message
38
+ def to_s
39
+ message
40
+ end
41
+
42
+ def message
43
+ if @message.nil?
44
+ msg = "Error message: the server returns an error"
45
+ else
46
+ msg = @message
47
+ end
48
+
49
+ msg += "\nHTTP status code: #{code}" if code
50
+ msg += "\nResponse headers: #{response_headers}" if response_headers
51
+ msg += "\nResponse body: #{response_body}" if response_body
52
+
53
+ msg
54
+ end
55
+
56
+ end
57
+ end