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