2019-12-04 20:38:33 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module API
|
|
|
|
# Pages Internal API
|
|
|
|
module Internal
|
2021-01-03 14:25:43 +05:30
|
|
|
class Pages < ::API::Base
|
2021-01-29 00:20:46 +05:30
|
|
|
feature_category :pages
|
|
|
|
|
2019-12-04 20:38:33 +05:30
|
|
|
before do
|
|
|
|
authenticate_gitlab_pages_request!
|
|
|
|
end
|
|
|
|
|
|
|
|
helpers do
|
|
|
|
def authenticate_gitlab_pages_request!
|
|
|
|
unauthorized! unless Gitlab::Pages.verify_api_request(headers)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
namespace 'internal' do
|
|
|
|
namespace 'pages' do
|
2020-04-22 19:07:51 +05:30
|
|
|
desc 'Indicates that pages API is enabled and auth token is valid' do
|
|
|
|
detail 'This feature was introduced in GitLab 12.10.'
|
|
|
|
end
|
|
|
|
get "status" do
|
|
|
|
no_content!
|
|
|
|
end
|
|
|
|
|
2019-12-21 20:55:43 +05:30
|
|
|
desc 'Get GitLab Pages domain configuration by hostname' do
|
|
|
|
detail 'This feature was introduced in GitLab 12.3.'
|
|
|
|
end
|
|
|
|
params do
|
|
|
|
requires :host, type: String, desc: 'The host to query for'
|
|
|
|
end
|
2019-12-04 20:38:33 +05:30
|
|
|
get "/" do
|
2021-02-22 17:27:13 +05:30
|
|
|
##
|
|
|
|
# Serverless domain proxy has been deprecated and disabled as per
|
|
|
|
# https://gitlab.com/gitlab-org/gitlab-pages/-/issues/467
|
|
|
|
#
|
|
|
|
# serverless_domain_finder = ServerlessDomainFinder.new(params[:host])
|
|
|
|
# if serverless_domain_finder.serverless?
|
|
|
|
# # Handle Serverless domains
|
|
|
|
# serverless_domain = serverless_domain_finder.execute
|
|
|
|
# no_content! unless serverless_domain
|
|
|
|
#
|
|
|
|
# virtual_domain = Serverless::VirtualDomain.new(serverless_domain)
|
|
|
|
# no_content! unless virtual_domain
|
|
|
|
#
|
|
|
|
# present virtual_domain, with: Entities::Internal::Serverless::VirtualDomain
|
|
|
|
# end
|
|
|
|
|
|
|
|
host = Namespace.find_by_pages_host(params[:host]) || PagesDomain.find_by_domain_case_insensitive(params[:host])
|
|
|
|
no_content! unless host
|
|
|
|
|
|
|
|
virtual_domain = host.pages_virtual_domain
|
|
|
|
no_content! unless virtual_domain
|
|
|
|
|
2022-08-13 15:12:31 +05:30
|
|
|
if virtual_domain.cache_key.present?
|
|
|
|
# Cache context is not added to make it easier to expire the cache with
|
|
|
|
# Gitlab::Pages::CacheControl
|
|
|
|
present_cached virtual_domain,
|
|
|
|
cache_context: nil,
|
2022-11-25 23:54:43 +05:30
|
|
|
with: Entities::Internal::Pages::VirtualDomain,
|
|
|
|
expires_in: ::Gitlab::Pages::CacheControl::EXPIRE
|
2022-08-13 15:12:31 +05:30
|
|
|
else
|
|
|
|
present virtual_domain, with: Entities::Internal::Pages::VirtualDomain
|
|
|
|
end
|
2019-12-04 20:38:33 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|