Sha256: a9209aff59b4d05440a6a8d9c4e0a2503d037aa9e2a6fb5d798ee23b333e2843
Contents?: true
Size: 1.72 KB
Versions: 6
Compression:
Stored size: 1.72 KB
Contents
module CMSScanner # WebSite Implementation class WebSite attr_reader :uri, :opts # @param [ String ] site_url # @param [ Hash ] opts def initialize(site_url, opts = {}) self.url = site_url.dup @opts = opts end def url=(site_url) # Add a trailing slash to the site url site_url << '/' if site_url[-1, 1] != '/' # Use the validator to ensure the site_url has a correct format OptParseValidator::OptURL.new([]).validate(site_url) @uri = Addressable::URI.parse(site_url) end # Used for convenience # # @param [ String ] path Optional path to merge with the uri # # @return [ String ] def url(path = nil) @uri.join(path || '').to_s end # Checks if the remote website is up. # # @param [ String ] path # # @return [ Boolean ] def online?(path = nil) NS::Browser.get(url(path)).code != 0 end # @param [ String ] path # # @return [ Boolean ] def http_auth?(path = nil) NS::Browser.get(url(path)).code == 401 end # @param [ String ] path # # @return [ Boolean ] def access_forbidden?(path = nil) NS::Browser.get(url(path)).code == 403 end # @param [ String ] path # # @return [ Boolean ] def proxy_auth?(path = nil) NS::Browser.get(url(path)).code == 407 end # @param [ String ] url # # @return [ String ] The redirection url or nil # # As webmock does not support redirects mocking, coverage is ignored # :nocov: def redirection(url = nil) url ||= @uri.to_s res = NS::Browser.get(url, followlocation: true) res.effective_url == url ? nil : res.effective_url end # :nocov: end end
Version data entries
6 entries across 6 versions & 1 rubygems