Sha256: 771d7a162e4aae643169c4bf2c88ee8d2e93c84a44eadf2eddcf840e31c50fb8

Contents?: true

Size: 836 Bytes

Versions: 7

Compression:

Stored size: 836 Bytes

Contents

module Swagui
  class SwaggerDocHandler
    def initialize(path, url)
      @url_regex = Regexp.new("^#{url}")
      app_doc_dir = Swagui.file_full_path(path || url)

      raise "swagger api doc directory #{app_doc_dir} does not exist" unless File.directory?(app_doc_dir)

      @app_file_server = YAMLDocHandler.new(Rack::File.new(app_doc_dir))
    end

    def handles?(env)
      @url_regex === env["PATH_INFO"]
    end

    def call(env)
      path = env["PATH_INFO"].gsub(@url_regex, '') # root path renders index.html

      first_valid_file_response = ['', '.json', '.yml'].map do |ext|
        @app_file_server.call(env.merge('PATH_INFO' => "#{path}#{ext}", 'REQUEST_METHOD' => 'GET'))
      end.find {|res| res[0] == 200 }

      first_valid_file_response || [404, {"Content-Type"=>"application/json"}, '']
    end

  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
swagui-0.5.2 lib/swagui/swagger_doc_handler.rb
swagui-0.5.1 lib/swagui/swagger_doc_handler.rb
swagui-0.4.1 lib/swagui/swagger_doc_handler.rb
swagui-0.4.0 lib/swagui/swagger_doc_handler.rb
swagui-0.3.0 lib/swagui/swagger_doc_handler.rb
swagui-0.2.1 lib/swagui/swagger_doc_handler.rb
swagui-0.2.0 lib/swagui/swagger_doc_handler.rb