summaryrefslogtreecommitdiff
path: root/app/graphql/resolvers/design_management/design_at_version_resolver.rb
blob: 533692e2b121fc4cb92bd0fac46ce6df7f8a4d66 (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
42
43
44
45
46
47
48
49
# frozen_string_literal: true

module Resolvers
  module DesignManagement
    class DesignAtVersionResolver < BaseResolver
      include Gitlab::Graphql::Authorize::AuthorizeResource

      type Types::DesignManagement::DesignAtVersionType, null: false

      authorize :read_design

      argument :id, ::Types::GlobalIDType[::DesignManagement::DesignAtVersion],
               required: true,
               description: 'The Global ID of the design at this version.'

      def resolve(id:)
        authorized_find!(id: id)
      end

      def find_object(id:)
        # TODO: remove this line when the compatibility layer is removed
        # See: https://gitlab.com/gitlab-org/gitlab/-/issues/257883
        id = ::Types::GlobalIDType[::DesignManagement::DesignAtVersion].coerce_isolated_input(id)
        dav = GitlabSchema.find_by_gid(id)
        return unless consistent?(dav)

        dav
      end

      def self.single
        self
      end

      private

      # If this resolver is mounted on something that has an issue
      # (such as design collection for instance), then we should check
      # that the DesignAtVersion as found by its ID does in fact belong
      # to this issue.
      def consistent?(dav)
        issue.nil? || (dav.present? && dav.design&.issue_id == issue.id)
      end

      def issue
        object&.issue
      end
    end
  end
end