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 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429
|
require "uri"
require "net/http"
require "net/ftp"
require "timeout"
require "zlib"
require "stringio"
require "web/request"
require "web/response"
require "web/escape"
require "web/agent/cookiemanager"
require "web/agent/passwordmanager"
module Web
class Agent
VERSION = "0.1"
def initialize
@req = Web::Request.new
@rsp = nil
@req.header['User-Agent']="NoraAgent/#{VERSION}"
@req.header['Accept'] = '*/*'
@req.header['Accept-Language'] = 'ja,en,*'
@req.header['Accept-Encoding'] = 'gzip,deflate'
@req.header['Accept-Charset'] = '*'
@uri = nil
@timeout = 180
@proxy_host = nil
@proxy_port = nil
@ftpproxy_host = nil
@ftpproxy_port = nil
@cookiemanager = nil
@passwordmanager = nil
end
attr_accessor :uri
attr_accessor :req, :rsp, :proxy_host, :proxy_port, :ftpproxy_host, :ftpproxy_port
attr_accessor :cookiemanager, :passwordmanager
def setup()
if uri = (ENV['http_proxy'] || ENV['HTTP_PROXY'])
uri=URI.parse(uri)
@proxy_host = uri.host
@proxy_port = uri.port
end
if uri = (ENV['ftp_proxy'] || ENV['FTP_PROXY'])
uri=URI.parse(uri)
@ftpproxy_host = uri.host
@ftpproxy_port = uri.port
end
end
def get(uri)
set_uri(uri)
@req.method = 'GET'
timeout(@timeout) {
catch(:exit) {
loop do
case @uri.scheme
when "http"
get_http
when "https"
get_https
when "ftp"
get_ftp
end
end
}
}
end
def head(uri)
set_uri(uri)
@req.method = 'HEAD'
timeout(@timeout) {
catch(:exit) {
loop do
case @uri.scheme
when "http"
head_http
when "https"
head_https
when "ftp"
raise "not supported method"
end
end
}
}
end
def post(uri)
set_uri(uri)
@req.method = 'POST'
timeout(@timeout) {
catch(:exit) {
case @uri.scheme
when "http"
post_http
when "https"
post_https
when "ftp"
raise "not supported method"
end
# post after redirect
@req.form.clear
loop do
case @uri.scheme
when "http"
get_http
when "https"
get_https
when "ftp"
raise "not supported method"
end
end
}
}
end
def get_http
path = @req.script_name
@req.query_encode
@req.form_encode
if @req.query_string && !@req.query_string.empty?
path = path + "?" + @req.query_string
end
Net::HTTP.start(@req.server_name, @req.server_port.to_i, @proxy_host, @proxy_port) {|http|
# Password
@passwordmanager.get(self) if @passwordmanager
# Cookie
@cookiemanager.get(@req) if @cookiemanager
hash = @req.header.to_hash
if values=@req.header['cookie',nil]
hash.delete 'cookie'
hash['cookie'] = values.join('; ')
end
response = http.get(path, @req.header.to_hash)
@rsp = Web::Response.new
case response
when Net::HTTPSuccess
rtry = false
@rsp.status = response.code.to_s
response.each {|key,value|
@rsp.header.add key,value
}
# Cookie
if set_cookies = @rsp.header['set-cookie',nil]
set_cookies.each {|set_cookie|
@rsp.cookies.parse(set_cookie, @req)
}
@cookiemanager.set(@req, @rsp) if @cookiemanager
end
#
@rsp.body = response.body
# gzip,deflate
case @rsp.header['content-encoding']
when /gzip/i
io = StringIO.new(@rsp.body)
@rsp.body = Zlib::GzipReader.new(io).read()
when /deflate/i
@rsp.body = Zlib::Inflate.inflate(@rsp.body)
end
# リダイレクト判定
if refresh=@rsp.header['Refresh']
if refresh=~/\A\d;URL="?([^"]+)"?/ #"
redirect_uri($1)
rtry = true
end
end
# <meta>
if @rsp.header['content-type']=~/text\/html/
html = @rsp.body
html.gsub!(/<!--.*?--!>/,'')
if html=~/<meta\s+http-equiv\s*=\s*"?refresh"?\s*content\s*=\s*"\d\s*;\s*URL=([^"'>]+)/i #'
redirect_uri($1)
rtry = true
end
end
unless rtry
throw :exit
end
when Net::HTTPNotModified
@rsp.status = response.code.to_s
response.each {|key,value|
@rsp.header.add key,value
}
@rsp.body = response.body
throw :exit
when Net::HTTPRedirection
redirect_uri(response['location'])
when Net::HTTPUnauthorized
if @passwordmanager
@rsp.status = response.code.to_s
response.each {|key,value|
@rsp.header.add key,value
}
@rsp.body = response.body
@passwordmanager.get(self)
throw :exit
else
@rsp.status = response.code.to_s
response.each {|key,value|
@rsp.header.add key,value
}
@rsp.body = response.body
throw :exit
end
else
@rsp.status = response.code.to_s
response.each {|key,value|
@rsp.header.add key,value
}
@rsp.body = response.body
throw :exit
end
} # HTTP
end
def head_http
path = @req.script_name
@req.query_encode
if @req.query_string && !@req.query_string.empty?
path = path + "?" + @req.query_string
end
http = Net::HTTP.start(@req.server_name, @req.server_port.to_i, @proxy_host, @proxy_port)
# Password
@passwordmanager.get(self) if @passwordmanager
# Cookie
@cookiemanager.get(@req) if @cookiemanager
hash = @req.header.to_hash
if values=@req.header['cookie',nil]
hash.delete 'cookie'
hash['cookie'] = values.join('; ')
end
#
response = http.head(path, hash)
@rsp = Web::Response.new
# ヘッダセット
response.each {|key,value|
@rsp.header.add key,value
}
# Cookie
if set_cookies = @rsp.header['set-cookie',nil]
set_cookies.each {|set_cookie|
@rsp.cookies.parse(set_cookie, @req)
}
@cookiemanager.set(@req, @rsp) if @cookiemanager
end
case response
when Net::HTTPSuccess
rtry = false
@rsp.status = response.code.to_s
response.each {|key,value|
@rsp.header.add key,value
}
#
@rsp.body = response.body
# リダイレクト判定
if refresh=@rsp.header['Refresh']
if refresh=~/\A\d;URL="?([^"]+)"?/ #"
redirect_uri($1)
rtry = true
end
end
unless rtry
http.finish
throw :exit
end
when Net::HTTPRedirection
redirect_uri(response['location'])
else
@rsp.status = response.code.to_s
response.each {|key,value|
@rsp.header.add key,value
}
@rsp.body = response.body
http.finish
throw :exit
end
http.finish
end
def post_http
path = @req.script_name
@req.query_encode
@req.form_encode
if @req.query_string && !@req.query_string.empty?
path = path + "?" + @req.query_string
end
http = Net::HTTP.start(@req.server_name, @req.server_port.to_i, @proxy_host, @proxy_port)
# Password
@passwordmanager.get(self) if @passwordmanager
# Cookie
@cookiemanager.get(@req) if @cookiemanager
hash = @req.header.to_hash
if values=@req.header['cookie',nil]
hash.delete 'cookie'
hash['cookie'] = values.join('; ')
end
#
response = http.post(path, @req.body, hash)
@rsp = Web::Response.new
# ヘッダセット
response.each {|key,value|
@rsp.header.add key,value
}
# Cookie
if set_cookies = @rsp.header['set-cookie',nil]
set_cookies.each {|set_cookie|
@rsp.cookies.parse(set_cookie, @req)
}
@cookiemanager.set(@req, @rsp) if @cookiemanager
end
case response
when Net::HTTPSuccess
rtry = false
@rsp.status = response.code.to_s
response.each {|key,value|
@rsp.header.add key,value
}
#
@rsp.body = response.body
# gzip,deflate
case @rsp.header['content-encoding']
when /gzip/i
io = StringIO.new(@rsp.body)
@rsp.body = Zlib::GzipReader.new(io).read()
when /deflate/i
@rsp.body = Zlib::Inflate.inflate(@rsp.body)
end
# リダイレクト判定
if refresh=@rsp.header['Refresh']
if refresh=~/\A\d;URL="?([^"]+)"?/ #"
redirect_uri($1)
rtry = true
end
end
# <meta>
if @rsp.header['content-type']=~/text\/html/
html = @rsp.body
html.gsub!(/<!--.*?--!>/,'')
if html=~/<meta\s+http-equiv\s*=\s*"?refresh"?\s*content\s*=\s*"\dz\s*;\s*URL=([^"'>]+)/i #'
redirect_uri($1)
rtry = true
end
end
unless rtry
http.finish
throw :exit
end
when Net::HTTPRedirection
redirect_uri(response['location'])
else
@rsp.status = response.code.to_s
response.each {|key,value|
@rsp.header.add key,value
}
@rsp.body = response.body
http.finish
throw :exit
end
http.finish
end
def redirect_uri(uri)
@uri = @uri.merge(uri)
set_uri(@uri.to_s)
end
def set_uri(uri)
@uri = URI.parse(uri.to_s).normalize
case @uri.scheme
when /^http/
@req.server_name = @uri.host
@req.server_port = @uri.port
@req.script_name = @uri.path
@req.query_string = @uri.query
@req.query.clear
unless @uri.query.nil?
@uri.query.scan(/([^=&;]+)(?:=([^&;]*))?[&;]?/n) {|key,value|
key = Web::unescape(key)
value = Web::unescape(value) if value
@req.query.add key,value
}
end
host = @uri.host
host = host + ":" + @uri.port.to_s if @uri.port != 80
@req.header['Host'] = host
when /^ftp/
@req.server_name = @uri.host
@req.server_port = @uri.port
@req.script_name = @uri.path
end
end
def get_ftp
@rsp = Web::Response.new
@rsp.body = ''
if @ftpproxy_host==nil
ftp = Net::FTP.new
begin
ftp.connect(@uri.host)
rescue
@rsp.status = Web::Response::STATUS_ServiceUnavailable
throw :exit
end
ftp.login(@uri.user || 'anonymous', @uri.password)
if ftp.lastresp=~/\A530/
@rsp.status = Web::Response::STATUS_Unauthorized
ftp.close
throw :exit
end
ftp.passive = true
begin
ftp.retrbinary("RETR #{@uri.path}", 1024) {|data|
@rsp.body << data
}
ftp.close
throw :exit
rescue Net::FTPPermError
@rsp.status = Web::Response::STATUS_NotFound
ftp.close
throw :exit
end
else
raise "not supported ftp_proxy"
end
end
end # Agent
end # Web
|