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

40 lines
1.1 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
class Pages < Grape::API
before do
not_found! unless Feature.enabled?(:pages_internal_api)
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
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
2019-12-21 20:55:43 +05:30
host = Namespace.find_by_pages_host(params[:host]) || PagesDomain.find_by_domain(params[:host])
2020-01-01 13:55:28 +05:30
no_content! unless host
2019-12-04 20:38:33 +05:30
virtual_domain = host.pages_virtual_domain
2019-12-21 20:55:43 +05:30
no_content! unless virtual_domain
2019-12-04 20:38:33 +05:30
present virtual_domain, with: Entities::Internal::Pages::VirtualDomain
end
end
end
end
end
end