Welcome to mirror list, hosted at ThFree Co, Russian Federation.

blame_resolver.rb « resolvers « graphql « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f8b985e65820150e4afa616d401e38a4637dbc1e (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
50
51
52
53
54
55
56
57
58
59
60
61
62
# frozen_string_literal: true

module Resolvers
  class BlameResolver < BaseResolver
    include Gitlab::Graphql::Authorize::AuthorizeResource

    type Types::Blame::BlameType, null: true
    calls_gitaly!

    argument :from_line, GraphQL::Types::Int,
      required: false,
      default_value: 1,
      description: 'Range starting from the line. Cannot be less than 1 or greater than `to_line`.'
    argument :to_line, GraphQL::Types::Int,
      required: false,
      default_value: 1,
      description: 'Range ending on the line. Cannot be less than 1 or less than `to_line`.'

    alias_method :blob, :object

    def ready?(**args)
      validate_line_params!(args) if feature_enabled?

      super
    end

    def resolve(from_line:, to_line:)
      return unless feature_enabled?

      authorize!

      Gitlab::Blame.new(blob, blob.repository.commit(blob.commit_id),
        range: (from_line..to_line))
    end

    private

    def authorize!
      read_code? || raise_resource_not_available_error!
    end

    def read_code?
      Ability.allowed?(current_user, :read_code, blob.repository.project)
    end

    def feature_enabled?
      Feature.enabled?(:graphql_git_blame, blob.repository.project)
    end

    def validate_line_params!(args)
      if args[:from_line] <= 0 || args[:to_line] <= 0
        raise Gitlab::Graphql::Errors::ArgumentError,
          '`from_line` and `to_line` must be greater than or equal to 1'
      end

      return unless args[:from_line] > args[:to_line]

      raise Gitlab::Graphql::Errors::ArgumentError,
        '`to_line` must be greater than or equal to `from_line`'
    end
  end
end