Class: Contacts::Base
- Inherits:
-
Object
show all
- Defined in:
- lib/contacts/base.rb
Instance Method Summary
collapse
Constructor Details
#initialize(login, password, options = {}) ⇒ Base
Returns a new instance of Base.
15
16
17
18
19
20
21
22
|
# File 'lib/contacts/base.rb', line 15
def initialize(login, password, options={})
@login = login
@password = password
@captcha_token = options[:captcha_token]
@captcha_response = options[:captcha_response]
@connections = {}
connect
end
|
Instance Method Details
#connect ⇒ Object
24
25
26
27
|
# File 'lib/contacts/base.rb', line 24
def connect
raise AuthenticationError, "Login and password must not be nil, login: #{@login.inspect}, password: #{@password.inspect}" if @login.nil? || @login.empty? || @password.nil? || @password.empty?
real_connect
end
|
#connected? ⇒ Boolean
29
30
31
|
# File 'lib/contacts/base.rb', line 29
def connected?
@cookies && !@cookies.empty?
end
|
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
# File 'lib/contacts/base.rb', line 33
def contacts(options = {})
return @contacts if @contacts
if connected?
url = URI.parse(contact_list_url)
http = open_http(url)
resp = http.get("#{url.path}?#{url.query}",
"Cookie" => @cookies
)
data = resp.body
if resp.code_type != Net::HTTPOK
raise ConnectionError, self.class.const_get(:PROTOCOL_ERROR)
end
parse(data, options)
end
end
|
#login ⇒ Object
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
# File 'lib/contacts/base.rb', line 51
def login
@attempt ||= 0
@attempt += 1
if @attempt == 1
@login
else
if @login.include?("@#{domain}")
@login.sub("@#{domain}","")
else
"#{@login}@#{domain}"
end
end
end
|
#login_with_domain ⇒ Object
66
67
68
|
# File 'lib/contacts/base.rb', line 66
def login_with_domain
@login.include?("@#{domain}") ? "#{@login}" : "#{@login}@#{domain}"
end
|
#login_without_domain ⇒ Object
70
71
72
|
# File 'lib/contacts/base.rb', line 70
def login_without_domain
@login.include?("@#{domain}") ? @login.sub("@#{domain}",'') : "#{@login}"
end
|
#password ⇒ Object
74
75
76
|
# File 'lib/contacts/base.rb', line 74
def password
@password
end
|