Class: Spaceship::ConnectAPI::Provisioning::Client

Inherits:
Client show all
Defined in:
spaceship/lib/spaceship/connect_api/provisioning/client.rb

Constant Summary

Constants inherited from Spaceship::Client

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

Instance Attribute Summary

Attributes inherited from Client

#token

Attributes inherited from Spaceship::Client

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Client

#build_params, #delete, #initialize, #patch, #post, #web_session?

Methods inherited from Spaceship::Client

#UI, #ask_for_2fa_code, 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, #raise_insufficient_permission_error!, #request, #request_two_factor_code_from_phone, #request_two_factor_code_from_phone_choose, #send_shared_login_request, 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::ConnectAPI::Client

Class Method Details

.hostnameObject



27
28
29
# File 'spaceship/lib/spaceship/connect_api/provisioning/client.rb', line 27

def self.hostname
  'https://developer.apple.com/services-account/v1/'
end

.instanceObject



8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# File 'spaceship/lib/spaceship/connect_api/provisioning/client.rb', line 8

def self.instance
  # Verify there is a token or a client that can be used
  if Spaceship::ConnectAPI.token
    if @client.nil? || @client.token != Spaceship::ConnectAPI.token
      @client = Spaceship::ConnectAPI::Provisioning::Client.new(token: Spaceship::ConnectAPI.token)
    end
  elsif Spaceship::Portal.client
    # Initialize new client if new or if team changed
    if @client.nil? || @client.team_id != Spaceship::Portal.client.team_id
      @client = Spaceship::ConnectAPI::Provisioning::Client.client_with_authorization_from(Spaceship::Portal.client)
    end
  end

  # Need to handle not having a client but this shouldn't ever happen
  raise "Please login using `Spaceship::Portal.login('user', 'password')`" unless @client

  @client
end

Instance Method Details

#get(url_or_path, params = nil) ⇒ Object

Helpers



35
36
37
38
39
40
41
# File 'spaceship/lib/spaceship/connect_api/provisioning/client.rb', line 35

def get(url_or_path, params = nil)
  # The App Store Connect API is only available in a web session through a
  # a proxy server where GET requests are actually sent as a POST
  return get_as_post(url_or_path, params) if web_session?

  super(url_or_path, params)
end

#get_as_post(url_or_path, params = nil) ⇒ Object



43
44
45
46
47
48
49
50
51
52
53
54
55
# File 'spaceship/lib/spaceship/connect_api/provisioning/client.rb', line 43

def get_as_post(url_or_path, params = nil)
  encoded_params = Faraday::NestedParamsEncoder.encode(params)
  body = { "urlEncodedQueryParams" => encoded_params, "teamId" => team_id }

  response = request(:post) do |req|
    req.url(url_or_path)
    req.body = body.to_json
    req.headers['Content-Type'] = 'application/vnd.api+json'
    req.headers['X-HTTP-Method-Override'] = 'GET'
    req.headers['X-Requested-With'] = 'XMLHttpRequest'
  end
  handle_response(response)
end