travis 1.11.1 → 1.13.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (158) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +34 -3
  3. data/Rakefile +22 -20
  4. data/bin/travis +5 -3
  5. data/examples/org_overview.rb +2 -0
  6. data/examples/pro_auth.rb +3 -1
  7. data/examples/stream.rb +5 -3
  8. data/lib/travis/auto_login.rb +2 -0
  9. data/lib/travis/cli/accounts.rb +12 -9
  10. data/lib/travis/cli/api_command.rb +85 -81
  11. data/lib/travis/cli/branches.rb +8 -6
  12. data/lib/travis/cli/cache.rb +48 -44
  13. data/lib/travis/cli/cancel.rb +4 -2
  14. data/lib/travis/cli/command.rb +170 -142
  15. data/lib/travis/cli/console.rb +5 -5
  16. data/lib/travis/cli/disable.rb +4 -2
  17. data/lib/travis/cli/enable.rb +14 -12
  18. data/lib/travis/cli/encrypt.rb +57 -57
  19. data/lib/travis/cli/encrypt_file.rb +29 -18
  20. data/lib/travis/cli/endpoint.rb +9 -7
  21. data/lib/travis/cli/env.rb +13 -8
  22. data/lib/travis/cli/help.rb +11 -9
  23. data/lib/travis/cli/history.rb +19 -15
  24. data/lib/travis/cli/init.rb +27 -24
  25. data/lib/travis/cli/lint.rb +10 -8
  26. data/lib/travis/cli/login.rb +17 -11
  27. data/lib/travis/cli/logout.rb +4 -2
  28. data/lib/travis/cli/logs.rb +28 -19
  29. data/lib/travis/cli/monitor.rb +11 -8
  30. data/lib/travis/cli/open.rb +17 -14
  31. data/lib/travis/cli/parser.rb +2 -0
  32. data/lib/travis/cli/pubkey.rb +13 -11
  33. data/lib/travis/cli/raw.rb +4 -3
  34. data/lib/travis/cli/regenerate_token.rb +15 -0
  35. data/lib/travis/cli/remove_token.rb +15 -0
  36. data/lib/travis/cli/repo_command.rb +123 -112
  37. data/lib/travis/cli/report.rb +40 -33
  38. data/lib/travis/cli/repos.rb +14 -9
  39. data/lib/travis/cli/requests.rb +13 -12
  40. data/lib/travis/cli/restart.rb +4 -2
  41. data/lib/travis/cli/settings.rb +41 -35
  42. data/lib/travis/cli/setup/anynines.rb +7 -6
  43. data/lib/travis/cli/setup/appfog.rb +6 -4
  44. data/lib/travis/cli/setup/artifacts.rb +7 -5
  45. data/lib/travis/cli/setup/biicode.rb +6 -4
  46. data/lib/travis/cli/setup/cloud_66.rb +6 -4
  47. data/lib/travis/cli/setup/cloud_control.rb +8 -6
  48. data/lib/travis/cli/setup/cloud_files.rb +7 -5
  49. data/lib/travis/cli/setup/cloud_foundry.rb +9 -7
  50. data/lib/travis/cli/setup/code_deploy.rb +33 -29
  51. data/lib/travis/cli/setup/deis.rb +8 -6
  52. data/lib/travis/cli/setup/divshot.rb +20 -18
  53. data/lib/travis/cli/setup/elastic_beanstalk.rb +10 -8
  54. data/lib/travis/cli/setup/engine_yard.rb +9 -7
  55. data/lib/travis/cli/setup/gcs.rb +9 -7
  56. data/lib/travis/cli/setup/hackage.rb +6 -4
  57. data/lib/travis/cli/setup/heroku.rb +10 -4
  58. data/lib/travis/cli/setup/modulus.rb +5 -3
  59. data/lib/travis/cli/setup/ninefold.rb +7 -5
  60. data/lib/travis/cli/setup/nodejitsu.rb +6 -4
  61. data/lib/travis/cli/setup/npm.rb +6 -4
  62. data/lib/travis/cli/setup/open_shift.rb +8 -6
  63. data/lib/travis/cli/setup/opsworks.rb +24 -22
  64. data/lib/travis/cli/setup/pypi.rb +7 -5
  65. data/lib/travis/cli/setup/releases.rb +6 -6
  66. data/lib/travis/cli/setup/ruby_gems.rb +7 -5
  67. data/lib/travis/cli/setup/s3.rb +12 -8
  68. data/lib/travis/cli/setup/sauce_connect.rb +7 -5
  69. data/lib/travis/cli/setup/service.rb +36 -25
  70. data/lib/travis/cli/setup.rb +7 -3
  71. data/lib/travis/cli/show.rb +10 -8
  72. data/lib/travis/cli/sshkey.rb +31 -27
  73. data/lib/travis/cli/status.rb +5 -3
  74. data/lib/travis/cli/sync.rb +9 -7
  75. data/lib/travis/cli/token.rb +4 -2
  76. data/lib/travis/cli/version.rb +4 -3
  77. data/lib/travis/cli/whatsup.rb +10 -8
  78. data/lib/travis/cli/whoami.rb +2 -2
  79. data/lib/travis/cli.rb +81 -76
  80. data/lib/travis/client/account.rb +8 -6
  81. data/lib/travis/client/artifact.rb +16 -12
  82. data/lib/travis/client/auto_login.rb +7 -4
  83. data/lib/travis/client/broadcast.rb +2 -0
  84. data/lib/travis/client/build.rb +7 -3
  85. data/lib/travis/client/cache.rb +4 -2
  86. data/lib/travis/client/commit.rb +5 -2
  87. data/lib/travis/client/entity.rb +50 -46
  88. data/lib/travis/client/env_var.rb +13 -8
  89. data/lib/travis/client/error.rb +5 -3
  90. data/lib/travis/client/has_uuid.rb +3 -1
  91. data/lib/travis/client/job.rb +8 -3
  92. data/lib/travis/client/lint_result.rb +2 -0
  93. data/lib/travis/client/listener.rb +70 -55
  94. data/lib/travis/client/methods.rb +26 -5
  95. data/lib/travis/client/namespace.rb +20 -16
  96. data/lib/travis/client/not_loadable.rb +3 -1
  97. data/lib/travis/client/repository.rb +34 -22
  98. data/lib/travis/client/request.rb +5 -2
  99. data/lib/travis/client/restartable.rb +2 -0
  100. data/lib/travis/client/session.rb +118 -88
  101. data/lib/travis/client/settings.rb +8 -3
  102. data/lib/travis/client/singleton_setting.rb +2 -0
  103. data/lib/travis/client/ssh_key.rb +2 -0
  104. data/lib/travis/client/states.rb +8 -6
  105. data/lib/travis/client/user.rb +2 -0
  106. data/lib/travis/client/weak_entity.rb +6 -3
  107. data/lib/travis/client.rb +4 -1
  108. data/lib/travis/pro/auto_login.rb +2 -0
  109. data/lib/travis/pro.rb +2 -0
  110. data/lib/travis/tools/assets.rb +6 -3
  111. data/lib/travis/tools/completion.rb +10 -6
  112. data/lib/travis/tools/formatter.rb +20 -14
  113. data/lib/travis/tools/github.rb +59 -49
  114. data/lib/travis/tools/notification.rb +18 -13
  115. data/lib/travis/tools/safe_string.rb +4 -1
  116. data/lib/travis/tools/ssl_key.rb +5 -2
  117. data/lib/travis/tools/system.rb +11 -6
  118. data/lib/travis/version.rb +3 -1
  119. data/lib/travis.rb +3 -1
  120. data/spec/cli/api_command_spec.rb +11 -8
  121. data/spec/cli/cancel_spec.rb +2 -4
  122. data/spec/cli/encrypt_file_spec.rb +9 -7
  123. data/spec/cli/encrypt_spec.rb +19 -17
  124. data/spec/cli/endpoint_spec.rb +12 -10
  125. data/spec/cli/help_spec.rb +14 -12
  126. data/spec/cli/history_spec.rb +2 -0
  127. data/spec/cli/init_spec.rb +35 -33
  128. data/spec/cli/logs_spec.rb +2 -0
  129. data/spec/cli/open_spec.rb +6 -4
  130. data/spec/cli/repo_command_spec.rb +8 -4
  131. data/spec/cli/restart_spec.rb +2 -4
  132. data/spec/cli/setup/service_spec.rb +17 -18
  133. data/spec/cli/setup_spec.rb +2 -4
  134. data/spec/cli/show_spec.rb +4 -2
  135. data/spec/cli/status_spec.rb +7 -5
  136. data/spec/cli/token_spec.rb +7 -5
  137. data/spec/cli/version_spec.rb +2 -0
  138. data/spec/cli/whoami_spec.rb +9 -7
  139. data/spec/client/account_spec.rb +28 -20
  140. data/spec/client/auto_login_spec.rb +12 -9
  141. data/spec/client/broadcast_spec.rb +5 -3
  142. data/spec/client/build_spec.rb +28 -24
  143. data/spec/client/commit_spec.rb +17 -14
  144. data/spec/client/job_spec.rb +27 -23
  145. data/spec/client/methods_spec.rb +8 -4
  146. data/spec/client/namespace_spec.rb +8 -4
  147. data/spec/client/repository_spec.rb +33 -30
  148. data/spec/client/session_spec.rb +71 -67
  149. data/spec/client/user_spec.rb +13 -10
  150. data/spec/client_spec.rb +6 -4
  151. data/spec/pro_spec.rb +5 -3
  152. data/spec/spec_helper.rb +3 -1
  153. data/spec/support/fake_api.rb +662 -662
  154. data/spec/support/fake_github.rb +6 -3
  155. data/spec/support/helpers.rb +13 -8
  156. data/spec/travis_spec.rb +5 -3
  157. data/travis.gemspec +402 -399
  158. metadata +31 -49
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'travis/client'
2
4
 
