Class: Spaceship::TestFlight::Client

Inherits:
Client
  • Object
show all
Defined in:
spaceship/lib/spaceship/test_flight/client.rb

Constant Summary

Constants inherited from Client

Client::AUTH_TYPES, Client::AccessForbiddenError, Client::AppleTimeoutError, Client::BadGatewayError, Client::BasicPreferredInfoError, Client::GatewayTimeoutError, Client::InsufficientPermissions, Client::InternalServerError, Client::InvalidUserCredentialsError, Client::NoUserCredentialsError, Client::PROTOCOL_VERSION, Client::ProgramLicenseAgreementUpdated, Client::TooManyRequestsError, Client::USER_AGENT, Client::UnauthorizedAccessError, Client::UnexpectedResponse

Instance Attribute Summary

Attributes inherited from Client

#client, #csrf_tokens, #logger, #provider, #user, #user_email

Build trains API collapse

Builds API collapse

Groups API collapse

Testers collapse

Testers API collapse

AppTestInfo collapse

Class Method Summary collapse

Methods inherited from Client

#UI, #ask_for_2fa_code, #choose_phone_number, client_with_authorization_from, #cookie, #detect_most_common_errors_and_raise_exceptions, #fastlane_user_dir, #fetch_olympus_session, #fetch_program_license_agreement_messages, #handle_two_factor, #handle_two_step, #handle_two_step_for_device, #handle_two_step_or_factor, #initialize, #itc_service_key, #load_session_from_env, #load_session_from_file, login, #login, #page_size, #paging, #parse_response, #persistent_cookie_path, #phone_id_from_masked_number, #phone_id_from_number, #push_mode_from_masked_number, #raise_insufficient_permission_error!, #request, #request_two_factor_code_from_phone, #request_two_factor_code_from_phone_choose, #send_shared_login_request, #sms_automatically_sent, #sms_fallback, spaceship_session_env, #store_cookie, #store_session, #team_id, #team_id=, #team_information, #team_name, #teams, #update_request_headers, #user_details_data, #with_retry

Constructor Details

This class inherits a constructor from Spaceship::Client

Class Method Details

.hostnameObject

Spaceship HTTP client for the testflight API.

