Sha256: ecda01389f771d92d2795e147246b6a2519bab9754ccbba217a89ef2ab4db05d

Contents?: true

Size: 1.04 KB

Versions: 8

Compression:

Stored size: 1.04 KB

Contents

module ActiveRecord
  module Type
    class DateTime < Value # :nodoc:
      include TimeValue

      def type
        :datetime
      end

      def type_cast_for_database(value)
        zone_conversion_method = ActiveRecord::Base.default_timezone == :utc ? :getutc : :getlocal

        if value.acts_like?(:time)
          value.send(zone_conversion_method)
        else
          super
        end
      end

      private

      def cast_value(string)
        return string unless string.is_a?(::String)
        return if string.empty?

        fast_string_to_time(string) || fallback_string_to_time(string)
      end

      # '0.123456' -> 123456
      # '1.123456' -> 123456
      def microseconds(time)
        time[:sec_fraction] ? (time[:sec_fraction] * 1_000_000).to_i : 0
      end

      def fallback_string_to_time(string)
        time_hash = ::Date._parse(string)
        time_hash[:sec_fraction] = microseconds(time_hash)

        new_time(*time_hash.values_at(:year, :mon, :mday, :hour, :min, :sec, :sec_fraction, :offset))
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
activerecord-4.2.0 lib/active_record/type/date_time.rb
activerecord-4.2.0.rc3 lib/active_record/type/date_time.rb
activerecord-4.2.0.rc2 lib/active_record/type/date_time.rb
activerecord-4.2.0.rc1 lib/active_record/type/date_time.rb
activerecord-4.2.0.beta4 lib/active_record/type/date_time.rb
activerecord-4.2.0.beta3 lib/active_record/type/date_time.rb
activerecord-4.2.0.beta2 lib/active_record/type/date_time.rb
activerecord-4.2.0.beta1 lib/active_record/type/date_time.rb