1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
|
require 'digest/md5'
require 'net/http'
module Net
module HTTPHeader
def digest_auth(username, password, response)
authenticator = DigestAuthenticator.new(
username,
password,
@method,
@path,
response
)
@header['Authorization'] = authenticator.authorization_header
@header['cookie'] = append_cookies(authenticator) if response['Set-Cookie']
end
def append_cookies(authenticator)
cookies = @header['cookie'] ? @header['cookie'] : []
cookies.concat(authenticator.cookie_header)
end
class DigestAuthenticator
def initialize(username, password, method, path, response_header)
@username = username
@password = password
@method = method
@path = path
@response = parse(response_header)
@cookies = parse_cookies(response_header)
end
def authorization_header
@cnonce = md5(random)
header = [
%(Digest username="#{@username}"),
%(realm="#{@response['realm']}"),
%(nonce="#{@response['nonce']}"),
%(uri="#{@path}"),
%(response="#{request_digest}")
]
header << %(algorithm="#{@response['algorithm']}") if algorithm_present?
if qop_present?
fields = [
%(cnonce="#{@cnonce}"),
%(qop="#{@response['qop']}"),
"nc=00000001"
]
fields.each { |field| header << field }
end
header << %(opaque="#{@response['opaque']}") if opaque_present?
header
end
def cookie_header
@cookies
end
private
def parse(response_header)
header = response_header['www-authenticate']
.gsub(/qop=(auth(?:-int)?)/, 'qop="\\1"')
header =~ /Digest (.*)/
params = {}
non_quoted = $1.gsub(/(\w+)="(.*?)"/) { params[$1] = $2 }
non_quoted.gsub(/(\w+)=([^,]*)/) { params[$1] = $2 }
params
end
def parse_cookies(response_header)
return [] unless response_header['Set-Cookie']
cookies = response_header['Set-Cookie'].split('; ')
cookies.reduce([]) do |ret, cookie|
ret << cookie
ret
end
cookies
end
def opaque_present?
@response.key?('opaque') && !@response['opaque'].empty?
end
def qop_present?
@response.key?('qop') && !@response['qop'].empty?
end
def random
format "%x", (Time.now.to_i + rand(65535))
end
def request_digest
a = [md5(a1), @response['nonce'], md5(a2)]
a.insert(2, "00000001", @cnonce, @response['qop']) if qop_present?
md5(a.join(":"))
end
def md5(str)
Digest::MD5.hexdigest(str)
end
def algorithm_present?
@response.key?('algorithm') && !@response['algorithm'].empty?
end
def use_md5_sess?
algorithm_present? && @response['algorithm'] == 'MD5-sess'
end
def a1
a1_user_realm_pwd = [@username, @response['realm'], @password].join(':')
if use_md5_sess?
[ md5(a1_user_realm_pwd), @response['nonce'], @cnonce ].join(':')
else
a1_user_realm_pwd
end
end
def a2
[@method, @path].join(":")
end
end
end
end
|