3
5
  module Travis
@@ -7,7 +9,8 @@ module Travis
7
9
  attr_accessor :namespace, :type
8
10
 
9
11
  def initialize(namespace, type)
10
- @namespace, @type = namespace, type
12
+ @namespace = namespace
13
+ @type = type
11
14
  end
12
15
 
13
16
  def find_one(id = nil)
@@ -41,9 +44,9 @@ module Travis
41
44
 
42
45
  private
43
46
 
44
- def session
45
- namespace.session
46
- end
47
+ def session
48
+ namespace.session
49
+ end
47
50
  end
48
51
 
49
52
  include Methods
@@ -66,20 +69,21 @@ module Travis
66
69
 
67
70
  private
68
71
 
69
- def fix_names(klass)
70
- constants.each do |name|
71
- const = klass.const_get(name)
72
- klass.const_set(name, const) if const == const_get(name)
73
- end
72
+ def fix_names(klass)
73
+ constants.each do |name|
74
+ const = klass.const_get(name)
75
+ klass.const_set(name, const) if const == const_get(name)
74
76
  end
77
+ end
75
78
 
76
- def delegate_session(klass)
77
- return if klass == Object or klass == Kernel
78
- klass.extend(Methods)
79
- namespace = self
80
- klass.define_singleton_method(:session) { namespace.session }
81
- klass.define_singleton_method(:session=) { |value| namespace.session = value }
82
- end
79
+ def delegate_session(klass)
80
+ return if [Object, Kernel].include?(klass)
81
+
82
+ klass.extend(Methods)
83
+ namespace = self
84
+ klass.define_singleton_method(:session) { namespace.session }
85
+ klass.define_singleton_method(:session=) { |value| namespace.session = value }
86
+ end
83
87
  end
