class RuboCop::Cop::Rails::Blank

end
!present?
def blank?
# good
end
something
if foo.blank?
# good
end
something
unless foo.present?
# bad
something if foo.blank?
# good
something unless foo.present?
# bad
# Converts usages of ‘unless present?` to `if blank?`
@example UnlessPresent: true (default)
foo.blank?
# good
!foo.present?
# bad
# Converts usages of `!present?` to `blank?`
@example NotPresent: true (default)
foo.blank?
# good
foo == nil || foo.empty?
foo.nil? || foo.empty?
# bad
# Converts usages of `nil? || empty?` to `blank?`
@example NilOrEmpty: true (default)
to prevent interference between the auto-correction of the two cops.
context of `unless else` if `Style/UnlessElse` is inabled. This is
The configuration of `NotPresent` will not produce an offense in the
Interaction with `Style/UnlessElse`:
using `Object#blank?` defined by Active Support.
This cop checks for code that can be written with simpler conditionals

def autocorrect(node)

def autocorrect(node)
  lambda do |corrector|
    method_call, variable1 = unless_present?(node)
    if method_call
      corrector.replace(node.loc.keyword, 'if')
      range = method_call.loc.expression
    else
      variable1, _variable2 = nil_or_empty?(node) || not_present?(node)
      range = node.loc.expression
    end
    corrector.replace(range, replacement(variable1))
  end
end

def on_if(node)

def on_if(node)
  return unless cop_config['UnlessPresent']
  return unless node.unless?
  return if node.else? && config.for_cop('Style/UnlessElse')['Enabled']
  unless_present?(node) do |method_call, receiver|
    range = unless_condition(node, method_call)
    add_offense(node,
                location: range,
                message: format(MSG_UNLESS_PRESENT,
                                prefer: replacement(receiver),
                                current: range.source))
  end
end

def on_or(node)

def on_or(node)
  return unless cop_config['NilOrEmpty']
  nil_or_empty?(node) do |var1, var2|
    return unless var1 == var2
    add_offense(node,
                message: format(MSG_NIL_OR_EMPTY,
                                prefer: replacement(var1),
                                current: node.source))
  end
end

def on_send(node)

def on_send(node)
  return unless cop_config['NotPresent']
  not_present?(node) do |receiver|
    # accepts !present? if its in the body of a `blank?` method
    next if defining_blank?(node.parent)
    add_offense(node,
                message: format(MSG_NOT_PRESENT,
                                prefer: replacement(receiver),
                                current: node.source))
  end
end

def replacement(node)

def replacement(node)
  node.respond_to?(:source) ? "#{node.source}.blank?" : 'blank?'
end

def unless_condition(node, method_call)

def unless_condition(node, method_call)
  if node.modifier_form?
    node.loc.keyword.join(node.loc.expression.end)
  else
    node.loc.expression.begin.join(method_call.loc.expression)
  end
end