Created
August 27, 2015 13:12
-
-
Save anonoz/2320e0de1742b3239a22 to your computer and use it in GitHub Desktop.
TSN2201 Question 3 Solution
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'sinatra' | |
require 'sinatra/reloader' if development? | |
helpers do | |
def protected! | |
return if authorized? | |
headers['WWW-Authenticate'] = 'Basic realm="Restricted Area"' | |
halt 401, "Not authorized\n" | |
end | |
def authorized? | |
@auth ||= Rack::Auth::Basic::Request.new(request.env) | |
@auth.provided? and @auth.basic? and @auth.credentials and @auth.credentials == ['admin', 'admin'] | |
end | |
end | |
get '/' do | |
"<h1>Hello World</h1>" | |
end | |
get '/301' do | |
redirect to("http://www.example.org"), 301 | |
end | |
get '/302' do | |
redirect to("http://www.example.org"), 302 | |
end | |
get '/401' do | |
protected! | |
"<h1>Authenticated</h1>" | |
end | |
get '/forbidden' do | |
status 403 | |
"<h1>Forbidden</h1>" | |
end | |
get '/server-error' do | |
5 / 0 # This will cause server error | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment