gitlab-org--gitlab-foss/app/models/pages/virtual_domain.rb

37 lines
842 B
Ruby

# frozen_string_literal: true
module Pages
class VirtualDomain
def initialize(projects, trim_prefix: nil, domain: nil)
@projects = projects
@trim_prefix = trim_prefix
@domain = domain
end
def certificate
domain&.certificate
end
def key
domain&.key
end
def lookup_paths
paths = projects.map do |project|
project.pages_lookup_path(trim_prefix: trim_prefix, domain: domain)
end
# TODO: remove in https://gitlab.com/gitlab-org/gitlab/-/issues/297524
# source can only be nil if pages_serve_from_legacy_storage FF is disabled
# we can remove this filtering once we remove legacy storage
paths = paths.select(&:source)
paths.sort_by(&:prefix).reverse
end
private
attr_reader :projects, :trim_prefix, :domain
end
end