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