84
88
  end
85
89
  end
@@ -1,7 +1,9 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Travis
2
4
  module Client
3
5
  module NotLoadable
4
- def missing?(attribute)
6
+ def missing?(_attribute)
5
7
  false
6
8
  end
7
9
 
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'travis/client'
2
4
  require 'travis/tools/ssl_key'
3
5
 
@@ -14,7 +16,7 @@ module Travis
14
16
 
15
17
  def encrypt(value)
16
18
  encrypted = to_rsa.public_encrypt(value)
17
- Base64.encode64(encrypted).gsub(/\s+/, "")
19
+ Base64.encode64(encrypted).gsub(/\s+/, '')
18
20
  end
19
21
 
20
22
  def to_rsa
@@ -34,7 +36,8 @@ module Travis
34
36
  preloadable
35
37
 
36
38
  # @!parse attr_reader :slug, :description
37
- attributes :slug, :active, :private, :admin, :description, :last_build_id, :last_build_number, :last_build_state, :last_build_duration, :last_build_started_at, :last_build_finished_at, :github_language
39
+ attributes :slug, :active, :private, :admin, :description, :last_build_id, :last_build_number, :last_build_state,
40
+ :last_build_duration, :last_build_started_at, :last_build_finished_at, :github_language
38
41
  inspect_info :slug
39
42
 
40
43
  time :last_build_finished_at, :last_build_started_at
@@ -51,14 +54,14 @@ module Travis
51
54
  end
52
55
 
53
56
  def public_key
