forked from loafle/openapi-generator-original
* Rename templateDir: rails5 -> ruby-on-rails-server * Rename script: rails5-petstore-server.sh -> ruby-on-rails-server-petstore.sh * Rename sample folder: rails5 -> ruby-on-rails * Rename script(openapi3): rails5-petstore-server.sh -> ruby-on-rails-server-petstore.sh * Update ruby-on-rails-server-petstore.sh * Rename templateDir: sinatra -> ruby-sinatra-server * Rename script: sinatra-petstore-server.sh -> ruby-sinatra-server-petstore.sh * Rename sample folder: sinatra -> ruby-sinatra * Update script * Rename templateDir: ruby -> ruby-client * Rename script: ruby-petstore.sh -> ruby-client-petstore.sh * Update scripts * Update samples - bin/ruby-sinatra-server-petstore.sh - bin/ruby-on-rails-server-petstore.sh - bin/ruby-client-petstore.sh - bin/security/ruby-client-petstore.sh
187 lines
4.3 KiB
Ruby
187 lines
4.3 KiB
Ruby
require 'json'
|
|
|
|
|
|
MyApp.add_route('POST', '/v2/pet', {
|
|
"resourcePath" => "/Pet",
|
|
"summary" => "Add a new pet to the store",
|
|
"nickname" => "add_pet",
|
|
"responseClass" => "void",
|
|
"endpoint" => "/pet",
|
|
"notes" => "",
|
|
"parameters" => [
|
|
{
|
|
"name" => "body",
|
|
"description" => "Pet object that needs to be added to the store",
|
|
"dataType" => "Pet",
|
|
"paramType" => "body",
|
|
}
|
|
]}) do
|
|
cross_origin
|
|
# the guts live here
|
|
|
|
{"message" => "yes, it worked"}.to_json
|
|
end
|
|
|
|
|
|
MyApp.add_route('DELETE', '/v2/pet/{petId}', {
|
|
"resourcePath" => "/Pet",
|
|
"summary" => "Deletes a pet",
|
|
"nickname" => "delete_pet",
|
|
"responseClass" => "void",
|
|
"endpoint" => "/pet/{petId}",
|
|
"notes" => "",
|
|
"parameters" => [
|
|
{
|
|
"name" => "pet_id",
|
|
"description" => "Pet id to delete",
|
|
"dataType" => "int",
|
|
"paramType" => "path",
|
|
},
|
|
{
|
|
"name" => "api_key",
|
|
"description" => "",
|
|
"dataType" => "string",
|
|
"paramType" => "header",
|
|
},
|
|
]}) do
|
|
cross_origin
|
|
# the guts live here
|
|
|
|
{"message" => "yes, it worked"}.to_json
|
|
end
|
|
|
|
|
|
MyApp.add_route('GET', '/v2/pet/findByStatus', {
|
|
"resourcePath" => "/Pet",
|
|
"summary" => "Finds Pets by status",
|
|
"nickname" => "find_pets_by_status",
|
|
"responseClass" => "array[Pet]",
|
|
"endpoint" => "/pet/findByStatus",
|
|
"notes" => "Multiple status values can be provided with comma separated strings",
|
|
"parameters" => [
|
|
{
|
|
"name" => "status",
|
|
"description" => "Status values that need to be considered for filter",
|
|
"dataType" => "array[string]",
|
|
"collectionFormat" => "csv",
|
|
"paramType" => "query",
|
|
},
|
|
]}) do
|
|
cross_origin
|
|
# the guts live here
|
|
|
|
{"message" => "yes, it worked"}.to_json
|
|
end
|
|
|
|
|
|
MyApp.add_route('GET', '/v2/pet/findByTags', {
|
|
"resourcePath" => "/Pet",
|
|
"summary" => "Finds Pets by tags",
|
|
"nickname" => "find_pets_by_tags",
|
|
"responseClass" => "array[Pet]",
|
|
"endpoint" => "/pet/findByTags",
|
|
"notes" => "Multiple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing.",
|
|
"parameters" => [
|
|
{
|
|
"name" => "tags",
|
|
"description" => "Tags to filter by",
|
|
"dataType" => "array[string]",
|
|
"collectionFormat" => "csv",
|
|
"paramType" => "query",
|
|
},
|
|
]}) do
|
|
cross_origin
|
|
# the guts live here
|
|
|
|
{"message" => "yes, it worked"}.to_json
|
|
end
|
|
|
|
|
|
MyApp.add_route('GET', '/v2/pet/{petId}', {
|
|
"resourcePath" => "/Pet",
|
|
"summary" => "Find pet by ID",
|
|
"nickname" => "get_pet_by_id",
|
|
"responseClass" => "Pet",
|
|
"endpoint" => "/pet/{petId}",
|
|
"notes" => "Returns a single pet",
|
|
"parameters" => [
|
|
{
|
|
"name" => "pet_id",
|
|
"description" => "ID of pet to return",
|
|
"dataType" => "int",
|
|
"paramType" => "path",
|
|
},
|
|
]}) do
|
|
cross_origin
|
|
# the guts live here
|
|
|
|
{"message" => "yes, it worked"}.to_json
|
|
end
|
|
|
|
|
|
MyApp.add_route('PUT', '/v2/pet', {
|
|
"resourcePath" => "/Pet",
|
|
"summary" => "Update an existing pet",
|
|
"nickname" => "update_pet",
|
|
"responseClass" => "void",
|
|
"endpoint" => "/pet",
|
|
"notes" => "",
|
|
"parameters" => [
|
|
{
|
|
"name" => "body",
|
|
"description" => "Pet object that needs to be added to the store",
|
|
"dataType" => "Pet",
|
|
"paramType" => "body",
|
|
}
|
|
]}) do
|
|
cross_origin
|
|
# the guts live here
|
|
|
|
{"message" => "yes, it worked"}.to_json
|
|
end
|
|
|
|
|
|
MyApp.add_route('POST', '/v2/pet/{petId}', {
|
|
"resourcePath" => "/Pet",
|
|
"summary" => "Updates a pet in the store with form data",
|
|
"nickname" => "update_pet_with_form",
|
|
"responseClass" => "void",
|
|
"endpoint" => "/pet/{petId}",
|
|
"notes" => "",
|
|
"parameters" => [
|
|
{
|
|
"name" => "pet_id",
|
|
"description" => "ID of pet that needs to be updated",
|
|
"dataType" => "int",
|
|
"paramType" => "path",
|
|
},
|
|
]}) do
|
|
cross_origin
|
|
# the guts live here
|
|
|
|
{"message" => "yes, it worked"}.to_json
|
|
end
|
|
|
|
|
|
MyApp.add_route('POST', '/v2/pet/{petId}/uploadImage', {
|
|
"resourcePath" => "/Pet",
|
|
"summary" => "uploads an image",
|
|
"nickname" => "upload_file",
|
|
"responseClass" => "ApiResponse",
|
|
"endpoint" => "/pet/{petId}/uploadImage",
|
|
"notes" => "",
|
|
"parameters" => [
|
|
{
|
|
"name" => "pet_id",
|
|
"description" => "ID of pet to update",
|
|
"dataType" => "int",
|
|
"paramType" => "path",
|
|
},
|
|
]}) do
|
|
cross_origin
|
|
# the guts live here
|
|
|
|
{"message" => "yes, it worked"}.to_json
|
|
end
|
|
|