class RuboCop::Cop::Rails::TimeZone

Time.at(timestamp).in_time_zone
# good
# ‘flexible` allows usage of `in_time_zone` instead of `zone`.
@example EnforcedStyle: flexible (default)
Time.at(timestamp).in_time_zone
# bad
# `strict` means that `Time` should be used with `zone`.
@example EnforcedStyle: strict
Time.zone.parse(’2015-03-02T19:05:37Z’) # Respect ISO 8601 format with timezone specifier.
Time.zone.parse(‘2015-03-02T19:05:37’)
Time.zone.now
Time.current
# good
Time.parse(‘2015-03-02T19:05:37’)
Time.now
# bad
@example
to use ‘Time#in_time_zone`.
When EnforcedStyle is ’flexible’ then it’s also allowed
then only use of ‘Time.zone` is allowed.
Two styles are supported for this cop. When `EnforcedStyle` is ’strict’
and the article danilenko.org/2012/7/6/rails_timezones/
Built on top of Ruby on Rails style guide (rails.rubystyle.guide#time)
This cop checks for the use of Time methods without zone.

def acceptable_methods(klass, method_name, node)

def acceptable_methods(klass, method_name, node)
  acceptable = [
    "`Time.zone.#{safe_method(method_name, node)}`",
    "`#{klass}.current`"
  ]
  ACCEPTED_METHODS.each do |am|
    acceptable << "`#{klass}.#{method_name}.#{am}`"
  end
  acceptable
end

def attach_timezone_specifier?(date)

def attach_timezone_specifier?(date)
  date.respond_to?(:value) && TIMEZONE_SPECIFIER.match?(date.value.to_s[-1])
end

def autocorrect(corrector, node)

def autocorrect(corrector, node)
  # add `.zone`: `Time.at` => `Time.zone.at`
  corrector.insert_after(node.children[0].source_range, '.zone')
  case node.method_name
  when :current
    # replace `Time.zone.current` => `Time.zone.now`
    corrector.replace(node.loc.selector, 'now')
  when :new
    autocorrect_time_new(node, corrector)
  end
  # prefer `Time` over `DateTime` class
  corrector.replace(node.children.first.source_range, 'Time') if strict?
  remove_redundant_in_time_zone(corrector, node)
end

def autocorrect_time_new(node, corrector)

def autocorrect_time_new(node, corrector)
  if node.arguments?
    corrector.replace(node.loc.selector, 'local')
  else
    corrector.replace(node.loc.selector, 'now')
  end
end

def build_message(klass, method_name, node)

def build_message(klass, method_name, node)
  if flexible?
    format(
      MSG_ACCEPTABLE,
      current: "#{klass}.#{method_name}",
      prefer: acceptable_methods(klass, method_name, node).join(', ')
    )
  else
    safe_method_name = safe_method(method_name, node)
    format(MSG,
           current: "#{klass}.#{method_name}",
           prefer: "Time.zone.#{safe_method_name}")
  end
end

def check_localtime(node)

def check_localtime(node)
  selector_node = node
  while node&.send_type?
    break if node.method?(:localtime)
    node = node.parent
  end
  return if node.arguments?
  add_offense(selector_node.loc.selector, message: MSG_LOCALTIME) do |corrector|
    autocorrect(corrector, selector_node)
  end
end

def check_time_node(klass, node)

def check_time_node(klass, node)
  return if attach_timezone_specifier?(node.first_argument)
  chain = extract_method_chain(node)
  return if not_danger_chain?(chain)
  return check_localtime(node) if need_check_localtime?(chain)
  method_name = (chain & DANGEROUS_METHODS).join('.')
  return if offset_provided?(node)
  message = build_message(klass, method_name, node)
  add_offense(node.loc.selector, message: message) do |corrector|
    autocorrect(corrector, node)
  end
end

def extract_method_chain(node)

def extract_method_chain(node)
  chain = []
  while !node.nil? && node.send_type?
    chain << node.method_name if method_from_time_class?(node)
    node = node.parent
  end
  chain
end

def flexible?

def flexible?
  style == :flexible
end

def good_methods

def good_methods
  if strict?
    GOOD_METHODS
  else
    GOOD_METHODS + [:current] + ACCEPTED_METHODS
  end
end

def method_from_time_class?(node)

called is part of the time class.
Only add the method to the chain if the method being
def method_from_time_class?(node)
  receiver, method_name, *_args = *node
  if (receiver.is_a? RuboCop::AST::Node) && !receiver.cbase_type?
    method_from_time_class?(receiver)
  else
    method_name == :Time
  end
end

def method_send?(node)

and receiver is the given node
checks that parent node of send_type
def method_send?(node)
  return false unless node.parent&.send_type?
  node.parent.receiver == node
end

def need_check_localtime?(chain)

def need_check_localtime?(chain)
  flexible? && chain.include?(:localtime)
end

def not_danger_chain?(chain)

def not_danger_chain?(chain)
  (chain & DANGEROUS_METHODS).empty? || !(chain & good_methods).empty?
end

def offset_provided?(node)

Time.new(1988, 3, 15, 3, 0, 0, "-05:00")
Example:
When it is, that should be considered safe
Time.new can be called with a time zone offset
def offset_provided?(node)
  node.arguments.size >= 7
end

def on_const(node)

def on_const(node)
  mod, klass = *node
  # we should only check core classes
  # (`Time` or `::Time`)
  return unless (mod.nil? || mod.cbase_type?) && method_send?(node)
  check_time_node(klass, node.parent) if klass == :Time
end

def remove_redundant_in_time_zone(corrector, node)

remove redundant `.in_time_zone` from `Time.zone.now.in_time_zone`
def remove_redundant_in_time_zone(corrector, node)
  time_methods_called = extract_method_chain(node)
  return unless time_methods_called.include?(:in_time_zone) ||
                time_methods_called.include?(:zone)
  while node&.send_type?
    if node.children.last == :in_time_zone
      in_time_zone_with_dot =
        node.loc.selector.adjust(begin_pos: -1)
      corrector.remove(in_time_zone_with_dot)
    end
    node = node.parent
  end
end

def safe_method(method_name, node)

def safe_method(method_name, node)
  if %w[new current].include?(method_name)
    node.arguments? ? 'local' : 'now'
  else
    method_name
  end
end

def strict?

def strict?
  style == :strict
end