54
- attributes["public_key"] ||= begin
57
+ attributes['public_key'] ||= begin
55
58
  payload = session.get_raw("/repos/#{id}/key")
56
59
  Key.new(payload.fetch('key'), payload['fingerprint'])
57
60
  end
58
61
  end
59
62
 
60
63
  def name
61
- slug[/[^\/]+$/]
64
+ slug[%r{[^/]+$}]
62
65
  end
63
66
 
64
67
  def public_key=(key)
@@ -75,6 +78,7 @@ module Travis
75
78
  # @!parse attr_reader :last_build
76
79
  def last_build
77
80
  return unless last_build_id
81
+
78
82
  attributes['last_build'] ||= begin
79
83
  last_build = session.find_one(Build, last_build_id)
80
84
  last_build.number = last_build_number
@@ -89,11 +93,12 @@ module Travis
89
93
 
90
94
  def builds(params = nil)
91
95
  return each_build unless params
92
- session.find_many(Build, params.merge(:repository_id => id))
96
+
97
+ session.find_many(Build, params.merge(repository_id: id))
93
98
  end
94
99
 
95
100
  def build(number)
96
- builds(:number => number.to_s).first
101
+ builds(number: number.to_s).first
97
102
  end
98
103
 
99
104
  def recent_builds
@@ -102,7 +107,8 @@ module Travis
102
107
 
103
108
  def last_on_branch(name = nil)
104
109
  return branch(name) if name
105
- attributes['last_on_branch'] ||= session.get('branches', :repository_id => id)['branches']
110
+
111
+ attributes['last_on_branch'] ||= session.get('branches', repository_id: id)['branches']
106
112
  end
107
113
 
108
114
  def branches
@@ -112,19 +118,24 @@ module Travis
112
118
  def branch(name)
113
119
  attributes['branches'] ||= {}
114
120
  attributes['branches'][name] ||= begin
115
- build = attributes['last_on_branch'].detect { |b| b.commit.branch == name.to_s } if attributes['last_on_branch']
121
+ if attributes['last_on_branch']
122
+ build = attributes['last_on_branch'].detect do |b|
123
+ b.commit.branch == name.to_s
124
+ end
125
+ end
116
126
  build || session.get("/repos/#{id}/branches/#{name}")['branch']
117
127
  end
118
128
  end
119
129
 
120
130
  def each_build(params = nil, &block)
121
131
  return enum_for(__method__, params) unless block_given?
132
+
122
133
  params ||= {}
123
134
  chunk = builds(params)
124
135
  until chunk.empty?
125
136
  chunk.each(&block)
126
137
  number = chunk.last.number
127
- chunk = number == '1' ? [] : builds(params.merge(:after_number => number))
138
+ chunk = number == '1' ? [] : builds(params.merge(after_number: number))
128
139
  end
129
140
  self
130
141
  end
@@ -133,12 +144,12 @@ module Travis
133
144
  build_number = number.to_s[/^\d+/] or return nil
134
145
  build = build(build_number) or return nil
135
146
  job = build.jobs.detect { |j| j.number == number } if number != build_number
136
- job ||= build.jobs.first if build and build.jobs.size == 1
147
+ job ||= build.jobs.first if build && (build.jobs.size == 1)
137
148
  job
138
149
  end
139
150
 
140
151
  def set_hook(flag)
141
- result = session.put_raw('/hooks/', :hook => { :id => id, :active => flag })
152
+ result = session.put_raw('/hooks/', hook: { id:, active: flag })
142
153
  result['result']
143
154
  end
144
155
 
@@ -152,10 +163,10 @@ module Travis
152
163
 
153
164
  def pusher_channels
154
165
  attributes['pusher_channels'] ||= if session.private_channels?
155
- ["user-#{session.user.id}", "repo-#{id}"]
156
- else
157
- ["common"]
158
- end
166
+ ["user-#{session.user.id}", "repo-#{id}"]
167
+ else
168
+ ['common']
169
+ end
159
170
  end
160
171
 
161
172
  def member?
@@ -163,7 +174,7 @@ module Travis
163
174
  end
164
175
 
165
176
  def owner_name
166
- slug[/^[^\/]+/]
177
+ slug[%r{^[^/]+}]
167
178
  end
168
179
 
169
180
  def owner
@@ -171,7 +182,7 @@ module Travis
171
182
  end
172
183
 
173
184
  def requests
