Sha256: a29e4afd7e11c9e4c2340eb6c5ada3d42983ea5cc9a2cabdc8aa6ee403832d98

Contents?: true

Size: 1.27 KB

Versions: 16

Compression:

Stored size: 1.27 KB

Contents

# frozen_string_literal: true

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

      def type
        :date
      end

      def type_cast_for_schema(value)
        value.to_s(:db).inspect
      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)
          unless year.nil? || (year == 0 && mon == 0 && mday == 0)
            ::Date.new(year, mon, mday) rescue nil
          end
        end

        def value_from_multiparameter_assignment(*)
          time = super
          time && new_date(time.year, time.mon, time.mday)
        end
    end
  end
end

Version data entries

16 entries across 16 versions & 4 rubygems

Version Path
activemodel-6.0.2.2 lib/active_model/type/date.rb
argon-1.3.1 vendor/bundle/ruby/2.7.0/gems/activemodel-6.0.2.1/lib/active_model/type/date.rb
symbolic_enum-1.1.5 vendor/bundle/ruby/2.7.0/gems/activemodel-6.0.2.1/lib/active_model/type/date.rb
activemodel-6.0.2.1 lib/active_model/type/date.rb
activemodel-6.0.2 lib/active_model/type/date.rb
activemodel-6.0.2.rc2 lib/active_model/type/date.rb
activemodel-6.0.2.rc1 lib/active_model/type/date.rb
activemodel-6.0.1 lib/active_model/type/date.rb
chatops-rpc-0.0.2 fixtures/chatops-controller-example/vendor/bundle/ruby/2.5.0/gems/activemodel-6.0.0/lib/active_model/type/date.rb
activemodel-6.0.1.rc1 lib/active_model/type/date.rb
chatops-rpc-0.0.1 fixtures/chatops-controller-example/vendor/bundle/ruby/2.5.0/gems/activemodel-6.0.0/lib/active_model/type/date.rb
activemodel-6.0.0 lib/active_model/type/date.rb
activemodel-6.0.0.rc2 lib/active_model/type/date.rb
activemodel-6.0.0.rc1 lib/active_model/type/date.rb
activemodel-6.0.0.beta3 lib/active_model/type/date.rb
activemodel-6.0.0.beta2 lib/active_model/type/date.rb