Class: Rack::OpenID
- Inherits:
-
Object
- Object
- Rack::OpenID
- Defined in:
- lib/rack/openid.rb
Overview
A Rack middleware that provides a more HTTPish API around the ruby-openid library.
You trigger an OpenID request similar to HTTP authentication. From your app, return a “401 Unauthorized” and a “WWW-Authenticate” header with the identifier you would like to validate.
On competition, the OpenID response is automatically verified and assigned to env["rack.openid.response"]
.
Defined Under Namespace
Classes: MissingResponse, TimeoutResponse
Constant Summary collapse
- HTTP_METHODS =
:stopdoc:
%w(GET HEAD PUT POST DELETE OPTIONS)
- RESPONSE =
"rack.openid.response".freeze
- AUTHENTICATE_HEADER =
"WWW-Authenticate".freeze
- AUTHENTICATE_REGEXP =
/^OpenID/.freeze
- URL_FIELD_SELECTOR =
lambda { |field| field.to_s =~ %r{^https?://} }
Class Method Summary collapse
-
.build_header(params = {}) ⇒ Object
Helper method for building the “WWW-Authenticate” header value.
-
.parse_header(str) ⇒ Object
Helper method for parsing “WWW-Authenticate” header values into a hash.
Instance Method Summary collapse
-
#call(env) ⇒ Object
Standard Rack
call
dispatch that accepts anenv
and returns a[status, header, body]
response. -
#initialize(app, store = nil) ⇒ OpenID
constructor
Initialize middleware with application and optional OpenID::Store.
Constructor Details
#initialize(app, store = nil) ⇒ OpenID
90 91 92 93 94 |
# File 'lib/rack/openid.rb', line 90 def initialize(app, store = nil) @app = app @store = store || default_store freeze end |
Class Method Details
.build_header(params = {}) ⇒ Object
30 31 32 33 34 35 36 37 38 |
# File 'lib/rack/openid.rb', line 30 def self.build_header(params = {}) 'OpenID ' + params.map { |key, value| if value.is_a?(Array) "#{key}=\"#{value.join(',')}\"" else "#{key}=\"#{value}\"" end }.join(', ') end |
.parse_header(str) ⇒ Object
45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
# File 'lib/rack/openid.rb', line 45 def self.parse_header(str) params = {} if str =~ AUTHENTICATE_REGEXP str = str.gsub(/#{AUTHENTICATE_REGEXP}\s+/, '') str.split(', ').each { |pair| key, *value = pair.split('=') value = value.join('=') value.gsub!(/^\"/, '').gsub!(/\"$/, "") value = value.split(',') params[key] = value.length > 1 ? value : value.first } end params end |
Instance Method Details
#call(env) ⇒ Object
Standard Rack call
dispatch that accepts an env
and returns a [status, header, body]
response.
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 |
# File 'lib/rack/openid.rb', line 98 def call(env) req = Rack::Request.new(env) if req.params["openid.mode"] complete_authentication(env) end status, headers, body = @app.call(env) qs = headers[AUTHENTICATE_HEADER] if status.to_i == 401 && qs && qs.match(AUTHENTICATE_REGEXP) begin_authentication(env, qs) else [status, headers, body] end end |