174
- attributes['requests'] ||= session.find_many(Request, :repository_id => id)
185
+ attributes['requests'] ||= session.find_many(Request, repository_id: id)
175
186
  end
176
187
 
177
188
  def settings
@@ -181,7 +192,7 @@ module Travis
181
192
  settings
182
193
  end
183
194
  rescue Travis::Client::NotFound
184
- raise Travis::Client::Error, "not allowed to access settings"
195
+ raise Travis::Client::Error, 'not allowed to access settings'
185
196
  end
186
197
 
187
198
  def caches(params = {})
@@ -193,8 +204,9 @@ module Travis
193
204
  end
194
205
 
195
206
  def active?
196
- # TODO remove once active is properly synced and exposed by api
207
+ # TODO: remove once active is properly synced and exposed by api
197
208
  return active unless active.nil?
209
+
198
210
  last_build_id?
199
211
  end
200
212
 
@@ -216,9 +228,9 @@ module Travis
216
228
 
217
229
  private
218
230
 
219
- def state
220
- last_build_state
221
- end
231
+ def state
232
+ last_build_state
233
+ end
222
234
  end
223
235
  end
224
236
  end
@@ -1,10 +1,13 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'travis/client/weak_entity'
2
4
 
3
5
  module Travis
4
6
  module Client
5
7
  class Request < WeakEntity
6
8
  # @!parse attr_reader :commit_id, :repository_id, :created_at, :owner_id, :owner_type, :event_type, :base_commit, :head_commit, :result, :message, :pull_request, :pull_request_number, :pull_request_title, :branch, :tag
7
- attributes :commit_id, :repository_id, :created_at, :owner_id, :owner_type, :event_type, :base_commit, :head_commit, :result, :message, :pull_request, :pull_request_number, :pull_request_title, :branch, :tag
9
+ attributes :commit_id, :repository_id, :created_at, :owner_id, :owner_type, :event_type, :base_commit,
10
+ :head_commit, :result, :message, :pull_request, :pull_request_number, :pull_request_title, :branch, :tag
8
11
  time :created_at
9
12
 
10
13
  # @!parse attr_reader :repository
@@ -29,7 +32,7 @@ module Travis
29
32
  [
30
33
  repository && repository.slug,
31
34
  event_type, branch || pull_request_number, result
32
- ].compact.join(" ")
35
+ ].compact.join(' ')
33
36
  end
34
37
  end
35
38
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'travis/client'
2
4
 
3
5
  module Travis
@@ -1,13 +1,15 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'travis/client'
2
4
  require 'travis/version'
3
5
 
4
6
  require 'faraday'
5
- require 'faraday_middleware'
6
7
  require 'travis/tools/system'
7
8
  require 'travis/tools/assets'
9
+ require 'faraday/rack'
8
10
 
9
11
  begin
10
- require 'typhoeus/adapters/faraday' unless Travis::Tools::System.windows?
12
+ require 'faraday/typhoeus' unless Travis::Tools::System.windows?
11
13
  rescue LoadError
12
14
  end
13
15
 
@@ -16,14 +18,14 @@ require 'json'
16
18
  module Travis
17
19
  module Client
18
20
  class Session
19
- PRIMITIVE = [nil, false, true]
20
- SSL_OPTIONS = { :ca_file => Tools::Assets['cacert.pem'] }
21
+ PRIMITIVE = [nil, false, true].freeze
22
+ SSL_OPTIONS = { ca_file: Tools::Assets['cacert.pem'] }
21
23
 
22
24
  include Methods
23
25
  attr_reader :connection, :headers, :access_token, :instruments, :faraday_adapter, :agent_info, :ssl
24
26
  attr_accessor :debug_http
25
27
 
26
- def initialize(options = Travis::Client::ORG_URI)
28
+ def initialize(options = Travis::Client::COM_URI)
27
29
  @headers = {}
28
30
  @cache = {}
29
31
  @instruments = []
@@ -32,10 +34,11 @@ module Travis
32
34
  @faraday_adapter = defined?(Typhoeus) ? :typhoeus : :net_http
33
35
  @ssl = SSL_OPTIONS
34
36
 
35
- options = { :uri => options } unless options.respond_to? :each_pair
37
+ options = { uri: options } unless options.respond_to? :each_pair
36
38
  options.each_pair { |key, value| public_send("#{key}=", value) }
37
39
 
