Class: Travis::Client::Session

Inherits:
Object
  • Object
show all
Includes:
Methods
Defined in:
lib/travis/client/session.rb

Constant Summary collapse

SSL_OPTIONS =
{ :ca_file => Tools::Assets['cacert.pem'] }

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Methods

#account, #accounts, #api_endpoint, #api_endpoint=, #artifact, #broadcasts, #build, #cancel, #explicit_api_endpoint?, #github_auth, #hooks, #job, #listen, #repo, #repos, #restart, #user

Constructor Details

#initialize(options = Travis::Client::ORG_URI) ⇒ Session

Returns a new instance of Session.

Raises:

  • (ArgumentError)


24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# File 'lib/travis/client/session.rb', line 24

def initialize(options = Travis::Client::ORG_URI)
  @headers         = {}
  @cache           = {}
  @instruments     = []
  @agent_info      = []
  @config          = nil
  @faraday_adapter = defined?(Typhoeus) ? :typhoeus : :net_http
  @ssl             = SSL_OPTIONS

  options = { :uri => options } unless options.respond_to? :each_pair
  options.each_pair { |key, value| public_send("#{key}=", value) }

  raise ArgumentError, "neither :uri nor :connection specified" unless connection
  headers['Accept'] = 'application/json; version=2'
  set_user_agent
end

Instance Attribute Details

#access_tokenObject

Returns the value of attribute access_token.



22
23
24
# File 'lib/travis/client/session.rb', line 22

def access_token
  @access_token
end

#agent_infoObject

Returns the value of attribute agent_info.



22
23
24
# File 'lib/travis/client/session.rb', line 22

def agent_info
  @agent_info
end

#connectionObject

Returns the value of attribute connection.



22
23
24
# File 'lib/travis/client/session.rb', line 22

def connection
  @connection
end

#faraday_adapterObject

Returns the value of attribute faraday_adapter.



22
23
24
# File 'lib/travis/client/session.rb', line 22

def faraday_adapter
  @faraday_adapter
end

#headersObject

Returns the value of attribute headers.



22
23
24
# File 'lib/travis/client/session.rb', line 22

def headers
  @headers
end

#instrumentsObject (readonly)

Returns the value of attribute instruments.



22
23
24
# File 'lib/travis/client/session.rb', line 22

def instruments
  @instruments
end

#sslObject

Returns the value of attribute ssl.



22
23
24
# File 'lib/travis/client/session.rb', line 22

def ssl
  @ssl
end

Instance Method Details

#clear_cacheObject



220
221
222
223
224
# File 'lib/travis/client/session.rb', line 220

def clear_cache
  reset_entities
  clear_find_cache
  self
end

#clear_cache!Object



226
227
228
229
230
# File 'lib/travis/client/session.rb', line 226

def clear_cache!
  reset_entities
  @cache.clear
  self
end

#configObject



129
130
131
# File 'lib/travis/client/session.rb', line 129

def config
  @config ||= get_raw('/config')['config'] || {}
end

#delete(*args) ⇒ Object



159
160
161
# File 'lib/travis/client/session.rb', line 159

def delete(*args)
  load delete_raw(*args)
end

#delete_raw(*args) ⇒ Object



191
192
193
# File 'lib/travis/client/session.rb', line 191

def delete_raw(*args)
  raw(:delete, *args)
end

#find_many(entity, args = {}) ⇒ Object



96
97
98
99
# File 'lib/travis/client/session.rb', line 96

def find_many(entity, args = {})
  raise Travis::Client::Error, "cannot fetch #{entity}" unless entity.respond_to?(:many) and entity.many
  cached(entity, :many, args) { fetch_many(entity, args) }
end

#find_one(entity, id = nil) ⇒ Object



90
91
92
93
94
# File 'lib/travis/client/session.rb', line 90

def find_one(entity, id = nil)
  raise Travis::Client::Error, "cannot fetch #{entity}" unless entity.respond_to?(:many) and entity.many
  return create_entity(entity, entity.id_field => id) if entity.id? id
  cached(entity, :by, id) { fetch_one(entity, id) }
end

#find_one_or_many(entity, args = nil) ⇒ Object



101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
# File 'lib/travis/client/session.rb', line 101

def find_one_or_many(entity, args = nil)
  raise Travis::Client::Error, "cannot fetch #{entity}" unless entity.respond_to?(:many) and entity.many
  cached(entity, :one_or_many, args) do
    path       = "/#{entity.many}"
    path, args = "#{path}/#{args}", {} unless args.is_a? Hash
    result     = get(path, args)
    one        = result[entity.one]

    if result.include? entity.many
      Array(one) + Array(result[entity.many])
    else
      one
    end
  end
end

