debian-mirror-gitlab/app/models/pages/lookup_path.rb

82 lines
1.8 KiB
Ruby
Raw Normal View History

2019-12-04 20:38:33 +05:30
# frozen_string_literal: true
module Pages
class LookupPath
2019-12-21 20:55:43 +05:30
def initialize(project, trim_prefix: nil, domain: nil)
2019-12-04 20:38:33 +05:30
@project = project
@domain = domain
2019-12-21 20:55:43 +05:30
@trim_prefix = trim_prefix || project.full_path
2019-12-04 20:38:33 +05:30
end
def project_id
project.id
end
def access_control
project.private_pages?
end
def https_only
domain_https = domain ? domain.https? : true
project.pages_https_only? && domain_https
end
def source
2021-01-29 00:20:46 +05:30
zip_source || file_source
2019-12-04 20:38:33 +05:30
end
def prefix
2019-12-21 20:55:43 +05:30
if project.pages_group_root?
'/'
else
project.full_path.delete_prefix(trim_prefix) + '/'
end
2019-12-04 20:38:33 +05:30
end
private
2019-12-21 20:55:43 +05:30
attr_reader :project, :trim_prefix, :domain
2020-11-24 15:15:51 +05:30
def artifacts_archive
2021-01-29 00:20:46 +05:30
return unless Feature.enabled?(:pages_serve_from_artifacts_archive, project)
project.pages_metadatum.artifacts_archive
end
def deployment
return unless Feature.enabled?(:pages_serve_from_deployments, project)
2020-11-24 15:15:51 +05:30
2021-01-29 00:20:46 +05:30
project.pages_metadatum.pages_deployment
2020-11-24 15:15:51 +05:30
end
def zip_source
2021-01-29 00:20:46 +05:30
source = deployment || artifacts_archive
return unless source&.file
return if source.file.file_storage? && !Feature.enabled?(:pages_serve_with_zip_file_protocol, project)
# artifacts archive doesn't support this
file_count = source.file_count if source.respond_to?(:file_count)
global_id = ::Gitlab::GlobalId.build(source, id: source.id).to_s
2020-11-24 15:15:51 +05:30
{
type: 'zip',
2021-01-29 00:20:46 +05:30
path: source.file.url_or_file_path(expire_at: 1.day.from_now),
global_id: global_id,
sha256: source.file_sha256,
file_size: source.size,
file_count: file_count
2020-11-24 15:15:51 +05:30
}
end
def file_source
{
type: 'file',
path: File.join(project.full_path, 'public/')
}
end
2019-12-04 20:38:33 +05:30
end
end