class Fastlane::Actions::CertAction

def self.author

def self.author
  "KrauseFx"
end

def self.available_options

def self.available_options
  require 'cert'
  require 'cert/options'
  Cert::Options.available_options
end

def self.description

def self.description
  "Fetch or generate the latest available code signing identity"
end

def self.is_supported?(platform)

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

def self.run(params)

def self.run(params)
  require 'cert'
  require 'cert/options'
  return if Helper.test?
  FastlaneCore::UpdateChecker.start_looking_for_update('cert') unless Helper.is_test?
  begin
    Dir.chdir(FastlaneFolder.path || Dir.pwd) do
      # This should be executed in the fastlane folder
      Cert.config = params # we alread have the finished config
      Cert::CertRunner.new.launch
      cert_file_path = ENV["CER_FILE_PATH"]
      certificate_id = ENV["CER_CERTIFICATE_ID"]
      Actions.lane_context[SharedValues::CERT_FILE_PATH] = cert_file_path
      Actions.lane_context[SharedValues::CERT_CERTIFICATE_ID] = certificate_id
      Helper.log.info("Use signing certificate '#{certificate_id}' from now on!".green)
      ENV["SIGH_CERTIFICATE_ID"] = certificate_id # for further use in the sigh action
    end
  ensure
    FastlaneCore::UpdateChecker.show_update_status('cert', Cert::VERSION)
  end
end