forked from rubocop/rubocop-rails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdynamic_find_by.rb
118 lines (97 loc) · 3.49 KB
/
dynamic_find_by.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
# frozen_string_literal: true
module RuboCop
module Cop
module Rails
# This cop checks dynamic `find_by_*` methods.
# Use `find_by` instead of dynamic method.
# See. https://rails.rubystyle.guide#find_by
#
# @example
# # bad
# User.find_by_name(name)
# User.find_by_name_and_email(name)
# User.find_by_email!(name)
#
# # good
# User.find_by(name: name)
# User.find_by(name: name, email: email)
# User.find_by!(email: email)
#
# @example AllowedMethods: find_by_sql
# # bad
# User.find_by_query(users_query)
#
# # good
# User.find_by_sql(users_sql)
#
# @example AllowedReceivers: Gem::Specification
# # bad
# Specification.find_by_name('backend').gem_dir
#
# # good
# Gem::Specification.find_by_name('backend').gem_dir
class DynamicFindBy < Base
extend AutoCorrector
MSG = 'Use `%<static_name>s` instead of dynamic `%<method>s`.'
METHOD_PATTERN = /^find_by_(.+?)(!)?$/.freeze
def on_send(node)
return if allowed_invocation?(node)
method_name = node.method_name
static_name = static_method_name(method_name)
return unless static_name
return if node.arguments.any?(&:splat_type?)
message = format(MSG, static_name: static_name, method: method_name)
add_offense(node, message: message) do |corrector|
autocorrect(corrector, node)
end
end
alias on_csend on_send
private
def autocorrect(corrector, node)
keywords = column_keywords(node.method_name)
return if keywords.size != node.arguments.size
autocorrect_method_name(corrector, node)
autocorrect_argument_keywords(corrector, node, keywords)
end
def allowed_invocation?(node)
allowed_method?(node) || allowed_receiver?(node) ||
whitelisted?(node)
end
def allowed_method?(node)
return unless cop_config['AllowedMethods']
cop_config['AllowedMethods'].include?(node.method_name.to_s)
end
def allowed_receiver?(node)
return unless cop_config['AllowedReceivers'] && node.receiver
cop_config['AllowedReceivers'].include?(node.receiver.source)
end
# config option `WhiteList` will be deprecated soon
def whitelisted?(node)
whitelist_config = cop_config['Whitelist']
return unless whitelist_config
whitelist_config.include?(node.method_name.to_s)
end
def autocorrect_method_name(corrector, node)
corrector.replace(node.loc.selector,
static_method_name(node.method_name.to_s))
end
def autocorrect_argument_keywords(corrector, node, keywords)
keywords.each.with_index do |keyword, idx|
corrector.insert_before(node.arguments[idx].loc.expression, keyword)
end
end
def column_keywords(method)
keyword_string = method.to_s[METHOD_PATTERN, 1]
keyword_string.split('_and_').map { |keyword| "#{keyword}: " }
end
# Returns static method name.
# If code isn't wrong, returns nil
def static_method_name(method_name)
match = METHOD_PATTERN.match(method_name)
return nil unless match
match[2] ? 'find_by!' : 'find_by'
end
end
end
end
end