我正在使用Sinatra在Ruby中编写一个小型Web服务。使用http basic auth(在生产中通过https)控制对几乎所有内容的访问。
我想要从授权中排除一个特定目录。有一个简单的方法吗?
答案 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!" }