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