Class: Fastlane::Actions::DownloadDsymsAction

Inherits:
Fastlane::Action show all
Defined in:
lib/fastlane/actions/download_dsyms.rb

Documentation collapse

Class Method Summary collapse

Methods inherited from Fastlane::Action

action_name, author, lane_context, method_missing, other_action, sh, step_text

Class Method Details

.authorsObject



157
158
159
# File 'lib/fastlane/actions/download_dsyms.rb', line 157

def self.authors
  ["KrauseFx"]
end

.available_optionsObject



94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
# File 'lib/fastlane/actions/download_dsyms.rb', line 94

def self.available_options
  user = CredentialsManager::AppfileConfig.try_fetch_value(:itunes_connect_id)
  user ||= CredentialsManager::AppfileConfig.try_fetch_value(:apple_id)

  [
    FastlaneCore::ConfigItem.new(key: :username,
                                 short_option: "-u",
                                 env_name: "DOWNLOAD_DSYMS_USERNAME",
                                 description: "Your Apple ID Username for iTunes Connect",
                                 default_value: user),
    FastlaneCore::ConfigItem.new(key: :app_identifier,
                                 short_option: "-a",
                                 env_name: "DOWNLOAD_DSYMS_APP_IDENTIFIER",
                                 description: "The bundle identifier of your app",
                                 optional: true,
                                 default_value: CredentialsManager::AppfileConfig.try_fetch_value(:app_identifier)),
    FastlaneCore::ConfigItem.new(key: :team_id,
                                 short_option: "-k",
                                 env_name: "DOWNLOAD_DSYMS_TEAM_ID",
                                 description: "The ID of your team if you're in multiple teams",
                                 optional: true,
                                 is_string: false, # as we also allow integers, which we convert to strings anyway
                                 default_value: CredentialsManager::AppfileConfig.try_fetch_value(:itc_team_id),
                                 verify_block: proc do |value|
                                   ENV["FASTLANE_ITC_TEAM_ID"] = value.to_s
                                 end),
    FastlaneCore::ConfigItem.new(key: :team_name,
                                 short_option: "-e",
                                 env_name: "DOWNLOAD_DSYMS_TEAM_NAME",
                                 description: "The name of your team if you're in multiple teams",
                                 optional: true,
                                 default_value: CredentialsManager::AppfileConfig.try_fetch_value(:itc_team_name),
                                 verify_block: proc do |value|
                                   ENV["FASTLANE_ITC_TEAM_NAME"] = value
                                 end),
    FastlaneCore::ConfigItem.new(key: :platform,
                                 short_option: "-p",
                                 env_name: "DOWNLOAD_DSYMS_PLATFORM",
                                 description: "The app platform for dSYMs you wish to download",
                                 optional: true),
    FastlaneCore::ConfigItem.new(key: :version,
                                 short_option: "-v",
                                 env_name: "DOWNLOAD_DSYMS_VERSION",
                                 description: "The app version for dSYMs you wish to download",
                                 optional: true),
    FastlaneCore::ConfigItem.new(key: :build_number,
                                 short_option: "-b",
                                 env_name: "DOWNLOAD_DSYMS_BUILD_NUMBER",
                                 description: "The app build_number for dSYMs you wish to download",
                                 optional: true)
  ]
end

.descriptionObject



83
84
85
# File 'lib/fastlane/actions/download_dsyms.rb', line 83

def self.description
  "Download dSYM files from Apple iTunes Connect for Bitcode apps"
end

.detailsObject



87
88
89
90
91
92
# File 'lib/fastlane/actions/download_dsyms.rb', line 87

def self.details
  [
    "This action downloads dSYM files from Apple iTunes Connect after",
    "the ipa got re-compiled by Apple. Useful if you have Bitcode enabled"
  ].join(" ")
end

.download(url) ⇒ Object



71
72
73
74
75
76
77
# File 'lib/fastlane/actions/download_dsyms.rb', line 71

def self.download(url)
  uri = URI.parse(url)
  http = Net::HTTP.new(uri.host, uri.port)
  http.use_ssl = (uri.scheme == "https")
  res = http.get(uri.request_uri)
  res.body
end

.is_supported?(platform) ⇒ Boolean

Returns:

  • (Boolean)


161
162
163
# File 'lib/fastlane/actions/download_dsyms.rb', line 161

def self.is_supported?(platform)
  platform == :ios
end

.outputObject



147
148
149
150
151
# File 'lib/fastlane/actions/download_dsyms.rb', line 147

def self.output
  [
    ['DSYM_PATHS', 'An array to all the zipped dSYM files']
  ]
end

.return_valueObject



153
154
155
# File 'lib/fastlane/actions/download_dsyms.rb', line 153

def self.return_value
  nil
end

.run(params) ⇒ Object



8
9
10
11
12
13
14
15
16
17
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
61
62
63
64
65
66
67
68
69
# File 'lib/fastlane/actions/download_dsyms.rb', line 8

def self.run(params)
  require 'spaceship'
  require 'net/http'

  UI.message("Login to iTunes Connect (#{params[:username]})")
  Spaceship::Tunes.(params[:username])
  Spaceship::Tunes.select_team
  UI.message("Login successful")

  version = params[:version]
  build_number = params[:build_number]
  platform = params[:platform]

  message = []
  message << "Looking for dSYM files for #{params[:app_identifier]}"
  if version
    message << "v#{version}"
  end

  if build_number
    message << "(#{build_number})"
  end

  UI.message(message.join(" "))
  app = Spaceship::Application.find(params[:app_identifier])
  unless app
    UI.user_error!("Could not find app with bundle identifier '#{params[:app_identifier]}' on account #{params[:username]}")
  end

  app.all_build_train_numbers(platform: platform).each do |train_number|
    if version && version != train_number
      next
    end
    app.all_builds_for_train(train: train_number, platform: platform).each do |build|
      if build_number && build.build_version != build_number
        next
      end

      begin
        download_url = build.details.dsym_url
      rescue Spaceship::TunesClient::ITunesConnectError => ex
        UI.error("Error accessing dSYM file for build\n\n#{build}\n\nException: #{ex}")
      end

      if download_url
        result = self.download download_url
        file_name = "#{app.bundle_id}-#{train_number}-#{build.build_version}.dSYM.zip"
        File.write(file_name, result)
        UI.success("🔑  Successfully downloaded dSYM file for #{train_number} - #{build.build_version} to '#{file_name}'")

        Actions.lane_context[SharedValues::DSYM_PATHS] ||= []
        Actions.lane_context[SharedValues::DSYM_PATHS] << File.expand_path(file_name)
      else
        UI.message("No dSYM URL for #{build.build_version} (#{build.train_version})")
      end
    end
  end

  if (Actions.lane_context[SharedValues::DSYM_PATHS] || []).count == 0
    UI.error("No dSYM files found on iTunes Connect - this usually happens when no recompling happened yet")
  end
end