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 under the
7 # terms of the GNU General Public License as published by the Free Software
8 # Foundation; either version 2 of the License, or (at your option) any later
11 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
12 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
13 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License along with
16 # Koha; if not, write to the Free Software Foundation, Inc.,
17 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23 use DateTime
::Format
::DateParse
;
27 use version
; our $VERSION = qv
('1.0.0');
30 qw( dt_from_string output_pref format_sqldatetime )
35 Koha::DateUtils - Transitional wrappers to ease use of DateTime
39 Koha has historically only used dates not datetimes and been content to
40 handle these as strings. It also has confused formatting with actual dates
41 this is a temporary module for wrappers to hide the complexity of switch to DateTime
47 $dt = dt_from_string($date_string, [$format, $timezone ]);
49 Passed a date string returns a DateTime object format and timezone default
50 to the system preferences. If the date string is empty DateTime->now is returned
55 my ( $date_string, $date_format, $tz ) = @_;
57 # FIXME: see bug 13242 => no TZ for dates 'infinite'
58 return DateTime
::Format
::DateParse
->parse_datetime($date_string)
59 if $date_string and $date_string =~ /^9999-/;
62 $tz ||= C4
::Context
->tz;
63 if ( !$date_format ) {
64 $date_format = C4
::Context
->preference('dateformat');
67 if ( ref($date_string) eq 'DateTime' ) { # already a dt return it
71 if ( $date_format eq 'metric' ) {
72 $date_string =~ s
#-#/#g;
73 $date_string =~ s/^00/01/; # system allows the 0th of the month
74 $date_string =~ s
#^(\d{1,2})/(\d{1,2})#$2/$1#;
76 if ( $date_format eq 'iso' ) {
77 $date_string =~ s/-00/-01/;
78 if ( $date_string =~ m/^0000-0/ ) {
79 return; # invalid date in db
81 } elsif ( $date_format eq 'us' ) {
82 $date_string =~ s
#-#/#g;
83 $date_string =~ s
[/00/][/01/];
84 } elsif ( $date_format eq 'sql' ) {
86 s/(\d{4})(\d{2})(\d{2})\s+(\d{2})(\d{2})(\d{2})/$1-$2-$3T$4:$5:$6/;
87 return if ($date_string =~ /^0000-00-00/);
88 $date_string =~ s/00T/01T/;
93 DateTime
::Format
::DateParse
->parse_datetime( $date_string,
97 $tz = DateTime
::TimeZone
->new( name
=> 'floating' );
98 $dt = DateTime
::Format
::DateParse
->parse_datetime( $date_string,
102 $dt = DateTime
->now( time_zone
=> $tz );
111 $date_string = output_pref({ dt => $dt [, dateformat => $date_format, timeformat => $time_format, dateonly => 0|1, as_due_date => 0|1 ] });
112 $date_string = output_pref( $dt );
114 Returns a string containing the time & date formatted as per the C4::Context setting,
115 or C<undef> if C<undef> was provided.
117 This routine can either be passed a DateTime object or or a hashref. If it is
118 passed a hashref, the expected keys are a mandatory 'dt' for the DateTime,
119 an optional 'dateformat' to override the dateformat system preference, an
120 optional 'timeformat' to override the TimeFormat system preference value,
121 and an optional 'dateonly' to specify that only the formatted date string
122 should be returned without the time.
128 my ( $dt, $force_pref, $force_time, $dateonly, $as_due_date );
129 if ( ref $params eq 'HASH' ) {
131 $force_pref = $params->{dateformat
}; # if testing we want to override Context
132 $force_time = $params->{timeformat
};
133 $dateonly = $params->{dateonly
} || 0; # if you don't want the hours and minutes
134 $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)
139 return unless defined $dt;
141 # FIXME: see bug 13242 => no TZ for dates 'infinite'
142 if ( $dt->ymd !~ /^9999/ ) {
143 my $tz = $dateonly ? DateTime
::TimeZone
->new(name
=> 'floating') : C4
::Context
->tz;
144 $dt->set_time_zone( $tz );
148 defined $force_pref ?
$force_pref : C4
::Context
->preference('dateformat');
150 my $time_format = $force_time || C4
::Context
->preference('TimeFormat') || q{};
151 my $time = ( $time_format eq '12hr' ) ?
'%I:%M %p' : '%H:%M';
153 if ( $pref =~ m/^iso/ ) {
155 ?
$dt->strftime("%Y-%m-%d")
156 : $dt->strftime("%Y-%m-%d $time");
158 elsif ( $pref =~ m/^metric/ ) {
160 ?
$dt->strftime("%d/%m/%Y")
161 : $dt->strftime("%d/%m/%Y $time");
163 elsif ( $pref =~ m/^us/ ) {
165 ?
$dt->strftime("%m/%d/%Y")
166 : $dt->strftime("%m/%d/%Y $time");
170 ?
$dt->strftime("%Y-%m-%d")
171 : $dt->strftime("%Y-%m-%d $time");
174 if ( $as_due_date ) {
175 $time_format eq '12hr'
176 ?
$date =~ s
| 11:59 PM
$||
177 : $date =~ s
| 23:59$||;
183 =head2 format_sqldatetime
185 $string = format_sqldatetime( $string_as_returned_from_db );
187 a convenience routine for calling dt_from_string and formatting the result
188 with output_pref as it is a frequent activity in scripts
192 sub format_sqldatetime
{
194 my $force_pref = shift; # if testing we want to override Context
195 my $force_time = shift;
196 my $dateonly = shift;
198 if ( defined $str && $str =~ m/^\d{4}-\d{2}-\d{2}/ ) {
199 my $dt = dt_from_string
( $str, 'sql' );
200 return q{} unless $dt;
201 $dt->truncate( to
=> 'minute' );
204 dateformat
=> $force_pref,
205 timeformat
=> $force_time,
206 dateonly
=> $dateonly