Sha256: 2d9109c251112d88f11f5146fec56e4b26273b249b123848177c899c8c5feb8f

Contents?: true

Size: 1.09 KB

Versions: 33

Compression:

Stored size: 1.09 KB

Contents

module ActiveModel
  module Type
    class Time < Value # :nodoc:
      include Helpers::TimeValue
      include Helpers::AcceptsMultiparameterTime.new(
        defaults: { 1 => 1970, 2 => 1, 3 => 1, 4 => 0, 5 => 0 }
      )

      def type
        :time
      end

      def user_input_in_time_zone(value)
        return unless value.present?

        case value
        when ::String
          value = "2000-01-01 #{value}"
        when ::Time
          value = value.change(year: 2000, day: 1, month: 1)
        end

        super(value)
      end

      private

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

        if value =~ /^2000-01-01/
          dummy_time_value = value
        else
          dummy_time_value = "2000-01-01 #{value}"
        end

        fast_string_to_time(dummy_time_value) || begin
          time_hash = ::Date._parse(dummy_time_value)
          return if time_hash[:hour].nil?
          new_time(*time_hash.values_at(:year, :mon, :mday, :hour, :min, :sec, :sec_fraction, :offset))
        end
      end
    end
  end
end

Version data entries

33 entries across 32 versions & 5 rubygems

Version Path
activemodel-5.0.6 lib/active_model/type/time.rb
activemodel-5.0.6.rc1 lib/active_model/type/time.rb
activemodel-5.0.5 lib/active_model/type/time.rb
activemodel-5.0.5.rc2 lib/active_model/type/time.rb
activemodel-5.0.5.rc1 lib/active_model/type/time.rb
tdiary-5.0.5 vendor/bundle/gems/activemodel-5.0.2/lib/active_model/type/time.rb
tdiary-5.0.5 vendor/bundle/gems/tdiary-5.0.4/vendor/bundle/gems/activemodel-5.0.2/lib/active_model/type/time.rb
activemodel-5.0.4 lib/active_model/type/time.rb
activemodel-5.0.4.rc1 lib/active_model/type/time.rb
activemodel-5.0.3 lib/active_model/type/time.rb
enju_leaf-1.2.1 vendor/bundle/ruby/2.3/gems/activemodel-5.0.2/lib/active_model/type/time.rb
tdiary-5.0.4 vendor/bundle/gems/activemodel-5.0.2/lib/active_model/type/time.rb
activemodel-5.0.2 lib/active_model/type/time.rb
activemodel-5.0.2.rc1 lib/active_model/type/time.rb
autocompl-0.2.2 test/dummy/vendor/bundle/ruby/2.3.0/gems/activemodel-5.0.1/lib/active_model/type/time.rb
autocompl-0.2.1 test/dummy/vendor/bundle/ruby/2.3.0/gems/activemodel-5.0.1/lib/active_model/type/time.rb
autocompl-0.2.0 test/dummy/vendor/bundle/ruby/2.3.0/gems/activemodel-5.0.1/lib/active_model/type/time.rb
autocompl-0.1.2 test/dummy/vendor/bundle/ruby/2.3.0/gems/activemodel-5.0.1/lib/active_model/type/time.rb
autocompl-0.1.1 test/dummy/vendor/bundle/ruby/2.3.0/gems/activemodel-5.0.1/lib/active_model/type/time.rb
autocompl-0.1.0 test/dummy/vendor/bundle/ruby/2.3.0/gems/activemodel-5.0.1/lib/active_model/type/time.rb