1 package Koha
::DateUtils
;
3 # Copyright (c) 2011 PTFS-Europe Ltd.
4 # This file is part of Koha.
6 # Koha is free software; you can redistribute it and/or modify it
7 # under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 3 of the License, or
9 # (at your option) any later version.
11 # Koha is distributed in the hope that it will be useful, but
12 # WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with Koha; if not, see <http://www.gnu.org/licenses>.
27 qw( dt_from_string output_pref format_sqldatetime )
32 Koha::DateUtils - Transitional wrappers to ease use of DateTime
36 Koha has historically only used dates not datetimes and been content to
37 handle these as strings. It also has confused formatting with actual dates
38 this is a temporary module for wrappers to hide the complexity of switch to DateTime
44 $dt = dt_from_string($date_string, [$format, $timezone ]);
46 Passed a date string returns a DateTime object format and timezone default
47 to the system preferences. If the date string is empty DateTime->now is returned
52 my ( $date_string, $date_format, $tz ) = @_;
54 return if $date_string and $date_string =~ m
|^0000-0|;
56 $tz = C4
::Context
->tz unless $tz;;
58 return DateTime
->now( time_zone
=> $tz ) unless $date_string;
60 $date_format = C4
::Context
->preference('dateformat') unless $date_format;
62 if ( ref($date_string) eq 'DateTime' ) { # already a dt return it
68 # The fallback format is sql/iso
77 if ( $date_format eq 'metric' ) {
78 # metric format is "dd/mm/yyyy[ hh:mm:ss]"
87 elsif ( $date_format eq 'dmydot' ) {
88 # dmydot format is "dd.mm.yyyy[ hh:mm:ss]"
97 elsif ( $date_format eq 'us' ) {
98 # us format is "mm/dd/yyyy[ hh:mm:ss]"
107 elsif ( $date_format eq 'rfc3339' ) {
120 (\
.\d
{1,3})?
(([Zz
])|([\
+|\
-]([01][0-9]|2[0-3]):[0-5][0-9]))
123 elsif ( $date_format eq 'iso' or $date_format eq 'sql' ) {
124 # iso or sql format are yyyy-dd-mm[ hh:mm:ss]"
125 $regex = $fallback_re;
128 die "Invalid dateformat parameter ($date_format)";
131 # Add the faculative time part [hh:mm[:ss]]
149 $fallback_re .= $time_re;
153 if ( $date_string =~ $regex ) {
159 minute
=> $+{minute
},
160 second
=> $+{second
},
163 } elsif ( $date_string =~ $fallback_re ) {
169 minute
=> $+{minute
},
170 second
=> $+{second
},
175 die "The given date ($date_string) does not match the date format ($date_format)";
178 # system allows the 0th of the month
179 $dt_params{day
} = '01' if $dt_params{day
} eq '00';
181 # Set default hh:mm:ss to 00:00:00
182 $dt_params{hour
} = 00 unless defined $dt_params{hour
};
183 $dt_params{minute
} = 00 unless defined $dt_params{minute
};
184 $dt_params{second
} = 00 unless defined $dt_params{second
};
186 $dt_params{hour
} += 12 if $ampm && $ampm eq 'PM';
191 # No TZ for dates 'infinite' => see bug 13242
192 ( $dt_params{year
} < 9999 ?
( time_zone
=> $tz->name ) : () ),
196 $tz = DateTime
::TimeZone
->new( name
=> 'floating' );
199 # No TZ for dates 'infinite' => see bug 13242
200 ( $dt_params{year
} < 9999 ?
( time_zone
=> $tz->name ) : () ),
208 $date_string = output_pref({ dt => $dt [, dateformat => $date_format, timeformat => $time_format, dateonly => 0|1, as_due_date => 0|1 ] });
209 $date_string = output_pref( $dt );
211 Returns a string containing the time & date formatted as per the C4::Context setting,
212 or C<undef> if C<undef> was provided.
214 This routine can either be passed a DateTime object or or a hashref. If it is
215 passed a hashref, the expected keys are a mandatory 'dt' for the DateTime,
216 an optional 'dateformat' to override the dateformat system preference, an
217 optional 'timeformat' to override the TimeFormat system preference value,
218 and an optional 'dateonly' to specify that only the formatted date string
219 should be returned without the time.
225 my ( $dt, $str, $force_pref, $force_time, $dateonly, $as_due_date );
226 if ( ref $params eq 'HASH' ) {
228 $str = $params->{str
};
229 $force_pref = $params->{dateformat
}; # if testing we want to override Context
230 $force_time = $params->{timeformat
};
231 $dateonly = $params->{dateonly
} || 0; # if you don't want the hours and minutes
232 $as_due_date = $params->{as_due_date
} || 0; # don't display the hours and minutes if eq to 23:59 or 11:59 (depending the TimeFormat value)
237 Koha
::Exceptions
::WrongParameter
->throw( 'output_pref should not be called with both dt and str parameter' ) if $dt and $str;
241 $dt = eval { dt_from_string
( $str ) };
242 Koha
::Exceptions
::WrongParameter
->throw("Invalid date '$str' passed to output_pref" ) if $@
;
245 return if !defined $dt; # NULL date
246 Koha
::Exceptions
::WrongParameter
->throw( "output_pref is called with '$dt' (ref ". ( ref($dt) ?
ref($dt):'SCALAR')."), not a DateTime object") if ref($dt) ne 'DateTime';
248 # FIXME: see bug 13242 => no TZ for dates 'infinite'
249 if ( $dt->ymd !~ /^9999/ ) {
250 my $tz = $dateonly ? DateTime
::TimeZone
->new(name
=> 'floating') : C4
::Context
->tz;
251 $dt->set_time_zone( $tz );
255 defined $force_pref ?
$force_pref : C4
::Context
->preference('dateformat');
257 my $time_format = $force_time || C4
::Context
->preference('TimeFormat') || q{};
258 my $time = ( $time_format eq '12hr' ) ?
'%I:%M %p' : '%H:%M';
260 if ( $pref =~ m/^iso/ ) {
262 ?
$dt->strftime("%Y-%m-%d")
263 : $dt->strftime("%Y-%m-%d $time");
265 elsif ( $pref =~ m/^rfc3339/ ) {
267 $date = $dt->strftime('%FT%T%z');
268 substr($date, -2, 0, ':'); # timezone "HHmm" => "HH:mm"
271 $date = $dt->strftime("%Y-%m-%d");
274 elsif ( $pref =~ m/^metric/ ) {
276 ?
$dt->strftime("%d/%m/%Y")
277 : $dt->strftime("%d/%m/%Y $time");
279 elsif ( $pref =~ m/^dmydot/ ) {
281 ?
$dt->strftime("%d.%m.%Y")
282 : $dt->strftime("%d.%m.%Y $time");
285 elsif ( $pref =~ m/^us/ ) {
287 ?
$dt->strftime("%m/%d/%Y")
288 : $dt->strftime("%m/%d/%Y $time");
292 ?
$dt->strftime("%Y-%m-%d")
293 : $dt->strftime("%Y-%m-%d $time");
296 if ( $as_due_date ) {
297 $time_format eq '12hr'
298 ?
$date =~ s
| 11:59 PM
$||
299 : $date =~ s
| 23:59$||;
305 =head2 format_sqldatetime
307 $string = format_sqldatetime( $string_as_returned_from_db );
309 a convenience routine for calling dt_from_string and formatting the result
310 with output_pref as it is a frequent activity in scripts
314 sub format_sqldatetime
{
316 my $force_pref = shift; # if testing we want to override Context
317 my $force_time = shift;
318 my $dateonly = shift;
320 if ( defined $str && $str =~ m/^\d{4}-\d{2}-\d{2}/ ) {
321 my $dt = dt_from_string
( $str, 'sql' );
322 return q{} unless $dt;
323 $dt->truncate( to
=> 'minute' );
326 dateformat
=> $force_pref,
327 timeformat
=> $force_time,
328 dateonly
=> $dateonly