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