forked from rubocop/rubocop-rails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathattribute_default_block_value.rb
90 lines (83 loc) · 2.63 KB
/
attribute_default_block_value.rb
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# frozen_string_literal: true
module RuboCop
module Cop
module Rails
# This cop looks for `attribute` class methods that specify a `:default` option
# which value is an array, string literal or method call without a block.
# It will accept all other values, such as string, symbol, integer and float literals
# as well as constants.
#
# @example
# # bad
# class User < ApplicationRecord
# attribute :confirmed_at, :datetime, default: Time.zone.now
# end
#
# # good
# class User < ApplicationRecord
# attribute :confirmed_at, :datetime, default: -> { Time.zone.now }
# end
#
# # bad
# class User < ApplicationRecord
# attribute :roles, :string, array: true, default: []
# end
#
# # good
# class User < ApplicationRecord
# attribute :roles, :string, array: true, default: -> { [] }
# end
#
# # bad
# class User < ApplicationRecord
# attribute :configuration, default: {}
# end
#
# # good
# class User < ApplicationRecord
# attribute :configuration, default: -> { {} }
# end
#
# # good
# class User < ApplicationRecord
# attribute :role, :string, default: :customer
# end
#
# # good
# class User < ApplicationRecord
# attribute :activated, :boolean, default: false
# end
#
# # good
# class User < ApplicationRecord
# attribute :login_count, :integer, default: 0
# end
#
# # good
# class User < ApplicationRecord
# FOO = 123
# attribute :custom_attribute, :integer, default: FOO
# end
class AttributeDefaultBlockValue < Base
extend AutoCorrector
MSG = 'Pass method in a block to `:default` option.'
RESTRICT_ON_SEND = %i[attribute].freeze
TYPE_OFFENDERS = %i[send array hash].freeze
def_node_matcher :default_attribute, <<~PATTERN
(send nil? :attribute _ ?_ (hash <$#attribute ...>))
PATTERN
def_node_matcher :attribute, '(pair (sym :default) $_)'
def on_send(node)
default_attribute(node) do |attribute|
value = attribute.children.last
return unless TYPE_OFFENDERS.any?(value.type)
add_offense(value) do |corrector|
expression = default_attribute(node).children.last
corrector.replace(value, "-> { #{expression.source} }")
end
end
end
end
end
end
end