Class: Ubiquitously::Propeller::Account

Inherits:
Service::Account show all
Defined in:
lib/ubiquitously/services/propeller.rb

Instance Attribute Summary

Attributes inherited from Service::Account

#credentials, #ip, #logged_in, #password, #user, #username

Instance Method Summary collapse

Methods inherited from Service::Account

#access_token, #agent, #cookies?, #credentials?, #initialize

Methods included from Account::Authorizable

included

Methods included from Account::Loggable

included

Methods included from Account::Restful

included

Methods inherited from Base

#apply, #debug?

Methods included from SubclassableCallbacks

included, override

Constructor Details

This class inherits a constructor from Ubiquitously::Service::Account

Instance Method Details

#loginObject



4
5
6
7
8
9
10
11
12
13
# File 'lib/ubiquitously/services/propeller.rb', line 4

def 
  page = agent.get("http://www.propeller.com/signin/")
  form = page.forms.detect {|form| form.form_node["class"] == "ajax-form"}
  form["member_name"] = username
  form["password"]    = password
  form["submit"]      = "sign in" # require to get around the ajax
  page                = form.submit

  authorize!((page.body !~ /Invalid member name or password/i) && (page.body !~ /ajax-form/))
end