aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/type/date.rb
blob: 1e7205fd0bc0d591b3f92e3ca91107a8bc2da647 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
module ActiveRecord
  module ConnectionAdapters
    module Type
      class Date < Value # :nodoc:
        def type
          :date
        end

        def klass
          ::Date
        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

        def fast_string_to_date(string)
          if string =~ Column::Format::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
      end
    end
  end
end