This client is solely responsible for the making HTTP requests and parsing their responses. Parameters should be either named parameters, or for large request data bodies, pass in anything that can resond to ‘to_json`.

Each request method should validate the required parameters. A required parameter is one that would result in 400-range response if it is not supplied. Each request method should make only one request. For more high-level logic, put code in the data models.



17
18
19
# File 'spaceship/lib/spaceship/test_flight/client.rb', line 17

def self.hostname
  'https://appstoreconnect.apple.com/testflight/v2/'
end

Instance Method Details

#add_group_to_build(app_id: nil, group_id: nil, build_id: nil) ⇒ Object



118
119
120
121
122
123
124
125
126
127
128
129
130
131
# File 'spaceship/lib/spaceship/test_flight/client.rb', line 118

def add_group_to_build(app_id: nil, group_id: nil, build_id: nil)
  assert_required_params(__method__, binding)

  body = {
    'groupId' => group_id,
    'buildId' => build_id
  }
  response = request(:put) do |req|
    req.url("providers/#{team_id}/apps/#{app_id}/groups/#{group_id}/builds/#{build_id}")
    req.body = body.to_json
    req.headers['Content-Type'] = 'application/json'
  end
  handle_response(response)
end

#builds_for_group(app_id: nil, group_id: nil) ⇒ Object



281
282
283
284
285
286
287
# File 'spaceship/lib/spaceship/test_flight/client.rb', line 281

def builds_for_group(app_id: nil, group_id: nil)
  assert_required_params(__method__, binding)

  url = "providers/#{team_id}/apps/#{app_id}/groups/#{group_id}/builds"
  response = request(:get, url)
  handle_response(response)
end

#create_app_level_tester(app_id: nil, first_name: nil, last_name: nil, email: nil) ⇒ Object



237
238
239
240
241
242
243
244
245
246
247
248
249
250
# File 'spaceship/lib/spaceship/test_flight/client.rb', line 237

def create_app_level_tester(app_id: nil, first_name: nil, last_name: nil, email: nil)
  assert_required_params(__method__, binding)
  url = "providers/#{team_id}/apps/#{app_id}/testers"
  response = request(:post) do |req|
    req.url(url)
    req.body = {
      "email" => email,
      "firstName" => first_name,
      "lastName" => last_name
    }.to_json
    req.headers['Content-Type'] = 'application/json'
  end
  handle_response(response)
end

#create_group_for_app(app_id: nil, group_name: nil) ⇒ Object



93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
# File 'spaceship/lib/spaceship/test_flight/client.rb', line 93

def create_group_for_app(app_id: nil, group_name: nil)
  assert_required_params(__method__, binding)
  body = {
      'name' => group_name
  }

  response = request(:post) do |req|
    req.url("providers/#{team_id}/apps/#{app_id}/groups")
    req.body = body.to_json
    req.headers['Content-Type'] = 'application/json'
  end

  # This is invalid now.
  @cached_groups.delete(app_id) if @cached_groups

  handle_response(response)
end

#delete_group_for_app(app_id: nil, group_id: nil) ⇒ Object



111
112
113
114
115
116
# File 'spaceship/lib/spaceship/test_flight/client.rb', line 111

def delete_group_for_app(app_id: nil, group_id: nil)
  assert_required_params(__method__, binding)
  url = "providers/#{team_id}/apps/#{app_id}/groups/#{group_id}"
  response = request(:delete, url)
  handle_response(response)
end

#delete_tester_from_app(app_id: nil, tester_id: nil) ⇒ Object



204
205
206
207
208
209
# File 'spaceship/lib/spaceship/test_flight/client.rb', line 204

def delete_tester_from_app(app_id: nil, tester_id: nil)
  assert_required_params(__method__, binding)
  url = "providers/#{team_id}/apps/#{app_id}/testers/#{tester_id}"
  response = request(:delete, url)
  handle_response(response)
end

#delete_tester_from_group(group_id: nil, tester_id: nil, app_id: nil) ⇒ Object



270
271
272
273
274
275
276
277
278
279
# File 'spaceship/lib/spaceship/test_flight/client.rb', line 270

def delete_tester_from_group(group_id: nil, tester_id: nil, app_id: nil)
  assert_required_params(__method__, binding)

  url = "providers/#{team_id}/apps/#{app_id}/groups/#{group_id}/testers/#{tester_id}"
  response = request(:delete) do |req|
    req.url(url)
    req.headers['Content-Type'] = 'application/json'
  end
  handle_response(response)
end

#expire_build(app_id: nil, build_id: nil, build: nil) ⇒ Object



64
65
66
67
68
69
70
71
72
73
# File 'spaceship/lib/spaceship/test_flight/client.rb', line 64

def expire_build(app_id: nil, build_id: nil, build: nil)
  assert_required_params(__method__, binding)

  response = request(:post) do |req|
    req.url("providers/#{team_id}/apps/#{app_id}/builds/#{build_id}/expire")
    req.body = build.to_json
    req.headers['Content-Type'] = 'application/json'
  end
  handle_response(response)
end

#get_app_test_info(app_id: nil) ⇒ Object



293
294
295
296
297
298
# File 'spaceship/lib/spaceship/test_flight/client.rb', line 293

def get_app_test_info(app_id: nil)
  assert_required_params(__method__, binding)

  response = request(:get, "providers/#{team_id}/apps/#{app_id}/testInfo")
  handle_response(response)
end

#get_build(app_id: nil, build_id: nil) ⇒ Object



46
47
48
49
50
51
# File 'spaceship/lib/spaceship/test_flight/client.rb', line 46

def get_build(app_id: nil, build_id: nil)
  assert_required_params(__method__, binding)

  response = request(:get, "providers/#{team_id}/apps/#{app_id}/builds/#{build_id}")
  handle_response(response)
end

#get_build_trains(app_id: nil, platform: "ios") ⇒ Object

Returns an array of all available build trains (not the builds they include)



26
27
28
29
30
31
32
# File 'spaceship/lib/spaceship/test_flight/client.rb', line 26

def get_build_trains(app_id: nil, platform: "ios")
  assert_required_params(__method__, binding)

  response = request(:get, "providers/#{team_id}/apps/#{app_id}/platforms/#{platform}/trains")

  handle_response(response)
end

#get_builds_for_train(app_id: nil, platform: "ios", train_version: nil, retry_count: 3) ⇒ Object



34
35
36
37
38
39
40
# File 'spaceship/lib/spaceship/test_flight/client.rb', line 34

def get_builds_for_train(app_id: nil, platform: "ios", train_version: nil, retry_count: 3)
  assert_required_params(__method__, binding)
  with_retry(retry_count) do
    response = request(:get, "providers/#{team_id}/apps/#{app_id}/platforms/#{platform}/trains/#{train_version}/builds", nil, {}, true)
    handle_response(response)
  end
end

#get_groups(app_id: nil) ⇒ Object

Returns a list of available testing groups e.g.

{"b6f65dbd-c845-4d91-bc39-0b661d608970" => "Boarding",
 "70402368-9deb-409f-9a26-bb3f215dfee3" => "Automatic"}


83
84
85
86
87
88
89
90
91
# File 'spaceship/lib/spaceship/test_flight/client.rb', line 83

def get_groups(app_id: nil)
  @cached_groups = {} unless @cached_groups

  return @cached_groups[app_id] if @cached_groups[app_id]
  assert_required_params(__method__, binding)

  response = request(:get, "/testflight/v2/providers/#{provider_id}/apps/#{app_id}/groups")
  @cached_groups[app_id] = handle_response(response)
end

#internal_users(app_id: nil) ⇒ Object



163
164
165
166
167
168
169
# File 'spaceship/lib/spaceship/test_flight/client.rb', line 163

def internal_users(app_id: nil)
  assert_required_params(__method__, binding)
  url = "providers/#{team_id}/apps/#{app_id}/internalUsers"
  r = request(:get, url)

  parse_response(r, 'data')
end

#post_tester_to_group(app_id: nil, email: nil, first_name: nil, last_name: nil, group_id: nil) ⇒ Object



252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
# File 'spaceship/lib/spaceship/test_flight/client.rb', line 252

def post_tester_to_group(app_id: nil, email: nil, first_name: nil, last_name: nil, group_id: nil)
  assert_required_params(__method__, binding)

  # Then we can add the tester to the group that allows the app to test
  # This is easy enough, we already have all this data. We don't need any response from the previous request
  url = "providers/#{team_id}/apps/#{app_id}/groups/#{group_id}/testers"
  response = request(:post) do |req|
    req.url(url)
    req.body = [{
      "email" => email,
      "firstName" => first_name,
      "lastName" => last_name
    }].to_json
    req.headers['Content-Type'] = 'application/json'
  end
  handle_response(response)
end

#put_app_test_info(app_id: nil, app_test_info: nil) ⇒ Object



300
301
302
303
304
305
306
307
308
309
# File 'spaceship/lib/spaceship/test_flight/client.rb', line 300

def put_app_test_info(app_id: nil, app_test_info: nil)
  assert_required_params(__method__, binding)

  response = request(:put) do |req|
    req.url("providers/#{team_id}/apps/#{app_id}/testInfo")
    req.body = app_test_info.to_json
    req.headers['Content-Type'] = 'application/json'
  end
  handle_response(response)
end

#put_build(app_id: nil, build_id: nil, build: nil) ⇒ Object



53
54
55
56
57
58
59
60
61
62
# File 'spaceship/lib/spaceship/test_flight/client.rb', line 53

def put_build(app_id: nil, build_id: nil, build: nil)
  assert_required_params(__method__, binding)

  response = request(:put) do |req|
    req.url("providers/#{team_id}/apps/#{app_id}/builds/#{build_id}")
    req.body = build.to_json
    req.headers['Content-Type'] = 'application/json'
  end
  handle_response(response)
end

#remove_testers_from_testflight(app_id: nil, tester_ids: nil) ⇒ Object



211
212
213
214
215
216
217
218
219
220
# File 'spaceship/lib/spaceship/test_flight/client.rb', line 211

def remove_testers_from_testflight(app_id: nil, tester_ids: nil)
  assert_required_params(__method__, binding)
  url = "providers/#{team_id}/apps/#{app_id}/deleteTesters"
  response = request(:post) do |req|
    req.url(url)
    req.body = tester_ids.map { |i| { "id" => i } }.to_json
    req.headers['Content-Type'] = 'application/json'
  end
  handle_response(response)
end

#resend_invite_to_external_tester(app_id: nil, tester_id: nil) ⇒ Object



230
231
232
233
234
235
# File 'spaceship/lib/spaceship/test_flight/client.rb', line 230

def resend_invite_to_external_tester(app_id: nil, tester_id: nil)
  assert_required_params(__method__, binding)
  url = "/testflight/v1/invites/#{app_id}/resend?testerId=#{tester_id}"
  response = request(:post, url)
  handle_response(response)
end

#search_for_tester_in_app(app_id: nil, text: nil) ⇒ Object



222
223
224
225
226
227
228
# File 'spaceship/lib/spaceship/test_flight/client.rb', line 222

def search_for_tester_in_app(app_id: nil, text: nil)
  assert_required_params(__method__, binding)
  text = CGI.escape(text)
  url = "providers/#{team_id}/apps/#{app_id}/testers?order=asc&search=#{text}&sort=status"
  response = request(:get, url)
  handle_response(response)
end

#testers(tester) ⇒ Object



136
137
138
139
140
# File 'spaceship/lib/spaceship/test_flight/client.rb', line 136

def testers(tester)
  url = tester.url[:index]
  r = request(:get, url)
  parse_response(r, 'data')['users']
end

#testers_by_app(tester, app_id, group_id: nil) ⇒ Object



142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
# File 'spaceship/lib/spaceship/test_flight/client.rb', line 142

def testers_by_app(tester, app_id, group_id: nil)
  if group_id.nil?
    group_ids = get_groups(app_id: app_id).map do |group|
      group['id']
    end
  end
  group_ids ||= [group_id]
  testers = []

  group_ids.each do |json_group_id|
    url = tester.url(app_id, provider_id, json_group_id)[:index_by_app]
    r = request(:get, url)
    testers += parse_response(r, 'data')['users']
  end

  testers
end

#testers_for_app(app_id: nil) ⇒ Object



175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
# File 'spaceship/lib/spaceship/test_flight/client.rb', line 175

def testers_for_app(app_id: nil)
  assert_required_params(__method__, binding)
  page_size = 40 # that's enforced by the iTC servers
  resulting_array = []
  # Sort order is set to `default` instead of `email`, because any other sort order breaks pagination
  # when dealing with lots of anonymous (public link) testers: https://github.com/fastlane/fastlane/pull/13778
  initial_url = "providers/#{team_id}/apps/#{app_id}/testers?limit=#{page_size}&sort=default&order=asc"
  response = request(:get, initial_url)
  link_from_response = proc do |r|
    # I weep for Swift nil chaining
    (l = r.headers['link']) && (m = l.match(/<(.*)>/)) && m.captures.first
  end
  next_link = link_from_response.call(response)
  result = Array(handle_response(response))
  resulting_array += result
  return resulting_array if result.count == 0

  until next_link.nil?
    response = request(:get, next_link)
    result = Array(handle_response(response))
    next_link = link_from_response.call(response)

    break if result.count == 0

    resulting_array += result
  end
  return resulting_array.uniq
end