Welcome to mirror list, hosted at ThFree Co, Russian Federation.

fill_valid_time_for_pages_domain_certificate.rb « background_migration « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7b5c32e3d6dea4ba2ee24a7d03baabac32fecc26 (plain)
1
2
3
4
5
6
7
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
# frozen_string_literal: true

module Gitlab
  module BackgroundMigration
    # save validity time pages domain
    class FillValidTimeForPagesDomainCertificate
      # define PagesDomain with only needed code
      class PagesDomain < ActiveRecord::Base
        self.table_name = 'pages_domains'

        def x509
          return unless certificate.present?

          @x509 ||= OpenSSL::X509::Certificate.new(certificate)
        rescue OpenSSL::X509::CertificateError
          nil
        end
      end

      def perform(start_id, stop_id)
        PagesDomain.where(id: start_id..stop_id).find_each do |domain|
          # for some reason activerecord doesn't append timezone, iso8601 forces this
          domain.update_columns(
            certificate_valid_not_before: domain.x509&.not_before&.iso8601,
            certificate_valid_not_after: domain.x509&.not_after&.iso8601
          )
        rescue StandardError => e
          Gitlab::AppLogger.error "Failed to update pages domain certificate valid time. id: #{domain.id}, message: #{e.message}"
        end
      end
    end
  end
end