如何在Sinatra中排除要求基本身份验证的路径

时间:2010-01-14 07:47:55

标签: sinatra http-basic-authentication

我正在使用Sinatra在Ruby中编写一个小型Web服务。使用http basic auth(在生产中通过https)控制对几乎所有内容的访问。

我想要从授权中排除一个特定目录。有一个简单的方法吗?

1 个答案:

答案 0 :(得分:11)

require 'sinatra'

helpers do
  def protected!
    unless authorized?
      response['WWW-Authenticate'] = %(Basic realm="Testing HTTP Auth")
      throw(:halt, [401, "Not authorized\n"])
    end
  end

  def authorized?
    @auth ||=  Rack::Auth::Basic::Request.new(request.env)
    @auth.provided? && @auth.basic? && @auth.credentials && @auth.credentials == ['admin', 'admin']
  end
end

before { protected! unless request.path_info == "/public" }

get('/public') { "I'm public!" }