Class: Cert::Runner
- Inherits:
-
Object
- Object
- Cert::Runner
- Defined in:
- cert/lib/cert/runner.rb
Instance Method Summary collapse
-
#certificate_type ⇒ Object
The kind of certificate we’re interested in (for creating).
-
#certificate_types ⇒ Object
The kind of certificates we’re interested in (for listing).
-
#certificates ⇒ Object
All certificates of this type.
- #create_certificate ⇒ Object
- #expired_certs ⇒ Object
- #find_existing_cert ⇒ Object
- #launch ⇒ Object
- #login ⇒ Object
-
#revoke_expired_certs! ⇒ Object
Command method for the :revoke_expired sub-command.
- #run ⇒ Object
- #store_certificate(certificate, filename = nil) ⇒ Object
Instance Method Details
#certificate_type ⇒ Object
The kind of certificate we’re interested in (for creating)
147 148 149 |
# File 'cert/lib/cert/runner.rb', line 147 def certificate_type return certificate_types.first end |
#certificate_types ⇒ Object
The kind of certificates we’re interested in (for listing)
152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 |
# File 'cert/lib/cert/runner.rb', line 152 def certificate_types if Cert.config[:type] case Cert.config[:type].to_sym when :mac_installer_distribution return [Spaceship::ConnectAPI::Certificate::CertificateType::MAC_INSTALLER_DISTRIBUTION] when :developer_id_application return [ Spaceship::ConnectAPI::Certificate::CertificateType::DEVELOPER_ID_APPLICATION_G2, Spaceship::ConnectAPI::Certificate::CertificateType::DEVELOPER_ID_APPLICATION ] when :developer_id_kext return [Spaceship::ConnectAPI::Certificate::CertificateType::DEVELOPER_ID_KEXT] when :developer_id_installer if !Spaceship::ConnectAPI.token.nil? raise "As of 2021-11-09, the App Store Connect API does not allow accessing DEVELOPER_ID_INSTALLER with the API Key. Please file an issue on GitHub if this has changed and needs to be updated" else return [Spaceship::ConnectAPI::Certificate::CertificateType::DEVELOPER_ID_INSTALLER] end else UI.user_error("Unaccepted value for :type - #{Cert.config[:type]}") end end # Check if apple certs (Xcode 11 and later) should be used if Cert.config[:generate_apple_certs] cert_type = Spaceship::ConnectAPI::Certificate::CertificateType::DISTRIBUTION cert_type = Spaceship::ConnectAPI::Certificate::CertificateType::IOS_DISTRIBUTION if Spaceship::ConnectAPI.client.in_house? # Enterprise doesn't use Apple Distribution cert_type = Spaceship::ConnectAPI::Certificate::CertificateType::DEVELOPMENT if Cert.config[:development] else case Cert.config[:platform].to_s when 'ios', 'tvos' cert_type = Spaceship::ConnectAPI::Certificate::CertificateType::IOS_DISTRIBUTION cert_type = Spaceship::ConnectAPI::Certificate::CertificateType::IOS_DISTRIBUTION if Spaceship::ConnectAPI.client.in_house? cert_type = Spaceship::ConnectAPI::Certificate::CertificateType::IOS_DEVELOPMENT if Cert.config[:development] when 'macos' cert_type = Spaceship::ConnectAPI::Certificate::CertificateType::MAC_APP_DISTRIBUTION cert_type = Spaceship::ConnectAPI::Certificate::CertificateType::MAC_APP_DEVELOPMENT if Cert.config[:development] end end return [cert_type] end |
#certificates ⇒ Object
All certificates of this type
139 140 141 142 143 144 |
# File 'cert/lib/cert/runner.rb', line 139 def certificates filter = { certificateType: certificate_types.join(",") } return Spaceship::ConnectAPI::Certificate.all(filter: filter) end |
#create_certificate ⇒ Object
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 |
# File 'cert/lib/cert/runner.rb', line 196 def create_certificate # Create a new certificate signing request csr, pkey = Spaceship::ConnectAPI::Certificate.create_certificate_signing_request # Use the signing request to create a new (development|distribution) certificate begin certificate = Spaceship::ConnectAPI::Certificate.create( certificate_type: certificate_type, csr_content: csr.to_pem ) rescue => ex type_name = (Cert.config[:development] ? "Development" : "Distribution") if ex.to_s.include?("You already have a current") UI.user_error!("Could not create another #{type_name} certificate, reached the maximum number of available #{type_name} certificates.", show_github_issues: true) elsif ex.to_s.include?("You are not allowed to perform this operation.") && type_name == "Distribution" UI.user_error!("You do not have permission to create this certificate. Only Team Admins can create Distribution certificates\n 🔍 See https://developer.apple.com/library/content/documentation/IDEs/Conceptual/AppDistributionGuide/ManagingYourTeam/ManagingYourTeam.html for more information.") end raise ex end # Store all that onto the filesystem request_path = File.(File.join(Cert.config[:output_path], "#{certificate.id}.certSigningRequest")) File.write(request_path, csr.to_pem) private_key_path = File.(File.join(Cert.config[:output_path], "#{certificate.id}.p12")) File.write(private_key_path, pkey) cert_path = store_certificate(certificate, Cert.config[:filename]) # Import all the things into the Keychain keychain = File.(Cert.config[:keychain_path]) password = Cert.config[:keychain_password] FastlaneCore::KeychainImporter.import_file(private_key_path, keychain, keychain_password: password, skip_set_partition_list: Cert.config[:skip_set_partition_list]) FastlaneCore::KeychainImporter.import_file(cert_path, keychain, keychain_password: password, skip_set_partition_list: Cert.config[:skip_set_partition_list]) # Environment variables for the fastlane action ENV["CER_CERTIFICATE_ID"] = certificate.id ENV["CER_FILE_PATH"] = cert_path UI.success("Successfully generated #{certificate.id} which was imported to the local machine.") return cert_path end |
#expired_certs ⇒ Object
90 91 92 |
# File 'cert/lib/cert/runner.rb', line 90 def expired_certs certificates.reject(&:valid?) end |
#find_existing_cert ⇒ Object
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 |
# File 'cert/lib/cert/runner.rb', line 94 def find_existing_cert certificates.each do |certificate| unless certificate.certificate_content next end path = store_certificate(certificate, Cert.config[:filename]) private_key_path = File.(File.join(Cert.config[:output_path], "#{certificate.id}.p12")) # As keychain is specific to macOS, this will likely fail on non macOS systems. # See also: https://github.com/fastlane/fastlane/pull/14462 keychain = File.(Cert.config[:keychain_path]) unless Cert.config[:keychain_path].nil? if FastlaneCore::CertChecker.installed?(path, in_keychain: keychain) # This certificate is installed on the local machine ENV["CER_CERTIFICATE_ID"] = certificate.id ENV["CER_FILE_PATH"] = path ENV["CER_KEYCHAIN_PATH"] = keychain UI.success("Found the certificate #{certificate.id} (#{certificate.display_name}) which is installed on the local machine. Using this one.") return path elsif File.exist?(private_key_path) password = Cert.config[:keychain_password] FastlaneCore::KeychainImporter.import_file(private_key_path, keychain, keychain_password: password, skip_set_partition_list: Cert.config[:skip_set_partition_list]) FastlaneCore::KeychainImporter.import_file(path, keychain, keychain_password: password, skip_set_partition_list: Cert.config[:skip_set_partition_list]) ENV["CER_CERTIFICATE_ID"] = certificate.id ENV["CER_FILE_PATH"] = path ENV["CER_KEYCHAIN_PATH"] = keychain UI.success("Found the cached certificate #{certificate.id} (#{certificate.display_name}). Using this one.") return path else UI.error("Certificate #{certificate.id} (#{certificate.display_name}) can't be found on your local computer") end File.delete(path) # as apparently this certificate is pretty useless without a private key end UI.important("Couldn't find an existing certificate... creating a new one") return nil end |
#launch ⇒ Object
12 13 14 15 16 17 18 19 20 |
# File 'cert/lib/cert/runner.rb', line 12 def launch run installed = FastlaneCore::CertChecker.installed?(ENV["CER_FILE_PATH"], in_keychain: ENV["CER_KEYCHAIN_PATH"]) UI.("Verifying the certificate is properly installed locally...") UI.user_error!("Could not find the newly generated certificate installed", show_github_issues: true) unless installed UI.success("Successfully installed certificate #{ENV['CER_CERTIFICATE_ID']}") return ENV["CER_FILE_PATH"] end |
#login ⇒ Object
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
# File 'cert/lib/cert/runner.rb', line 22 def login if (api_token = Spaceship::ConnectAPI::Token.from(hash: Cert.config[:api_key], filepath: Cert.config[:api_key_path])) UI.("Creating authorization token for App Store Connect API") Spaceship::ConnectAPI.token = api_token elsif !Spaceship::ConnectAPI.token.nil? UI.("Using existing authorization token for App Store Connect API") else # Username is now optional since addition of App Store Connect API Key # Force asking for username to prompt user if not already set Cert.config.fetch(:username, force_ask: true) UI.("Starting login with user '#{Cert.config[:username]}'") Spaceship::ConnectAPI.login(Cert.config[:username], nil, use_portal: true, use_tunes: false) UI.("Successfully logged in") end end |
#revoke_expired_certs! ⇒ Object
Command method for the :revoke_expired sub-command
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 |
# File 'cert/lib/cert/runner.rb', line 62 def revoke_expired_certs! FastlaneCore::PrintTable.print_values(config: Cert.config, hide_keys: [:output_path], title: "Summary for cert #{Fastlane::VERSION}") login to_revoke = expired_certs if to_revoke.empty? UI.success("No expired certificates were found to revoke! 👍") return end revoke_count = 0 to_revoke.each do |certificate| begin UI.("#{certificate.id} #{certificate.display_name} has expired, revoking...") certificate.delete! revoke_count += 1 rescue => e UI.error("An error occurred while revoking #{certificate.id} #{certificate.display_name}") UI.error("#{e.}\n#{e.backtrace.join("\n")}") if FastlaneCore::Globals.verbose? end end UI.success("#{revoke_count} expired certificate#{'s' if revoke_count != 1} #{revoke_count == 1 ? 'has' : 'have'} been revoked! 👍") end |
#run ⇒ Object
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 |
# File 'cert/lib/cert/runner.rb', line 39 def run FileUtils.mkdir_p(Cert.config[:output_path]) FastlaneCore::PrintTable.print_values(config: Cert.config, hide_keys: [:output_path], title: "Summary for cert #{Fastlane::VERSION}") login should_create = Cert.config[:force] unless should_create cert_path = find_existing_cert should_create = cert_path.nil? end return unless should_create if create_certificate # no certificate here, creating a new one return # success else UI.user_error!("Something went wrong when trying to create a new certificate...") end end |
#store_certificate(certificate, filename = nil) ⇒ Object
241 242 243 244 245 246 247 248 |
# File 'cert/lib/cert/runner.rb', line 241 def store_certificate(certificate, filename = nil) cert_name = filename ? filename : certificate.id cert_name = "#{cert_name}.cer" unless File.extname(cert_name) == ".cer" path = File.(File.join(Cert.config[:output_path], cert_name)) raw_data = Base64.decode64(certificate.certificate_content) File.write(path, raw_data.force_encoding("UTF-8")) return path end |