Object
Creates new BasicAuth filter.
# File lib/httpclient/auth.rb, line 214 def initialize @cred = nil @auth = {} @challengeable = {} @scheme = "Basic" end
Challenge handler: remember URL for response.
# File lib/httpclient/auth.rb, line 254 def challenge(uri, param_str) @challengeable[uri] = true true end
Response handler: returns credential. It sends cred only when a given uri is;
child page of challengeable(got *Authenticate before) uri and,
child page of defined credential
# File lib/httpclient/auth.rb, line 242 def get(req) target_uri = req.header.request_uri return nil unless @challengeable.find { |uri, ok| Util.uri_part_of(target_uri, uri) and ok } return @cred if @cred Util.hash_find_value(@auth) { |uri, cred| Util.uri_part_of(target_uri, uri) } end
Resets challenge state. Do not send '*Authorization' header until the server sends '*Authentication' again.
# File lib/httpclient/auth.rb, line 223 def reset_challenge @challengeable.clear end
Set authentication credential. uri == nil for generic purpose (allow to use user/password for any URL).
# File lib/httpclient/auth.rb, line 229 def set(uri, user, passwd) if uri.nil? @cred = ["#{user}:#{passwd}"].pack('m').tr("\n", '') else uri = Util.uri_dirname(uri) @auth[uri] = ["#{user}:#{passwd}"].pack('m').tr("\n", '') end end
Generated with the Darkfish Rdoc Generator 2.