34 lines
694 B
Ruby
34 lines
694 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/328715
|
|
paths = paths.select(&:source)
|
|
|
|
paths.sort_by(&:prefix).reverse
|
|
end
|
|
|
|
private
|
|
|
|
attr_reader :projects, :trim_prefix, :domain
|
|
end
|
|
end
|