2015-12-16 08:07:31 +03:00
|
|
|
# frozen_string_literal: false
|
2004-03-24 14:53:31 +03:00
|
|
|
# = uri/http.rb
|
2002-01-10 11:00:51 +03:00
|
|
|
#
|
2004-03-24 14:53:31 +03:00
|
|
|
# Author:: Akira Yamada <akira@ruby-lang.org>
|
|
|
|
# License:: You can redistribute it and/or modify it under the same term as Ruby.
|
|
|
|
# Revision:: $Id$
|
2002-01-10 11:00:51 +03:00
|
|
|
#
|
2011-05-14 00:03:21 +04:00
|
|
|
# See URI for general documentation
|
|
|
|
#
|
2002-01-10 11:00:51 +03:00
|
|
|
|
|
|
|
require 'uri/generic'
|
|
|
|
|
|
|
|
module URI
|
|
|
|
|
2004-03-24 14:53:31 +03:00
|
|
|
#
|
2005-08-24 09:08:00 +04:00
|
|
|
# The syntax of HTTP URIs is defined in RFC1738 section 3.3.
|
|
|
|
#
|
|
|
|
# Note that the Ruby URI library allows HTTP URLs containing usernames and
|
2009-03-06 06:56:38 +03:00
|
|
|
# passwords. This is not legal as per the RFC, but used to be
|
|
|
|
# supported in Internet Explorer 5 and 6, before the MS04-004 security
|
2005-08-24 09:08:00 +04:00
|
|
|
# update. See <URL:http://support.microsoft.com/kb/834489>.
|
2004-03-24 14:53:31 +03:00
|
|
|
#
|
2002-01-10 11:00:51 +03:00
|
|
|
class HTTP < Generic
|
2011-05-13 00:39:11 +04:00
|
|
|
# A Default port of 80 for URI::HTTP
|
2002-01-10 11:00:51 +03:00
|
|
|
DEFAULT_PORT = 80
|
|
|
|
|
2011-05-13 00:39:11 +04:00
|
|
|
# An Array of the available components for URI::HTTP
|
2016-09-30 13:06:24 +03:00
|
|
|
COMPONENT = %i[
|
|
|
|
scheme
|
|
|
|
userinfo host port
|
|
|
|
path
|
|
|
|
query
|
|
|
|
fragment
|
2002-01-10 11:00:51 +03:00
|
|
|
].freeze
|
|
|
|
|
2004-03-24 14:53:31 +03:00
|
|
|
#
|
|
|
|
# == Description
|
|
|
|
#
|
2005-08-24 09:08:00 +04:00
|
|
|
# Create a new URI::HTTP object from components, with syntax checking.
|
|
|
|
#
|
|
|
|
# The components accepted are userinfo, host, port, path, query and
|
|
|
|
# fragment.
|
|
|
|
#
|
2009-03-06 06:56:38 +03:00
|
|
|
# The components should be provided either as an Array, or as a Hash
|
|
|
|
# with keys formed by preceding the component names with a colon.
|
2005-08-24 09:08:00 +04:00
|
|
|
#
|
|
|
|
# If an Array is used, the components must be passed in the order
|
|
|
|
# [userinfo, host, port, path, query, fragment].
|
|
|
|
#
|
|
|
|
# Example:
|
|
|
|
#
|
2016-09-30 13:06:24 +03:00
|
|
|
# newuri = URI::HTTP.build(host: 'www.example.com', path: '/foo/bar')
|
2005-08-24 09:08:00 +04:00
|
|
|
#
|
2009-03-06 06:56:38 +03:00
|
|
|
# newuri = URI::HTTP.build([nil, "www.example.com", nil, "/path",
|
2005-08-24 09:08:00 +04:00
|
|
|
# "query", 'fragment'])
|
|
|
|
#
|
2009-03-06 06:56:38 +03:00
|
|
|
# Currently, if passed userinfo components this method generates
|
2005-08-24 09:08:00 +04:00
|
|
|
# invalid HTTP URIs as per RFC 1738.
|
2004-03-24 14:53:31 +03:00
|
|
|
#
|
2002-01-10 11:00:51 +03:00
|
|
|
def self.build(args)
|
2016-09-30 13:06:24 +03:00
|
|
|
tmp = Util.make_components_hash(self, args)
|
|
|
|
super(tmp)
|
2002-01-10 11:00:51 +03:00
|
|
|
end
|
|
|
|
|
2004-03-24 14:53:31 +03:00
|
|
|
#
|
|
|
|
# == Description
|
|
|
|
#
|
2005-08-24 09:08:00 +04:00
|
|
|
# Returns the full path for an HTTP request, as required by Net::HTTP::Get.
|
|
|
|
#
|
|
|
|
# If the URI contains a query, the full path is URI#path + '?' + URI#query.
|
|
|
|
# Otherwise, the path is simply URI#path.
|
2004-03-24 14:53:31 +03:00
|
|
|
#
|
2016-09-30 13:06:24 +03:00
|
|
|
# Example:
|
|
|
|
#
|
|
|
|
# newuri = URI::HTTP.build(path: '/foo/bar', query: 'test=true')
|
|
|
|
# newuri.request_uri # => "/foo/bar?test=true"
|
|
|
|
#
|
2002-01-10 11:00:51 +03:00
|
|
|
def request_uri
|
2016-09-30 13:06:24 +03:00
|
|
|
return unless @path
|
|
|
|
|
|
|
|
url = @query ? "#@path?#@query" : @path.dup
|
|
|
|
url.start_with?(?/.freeze) ? url : ?/ + url
|
2002-01-10 11:00:51 +03:00
|
|
|
end
|
2004-03-24 14:53:31 +03:00
|
|
|
end
|
2002-01-10 11:00:51 +03:00
|
|
|
|
|
|
|
@@schemes['HTTP'] = HTTP
|
2016-09-30 13:06:24 +03:00
|
|
|
|
2004-03-24 14:53:31 +03:00
|
|
|
end
|