Sha256: ae47398de03090dd3c8c3e109b84cf03e39c4a88cfcf010efde0e4c43c671559

Contents?: true

Size: 1.51 KB

Versions: 5

Compression:

Stored size: 1.51 KB

Contents

require "digest/md5"

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

      lib_path = Helper.gem_path("fastlane_core")

      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)),
        platform: (platform || "ios") # pass "appletvos" for Apple TV's IPA
      }

      xml_path = File.join(lib_path, "lib/assets/XMLTemplate.xml.erb")
      xml = ERB.new(File.read(xml_path)).result(binding) # http://www.rrn.dk/rubys-erb-templating-system

      File.write(File.join(self.package_path, METADATA_FILE_NAME), xml)
      Helper.log.info "Wrote XML data to '#{self.package_path}'".green if $verbose

      return package_path
    end

    private

    def copy_ipa(ipa_path)
      ipa_file_name = Digest::MD5.hexdigest(ipa_path)
      resulting_path = File.join(self.package_path, "#{ipa_file_name}.ipa")
      FileUtils.cp(ipa_path, resulting_path)

      return resulting_path
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
fastlane_core-0.33.0 lib/fastlane_core/ipa_upload_package_builder.rb
fastlane_core-0.32.1 lib/fastlane_core/ipa_upload_package_builder.rb
fastlane_core-0.32.0 lib/fastlane_core/ipa_upload_package_builder.rb
fastlane_core-0.31.0 lib/fastlane_core/ipa_upload_package_builder.rb
fastlane_core-0.30.0 lib/fastlane_core/ipa_upload_package_builder.rb