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