summaryrefslogtreecommitdiff
path: root/lib/gitlab/etag_caching/router/graphql.rb
blob: f1737f0ce5a7487d4bafc5f589cd87dde50b7f75 (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
31
32
33
34
35
36
37
38
39
40
41
# frozen_string_literal: true

module Gitlab
  module EtagCaching
    module Router
      class Graphql
        extend EtagCaching::Router::Helpers
        GRAPHQL_ETAG_RESOURCE_HEADER = 'X-GITLAB-GRAPHQL-RESOURCE-ETAG'

        ROUTES = [
          [
            %r(\Apipelines/id/\d+\z),
            'pipelines_graph',
            'continuous_integration'
          ]
        ].map(&method(:build_route)).freeze

        def self.match(request)
          return unless request.path_info == graphql_api_path

          graphql_resource = request.headers[GRAPHQL_ETAG_RESOURCE_HEADER]
          return unless graphql_resource

          ROUTES.find { |route| route.match(graphql_resource) }
        end

        def self.cache_key(request)
          [
            request.path,
            request.headers[GRAPHQL_ETAG_RESOURCE_HEADER]
          ].compact.join(':')
        end

        def self.graphql_api_path
          @graphql_api_path ||= Gitlab::Routing.url_helpers.api_graphql_path
        end
        private_class_method :graphql_api_path
      end
    end
  end
end