forked from loafle/openapi-generator-original
92 lines
6.2 KiB
Plaintext
92 lines
6.2 KiB
Plaintext
require "uri"
|
|
|
|
module {{moduleName}}
|
|
{{#operations}}
|
|
class {{classname}}
|
|
attr_accessor :api_client
|
|
|
|
def initialize(api_client = ApiClient.default)
|
|
@api_client = api_client
|
|
end
|
|
{{#operation}}
|
|
{{newline}}
|
|
# {{summary}}
|
|
# {{notes}}
|
|
{{#allParams}}{{#required}} # @param {{paramName}} {{description}}
|
|
{{/required}}{{/allParams}} # @param [Hash] opts the optional parameters
|
|
{{#allParams}}{{^required}} # @option opts [{{{dataType}}}] :{{paramName}} {{description}}
|
|
{{/required}}{{/allParams}} # @return [{{#returnType}}{{{returnType}}}{{/returnType}}{{^returnType}}nil{{/returnType}}]
|
|
def {{operationId}}({{#allParams}}{{#required}}{{paramName}}, {{/required}}{{/allParams}}opts = {})
|
|
{{#returnType}}data, status_code, headers = {{/returnType}}{{operationId}}_with_http_info({{#allParams}}{{#required}}{{paramName}}, {{/required}}{{/allParams}}opts)
|
|
{{#returnType}}return data{{/returnType}}{{^returnType}}return nil{{/returnType}}
|
|
end
|
|
|
|
# {{summary}}
|
|
# {{notes}}
|
|
{{#allParams}}{{#required}} # @param {{paramName}} {{description}}
|
|
{{/required}}{{/allParams}} # @param [Hash] opts the optional parameters
|
|
{{#allParams}}{{^required}} # @option opts [{{{dataType}}}] :{{paramName}} {{description}}
|
|
{{/required}}{{/allParams}} # @return [Array<({{#returnType}}{{{returnType}}}{{/returnType}}{{^returnType}}nil{{/returnType}}, Fixnum, Hash)>] {{#returnType}}{{{returnType}}} data{{/returnType}}{{^returnType}}nil{{/returnType}}, response status code and response headers
|
|
def {{operationId}}_with_http_info({{#allParams}}{{#required}}{{paramName}}, {{/required}}{{/allParams}}opts = {})
|
|
if @api_client.config.debugging
|
|
@api_client.config.logger.debug "Calling API: {{classname}}#{{operationId}} ..."
|
|
end
|
|
{{#allParams}}{{#required}}
|
|
# verify the required parameter '{{paramName}}' is set
|
|
fail "Missing the required parameter '{{paramName}}' when calling {{operationId}}" if {{{paramName}}}.nil?{{#isEnum}}
|
|
unless [{{#allowableValues}}{{#values}}'{{{this}}}'{{^-last}}, {{/-last}}{{/values}}{{/allowableValues}}].include?({{{paramName}}})
|
|
fail "invalid value for '{{{paramName}}}', must be one of {{#allowableValues}}{{#values}}{{{this}}}{{^-last}}, {{/-last}}{{/values}}{{/allowableValues}}"
|
|
end{{/isEnum}}
|
|
{{/required}}{{^required}}{{#isEnum}}
|
|
if opts[:'{{{paramName}}}'] && ![{{#allowableValues}}{{#values}}'{{{this}}}'{{^-last}}, {{/-last}}{{/values}}{{/allowableValues}}].include?(opts[:'{{{paramName}}}'])
|
|
fail 'invalid value for "{{{paramName}}}", must be one of {{#allowableValues}}{{#values}}{{{this}}}{{^-last}}, {{/-last}}{{/values}}{{/allowableValues}}'
|
|
end
|
|
{{/isEnum}}{{/required}}{{/allParams}}
|
|
# resource path
|
|
path = "{{path}}".sub('{format}','json'){{#pathParams}}.sub('{' + '{{baseName}}' + '}', {{paramName}}.to_s){{/pathParams}}
|
|
|
|
# query parameters
|
|
query_params = {}{{#queryParams}}{{#required}}
|
|
query_params[:'{{{baseName}}}'] = {{#collectionFormat}}@api_client.build_collection_param({{{paramName}}}, :{{{collectionFormat}}}){{/collectionFormat}}{{^collectionFormat}}{{{paramName}}}{{/collectionFormat}}{{/required}}{{/queryParams}}{{#queryParams}}{{^required}}
|
|
query_params[:'{{{baseName}}}'] = {{#collectionFormat}}@api_client.build_collection_param(opts[:'{{{paramName}}}'], :{{{collectionFormat}}}){{/collectionFormat}}{{^collectionFormat}}opts[:'{{{paramName}}}']{{/collectionFormat}} if opts[:'{{{paramName}}}']{{/required}}{{/queryParams}}
|
|
|
|
# header parameters
|
|
header_params = {}
|
|
|
|
# HTTP header 'Accept' (if needed)
|
|
_header_accept = [{{#produces}}'{{mediaType}}'{{#hasMore}}, {{/hasMore}}{{/produces}}]
|
|
_header_accept_result = @api_client.select_header_accept(_header_accept) and header_params['Accept'] = _header_accept_result
|
|
|
|
# HTTP header 'Content-Type'
|
|
_header_content_type = [{{#consumes}}'{{mediaType}}'{{#hasMore}}, {{/hasMore}}{{/consumes}}]
|
|
header_params['Content-Type'] = @api_client.select_header_content_type(_header_content_type){{#headerParams}}{{#required}}
|
|
header_params[:'{{{baseName}}}'] = {{#collectionFormat}}@api_client.build_collection_param({{{paramName}}}, :{{{collectionFormat}}}){{/collectionFormat}}{{^collectionFormat}}{{{paramName}}}{{/collectionFormat}}{{/required}}{{/headerParams}}{{#headerParams}}{{^required}}
|
|
header_params[:'{{{baseName}}}'] = {{#collectionFormat}}@api_client.build_collection_param(opts[:'{{{paramName}}}'], :{{{collectionFormat}}}){{/collectionFormat}}{{^collectionFormat}}opts[:'{{{paramName}}}']{{/collectionFormat}} if opts[:'{{{paramName}}}']{{/required}}{{/headerParams}}
|
|
|
|
# form parameters
|
|
form_params = {}{{#formParams}}{{#required}}
|
|
form_params["{{baseName}}"] = {{#collectionFormat}}@api_client.build_collection_param({{{paramName}}}, :{{{collectionFormat}}}){{/collectionFormat}}{{^collectionFormat}}{{{paramName}}}{{/collectionFormat}}{{/required}}{{/formParams}}{{#formParams}}{{^required}}
|
|
form_params["{{baseName}}"] = {{#collectionFormat}}@api_client.build_collection_param(opts[:'{{{paramName}}}'], :{{{collectionFormat}}}){{/collectionFormat}}{{^collectionFormat}}opts[:'{{{paramName}}}']{{/collectionFormat}} if opts[:'{{paramName}}']{{/required}}{{/formParams}}
|
|
|
|
# http body (model)
|
|
{{^bodyParam}}post_body = nil
|
|
{{/bodyParam}}{{#bodyParam}}post_body = @api_client.object_to_http_body({{#required}}{{{paramName}}}{{/required}}{{^required}}opts[:'{{{paramName}}}']{{/required}})
|
|
{{/bodyParam}}
|
|
auth_names = [{{#authMethods}}'{{name}}'{{#hasMore}}, {{/hasMore}}{{/authMethods}}]
|
|
data, status_code, headers = @api_client.call_api(:{{httpMethod}}, path,
|
|
:header_params => header_params,
|
|
:query_params => query_params,
|
|
:form_params => form_params,
|
|
:body => post_body,
|
|
:auth_names => auth_names{{#returnType}},
|
|
:return_type => '{{{returnType}}}'{{/returnType}})
|
|
if @api_client.config.debugging
|
|
@api_client.config.logger.debug "API called: {{classname}}#{{operationId}}\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
|
end
|
|
return data, status_code, headers
|
|
end
|
|
{{/operation}}
|
|
end
|
|
{{/operations}}
|
|
end
|