Sha256: 991eb917948994ddc896e99c2f5dfb9a62a69dc00df9e854c118e8b95807edd4

Contents?: true

Size: 1.99 KB

Versions: 23

Compression:

Stored size: 1.99 KB

Contents

# frozen_string_literal: true

require "active_support/core_ext/string/zones"
require "active_support/core_ext/time/zones"

module ActiveModel
  module Type
    module Helpers # :nodoc: all
      module TimeValue
        def serialize(value)
          value = apply_seconds_precision(value)

          if value.acts_like?(:time)
            zone_conversion_method = is_utc? ? :getutc : :getlocal

            if value.respond_to?(zone_conversion_method)
              value = value.send(zone_conversion_method)
            end
          end

          value
        end

        def apply_seconds_precision(value)
          return value unless precision && value.respond_to?(:usec)
          number_of_insignificant_digits = 6 - precision
          round_power = 10**number_of_insignificant_digits
          value.change(usec: value.usec - value.usec % round_power)
        end

        def type_cast_for_schema(value)
          value.to_s(:db).inspect
        end

        def user_input_in_time_zone(value)
          value.in_time_zone
        end

        private

          def new_time(year, mon, mday, hour, min, sec, microsec, offset = nil)
            # Treat 0000-00-00 00:00:00 as nil.
            return if year.nil? || (year == 0 && mon == 0 && mday == 0)

            if offset
              time = ::Time.utc(year, mon, mday, hour, min, sec, microsec) rescue nil
              return unless time

              time -= offset
              is_utc? ? time : time.getlocal
            else
              ::Time.public_send(default_timezone, year, mon, mday, hour, min, sec, microsec) rescue nil
            end
          end

          ISO_DATETIME = /\A(\d{4})-(\d\d)-(\d\d) (\d\d):(\d\d):(\d\d)(\.\d+)?\z/

          # Doesn't handle time zones.
          def fast_string_to_time(string)
            if string =~ ISO_DATETIME
              microsec = ($7.to_r * 1_000_000).to_i
              new_time $1.to_i, $2.to_i, $3.to_i, $4.to_i, $5.to_i, $6.to_i, microsec
            end
          end
      end
    end
  end
end

Version data entries

23 entries across 23 versions & 3 rubygems

Version Path
activemodel-5.2.8.1 lib/active_model/type/helpers/time_value.rb
activemodel-5.2.8 lib/active_model/type/helpers/time_value.rb
activemodel-5.2.7.1 lib/active_model/type/helpers/time_value.rb
activemodel-5.2.7 lib/active_model/type/helpers/time_value.rb
activemodel-5.2.6.3 lib/active_model/type/helpers/time_value.rb
activemodel-5.2.6.2 lib/active_model/type/helpers/time_value.rb
activemodel-5.2.6.1 lib/active_model/type/helpers/time_value.rb
activemodel-5.2.6 lib/active_model/type/helpers/time_value.rb
activemodel-5.2.4.6 lib/active_model/type/helpers/time_value.rb
activemodel-5.2.5 lib/active_model/type/helpers/time_value.rb
activemodel-5.2.4.5 lib/active_model/type/helpers/time_value.rb
activemodel-5.2.4.4 lib/active_model/type/helpers/time_value.rb
activemodel-5.2.4.3 lib/active_model/type/helpers/time_value.rb
activemodel-5.2.4.2 lib/active_model/type/helpers/time_value.rb
activemodel-5.2.4.1 lib/active_model/type/helpers/time_value.rb
activemodel-5.2.4 lib/active_model/type/helpers/time_value.rb
activemodel-5.2.4.rc1 lib/active_model/type/helpers/time_value.rb
spiral_form-0.1.1 vendor/bundle/gems/activemodel-5.2.3/lib/active_model/type/helpers/time_value.rb
spiral_form-0.1.0 vendor/bundle/gems/activemodel-5.2.3/lib/active_model/type/helpers/time_value.rb
ric-0.13.0 vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/type/helpers/time_value.rb