Sha256: 8fc56cf3f23dde91b96a0b574dc3c5acb986f8693466e4552156cd76c98baa03

Contents?: true

Size: 1.15 KB

Versions: 27

Compression:

Stored size: 1.15 KB

Contents

module ActiveModel
  module Type
    class Date < Value # :nodoc:
      include Helpers::AcceptsMultiparameterTime.new

      def type
        :date
      end

      def serialize(value)
        cast(value)
      end

      def type_cast_for_schema(value)
        "'#{value.to_s(:db)}'"
      end

      private

      def cast_value(value)
        if value.is_a?(::String)
          return if value.empty?
          fast_string_to_date(value) || fallback_string_to_date(value)
        elsif value.respond_to?(:to_date)
          value.to_date
        else
          value
        end
      end

      ISO_DATE = /\A(\d{4})-(\d\d)-(\d\d)\z/
      def fast_string_to_date(string)
        if string =~ ISO_DATE
          new_date $1.to_i, $2.to_i, $3.to_i
        end
      end

      def fallback_string_to_date(string)
        new_date(*::Date._parse(string, false).values_at(:year, :mon, :mday))
      end

      def new_date(year, mon, mday)
        if year && year != 0
          ::Date.new(year, mon, mday) rescue nil
        end
      end

      def value_from_multiparameter_assignment(*)
        time = super
        time && time.to_date
      end
    end
  end
end

Version data entries

27 entries across 26 versions & 4 rubygems

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