Skip to content

Commit cb93ef8

Browse files
authored
Fix bugs and improve (#152)
* Remove unused @form_data * Change addr and peeraddr to non-nil * Fix typo of constant name * Improve split arguments
1 parent ef2c69d commit cb93ef8

File tree

6 files changed

+12
-14
lines changed

6 files changed

+12
-14
lines changed

lib/webrick/httpauth/authenticator.rb

+4-4
Original file line numberDiff line numberDiff line change
@@ -108,10 +108,10 @@ def info(fmt, *args)
108108
# authentication schemes for proxies.
109109

110110
module ProxyAuthenticator
111-
RequestField = "Proxy-Authorization" # :nodoc:
112-
ResponseField = "Proxy-Authenticate" # :nodoc:
113-
InfoField = "Proxy-Authentication-Info" # :nodoc:
114-
AuthException = HTTPStatus::ProxyAuthenticationRequired # :nodoc:
111+
RequestField = "Proxy-Authorization" # :nodoc:
112+
ResponseField = "Proxy-Authenticate" # :nodoc:
113+
ResponseInfoField = "Proxy-Authentication-Info" # :nodoc:
114+
AuthException = HTTPStatus::ProxyAuthenticationRequired # :nodoc:
115115
end
116116
end
117117
end

lib/webrick/httpauth/htgroup.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def reload
4949
File.open(@path){|io|
5050
while line = io.gets
5151
line.chomp!
52-
group, members = line.split(/:\s*/)
52+
group, members = line.split(/:\s*/, 2)
5353
@group[group] = members.split(/\s+/)
5454
end
5555
}

lib/webrick/httpauth/htpasswd.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -77,12 +77,12 @@ def reload
7777
if @password_hash == :bcrypt
7878
raise StandardError, ".htpasswd file contains crypt password, only bcrypt passwords supported"
7979
end
80-
user, pass = line.split(":")
80+
user, pass = line.split(":", 2)
8181
when %r!\A[^:]+:\$2[aby]\$\d{2}\$.{53}\z!
8282
if @password_hash == :crypt
8383
raise StandardError, ".htpasswd file contains bcrypt password, only crypt passwords supported"
8484
end
85-
user, pass = line.split(":")
85+
user, pass = line.split(":", 2)
8686
when /:\$/, /:{SHA}/
8787
raise NotImplementedError,
8888
'MD5, SHA1 .htpasswd file not supported'

lib/webrick/httprequest.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,6 @@ def initialize(config)
162162
@script_name = @path_info = nil
163163
@query_string = nil
164164
@query = nil
165-
@form_data = nil
166165

167166
@raw_header = Array.new
168167
@header = nil
@@ -173,7 +172,8 @@ def initialize(config)
173172
@accept_language = []
174173
@body = +""
175174

176-
@addr = @peeraddr = nil
175+
@addr = []
176+
@peeraddr = []
177177
@attributes = {}
178178
@user = nil
179179
@keep_alive = false

sig/httpauth/authenticator.rbs

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ module WEBrick
4747

4848
ResponseField: String
4949

50-
InfoField: String
50+
ResponseInfoField: String
5151

5252
AuthException: singleton(HTTPStatus::ClientError)
5353
end

sig/httprequest.rbs

+2-4
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ module WEBrick
88

99
@query: Hash[String, HTTPUtils::FormData]?
1010

11-
@form_data: nil
12-
1311
@body: String
1412

1513
@remaining_size: Integer?
@@ -72,9 +70,9 @@ module WEBrick
7270

7371
attr_accessor user: String?
7472

75-
attr_reader addr: ([String, Integer, String, String] | [])?
73+
attr_reader addr: ([String, Integer, String, String] | [])
7674

77-
attr_reader peeraddr: ([String, Integer, String, String] | [])?
75+
attr_reader peeraddr: ([String, Integer, String, String] | [])
7876

7977
attr_reader attributes: Hash[untyped, untyped]
8078

0 commit comments

Comments
 (0)