gitlab-org--gitlab-foss/app/services/projects/update_pages_configuration_...

108 lines
2.5 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
2016-02-09 17:06:55 +00:00
module Projects
class UpdatePagesConfigurationService < BaseService
include Gitlab::Utils::StrongMemoize
2016-02-09 17:06:55 +00:00
attr_reader :project
def initialize(project)
@project = project
end
def execute
# If the pages were never deployed, we can't write out the config, as the
# directory would not exist.
# https://gitlab.com/gitlab-org/gitlab/-/issues/235139
return success unless project.pages_deployed?
unless file_equals?(pages_config_file, pages_config_json)
update_file(pages_config_file, pages_config_json)
reload_daemon
2019-01-16 11:48:50 +00:00
end
success
2016-02-09 17:06:55 +00:00
end
private
def pages_config_json
strong_memoize(:pages_config_json) do
pages_config.to_json
end
end
def pages_config
{
2018-01-03 08:07:03 +00:00
domains: pages_domains_config,
https_only: project.pages_https_only?,
id: project.project_id,
access_control: !project.public_pages?
}
end
def pages_domains_config
enabled_pages_domains.map do |domain|
{
domain: domain.domain,
certificate: domain.certificate,
2018-01-03 08:07:03 +00:00
key: domain.key,
https_only: project.pages_https_only? && domain.https?,
id: project.project_id,
access_control: !project.public_pages?
}
end
end
def enabled_pages_domains
if Gitlab::CurrentSettings.pages_domain_verification_enabled?
project.pages_domains.enabled
else
project.pages_domains
end
end
2016-02-09 17:06:55 +00:00
def reload_daemon
# GitLab Pages daemon constantly watches for modification time of `pages.path`
# It reloads configuration when `pages.path` is modified
2016-02-12 15:05:17 +00:00
update_file(pages_update_file, SecureRandom.hex(64))
2016-02-09 17:06:55 +00:00
end
def pages_path
@pages_path ||= project.pages_path
end
def pages_config_file
2016-02-10 15:21:39 +00:00
File.join(pages_path, 'config.json')
2016-02-09 17:06:55 +00:00
end
2016-02-12 15:05:17 +00:00
def pages_update_file
File.join(::Settings.pages.path, '.update')
2016-02-12 15:05:17 +00:00
end
2016-02-09 17:06:55 +00:00
def update_file(file, data)
2016-02-12 15:05:17 +00:00
temp_file = "#{file}.#{SecureRandom.hex(16)}"
2016-02-15 13:44:54 +00:00
File.open(temp_file, 'w') do |f|
f.write(data)
2016-02-09 17:06:55 +00:00
end
2016-02-15 13:44:54 +00:00
FileUtils.move(temp_file, file, force: true)
2016-02-12 15:05:17 +00:00
ensure
# In case if the updating fails
2016-02-15 13:44:54 +00:00
FileUtils.remove(temp_file, force: true)
2016-02-09 17:06:55 +00:00
end
2019-01-16 11:48:50 +00:00
def file_equals?(file, data)
existing_data = read_file(file)
data == existing_data.to_s
end
2019-01-16 11:48:50 +00:00
def read_file(file)
File.open(file, 'r') do |f|
f.read
end
rescue
nil
end
2016-02-09 17:06:55 +00:00
end
end