#get(*args) ⇒ Object



155
156
157
# File 'lib/travis/client/session.rb', line 155

def get(*args)
  load get_raw(*args)
end

#get_raw(*args) ⇒ Object



175
176
177
# File 'lib/travis/client/session.rb', line 175

def get_raw(*args)
  raw(:get, *args)
end

#inspectObject



216
217
218
# File 'lib/travis/client/session.rb', line 216

def inspect
  "#<#{self.class}: #{uri}>"
end

#instrument(&block) ⇒ Object



236
237
238
# File 'lib/travis/client/session.rb', line 236

def instrument(&block)
  instruments << block
end

#load(data) ⇒ Object



133
134
135
136
137
138
139
140
141
142
143
144
# File 'lib/travis/client/session.rb', line 133

def load(data)
  result = {}
  (data || {}).each_pair do |key, value|
    type = Entity.subclass_for(key)
    if value.respond_to? :to_ary
      result[key] = value.to_ary.map { |e| create_entity(type, e) }
    else
      result[key] = create_entity(type, value)
    end
  end
  result
end

#patch(*args) ⇒ Object



163
164
165
# File 'lib/travis/client/session.rb', line 163

def patch(*args)
  load patch_raw(*args)
end

#patch_raw(*args) ⇒ Object



187
188
189
# File 'lib/travis/client/session.rb', line 187

def patch_raw(*args)
  raw(:patch, *args)
end

#post(*args) ⇒ Object



167
168
169
# File 'lib/travis/client/session.rb', line 167

def post(*args)
  load post_raw(*args)
end

#post_raw(*args) ⇒ Object



179
180
181
# File 'lib/travis/client/session.rb', line 179

def post_raw(*args)
  raw(:post, *args)
end

#preload(list) ⇒ Object



146
147
148
149
150
151
152
153
# File 'lib/travis/client/session.rb', line 146

def preload(list)
  list.group_by(&:class).each do |type, instances|
    next unless type.preloadable?
    ids = instances.map { |e| e.id unless e.complete? }.compact
    find_many(type, :ids => ids) if ids.any?
  end
  list
end

#private_channels?Boolean

Returns:

  • (Boolean)


240
241
242
# File 'lib/travis/client/session.rb', line 240

def private_channels?
  access_token and user.channels != ['common']
end

#put(*args) ⇒ Object



171
172
173
# File 'lib/travis/client/session.rb', line 171

def put(*args)
  load put_raw(*args)
end

#put_raw(*args) ⇒ Object



183
184
185
# File 'lib/travis/client/session.rb', line 183

def put_raw(*args)
  raw(:put, *args)
end

#raw(verb, url, *args) ⇒ Object



195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
# File 'lib/travis/client/session.rb', line 195

def raw(verb, url, *args)
  url    = url.sub(/^\//, '')
  result = instrumented(verb.to_s.upcase, url, *args) do
    connection.public_send(verb, url, *args) do |request|
      next if request.path !~ /^https?:/ or request.path.start_with? api_endpoint
      request.headers.delete("Authorization")
    end
  end

  case result.status
  when 0             then raise Travis::Client::Error, 'SSL error: could not verify peer'
  when 200..299      then JSON.parse(result.body) rescue result.body
  when 301, 303      then raw(:get, result.headers['Location'])
  when 302, 307, 308 then raw(verb, result.headers['Location'])
  when 404           then raise Travis::Client::NotFound, result.body
  when 400..499      then raise Travis::Client::Error,    result.status
  when 500..599      then raise Travis::Client::Error,    "server error (#{result.status})"
  else raise Travis::Client::Error, "unhandled status code #{result.status}"
  end
end

#reload(entity) ⇒ Object



122
123
124
125
126
127
# File 'lib/travis/client/session.rb', line 122

def reload(entity)
  reset(entity)
  result = fetch_one(entity.class, entity.id)
  entity.update_attributes(result.attributes) if result.attributes != entity.attributes
  result
end

#reset(entity) ⇒ Object



117
118
119
120
# File 'lib/travis/client/session.rb', line 117

def reset(entity)
  entity.attributes.clear
  entity
end

#sessionObject



232
233
234
# File 'lib/travis/client/session.rb', line 232

def session
  self
end

#uriObject



41
42
43
# File 'lib/travis/client/session.rb', line 41

def uri
  connection.url_prefix.to_s if connection
end

#uri=(uri) ⇒ Object



55
56
57
58
59
60
61
# File 'lib/travis/client/session.rb', line 55

def uri=(uri)
  clear_cache!
  self.connection = Faraday.new(:url => uri, :ssl => ssl) do |faraday|
    faraday.request  :url_encoded
    faraday.adapter(*faraday_adapter)
  end
end