Class: Tinder::Connection

Inherits:
Object
  • Object
show all
Defined in:
lib/tinder/connection.rb

Constant Summary collapse

HOST =
'campfirenow.com'

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(subdomain, options = {}) ⇒ Connection

Returns a new instance of Connection.



36
37
38
39
40
41
42
43
44
# File 'lib/tinder/connection.rb', line 36

def initialize(subdomain, options = {})
  @subdomain = subdomain
  @options = {:ssl => true, :ssl_verify => true, :proxy => ENV['HTTP_PROXY']}.merge(options)
  @uri = URI.parse("#{@options[:ssl] ? 'https' : 'http' }://#{subdomain}.#{HOST}")
  @token = options[:token]

  connection.basic_auth token, 'X'
  raw_connection.basic_auth token, 'X'
end

Instance Attribute Details

#optionsObject (readonly)

Returns the value of attribute options.



13
14
15
# File 'lib/tinder/connection.rb', line 13

def options
  @options
end

#subdomainObject (readonly)

Returns the value of attribute subdomain.



13
14
15
# File 'lib/tinder/connection.rb', line 13

def subdomain
  @subdomain
end

#uriObject (readonly)

Returns the value of attribute uri.



13
14
15
# File 'lib/tinder/connection.rb', line 13

def uri
  @uri
end

Class Method Details

.connectionObject



15
16
17
18
19
20
21
22
23
24
# File 'lib/tinder/connection.rb', line 15

def self.connection
  @connection ||= Faraday.new do |builder|
    builder.use     Faraday::Request::JSON
    builder.use     Faraday::Response::Mashify
    builder.use     Faraday::Response::ParseJson
    builder.use     Faraday::Response::RemoveWhitespace
    builder.use     Faraday::Response::RaiseOnAuthenticationFailure
    builder.adapter Faraday.default_adapter
  end
end

.raw_connectionObject



26
27
28
29
30
31
32
33
34
# File 'lib/tinder/connection.rb', line 26

def self.raw_connection
  @raw_connection ||= Faraday.new do |builder|
    builder.use     Faraday::Response::Mashify
    builder.use     Faraday::Response::ParseJson
    builder.use     Faraday::Response::RemoveWhitespace
    builder.use     Faraday::Response::RaiseOnAuthenticationFailure
    builder.adapter Faraday.default_adapter
  end
end

Instance Method Details

#basic_auth_settingsObject



46
47
48
# File 'lib/tinder/connection.rb', line 46

def basic_auth_settings
  {:username => token, :password => 'X'}
end

#connectionObject



50
51
52
53
54
55
56
57
58
59
60
# File 'lib/tinder/connection.rb', line 50

def connection
  @connection ||= begin
    conn = self.class.connection.dup
    conn.url_prefix = @uri.to_s
    conn.proxy options[:proxy]
    if options[:ssl_verify] == false
      conn.ssl[:verify] = false
    end
    conn
  end
end

#get(url, *args) ⇒ Object



81
82
83
84
# File 'lib/tinder/connection.rb', line 81

def get(url, *args)
  response = connection.get(url, *args)
  response.body
end

#post(url, body = nil, *args) ⇒ Object



86
87
88
89
# File 'lib/tinder/connection.rb', line 86

def post(url, body = nil, *args)
  response = connection.post(url, body, *args)
  response.body
end

#put(url, body = nil, *args) ⇒ Object



95
96
97
98
# File 'lib/tinder/connection.rb', line 95

def put(url, body = nil, *args)
  response = connection.put(url, body, *args)
  response.body
end

#raw_connectionObject



62
63
64
65
66
67
68
69
70
71
72
# File 'lib/tinder/connection.rb', line 62

def raw_connection
  @raw_connection ||= begin
    conn = self.class.raw_connection.dup
    conn.url_prefix = @uri.to_s
    conn.proxy options[:proxy]
    if options[:ssl_verify] == false
      conn.ssl[:verify] = false
    end
    conn
  end
end

#raw_post(url, body = nil, *args) ⇒ Object



91
92
93
# File 'lib/tinder/connection.rb', line 91

def raw_post(url, body = nil, *args)
  response = raw_connection.post(url, body, *args)
end

#ssl?Boolean

Is the connection to campfire using ssl?

Returns:

  • (Boolean)


101
102
103
# File 'lib/tinder/connection.rb', line 101

def ssl?
  uri.scheme == 'https'
end

#tokenObject



74
75
76
77
78
79
# File 'lib/tinder/connection.rb', line 74

def token
  @token ||= begin
    connection.basic_auth(options[:username], options[:password])
    get('/users/me.json')['user']['api_auth_token']
  end
end