Sha256: 2b0c20b6e1d57cc1134a8cec5238d95bf54462c32a4a9358a88fb3674bf55774

Contents?: true

Size: 1.09 KB

Versions: 11

Compression:

Stored size: 1.09 KB

Contents

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

      def type
        :date
      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

11 entries across 11 versions & 2 rubygems

Version Path
abaci-0.3.0 vendor/bundle/gems/activemodel-5.0.0/lib/active_model/type/date.rb
activemodel-5.0.0.1 lib/active_model/type/date.rb
activemodel-5.0.0 lib/active_model/type/date.rb
activemodel-5.0.0.rc2 lib/active_model/type/date.rb
activemodel-5.0.0.racecar1 lib/active_model/type/date.rb
activemodel-5.0.0.rc1 lib/active_model/type/date.rb
activemodel-5.0.0.beta4 lib/active_model/type/date.rb
activemodel-5.0.0.beta3 lib/active_model/type/date.rb
activemodel-5.0.0.beta2 lib/active_model/type/date.rb
activemodel-5.0.0.beta1.1 lib/active_model/type/date.rb
activemodel-5.0.0.beta1 lib/active_model/type/date.rb