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

complex_indexes_require_name.rb « migration « cop « rubocop - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 82deb36716d9b2603afa9e0105a5a82efa318602 (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
# frozen_string_literal: true

require_relative '../../migration_helpers'

module RuboCop
  module Cop
    module Migration
      class ComplexIndexesRequireName < RuboCop::Cop::Cop
        include MigrationHelpers

        MSG = 'indexes added with custom options must be explicitly named'

        def_node_matcher :match_create_table_index_with_options, <<~PATTERN
          (send _ {:index } _ (hash $...))
        PATTERN

        def_node_matcher :match_add_index_with_options, <<~PATTERN
          (send _ {:add_index :add_concurrent_index} _ _ (hash $...))
        PATTERN

        def_node_matcher :name_option?, <<~PATTERN
          (pair {(sym :name) (str "name")} _)
        PATTERN

        def_node_matcher :unique_option?, <<~PATTERN
          (pair {(:sym :unique) (str "unique")} _)
        PATTERN

        def on_def(node)
          return unless in_migration?(node)

          node.each_descendant(:send) do |send_node|
            next unless create_table_with_index_offense?(send_node) || add_index_offense?(send_node)

            add_offense(send_node, location: :selector)
          end
        end

        private

        def create_table_with_index_offense?(send_node)
          match_create_table_index_with_options(send_node) { |option_nodes| needs_name_option?(option_nodes) }
        end

        def add_index_offense?(send_node)
          match_add_index_with_options(send_node) { |option_nodes| needs_name_option?(option_nodes) }
        end

        def needs_name_option?(option_nodes)
          return false if only_unique_option?(option_nodes)

          option_nodes.none? { |node| name_option?(node) }
        end

        def only_unique_option?(option_nodes)
          option_nodes.size == 1 && unique_option?(option_nodes.first)
        end
      end
    end
  end
end