summaryrefslogtreecommitdiff
path: root/lib/api/version.rb
blob: eca1b52909462d7d8bdf04a7be5d395a1f2cd72d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# frozen_string_literal: true

module API
  class Version < Grape::API
    helpers ::API::Helpers::GraphqlHelpers

    before { authenticate! }

    METADATA_QUERY = <<~EOF
      {
        metadata {
          version
          revision
        }
      }
    EOF

    desc 'Get the version information of the GitLab instance.' do
      detail 'This feature was introduced in GitLab 8.13.'
    end
    get '/version' do
      conditionally_graphql!(
        query: METADATA_QUERY,
        context: { current_user: current_user },
        transform: ->(result) { result.dig('data', 'metadata') },
        fallback: -> { { version: Gitlab::VERSION, revision: Gitlab.revision } }
      )
    end
  end
end