38
- raise ArgumentError, "neither :uri nor :connection specified" unless connection
40
+ raise ArgumentError, 'neither :uri nor :connection specified' unless connection
41
+
39
42
  headers['Accept'] = 'application/vnd.travis-ci.2+json'
40
43
  set_user_agent
41
44
  check_ssl
@@ -57,7 +60,7 @@ module Travis
57
60
 
58
61
  def uri=(uri)
59
62
  clear_cache!
60
- self.connection = Faraday.new(:url => uri, :ssl => ssl) do |faraday|
63
+ self.connection = Faraday.new(url: uri, ssl:) do |faraday|
61
64
  faraday.request :url_encoded
62
65
  faraday.request :retry
63
66
  faraday.response :logger if debug_http
@@ -93,21 +96,27 @@ module Travis
93
96
  end
94
97
 
95
98
  def find_one(entity, id = nil)
96
- raise Travis::Client::Error, "cannot fetch #{entity}" unless entity.respond_to?(:many) and entity.many
99
+ raise Travis::Client::Error, "cannot fetch #{entity}" unless entity.respond_to?(:many) && entity.many
97
100
  return create_entity(entity, entity.id_field => id) if entity.id? id
101
+
98
102
  cached(entity, :by, id) { fetch_one(entity, id) }
99
103
  end
100
104
 
101
105
  def find_many(entity, args = {})
102
- raise Travis::Client::Error, "cannot fetch #{entity}" unless entity.respond_to?(:many) and entity.many
106
+ raise Travis::Client::Error, "cannot fetch #{entity}" unless entity.respond_to?(:many) && entity.many
107
+
103
108
  cached(entity, :many, args) { fetch_many(entity, args) }
104
109
  end
105
110
 
106
111
  def find_one_or_many(entity, args = nil)
107
- raise Travis::Client::Error, "cannot fetch #{entity}" unless entity.respond_to?(:many) and entity.many
112
+ raise Travis::Client::Error, "cannot fetch #{entity}" unless entity.respond_to?(:many) && entity.many
113
+
108
114
  cached(entity, :one_or_many, args) do
109
- path = "/#{entity.many}"
110
- path, args = "#{path}/#{args}", {} unless args.is_a? Hash
115
+ path = "/#{entity.many}"
116
+ unless args.is_a? Hash
117
+ path = "#{path}/#{args}"
118
+ args = {}
119
+ end
111
120
  result = get(path, args)
112
121
  one = result[entity.one]
113
122
 
@@ -157,8 +166,9 @@ module Travis
157
166
  def preload(list)
158
167
  list.group_by(&:class).each do |type, instances|
159
168
  next unless type.preloadable?
169
+
160
170
  ids = instances.map { |e| e.id unless e.complete? }.compact
161
- find_many(type, :ids => ids) if ids.any?
171
+ find_many(type, ids:) if ids.any?
162
172
  end
163
173
  list
164
174
  end
@@ -204,32 +214,40 @@ module Travis
204
214
  end
205
215
 
206
216
  def raw(verb, url, *args)
