2020-05-24 23:13:21 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module RuboCop
|
|
|
|
module Cop
|
|
|
|
module Gitlab
|
|
|
|
class Json < RuboCop::Cop::Cop
|
2021-03-11 19:13:27 +05:30
|
|
|
MSG = <<~EOL
|
2020-05-24 23:13:21 +05:30
|
|
|
Avoid calling `JSON` directly. Instead, use the `Gitlab::Json`
|
|
|
|
wrapper. This allows us to alter the JSON parser being used.
|
|
|
|
EOL
|
|
|
|
|
|
|
|
def_node_matcher :json_node?, <<~PATTERN
|
2021-10-27 15:23:28 +05:30
|
|
|
(send (const {nil? | (const nil? :ActiveSupport)} :JSON)...)
|
2020-05-24 23:13:21 +05:30
|
|
|
PATTERN
|
|
|
|
|
|
|
|
def on_send(node)
|
2021-03-11 19:13:27 +05:30
|
|
|
add_offense(node) if json_node?(node)
|
2020-05-24 23:13:21 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def autocorrect(node)
|
|
|
|
autocorrect_json_node(node)
|
|
|
|
end
|
|
|
|
|
|
|
|
def autocorrect_json_node(node)
|
|
|
|
_, method_name, *arg_nodes = *node
|
|
|
|
|
|
|
|
replacement = "Gitlab::Json.#{method_name}(#{arg_nodes.map(&:source).join(', ')})"
|
|
|
|
|
|
|
|
lambda do |corrector|
|
|
|
|
corrector.replace(node.source_range, replacement)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|