debian-mirror-gitlab/lib/api/internal/pages.rb

59 lines
1.9 KiB
Ruby
Raw Normal View History

2019-12-04 20:38:33 +05:30
# frozen_string_literal: true
module API
# Pages Internal API
module Internal
2020-07-28 23:09:34 +05:30
class Pages < Grape::API::Instance
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
2020-04-08 14:13:33 +05:30
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
2019-12-04 20:38:33 +05:30
2020-04-08 14:13:33 +05:30
virtual_domain = Serverless::VirtualDomain.new(serverless_domain)
no_content! unless virtual_domain
2019-12-04 20:38:33 +05:30
2020-04-08 14:13:33 +05:30
present virtual_domain, with: Entities::Internal::Serverless::VirtualDomain
else
# Handle Pages domains
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
present virtual_domain, with: Entities::Internal::Pages::VirtualDomain
end
2019-12-04 20:38:33 +05:30
end
end
end
end
end
end