Fix and simplify datetime method selection
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / InflateColumn / DateTime.pm
1 package DBIx::Class::InflateColumn::DateTime;
2
3 use strict;
4 use warnings;
5 use base qw/DBIx::Class/;
6 use DBIx::Class::Carp;
7 use DBIx::Class::_Util 'dbic_internal_try';
8 use Try::Tiny;
9 use namespace::clean;
10
11 =head1 NAME
12
13 DBIx::Class::InflateColumn::DateTime - Auto-create DateTime objects from date and datetime columns.
14
15 =head1 SYNOPSIS
16
17 Load this component and then declare one or more
18 columns to be of the datetime, timestamp or date datatype.
19
20   package Event;
21   use base 'DBIx::Class::Core';
22
23   __PACKAGE__->load_components(qw/InflateColumn::DateTime/);
24   __PACKAGE__->add_columns(
25     starts_when => { data_type => 'datetime' }
26     create_date => { data_type => 'date' }
27   );
28
29 Then you can treat the specified column as a L<DateTime> object.
30
31   print "This event starts the month of ".
32     $event->starts_when->month_name();
33
34 If you want to set a specific timezone and locale for that field, use:
35
36   __PACKAGE__->add_columns(
37     starts_when => { data_type => 'datetime', timezone => "America/Chicago", locale => "de_DE" }
38   );
39
40 If you want to inflate no matter what data_type your column is,
41 use inflate_datetime or inflate_date:
42
43   __PACKAGE__->add_columns(
44     starts_when => { data_type => 'varchar', inflate_datetime => 1 }
45   );
46
47   __PACKAGE__->add_columns(
48     starts_when => { data_type => 'varchar', inflate_date => 1 }
49   );
50
51 It's also possible to explicitly skip inflation:
52
53   __PACKAGE__->add_columns(
54     starts_when => { data_type => 'datetime', inflate_datetime => 0 }
55   );
56
57 NOTE: Don't rely on C<InflateColumn::DateTime> to parse date strings for you.
58 The column is set directly for any non-references and C<InflateColumn::DateTime>
59 is completely bypassed.  Instead, use an input parser to create a DateTime
60 object. For instance, if your user input comes as a 'YYYY-MM-DD' string, you can
61 use C<DateTime::Format::ISO8601> thusly:
62
63   use DateTime::Format::ISO8601;
64   my $dt = DateTime::Format::ISO8601->parse_datetime('YYYY-MM-DD');
65
66 =head1 DESCRIPTION
67
68 This module figures out the type of DateTime::Format::* class to
69 inflate/deflate with based on the type of DBIx::Class::Storage::DBI::*
70 that you are using.  If you switch from one database to a different
71 one your code should continue to work without modification (though note
72 that this feature is new as of 0.07, so it may not be perfect yet - bug
73 reports to the list very much welcome).
74
75 If the data_type of a field is C<date>, C<datetime> or C<timestamp> (or
76 a derivative of these datatypes, e.g. C<timestamp with timezone>), this
77 module will automatically call the appropriate parse/format method for
78 deflation/inflation as defined in the storage class. For instance, for
79 a C<datetime> field the methods C<parse_datetime> and C<format_datetime>
80 would be called on deflation/inflation. If the storage class does not
81 provide a specialized inflator/deflator, C<[parse|format]_datetime> will
82 be used as a fallback. See L<DateTime/Formatters And Stringification>
83 for more information on date formatting.
84
85 For more help with using components, see L<DBIx::Class::Manual::Component/USING>.
86
87 =cut
88
89 __PACKAGE__->load_components(qw/InflateColumn/);
90
91 =head2 register_column
92
93 Chains with the L<DBIx::Class::Row/register_column> method, and sets
94 up datetime columns appropriately.  This would not normally be
95 directly called by end users.
96
97 In the case of an invalid date, L<DateTime> will throw an exception.  To
98 bypass these exceptions and just have the inflation return undef, use
99 the C<datetime_undef_if_invalid> option in the column info:
100
101     "broken_date",
102     {
103         data_type => "datetime",
104         default_value => '0000-00-00',
105         is_nullable => 1,
106         datetime_undef_if_invalid => 1
107     }
108
109 =cut
110
111 sub register_column {
112   my ($self, $column, $info, @rest) = @_;
113
114   $self->next::method($column, $info, @rest);
115
116   my $requested_type;
117   for (qw/datetime timestamp date/) {
118     my $key = "inflate_${_}";
119     if (exists $info->{$key}) {
120
121       # this bailout is intentional
122       return unless $info->{$key};
123
124       $requested_type = $_;
125       last;
126     }
127   }
128
129   return if (!$requested_type and !$info->{data_type});
130
131   my $data_type = lc( $info->{data_type} || '' );
132
133   # _ic_dt_method will follow whatever the registration requests
134   # thus = instead of ||=
135   if ( $data_type =~ /\A (?:
136       timestamp \s+ with(?:out)? \s+ time \s+ zone |
137       date | (small)? datetime | timestamp(?:tz)?
138     ) \z/x
139   ) {
140     ($info->{_ic_dt_method} = $data_type) =~ s/\s+/_/g;
141   }
142   elsif ($requested_type) {
143     $info->{_ic_dt_method} = $requested_type;
144   }
145   else {
146     return;
147   }
148
149   if ($info->{extra}) {
150     for my $slot (qw/timezone locale floating_tz_ok/) {
151       if ( defined $info->{extra}{$slot} ) {
152         carp "Putting $slot into extra => { $slot => '...' } has been deprecated, ".
153              "please put it directly into the '$column' column definition.";
154         $info->{$slot} = $info->{extra}{$slot} unless defined $info->{$slot};
155       }
156     }
157   }
158
159   # shallow copy to avoid unfounded(?) Devel::Cycle complaints
160   my $infcopy = {%$info};
161
162   $self->inflate_column(
163     $column =>
164       {
165         inflate => sub {
166           my ($value, $obj) = @_;
167
168           # propagate for error reporting
169           $infcopy->{__dbic_colname} = $column;
170
171           my $dt = $obj->_inflate_to_datetime( $value, $infcopy );
172
173           return (defined $dt)
174             ? $obj->_post_inflate_datetime( $dt, $infcopy )
175             : undef
176           ;
177         },
178         deflate => sub {
179           my ($value, $obj) = @_;
180
181           $value = $obj->_pre_deflate_datetime( $value, $infcopy );
182           $obj->_deflate_from_datetime( $value, $infcopy );
183         },
184       }
185   );
186 }
187
188 sub _flate_or_fallback
189 {
190   my( $self, $value, $info, $method_fmt ) = @_;
191
192   my $parser = $self->_datetime_parser;
193   my $preferred_method = sprintf($method_fmt, $info->{ _ic_dt_method });
194   my $method = $parser->can($preferred_method) || sprintf($method_fmt, 'datetime');
195
196   return dbic_internal_try {
197     $parser->$method($value);
198   }
199   catch {
200     $self->throw_exception ("Error while inflating '$value' for $info->{__dbic_colname} on ${self}: $_")
201       unless $info->{datetime_undef_if_invalid};
202     undef;  # rv
203   };
204 }
205
206 sub _inflate_to_datetime {
207   my( $self, $value, $info ) = @_;
208   return $self->_flate_or_fallback( $value, $info, 'parse_%s' );
209 }
210
211 sub _deflate_from_datetime {
212   my( $self, $value, $info ) = @_;
213   return $self->_flate_or_fallback( $value, $info, 'format_%s' );
214 }
215
216 sub _datetime_parser {
217   shift->result_source->schema->storage->datetime_parser (@_);
218 }
219
220 sub _post_inflate_datetime {
221   my( $self, $dt, $info ) = @_;
222
223   $dt->set_time_zone($info->{timezone}) if defined $info->{timezone};
224   $dt->set_locale($info->{locale}) if defined $info->{locale};
225
226   return $dt;
227 }
228
229 sub _pre_deflate_datetime {
230   my( $self, $dt, $info ) = @_;
231
232   if (defined $info->{timezone}) {
233     carp "You're using a floating timezone, please see the documentation of"
234       . " DBIx::Class::InflateColumn::DateTime for an explanation"
235       if ref( $dt->time_zone ) eq 'DateTime::TimeZone::Floating'
236           and not $info->{floating_tz_ok}
237           and not $ENV{DBIC_FLOATING_TZ_OK};
238
239     $dt->set_time_zone($info->{timezone});
240   }
241
242   $dt->set_locale($info->{locale}) if defined $info->{locale};
243
244   return $dt;
245 }
246
247 1;
248 __END__
249
250 =head1 USAGE NOTES
251
252 If you have a datetime column with an associated C<timezone>, and subsequently
253 create/update this column with a DateTime object in the L<DateTime::TimeZone::Floating>
254 timezone, you will get a warning (as there is a very good chance this will not have the
255 result you expect). For example:
256
257   __PACKAGE__->add_columns(
258     starts_when => { data_type => 'datetime', timezone => "America/Chicago" }
259   );
260
261   my $event = $schema->resultset('EventTZ')->create({
262     starts_at => DateTime->new(year=>2007, month=>12, day=>31, ),
263   });
264
265 The warning can be avoided in several ways:
266
267 =over
268
269 =item Fix your broken code
270
271 When calling C<set_time_zone> on a Floating DateTime object, the timezone is simply
272 set to the requested value, and B<no time conversion takes place>. It is always a good idea
273 to be supply explicit times to the database:
274
275   my $event = $schema->resultset('EventTZ')->create({
276     starts_at => DateTime->new(year=>2007, month=>12, day=>31, time_zone => "America/Chicago" ),
277   });
278
279 =item Suppress the check on per-column basis
280
281   __PACKAGE__->add_columns(
282     starts_when => { data_type => 'datetime', timezone => "America/Chicago", floating_tz_ok => 1 }
283   );
284
285 =item Suppress the check globally
286
287 Set the environment variable DBIC_FLOATING_TZ_OK to some true value.
288
289 =back
290
291 Putting extra attributes like timezone, locale or floating_tz_ok into extra => {} has been
292 B<DEPRECATED> because this gets you into trouble using L<DBIx::Class::Schema::Versioned>.
293 Instead put it directly into the columns definition like in the examples above. If you still
294 use the old way you'll see a warning - please fix your code then!
295
296 =head1 SEE ALSO
297
298 =over 4
299
300 =item More information about the add_columns method, and column metadata,
301       can be found in the documentation for L<DBIx::Class::ResultSource>.
302
303 =item Further discussion of problems inherent to the Floating timezone:
304       L<Floating DateTimes|DateTime/Floating DateTimes>
305       and L<< $dt->set_time_zone|DateTime/"Set" Methods >>
306
307 =back
308
309 =head1 FURTHER QUESTIONS?
310
311 Check the list of L<additional DBIC resources|DBIx::Class/GETTING HELP/SUPPORT>.
312
313 =head1 COPYRIGHT AND LICENSE
314
315 This module is free software L<copyright|DBIx::Class/COPYRIGHT AND LICENSE>
316 by the L<DBIx::Class (DBIC) authors|DBIx::Class/AUTHORS>. You can
317 redistribute it and/or modify it under the same terms as the
318 L<DBIx::Class library|DBIx::Class/COPYRIGHT AND LICENSE>.