Class: Garb::AuthenticationRequest

Inherits:
Object
  • Object
show all
Defined in:
lib/garb/authentication_request.rb

Defined Under Namespace

Classes: AuthError

Constant Summary collapse

URL =
'https://www.google.com/accounts/ClientLogin'

Instance Method Summary collapse

Constructor Details

#initialize(email, password) ⇒ AuthenticationRequest

Returns a new instance of AuthenticationRequest.



7
8
9
10
# File 'lib/garb/authentication_request.rb', line 7

def initialize(email, password)
  @email = email
  @password = password
end

Instance Method Details

#auth_token(opts = {}) ⇒ Object



46
47
48
49
# File 'lib/garb/authentication_request.rb', line 46

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_requestObject



40
41
42
43
44
# File 'lib/garb/authentication_request.rb', line 40

def build_request
  post = Net::HTTP::Post.new(uri.path)
  post.set_form_data(parameters)
  post
end

#parametersObject



12
13
14
15
16
17
18
19
20
# File 'lib/garb/authentication_request.rb', line 12

def parameters
  {
    'Email'       => @email,
    'Passwd'      => @password,
    'accountType' => 'HOSTED_OR_GOOGLE',
    'service'     => 'analytics',
    'source'      => 'vigetLabs-garb-001'
  }
end

#send_request(ssl_mode) ⇒ Object



26
27
28
29
30
31
32
33
34
35
36
37
38
# File 'lib/garb/authentication_request.rb', line 26

def send_request(ssl_mode)
  http = Net::HTTP.new(uri.host, uri.port)
  http.use_ssl = true
  http.verify_mode = ssl_mode

  if ssl_mode == OpenSSL::SSL::VERIFY_PEER
    http.ca_file = CA_CERT_FILE
  end

  http.request(build_request) do |response|
    raise AuthError unless response.is_a?(Net::HTTPOK)
  end
end

#uriObject



22
23
24
# File 'lib/garb/authentication_request.rb', line 22

def uri
  URI.parse(URL)
end