Sha256: 801d5e50551ddd4e99fec945c0c1d60bb15b0c7f3e6c2ca1f9b5036314c9059c

Contents?: true

Size: 1.71 KB

Versions: 48

Compression:

Stored size: 1.71 KB

Contents

require "digest/md5"

require_relative 'globals'
require_relative 'ui/ui'
require_relative 'module'

module FastlaneCore
  # Builds a package for the binary ready to be uploaded with the iTunes Transporter
  class IpaUploadPackageBuilder
    METADATA_FILE_NAME = "metadata.xml"

    attr_accessor :package_path

    def generate(app_id: nil, ipa_path: nil, package_path: nil, platform: nil)
      self.package_path = File.join(package_path, "#{app_id}.itmsp")
      FileUtils.rm_rf(self.package_path) if File.directory?(self.package_path)
      FileUtils.mkdir_p(self.package_path)

      ipa_path = copy_ipa(ipa_path)
      @data = {
        apple_id: app_id,
        file_size: File.size(ipa_path),
        ipa_path: File.basename(ipa_path), # this is only the base name as the ipa is inside the package
        md5: Digest::MD5.hexdigest(File.read(ipa_path)),
        archive_type: "bundle",
        platform: (platform || "ios") # pass "appletvos" for Apple TV's IPA
      }

      xml_path = File.join(FastlaneCore::ROOT, "lib/assets/XMLTemplate.xml.erb")
      xml = ERB.new(File.read(xml_path)).result(binding) # https://web.archive.org/web/20160430190141/www.rrn.dk/rubys-erb-templating-system

      File.write(File.join(self.package_path, METADATA_FILE_NAME), xml)
      UI.success("Wrote XML data to '#{self.package_path}'") if FastlaneCore::Globals.verbose?

      return package_path
    end

    def unique_ipa_path(ipa_path)
      "#{Digest::SHA256.file(ipa_path).hexdigest}.ipa"
    end

    private

    def copy_ipa(ipa_path)
      ipa_file_name = unique_ipa_path(ipa_path)
      resulting_path = File.join(self.package_path, ipa_file_name)
      FileUtils.cp(ipa_path, resulting_path)

      return resulting_path
    end
  end
end

Version data entries

48 entries across 48 versions & 1 rubygems

Version Path
fastlane-2.93.1 fastlane_core/lib/fastlane_core/ipa_upload_package_builder.rb
fastlane-2.94.0.beta.20180424050050 fastlane_core/lib/fastlane_core/ipa_upload_package_builder.rb
fastlane-2.93.0 fastlane_core/lib/fastlane_core/ipa_upload_package_builder.rb
fastlane-2.93.0.beta.20180423050019 fastlane_core/lib/fastlane_core/ipa_upload_package_builder.rb
fastlane-2.93.0.beta.20180422050034 fastlane_core/lib/fastlane_core/ipa_upload_package_builder.rb
fastlane-2.93.0.beta.20180421050012 fastlane_core/lib/fastlane_core/ipa_upload_package_builder.rb
fastlane-2.93.0.beta.20180420050021 fastlane_core/lib/fastlane_core/ipa_upload_package_builder.rb
fastlane-2.93.0.beta.20180419050008 fastlane_core/lib/fastlane_core/ipa_upload_package_builder.rb