Class: Produce::ItunesConnect

Inherits:
Object
  • Object
show all
Defined in:
produce/lib/produce/itunes_connect.rb

Instance Method Summary collapse

Instance Method Details

#create_new_appObject



18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# File 'produce/lib/produce/itunes_connect.rb', line 18

def create_new_app
  application = fetch_application
  if application
    UI.success("App '#{Produce.config[:app_identifier]}' already exists (#{application.apple_id}), nothing to do on App Store Connect")
    # Nothing to do here
  else
    UI.success("Creating new app '#{Produce.config[:app_name]}' on App Store Connect")

    Produce.config[:bundle_identifier_suffix] = '' unless wildcard_bundle?
    generated_app = Spaceship::Tunes::Application.create!(name: Produce.config[:app_name],
                                                          primary_language: language,
                                                          sku: Produce.config[:sku].to_s, # might be an int
                                                          bundle_id: app_identifier,
                                                          bundle_id_suffix: Produce.config[:bundle_identifier_suffix],
                                                          company_name: Produce.config[:company_name],
                                                          platform: Produce.config[:platform],
                                                          itunes_connect_users: Produce.config[:itc_users])

    UI.crash!("Something went wrong when creating the new app on iTC") if generated_app["adamId"].to_s.empty?

    application = fetch_application
    counter = 0
    while application.nil?
      counter += 1
      UI.crash!("Couldn't find newly created app on App Store Connect - please check the website for more information") if counter == 200

      # Since 2016-08-10 App Store Connect takes some time to actually list the newly created application
      # We have no choice but to poll to see if the newly created app is already available
      UI.message("Waiting for the newly created application to be available on App Store Connect...")
      sleep(15)
      application = fetch_application
    end

    UI.crash!("Something went wrong when creating the new app - it's not listed in the App's list") unless application

    UI.message("Ensuring version number")
    application.ensure_version!(Produce.config[:app_version], platform: Produce.config[:platform]) if Produce.config[:app_version]

    UI.success("Successfully created new app '#{Produce.config[:app_name]}' on App Store Connect with ID #{application.apple_id}")
  end

  return Spaceship::Tunes::Application.find(@full_bundle_identifier, mac: Produce.config[:platform] == "osx").apple_id
end

#runObject



8
9
10
11
12
13
14
15
16
# File 'produce/lib/produce/itunes_connect.rb', line 8

def run
  @full_bundle_identifier = app_identifier
  @full_bundle_identifier.gsub!('*', Produce.config[:bundle_identifier_suffix].to_s) if wildcard_bundle?

  Spaceship::Tunes.(Produce.config[:username], nil)
  Spaceship::Tunes.client.select_team

  create_new_app
end