class Garb::Request::Authentication

Constants

URL

Public Class Methods

new(email, password, opts = {}) click to toggle source
# File lib/garb/request/authentication.rb, line 6
def initialize(email, password, opts = {})
  @email = email
  @password = password
  @account_type = opts[:account_type] || 'HOSTED_OR_GOOGLE'
end

Public Instance Methods

auth_token(opts = {}) click to toggle source
# File lib/garb/request/authentication.rb, line 48
def auth_token(opts = {})
  ssl_mode = opts[:secure] ? OpenSSL::SSL::VERIFY_PEER : OpenSSL::SSL::VERIFY_NONE
  send_request(ssl_mode).body.match(/^Auth=(.*)$/)[1]
end
build_request() click to toggle source
# File lib/garb/request/authentication.rb, line 42
def build_request
  post = Net::HTTP::Post.new(uri.path)
  post.set_form_data(parameters)
  post
end
parameters() click to toggle source
# File lib/garb/request/authentication.rb, line 12
def parameters
  {
    'Email'       => @email,
    'Passwd'      => @password,
    'accountType' => @account_type,
    'service'     => 'analytics',
    'source'      => "sija-garb-v#{Garb::VERSION}"
  }
end
send_request(ssl_mode) click to toggle source
# File lib/garb/request/authentication.rb, line 26
def send_request(ssl_mode)
  http = Net::HTTP.new(uri.host, uri.port, Garb.proxy_address, Garb.proxy_port)
  http.open_timeout = Garb.open_timeout
  http.read_timeout = Garb.read_timeout
  http.use_ssl = true
  http.verify_mode = ssl_mode

  if ssl_mode == OpenSSL::SSL::VERIFY_PEER
    http.ca_file = Garb.ca_cert_file
  end

  http.request(build_request) do |response|
    raise AuthError unless response.is_a?(Net::HTTPOK)
  end
end
uri() click to toggle source
# File lib/garb/request/authentication.rb, line 22
def uri
  @uri ||= URI.parse(URL)
end