debian-mirror-gitlab/rubocop/cop/migration/datetime.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

45 lines
1.2 KiB
Ruby
Raw Normal View History

2021-03-11 19:13:27 +05:30
# frozen_string_literal: true
2017-09-10 17:25:29 +05:30
require_relative '../../migration_helpers'
module RuboCop
module Cop
module Migration
# Cop that checks if datetime data type is added with timezone information.
class Datetime < RuboCop::Cop::Cop
include MigrationHelpers
2021-04-29 21:17:54 +05:30
MSG = 'Do not use the `%s` data type, use `datetime_with_timezone` instead'
2017-09-10 17:25:29 +05:30
# Check methods in table creation.
def on_def(node)
return unless in_migration?(node)
node.each_descendant(:send) do |send_node|
2020-04-22 19:07:51 +05:30
method_name = send_node.children[1]
2018-03-17 18:26:18 +05:30
if method_name == :datetime || method_name == :timestamp
add_offense(send_node, location: :selector, message: format(MSG, method_name))
end
2017-09-10 17:25:29 +05:30
end
end
# Check methods.
def on_send(node)
return unless in_migration?(node)
node.each_descendant do |descendant|
2018-03-17 18:26:18 +05:30
next unless descendant.type == :sym
2017-09-10 17:25:29 +05:30
2018-03-17 18:26:18 +05:30
last_argument = descendant.children.last
if last_argument == :datetime || last_argument == :timestamp
add_offense(node, location: :expression, message: format(MSG, last_argument))
end
end
2017-09-10 17:25:29 +05:30
end
end
end
end
end