grape-swagger/lib/grape-swagger.rb

203 lines
6.9 KiB
Ruby
Raw Normal View History

require 'kramdown'
2012-07-19 16:37:46 +08:00
module Grape
class API
class << self
attr_reader :combined_routes
alias original_mount mount
def mount(mounts)
original_mount mounts
@combined_routes ||= {}
mounts::routes.each do |route|
2013-01-24 07:04:51 +08:00
resource = route.route_path.match('\/(\w*?)[\.\/\(]').captures.first
next if resource.empty?
@combined_routes[resource.downcase] ||= []
@combined_routes[resource.downcase] << route
end
2012-07-19 16:37:46 +08:00
end
def add_swagger_documentation(options={})
documentation_class = create_documentation_class
documentation_class.setup({:target_class => self}.merge(options))
2012-07-19 16:37:46 +08:00
mount(documentation_class)
end
private
def create_documentation_class
2012-07-19 16:37:46 +08:00
Class.new(Grape::API) do
class << self
def name
@@class_name
2012-07-19 16:37:46 +08:00
end
end
def self.setup(options)
defaults = {
:target_class => nil,
:mount_path => '/swagger_doc',
:base_path => nil,
:api_version => '0.1',
:markdown => false,
:hide_documentation_path => false
}
options = defaults.merge(options)
@@target_class = options[:target_class]
@@mount_path = options[:mount_path]
@@class_name = options[:class_name] || options[:mount_path].gsub('/','')
2012-08-06 16:09:07 +08:00
@@markdown = options[:markdown]
@@hide_documentation_path = options[:hide_documentation_path]
api_version = options[:api_version]
base_path = options[:base_path]
desc 'Swagger compatible API description'
get @@mount_path do
header['Access-Control-Allow-Origin'] = '*'
header['Access-Control-Request-Method'] = '*'
routes = @@target_class::combined_routes
if @@hide_documentation_path
routes.reject!{ |route, value| "/#{route}/".index(parse_path(@@mount_path, nil) << '/') == 0 }
end
routes_array = routes.keys.map do |local_route|
{ :path => "#{parse_path(route.route_path.gsub('(.:format)', ''),route.route_version)}/#{local_route}.{format}" }
end
{
apiVersion: api_version,
swaggerVersion: "1.1",
2013-01-19 05:22:55 +08:00
basePath: base_path || request.base_url,
operations:[],
apis: routes_array
}
end
desc 'Swagger compatible API description for specific API', :params =>
{
"name" => { :desc => "Resource name of mounted API", :type => "string", :required => true },
}
get "#{@@mount_path}/:name" do
header['Access-Control-Allow-Origin'] = '*'
header['Access-Control-Request-Method'] = '*'
routes = @@target_class::combined_routes[params[:name]]
routes_array = routes.map do |route|
2012-08-06 16:09:07 +08:00
notes = route.route_notes && @@markdown ? Kramdown::Document.new(route.route_notes.strip_heredoc).to_html : route.route_notes
{
2012-08-17 00:07:00 +08:00
:path => parse_path(route.route_path, api_version),
:operations => [{
:notes => notes,
:summary => route.route_description || '',
:nickname => route.route_method + route.route_path.gsub(/[\/:\(\)\.]/,'-'),
:httpMethod => route.route_method,
:parameters => parse_header_params(route.route_headers) +
parse_params(route.route_params, route.route_path, route.route_method)
}]
}
end
{
apiVersion: api_version,
swaggerVersion: "1.1",
2013-01-19 05:22:55 +08:00
basePath: base_path || request.base_url,
resourcePath: "",
apis: routes_array
}
end
2012-07-19 16:37:46 +08:00
end
helpers do
def parse_params(params, path, method)
if params
params.map do |param, value|
value[:type] = 'file' if value.is_a?(Hash) && value[:type] == 'Rack::Multipart::UploadedFile'
dataType = value.is_a?(Hash) ? value[:type]||'String' : 'String'
description = value.is_a?(Hash) ? value[:desc] : ''
required = value.is_a?(Hash) ? !!value[:required] : false
paramType = path.match(":#{param}") ? 'path' : (method == 'POST') ? 'body' : 'query'
name = (value.is_a?(Hash) && value[:full_name]) || param
{
paramType: paramType,
name: name,
description: description,
dataType: dataType,
required: required
}
end
else
[]
end
end
def parse_header_params(params)
if params
params.map do |param, value|
dataType = 'String'
description = value.is_a?(Hash) ? value[:description] : ''
required = value.is_a?(Hash) ? !!value[:required] : false
paramType = "header"
{
paramType: paramType,
name: param,
description: description,
dataType: dataType,
required: required
}
end
else
[]
2012-07-19 16:37:46 +08:00
end
end
2012-08-17 00:07:00 +08:00
def parse_path(path, version)
2012-07-19 16:37:46 +08:00
# adapt format to swagger format
parsed_path = path.gsub('(.:format)', '.{format}')
# This is attempting to emulate the behavior of
# Rack::Mount::Strexp. We cannot use Strexp directly because
# all it does is generate regular expressions for parsing URLs.
# TODO: Implement a Racc tokenizer to properly generate the
# parsed path.
parsed_path = parsed_path.gsub(/:([a-zA-Z_]\w*)/, '{\1}')
2012-08-17 00:07:00 +08:00
# add the version
parsed_path = parsed_path.gsub('{version}', version) if version
parsed_path
2012-07-19 16:37:46 +08:00
end
end
end
end
end
end
end
2012-08-06 16:09:07 +08:00
class Object
##
# @person ? @person.name : nil
# vs
# @person.try(:name)
2012-09-05 19:23:46 +08:00
#
# File activesupport/lib/active_support/core_ext/object/try.rb#L32
def try(*a, &b)
if a.empty? && block_given?
yield self
else
__send__(*a, &b)
end
2012-08-06 16:09:07 +08:00
end
end
class String
# strip_heredoc from rails
# File activesupport/lib/active_support/core_ext/string/strip.rb, line 22
def strip_heredoc
indent = scan(/^[ \t]*(?=\S)/).min.try(:size) || 0
gsub(/^[ \t]{#{indent}}/, '')
end
end