2018-07-25 05:30:33 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-08-24 10:34:36 -04:00
|
|
|
require 'resolv'
|
|
|
|
|
|
|
|
class InstanceConfiguration
|
|
|
|
SSH_ALGORITHMS = %w(DSA ECDSA ED25519 RSA).freeze
|
2019-08-31 15:57:00 -04:00
|
|
|
SSH_ALGORITHMS_PATH = '/etc/ssh/'
|
|
|
|
CACHE_KEY = 'instance_configuration'
|
2017-08-24 10:34:36 -04:00
|
|
|
EXPIRATION_TIME = 24.hours
|
|
|
|
|
|
|
|
def settings
|
|
|
|
@configuration ||= Rails.cache.fetch(CACHE_KEY, expires_in: EXPIRATION_TIME) do
|
|
|
|
{ ssh_algorithms_hashes: ssh_algorithms_hashes,
|
|
|
|
host: host,
|
|
|
|
gitlab_pages: gitlab_pages,
|
|
|
|
gitlab_ci: gitlab_ci }.deep_symbolize_keys
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def ssh_algorithms_hashes
|
|
|
|
SSH_ALGORITHMS.map { |algo| ssh_algorithm_hashes(algo) }.compact
|
|
|
|
end
|
|
|
|
|
|
|
|
def host
|
|
|
|
Settings.gitlab.host
|
|
|
|
end
|
|
|
|
|
|
|
|
def gitlab_pages
|
|
|
|
Settings.pages.to_h.merge(ip_address: resolv_dns(Settings.pages.host))
|
|
|
|
end
|
|
|
|
|
|
|
|
def resolv_dns(dns)
|
|
|
|
Resolv.getaddress(dns)
|
|
|
|
rescue Resolv::ResolvError
|
|
|
|
end
|
|
|
|
|
|
|
|
def gitlab_ci
|
|
|
|
Settings.gitlab_ci
|
|
|
|
.to_h
|
2019-03-29 19:50:02 -04:00
|
|
|
.merge(artifacts_max_size: { value: Gitlab::CurrentSettings.max_artifacts_size.megabytes,
|
2017-08-24 10:34:36 -04:00
|
|
|
default: 100.megabytes })
|
|
|
|
end
|
|
|
|
|
|
|
|
def ssh_algorithm_file(algorithm)
|
|
|
|
File.join(SSH_ALGORITHMS_PATH, "ssh_host_#{algorithm.downcase}_key.pub")
|
|
|
|
end
|
|
|
|
|
|
|
|
def ssh_algorithm_hashes(algorithm)
|
|
|
|
content = ssh_algorithm_file_content(algorithm)
|
|
|
|
return unless content.present?
|
|
|
|
|
|
|
|
{ name: algorithm,
|
|
|
|
md5: ssh_algorithm_md5(content),
|
|
|
|
sha256: ssh_algorithm_sha256(content) }
|
|
|
|
end
|
|
|
|
|
|
|
|
def ssh_algorithm_file_content(algorithm)
|
|
|
|
file = ssh_algorithm_file(algorithm)
|
|
|
|
return unless File.exist?(file)
|
|
|
|
|
|
|
|
File.read(file)
|
|
|
|
end
|
|
|
|
|
|
|
|
def ssh_algorithm_md5(ssh_file_content)
|
2018-10-03 10:08:56 -04:00
|
|
|
Gitlab::SSHPublicKey.new(ssh_file_content).fingerprint
|
2017-08-24 10:34:36 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def ssh_algorithm_sha256(ssh_file_content)
|
2018-10-03 10:08:56 -04:00
|
|
|
Gitlab::SSHPublicKey.new(ssh_file_content).fingerprint('SHA256')
|
2017-08-24 10:34:36 -04:00
|
|
|
end
|
|
|
|
end
|