207
- url = url.sub(/^\//, '')
217
+ url = url.sub(%r{^/}, '')
208
218
  result = instrumented(verb.to_s.upcase, url, *args) do
209
- if url !~ /^https?:/ or url.start_with? api_endpoint
219
+ if url !~ (/^https?:/) || url.start_with?(api_endpoint)
210
220
  connection.public_send(verb, url, *args)
211
221
  else
212
- Faraday.public_send(verb, url, *args) { |r| r.headers.delete("Authorization") }
222
+ Faraday.public_send(verb, url, *args) { |r| r.headers.delete('Authorization') }
213
223
  end
214
224
  end
215
225
 
216
226
  case result.status
217
227
  when 0 then raise Travis::Client::SSLError, 'SSL error: could not verify peer'
218
- when 200..299 then JSON.parse(result.body) rescue result.body
228
+ when 200..299 then begin
229
+ JSON.parse(result.body)
230
+ rescue StandardError
231
+ result.body
232
+ end
219
233
  when 301, 303 then raw(:get, result.headers['Location'])
220
234
  when 302, 307, 308 then raw(verb, result.headers['Location'])
221
- when 401 then raise Travis::Client::NotLoggedIn, 'not logged in'
222
- when 403 then
223
- body = JSON.parse(result.body) rescue {}
224
- if body["error_type"] == "migrated_repository"
225
- raise Travis::Client::RepositoryMigrated, body["error_message"]
226
- else
227
- raise Travis::Client::NotLoggedIn, 'invalid access token'
235
+ when 401 then raise Travis::Client::NotLoggedIn, 'not logged in'
236
+ when 403
237
+ body = begin
238
+ JSON.parse(result.body)
239
+ rescue StandardError
240
+ {}
228
241
  end
242
+ raise Travis::Client::RepositoryMigrated, body['error_message'] if body['error_type'] == 'migrated_repository'
243
+
244
+ raise Travis::Client::NotLoggedIn, 'invalid access token'
245
+
229
246
  when 404 then raise Travis::Client::NotFound, result.body
230
247
  when 422 then raise Travis::Client::ValidationFailed, result.body
231
- when 400..499 then raise Travis::Client::Error, "%s: %p" % [result.status, result.body]
232
- when 500..599 then raise Travis::Client::Error, "server error (%s: %p)" % [result.status, result.body]
248
+ when 400..499 then raise Travis::Client::Error, format('%s: %p', result.status, result.body)
249
+ when 500..599 then raise Travis::Client::Error,
250
+ format('server error (%s: %p)', result.status, result.body)
233
251
  else raise Travis::Client::Error, "unhandled status code #{result.status}"
234
252
  end
235
253
  end
@@ -264,83 +282,95 @@ module Travis
264
282
 
265
283
  private
266
284
 
267
- def set_user_agent
268
- adapter = Array === faraday_adapter ? faraday_adapter.first : faraday_adapter
269
- adapter = adapter.to_s.capitalize.gsub(/_http_(.)/) { "::HTTP::#{$1.upcase}" }.gsub(/_http/, '::HTTP')
270
- headers['User-Agent'] = "Travis/#{Travis::VERSION} (#{Travis::Tools::System.description(agent_info)}) Faraday/#{Faraday::VERSION} #{adapter}/#{adapter_version(adapter)}"
271
- end
285
+ def set_user_agent
286
+ adapter = faraday_adapter.is_a?(Array) ? faraday_adapter.first : faraday_adapter
287
+ adapter = adapter.to_s.capitalize.gsub(/_http_(.)/) do
288
+ "::HTTP::#{::Regexp.last_match(1).upcase}"
289
+ end.gsub(/_http/, '::HTTP')
290
+ headers['User-Agent'] =
291
+ "Travis/#{Travis::VERSION} (#{Travis::Tools::System.description(agent_info)}) Faraday/#{Faraday::VERSION} #{adapter}/#{adapter_version(adapter)}"
292
+ end
272
293
 
273
- def adapter_version(adapter)
274
- version = Object.const_get(adapter).const_get("VERSION")
275
- [*version].join('.')
276
- rescue Exception
277
- "unknown"
278
- end
294
+ def adapter_version(adapter)
295
+ version = Object.const_get(adapter).const_get('VERSION')
296
+ [*version].join('.')
297
+ rescue Exception
298
+ 'unknown'
299
+ end
279
300
 
280
- def instrumented(name, *args)
281
- name = [name, *args.map(&:inspect)].join(" ") if args.any?
282
- result = nil
283
- chain = instruments + [proc { |n,l| result = yield }]
284
- lift = proc { chain.shift.call(name, lift) }
285
- lift.call
286
- result
287
- end
301
+ def instrumented(name, *args)
302
+ name = [name, *args.map(&:inspect)].join(' ') if args.any?
303
+ result = nil
304
+ chain = instruments + [proc { |_n, _l| result = yield }]
305
+ lift = proc { chain.shift.call(name, lift) }
306
+ lift.call
307
+ result
308
+ end
288
309
 
289
- def create_entity(type, data)
290
- return data if primitive?(data)
291
- data = { type.id_field => data } if type.id? data
292
- id = type.cast_id(data.fetch(type.id_field)) unless type.weak?
293
- entity = id ? cached(type, :id, id) { type.new(self, id) } : type.new(self, nil)
294
- entity.update_attributes(data)
295
- entity
296
- end
310
+ def create_entity(type, data)
311
+ return data if primitive?(data)
297
312
 
298
- def primitive?(data)
299
- PRIMITIVE.include? data
300
- end
313
+ data = { type.id_field => data } if type.id? data
314
+ id = type.cast_id(data.fetch(type.id_field)) unless type.weak?
315
+ entity = id ? cached(type, :id, id) { type.new(self, id) } : type.new(self, nil)
316
+ entity.update_attributes(data)
317
+ entity
318
+ end
301
319
 
302
- def error_message(e)
303
- message = e.response[:body].to_str rescue e.message
304
- JSON.parse(message).fetch('error').fetch('message') rescue message
305
- end
320
+ def primitive?(data)
321
+ PRIMITIVE.include? data
322
+ end
306
323
 
307
- def reset_entities
308
- subcaches do |subcache|
309
- subcache[:id].each_value { |e| e.attributes.clear } if subcache.include? :id
310
- end
324
+ def error_message(e)
325
+ message = begin
326
+ e.response[:body].to_str
327
+ rescue StandardError
328
+ e.message
311
329
  end
312
-
313
- def clear_find_cache
314
- subcaches do |subcache|
315
- subcache.delete_if { |k, v| k != :id }
316
- end
330
+ begin
331
+ JSON.parse(message).fetch('error').fetch('message')
332
+ rescue StandardError
333
+ message
317
334
  end
335
+ end
318
336
 
319
- def subcaches
320
- @cache.each_value do |subcache|
321
- yield subcache if subcache.is_a? Hash
322
- end
337
+ def reset_entities
338
+ subcaches do |subcache|
339
+ subcache[:id].each_value { |e| e.attributes.clear } if subcache.include? :id
323
340
  end
341
+ end
324
342
 
325
- def fetch_one(entity, id = nil)
326
- get("/#{entity.base_path}/#{id}")[entity.one]
343
+ def clear_find_cache
344
+ subcaches do |subcache|
345
+ subcache.delete_if { |k, _v| k != :id }
327
346
  end
347
+ end
328
348
 
329
- def fetch_many(entity, params = {})
330
- get("/#{entity.base_path}/", params)[entity.many]
349
+ def subcaches
350
+ @cache.each_value do |subcache|
351
+ yield subcache if subcache.is_a? Hash
331
352
  end
353
+ end
332
354
 
333
- def cached(*keys)
334
- last = keys.pop
335
- cache = keys.inject(@cache) { |store, key| store[key] ||= {} }
336
- cache[last] ||= yield
337
- end
355
+ def fetch_one(entity, id = nil)
356
+ get("/#{entity.base_path}/#{id}")[entity.one]
357
+ end
338
358
 
339
- def check_ssl
340
- raw(:head, '/') if ssl == SSL_OPTIONS
341
- rescue Exception => error
342
- self.ssl = {} if error.class == Travis::Client::SSLError
343
- end
359
+ def fetch_many(entity, params = {})
360
+ get("/#{entity.base_path}/", params)[entity.many]
361
+ end
362
+
363
+ def cached(*keys)
364
+ last = keys.pop
365
+ cache = keys.inject(@cache) { |store, key| store[key] ||= {} }
366
+ cache[last] ||= yield
367
+ end
368
+
369
+ def check_ssl
370
+ raw(:head, '/') if ssl == SSL_OPTIONS
371
+ rescue Exception => e
372
+ self.ssl = {} if e.instance_of?(Travis::Client::SSLError)
373
+ end
344
374
  end
345
375
  end
346
376
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'travis/client/weak_entity'
2
4
  require 'json'
3
5
 
@@ -5,14 +7,17 @@ module Travis
5
7
  module Client
6
8
  class Settings < WeakEntity
7
9
  attr_accessor :repository
10
+
8
11
  # @!parse attr_reader :builds_only_with_travis_yml, :build_pushes, :build_pull_requests, :maximum_number_of_builds, :auto_cancel_pushes, :auto_cancel_pull_requests
9
- attributes :builds_only_with_travis_yml, :build_pushes, :build_pull_requests, :maximum_number_of_builds, :auto_cancel_pushes, :auto_cancel_pull_requests
12
+ attributes :builds_only_with_travis_yml, :build_pushes, :build_pull_requests, :maximum_number_of_builds,
13
+ :auto_cancel_pushes, :auto_cancel_pull_requests
10
14
  one :settings
11
15
  many :settings
12
16
 
13
17
  def save
14
- raise "repository unknown" unless repository
15
- result = session.patch("/repos/#{repository.id}/settings", JSON.dump("settings" => attributes))
18
+ raise 'repository unknown' unless repository
19
+
20
+ result = session.patch("/repos/#{repository.id}/settings", JSON.dump('settings' => attributes))
16
21
  attributes.replace(result['settings'].attributes)
17
22
  self
18
23
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'json'
2
4
 
3
5
  module Travis
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'json'
2
4
 
3
5
  module Travis