@param [ Hash ] options
@return [ Browser ]
# File lib/common/browser.rb, line 52 def self.instance(options = {}) unless @@instance @@instance = new(options) end @@instance end
@param [ String ] url @param [ Hash ] params
@return [ Typhoeus::Request ]
# File lib/common/browser.rb, line 92 def forge_request(url, params = {}) Typhoeus::Request.new(url, merge_request_params(params)) end
If an option was set but is not in the new config_file it’s value is kept
@param [ String ] config_file
@return [ void ]
# File lib/common/browser.rb, line 70 def load_config(config_file = nil) @config_file = config_file || @config_file if File.symlink?(@config_file) raise '[ERROR] Config file is a symlink.' else data = JSON.parse(File.read(@config_file)) end OPTIONS.each do |option| option_name = option.to_s unless data[option_name].nil? self.send(:"#{option_name}=", data[option_name]) end end end
@param [ Hash ] params
@return [ Hash ]
# File lib/common/browser.rb, line 99 def merge_request_params(params = {}) params = Browser.append_params_header_field( params, 'User-Agent', self.user_agent ) if @proxy params = params.merge(proxy: @proxy) if @proxy_auth params = params.merge(proxyauth: @proxy_auth) end end if @basic_auth params = Browser.append_params_header_field( params, 'Authorization', @basic_auth ) end if @request_timeout params = params.merge(timeout: @request_timeout) end if @connect_timeout params = params.merge(connecttimeout: @connect_timeout) end # Used to enable the cache system if :cache_ttl > 0 unless params.has_key?(:cache_ttl) params = params.merge(cache_ttl: @cache_ttl) end # Disable SSL-Certificate checks params.merge!(ssl_verifypeer: false) params.merge!(ssl_verifyhost: 0) params.merge!(cookiejar: @cache_dir + '/cookie-jar') params.merge!(cookiefile: @cache_dir + '/cookie-jar') params end
Generated with the Darkfish Rdoc Generator 2.