summaryrefslogtreecommitdiff
path: root/config/initializers/0_license.rb
blob: f750022dfdf675e80dfd486caa6753202b2d4436 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

Gitlab.ee do
  begin
    public_key_file = File.read(Rails.root.join(".license_encryption_key.pub"))
    public_key = OpenSSL::PKey::RSA.new(public_key_file)
    Gitlab::License.encryption_key = public_key
  rescue
    warn "WARNING: No valid license encryption key provided."
  end

  # Needed to run migration
  if ActiveRecord::Base.connected? && ActiveRecord::Base.connection.data_source_exists?('licenses')
    message = LicenseHelper.license_message(signed_in: true, is_admin: true, in_html: false)
    if ::License.block_changes? && message.present?
      warn "WARNING: #{message}"
    end
  end
end