File Coverage

blib/lib/DBIx/Class/InflateColumn/DateTime.pm
Criterion Covered Total %
statement 51 73 69.8
branch 20 36 55.5
condition 5 17 29.4
subroutine 11 17 64.7
pod 1 1 100.0
total 88 144 61.1


line stmt bran cond sub pod time code
1             package DBIx::Class::InflateColumn::DateTime;
2              
3 333     333   285634 use strict;
  333         717  
  333         8971  
4 333     333   1309 use warnings;
  333         609  
  333         8669  
5 333     333   1303 use base qw/DBIx::Class/;
  333         593  
  333         24790  
6 333     333   1640 use DBIx::Class::Carp;
  333         643  
  333         2576  
7 333     333   1569 use Try::Tiny;
  333         661  
  333         18317  
8 333     333   1977 use namespace::clean;
  333         654  
  333         2683  
9              
10             =head1 NAME
11              
12             DBIx::Class::InflateColumn::DateTime - Auto-create DateTime objects from date and datetime columns.
13              
14             =head1 SYNOPSIS
15              
16             Load this component and then declare one or more
17             columns to be of the datetime, timestamp or date datatype.
18              
19             package Event;
20             use base 'DBIx::Class::Core';
21              
22             __PACKAGE__->load_components(qw/InflateColumn::DateTime/);
23             __PACKAGE__->add_columns(
24             starts_when => { data_type => 'datetime' }
25             create_date => { data_type => 'date' }
26             );
27              
28             Then you can treat the specified column as a L object.
29              
30             print "This event starts the month of ".
31             $event->starts_when->month_name();
32              
33             If you want to set a specific timezone and locale for that field, use:
34              
35             __PACKAGE__->add_columns(
36             starts_when => { data_type => 'datetime', timezone => "America/Chicago", locale => "de_DE" }
37             );
38              
39             If you want to inflate no matter what data_type your column is,
40             use inflate_datetime or inflate_date:
41              
42             __PACKAGE__->add_columns(
43             starts_when => { data_type => 'varchar', inflate_datetime => 1 }
44             );
45              
46             __PACKAGE__->add_columns(
47             starts_when => { data_type => 'varchar', inflate_date => 1 }
48             );
49              
50             It's also possible to explicitly skip inflation:
51              
52             __PACKAGE__->add_columns(
53             starts_when => { data_type => 'datetime', inflate_datetime => 0 }
54             );
55              
56             NOTE: Don't rely on C to parse date strings for you.
57             The column is set directly for any non-references and C
58             is completely bypassed. Instead, use an input parser to create a DateTime
59             object. For instance, if your user input comes as a 'YYYY-MM-DD' string, you can
60             use C thusly:
61              
62             use DateTime::Format::ISO8601;
63             my $dt = DateTime::Format::ISO8601->parse_datetime('YYYY-MM-DD');
64              
65             =head1 DESCRIPTION
66              
67             This module figures out the type of DateTime::Format::* class to
68             inflate/deflate with based on the type of DBIx::Class::Storage::DBI::*
69             that you are using. If you switch from one database to a different
70             one your code should continue to work without modification (though note
71             that this feature is new as of 0.07, so it may not be perfect yet - bug
72             reports to the list very much welcome).
73              
74             If the data_type of a field is C, C or C (or
75             a derivative of these datatypes, e.g. C), this
76             module will automatically call the appropriate parse/format method for
77             deflation/inflation as defined in the storage class. For instance, for
78             a C field the methods C and C
79             would be called on deflation/inflation. If the storage class does not
80             provide a specialized inflator/deflator, C<[parse|format]_datetime> will
81             be used as a fallback. See L
82             for more information on date formatting.
83              
84             For more help with using components, see L.
85              
86             =cut
87              
88             __PACKAGE__->load_components(qw/InflateColumn/);
89              
90             =head2 register_column
91              
92             Chains with the L method, and sets
93             up datetime columns appropriately. This would not normally be
94             directly called by end users.
95              
96             In the case of an invalid date, L will throw an exception. To
97             bypass these exceptions and just have the inflation return undef, use
98             the C option in the column info:
99              
100             "broken_date",
101             {
102             data_type => "datetime",
103             default_value => '0000-00-00',
104             is_nullable => 1,
105             datetime_undef_if_invalid => 1
106             }
107              
108             =cut
109              
110             sub register_column {
111 5882     5882 1 9135 my ($self, $column, $info, @rest) = @_;
112              
113 5882         15585 $self->next::method($column, $info, @rest);
114              
115 5882         1547400 my $requested_type;
116 5882         8856 for (qw/datetime timestamp date/) {
117 16342         17620 my $key = "inflate_${_}";
118 16342 100       29906 if (exists $info->{$key}) {
119              
120             # this bailout is intentional
121 977 100       3313 return unless $info->{$key};
122              
123 652         1003 $requested_type = $_;
124 652         1147 last;
125             }
126             }
127              
128 5557 50 66     16144 return if (!$requested_type and !$info->{data_type});
129              
130 5557   50     12898 my $data_type = lc( $info->{data_type} || '' );
131              
132             # _ic_dt_method will follow whatever the registration requests
133             # thus = instead of ||=
134 5557 100 66     44722 if ($data_type eq 'timestamp with time zone' || $data_type eq 'timestamptz') {
    100          
    100          
    100          
    100          
135 2         4 $info->{_ic_dt_method} = 'timestamp_with_timezone';
136             }
137             elsif ($data_type eq 'timestamp without time zone') {
138 4         7 $info->{_ic_dt_method} = 'timestamp_without_timezone';
139             }
140             elsif ($data_type eq 'smalldatetime') {
141 2         5 $info->{_ic_dt_method} = 'smalldatetime';
142             }
143             elsif ($data_type =~ /^ (?: date | datetime | timestamp ) $/x) {
144 2285         4270 $info->{_ic_dt_method} = $data_type;
145             }
146             elsif ($requested_type) {
147 650         1551 $info->{_ic_dt_method} = $requested_type;
148             }
149             else {
150 2614         7814 return;
151             }
152              
153 2943 100       6089 if ($info->{extra}) {
154 4         8 for my $slot (qw/timezone locale floating_tz_ok/) {
155 12 100       28 if ( defined $info->{extra}{$slot} ) {
156 8         43 carp "Putting $slot into extra => { $slot => '...' } has been deprecated, ".
157             "please put it directly into the '$column' column definition.";
158 8 50       66 $info->{$slot} = $info->{extra}{$slot} unless defined $info->{$slot};
159             }
160             }
161             }
162              
163             # shallow copy to avoid unfounded(?) Devel::Cycle complaints
164 2943         10195 my $infcopy = {%$info};
165              
166             $self->inflate_column(
167             $column =>
168             {
169             inflate => sub {
170 1     1   2 my ($value, $obj) = @_;
171              
172             # propagate for error reporting
173 1         2 $infcopy->{__dbic_colname} = $column;
174              
175 1         7 my $dt = $obj->_inflate_to_datetime( $value, $infcopy );
176              
177 0 0       0 return (defined $dt)
178             ? $obj->_post_inflate_datetime( $dt, $infcopy )
179             : undef
180             ;
181             },
182             deflate => sub {
183 0     0   0 my ($value, $obj) = @_;
184              
185 0         0 $value = $obj->_pre_deflate_datetime( $value, $infcopy );
186 0         0 $obj->_deflate_from_datetime( $value, $infcopy );
187             },
188             }
189 2943         44261 );
190             }
191              
192             sub _flate_or_fallback
193             {
194 1     1   2 my( $self, $value, $info, $method_fmt ) = @_;
195              
196 1         5 my $parser = $self->_datetime_parser;
197 0         0 my $preferred_method = sprintf($method_fmt, $info->{ _ic_dt_method });
198 0   0     0 my $method = $parser->can($preferred_method) || sprintf($method_fmt, 'datetime');
199              
200             return try {
201 0     0   0 $parser->$method($value);
202             }
203             catch {
204             $self->throw_exception ("Error while inflating '$value' for $info->{__dbic_colname} on ${self}: $_")
205 0 0   0   0 unless $info->{datetime_undef_if_invalid};
206 0         0 undef; # rv
207 0         0 };
208             }
209              
210             sub _inflate_to_datetime {
211 1     1   2 my( $self, $value, $info ) = @_;
212 1         6 return $self->_flate_or_fallback( $value, $info, 'parse_%s' );
213             }
214              
215             sub _deflate_from_datetime {
216 0     0   0 my( $self, $value, $info ) = @_;
217 0         0 return $self->_flate_or_fallback( $value, $info, 'format_%s' );
218             }
219              
220             sub _datetime_parser {
221 1     1   3 shift->result_source->storage->datetime_parser (@_);
222             }
223              
224             sub _post_inflate_datetime {
225 0     0     my( $self, $dt, $info ) = @_;
226              
227 0 0         $dt->set_time_zone($info->{timezone}) if defined $info->{timezone};
228 0 0         $dt->set_locale($info->{locale}) if defined $info->{locale};
229              
230 0           return $dt;
231             }
232              
233             sub _pre_deflate_datetime {
234 0     0     my( $self, $dt, $info ) = @_;
235              
236 0 0         if (defined $info->{timezone}) {
237             carp "You're using a floating timezone, please see the documentation of"
238             . " DBIx::Class::InflateColumn::DateTime for an explanation"
239             if ref( $dt->time_zone ) eq 'DateTime::TimeZone::Floating'
240             and not $info->{floating_tz_ok}
241 0 0 0       and not $ENV{DBIC_FLOATING_TZ_OK};
      0        
242              
243 0           $dt->set_time_zone($info->{timezone});
244             }
245              
246 0 0         $dt->set_locale($info->{locale}) if defined $info->{locale};
247              
248 0           return $dt;
249             }
250              
251             1;
252             __END__