Class: Spaceship::ConnectAPI::Client
- Inherits:
-
Object
- Object
- Spaceship::ConnectAPI::Client
- Defined in:
- spaceship/lib/spaceship/connect_api/client.rb
Instance Attribute Summary collapse
-
#portal_client ⇒ Object
Returns the value of attribute portal_client.
-
#token ⇒ Object
Returns the value of attribute token.
-
#tunes_client ⇒ Object
Returns the value of attribute tunes_client.
Class Method Summary collapse
-
.auth(key_id: nil, issuer_id: nil, filepath: nil, key: nil, duration: nil, in_house: nil) ⇒ Spaceship::ConnectAPI::Client
Initializes client with Apple’s App Store Connect JWT auth key.
-
.login(user = nil, password = nil, use_portal: true, use_tunes: true, portal_team_id: nil, tunes_team_id: nil, team_name: nil, skip_select_team: false) ⇒ Spaceship::ConnectAPI::Client
Authenticates with Apple’s web services.
Instance Method Summary collapse
- #in_house? ⇒ Boolean
-
#initialize(cookie: nil, current_team_id: nil, token: nil, tunes_client: nil, portal_client: nil) ⇒ Client
constructor
A new instance of Client.
- #portal_team_id ⇒ Object
- #portal_teams ⇒ Object
- #select_team(portal_team_id: nil, tunes_team_id: nil, team_name: nil) ⇒ Object
- #tunes_team_id ⇒ Object
- #tunes_teams ⇒ Object
Constructor Details
#initialize(cookie: nil, current_team_id: nil, token: nil, tunes_client: nil, portal_client: nil) ⇒ Client
Returns a new instance of Client.
75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 |
# File 'spaceship/lib/spaceship/connect_api/client.rb', line 75 def initialize(cookie: nil, current_team_id: nil, token: nil, tunes_client: nil, portal_client: nil) @token = token # If using web session... # Spaceship::Tunes is needed for TestFlight::API, Tunes::API, and Users::API # Spaceship::Portal is needed for Provisioning::API @tunes_client = tunes_client @portal_client = portal_client # Extending this instance to add API endpoints from these modules # Each of these modules adds a new setter method for an instance # of an ConnectAPI::APIClient # These get set in set_individual_clients self.extend(Spaceship::ConnectAPI::TestFlight::API) self.extend(Spaceship::ConnectAPI::Tunes::API) self.extend(Spaceship::ConnectAPI::Provisioning::API) self.extend(Spaceship::ConnectAPI::Users::API) set_individual_clients( cookie: , current_team_id: current_team_id, token: token, tunes_client: @tunes_client, portal_client: @portal_client ) end |
Instance Attribute Details
#portal_client ⇒ Object
Returns the value of attribute portal_client.
12 13 14 |
# File 'spaceship/lib/spaceship/connect_api/client.rb', line 12 def portal_client @portal_client end |
#token ⇒ Object
Returns the value of attribute token.
10 11 12 |
# File 'spaceship/lib/spaceship/connect_api/client.rb', line 10 def token @token end |
#tunes_client ⇒ Object
Returns the value of attribute tunes_client.
11 12 13 |
# File 'spaceship/lib/spaceship/connect_api/client.rb', line 11 def tunes_client @tunes_client end |
Class Method Details
.auth(key_id: nil, issuer_id: nil, filepath: nil, key: nil, duration: nil, in_house: nil) ⇒ Spaceship::ConnectAPI::Client
Initializes client with Apple’s App Store Connect JWT auth key.
This method will automatically use the arguments from environment variables if not given.
The key_id, issuer_id and either filepath or key are needed to authenticate.
31 32 33 34 |
# File 'spaceship/lib/spaceship/connect_api/client.rb', line 31 def self.auth(key_id: nil, issuer_id: nil, filepath: nil, key: nil, duration: nil, in_house: nil) token = Spaceship::ConnectAPI::Token.create(key_id: key_id, issuer_id: issuer_id, filepath: filepath, key: key, duration: duration, in_house: in_house) return ConnectAPI::Client.new(token: token) end |
.login(user = nil, password = nil, use_portal: true, use_tunes: true, portal_team_id: nil, tunes_team_id: nil, team_name: nil, skip_select_team: false) ⇒ Spaceship::ConnectAPI::Client
Authenticates with Apple’s web services. This method has to be called once to generate a valid session.
This method will automatically use the username from the Appfile (if available) and fetch the password from the Keychain (if available)
54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 |
# File 'spaceship/lib/spaceship/connect_api/client.rb', line 54 def self.login(user = nil, password = nil, use_portal: true, use_tunes: true, portal_team_id: nil, tunes_team_id: nil, team_name: nil, skip_select_team: false) portal_client = Spaceship::Portal.login(user, password) if use_portal tunes_client = Spaceship::Tunes.login(user, password) if use_tunes unless skip_select_team # Check if environment variables are set for Spaceship::Portal or Spaceship::Tunes to select team portal_team_id ||= ENV['FASTLANE_TEAM_ID'] portal_team_name = team_name || ENV['FASTLANE_TEAM_NAME'] tunes_team_id ||= ENV['FASTLANE_ITC_TEAM_ID'] tunes_team_name = team_name || ENV['FASTLANE_ITC_TEAM_NAME'] # The clients will prompt for a team selection if: # 1. client exists # 2. team_id and team_name are nil and user belongs to multiple teams portal_client.select_team(team_id: portal_team_id, team_name: portal_team_name) if portal_client tunes_client.select_team(team_id: tunes_team_id, team_name: tunes_team_name) if tunes_client end return ConnectAPI::Client.new(tunes_client: tunes_client, portal_client: portal_client) end |
Instance Method Details
#in_house? ⇒ Boolean
132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 |
# File 'spaceship/lib/spaceship/connect_api/client.rb', line 132 def in_house? if token if token.in_house.nil? = [ "Cannot determine if team is App Store or Enterprise via the App Store Connect API (yet)", "Set 'in_house' on your Spaceship::ConnectAPI::Token", "Or set 'in_house' in your App Store Connect API key JSON file", "Or set the 'SPACESHIP_CONNECT_API_IN_HOUSE' environment variable to 'true'", "View more info in the docs at https://docs.fastlane.tools/app-store-connect-api/" ] raise .join('. ') end return !!token.in_house elsif @portal_client return @portal_client.in_house? else raise "No App Store Connect API token or Portal Client set" end end |
#portal_team_id ⇒ Object
102 103 104 105 106 107 108 109 110 111 112 113 114 115 |
# File 'spaceship/lib/spaceship/connect_api/client.rb', line 102 def portal_team_id if token = [ "Cannot determine portal team id via the App Store Connect API (yet)", "Look to see if you can get the portal team id from somewhere else", "View more info in the docs at https://docs.fastlane.tools/app-store-connect-api/" ] raise .join('. ') elsif @portal_client return @portal_client.team_id else raise "No App Store Connect API token or Portal Client set" end end |
#portal_teams ⇒ Object
122 123 124 125 |
# File 'spaceship/lib/spaceship/connect_api/client.rb', line 122 def portal_teams return nil if @portal_client.nil? return @portal_client.teams end |
#select_team(portal_team_id: nil, tunes_team_id: nil, team_name: nil) ⇒ Object
152 153 154 155 156 157 158 159 160 161 162 163 164 165 |
# File 'spaceship/lib/spaceship/connect_api/client.rb', line 152 def select_team(portal_team_id: nil, tunes_team_id: nil, team_name: nil) @portal_client.select_team(team_id: portal_team_id, team_name: team_name) unless @portal_client.nil? @tunes_client.select_team(team_id: tunes_team_id, team_name: team_name) unless @tunes_client.nil? # Updating the tunes and portal clients requires resetting # of the clients in the API modules set_individual_clients( cookie: nil, current_team_id: nil, token: nil, tunes_client: tunes_client, portal_client: portal_client ) end |
#tunes_team_id ⇒ Object
117 118 119 120 |
# File 'spaceship/lib/spaceship/connect_api/client.rb', line 117 def tunes_team_id return nil if @tunes_client.nil? return @tunes_client.team_id end |
#tunes_teams ⇒ Object
127 128 129 130 |
# File 'spaceship/lib/spaceship/connect_api/client.rb', line 127 def tunes_teams return nil if @tunes_client.nil? return @tunes_client.teams end |