2018-12-05 23:21:45 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-11-03 12:29:30 +05:30
|
|
|
module API
|
2020-07-28 23:09:34 +05:30
|
|
|
class Version < Grape::API::Instance
|
2019-07-07 11:18:12 +05:30
|
|
|
helpers ::API::Helpers::GraphqlHelpers
|
2020-04-08 14:13:33 +05:30
|
|
|
include APIGuard
|
|
|
|
|
|
|
|
allow_access_with_scope :read_user, if: -> (request) { request.get? }
|
2019-07-07 11:18:12 +05:30
|
|
|
|
2016-11-03 12:29:30 +05:30
|
|
|
before { authenticate! }
|
|
|
|
|
2019-07-07 11:18:12 +05:30
|
|
|
METADATA_QUERY = <<~EOF
|
|
|
|
{
|
|
|
|
metadata {
|
|
|
|
version
|
|
|
|
revision
|
|
|
|
}
|
|
|
|
}
|
|
|
|
EOF
|
|
|
|
|
2016-11-03 12:29:30 +05:30
|
|
|
desc 'Get the version information of the GitLab instance.' do
|
|
|
|
detail 'This feature was introduced in GitLab 8.13.'
|
|
|
|
end
|
|
|
|
get '/version' do
|
2019-12-21 20:55:43 +05:30
|
|
|
run_graphql!(
|
2019-07-07 11:18:12 +05:30
|
|
|
query: METADATA_QUERY,
|
|
|
|
context: { current_user: current_user },
|
2019-12-21 20:55:43 +05:30
|
|
|
transform: ->(result) { result.dig('data', 'metadata') }
|
2019-07-07 11:18:12 +05:30
|
|
|
)
|
2016-11-03 12:29:30 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|