# frozen_string_literal: true module Pages class LookupPath include Gitlab::Utils::StrongMemoize def initialize(deployment:, domain: nil, trim_prefix: nil) @deployment = deployment @project = deployment.project @domain = domain @trim_prefix = trim_prefix || @project.full_path end def project_id project.id end strong_memoize_attr :project_id def access_control project.private_pages? end strong_memoize_attr :access_control def https_only domain_https = domain ? domain.https? : true project.pages_https_only? && domain_https end strong_memoize_attr :https_only def source return unless deployment&.file global_id = ::Gitlab::GlobalId.build(deployment, id: deployment.id).to_s { type: 'zip', path: deployment.file.url_or_file_path( expire_at: ::Gitlab::Pages::DEPLOYMENT_EXPIRATION.from_now ), global_id: global_id, sha256: deployment.file_sha256, file_size: deployment.size, file_count: deployment.file_count } end strong_memoize_attr :source def prefix ensure_leading_and_trailing_slash(prefix_value) end strong_memoize_attr :prefix def unique_host # When serving custom domain we don't present the unique host to avoid # GitLab Pages auto-redirect to the unique domain instead of keeping serving # from the custom domain. # https://gitlab.com/gitlab-org/gitlab/-/issues/426435 return if domain.present? url_builder.unique_host end strong_memoize_attr :unique_host def root_directory return unless deployment deployment.root_directory end strong_memoize_attr :root_directory private attr_reader :project, :deployment, :trim_prefix, :domain def url_builder Gitlab::Pages::UrlBuilder.new(project) end strong_memoize_attr :url_builder def prefix_value return deployment.path_prefix if url_builder.namespace_pages? [project.full_path.delete_prefix(trim_prefix), deployment.path_prefix].compact.join('/') end def ensure_leading_and_trailing_slash(value) value .to_s .then { |s| s.start_with?("/") ? s : "/#{s}" } .then { |s| s.end_with?("/") ? s : "#{s}/" } end end end