Module: Contacts19

Defined in:
lib/contacts19.rb,
lib/contacts19/aol.rb,
lib/contacts19/base.rb,
lib/contacts19/gmail.rb,
lib/contacts19/plaxo.rb,
lib/contacts19/yahoo.rb,
lib/contacts19/mailru.rb,
lib/contacts19/hotmail.rb,
lib/contacts19/version.rb,
lib/contacts19/json_picker.rb

Defined Under Namespace

Classes: Aol, AuthenticationError, Base, ConnectionError, ContactsError, Gmail, Hotmail, Mailru, Plaxo, TypeNotFound, Yahoo

Constant Summary collapse

TYPES =
{}
VERSION =
"0.0.1"

Class Method Summary collapse

Class Method Details

.guess(login, password, options = {}) ⇒ Object



212
213
214
215
216
217
218
219
220
# File 'lib/contacts19/base.rb', line 212

def self.guess(, password, options={})
  TYPES.inject([]) do |a, t|
    begin
      a + t[1].new(, password, options).contacts
    rescue AuthenticationError
      a
    end
  end.uniq
end

.new(type, login, password, options = {}) ⇒ Object



204
205
206
207
208
209
210
# File 'lib/contacts19/base.rb', line 204

def self.new(type, , password, options={})
  if TYPES.include?(type.to_s.intern)
    TYPES[type.to_s.intern].new(, password, options)
  else
    raise TypeNotFound, "#{type.inspect} is not a valid type, please choose one of the following: #{TYPES.keys.inspect}"
  end
end

.parse_json(string) ⇒ Object



6
7
8
9
10
11
12
13
14
15
# File 'lib/contacts19/json_picker.rb', line 6

def self.parse_json( string )
  if Object.const_defined?('ActiveSupport') and
     ActiveSupport.const_defined?('JSON')
    ActiveSupport::JSON.decode( string )
  elsif Object.const_defined?('JSON')
    JSON.parse( string )
  else
    raise 'Contacts requires JSON or Rails (with ActiveSupport::JSON)'
  end
end