Bug 14279: Remove CGI::scrolling_list from issues_avg_stats.pl
[koha.git] / Koha / DateUtils.pm
blob7a981205112aecb9e9e883623ce55ce53f173ec6
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
9 # version.
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.
19 use strict;
20 use warnings;
21 use 5.010;
22 use DateTime;
23 use C4::Context;
25 use base 'Exporter';
26 use version; our $VERSION = qv('1.0.0');
28 our @EXPORT = (
29 qw( dt_from_string output_pref format_sqldatetime )
32 =head1 DateUtils
34 Koha::DateUtils - Transitional wrappers to ease use of DateTime
36 =head1 DESCRIPTION
38 Koha has historically only used dates not datetimes and been content to
39 handle these as strings. It also has confused formatting with actual dates
40 this is a temporary module for wrappers to hide the complexity of switch to DateTime
42 =cut
44 =head2 dt_ftom_string
46 $dt = dt_from_string($date_string, [$format, $timezone ]);
48 Passed a date string returns a DateTime object format and timezone default
49 to the system preferences. If the date string is empty DateTime->now is returned
51 =cut
53 sub dt_from_string {
54 my ( $date_string, $date_format, $tz ) = @_;
56 return if $date_string and $date_string =~ m|^0000-0|;
58 $tz = C4::Context->tz unless $tz;;
60 return DateTime->now( time_zone => $tz ) unless $date_string;
62 $date_format = C4::Context->preference('dateformat') unless $date_format;
64 if ( ref($date_string) eq 'DateTime' ) { # already a dt return it
65 return $date_string;
68 my $regex;
70 # The fallback format is sql/iso
71 my $fallback_re = qr|
72 (?<year>\d{4})
74 (?<month>\d{2})
76 (?<day>\d{2})
77 |xms;
79 if ( $date_format eq 'metric' ) {
80 # metric format is "dd/mm/yyyy[ hh:mm:ss]"
81 $regex = qr|
82 (?<day>\d{2})
84 (?<month>\d{2})
86 (?<year>\d{4})
87 |xms;
89 elsif ( $date_format eq 'us' ) {
90 # us format is "mm/dd/yyyy[ hh:mm:ss]"
91 $regex = qr|
92 (?<month>\d{2})
94 (?<day>\d{2})
96 (?<year>\d{4})
97 |xms;
99 elsif ( $date_format eq 'iso' or $date_format eq 'sql' ) {
100 # iso or sql format are yyyy-dd-mm[ hh:mm:ss]"
101 $regex = $fallback_re;
103 else {
104 die "Invalid dateformat parameter ($date_format)";
107 # Add the faculative time part [hh:mm[:ss]]
108 my $time_re .= qr|
111 (?<hour>\d{2})
113 (?<minute>\d{2})
116 (?<second>\d{2})
119 |xms;
120 $regex .= $time_re;
121 $fallback_re .= $time_re;
123 my %dt_params;
124 if ( $date_string =~ $regex ) {
125 %dt_params = (
126 year => $+{year},
127 month => $+{month},
128 day => $+{day},
129 hour => $+{hour},
130 minute => $+{minute},
131 second => $+{second},
133 } elsif ( $date_string =~ $fallback_re ) {
134 %dt_params = (
135 year => $+{year},
136 month => $+{month},
137 day => $+{day},
138 hour => $+{hour},
139 minute => $+{minute},
140 second => $+{second},
143 else {
144 die "The given date ($date_string) does not match the date format ($date_format)";
147 # system allows the 0th of the month
148 $dt_params{day} = '01' if $dt_params{day} eq '00';
150 # Set default hh:mm:ss to 00:00:00
151 $dt_params{hour} = 00 unless defined $dt_params{hour};
152 $dt_params{minute} = 00 unless defined $dt_params{minute};
153 $dt_params{second} = 00 unless defined $dt_params{second};
155 my $dt = eval {
156 DateTime->new(
157 %dt_params,
158 # No TZ for dates 'infinite' => see bug 13242
159 ( $dt_params{year} < 9999 ? ( time_zone => $tz->name ) : () ),
162 if ($@) {
163 $tz = DateTime::TimeZone->new( name => 'floating' );
164 $dt = DateTime->new(
165 %dt_params,
166 # No TZ for dates 'infinite' => see bug 13242
167 ( $dt_params{year} < 9999 ? ( time_zone => $tz->name ) : () ),
170 return $dt;
173 =head2 output_pref
175 $date_string = output_pref({ dt => $dt [, dateformat => $date_format, timeformat => $time_format, dateonly => 0|1, as_due_date => 0|1 ] });
176 $date_string = output_pref( $dt );
178 Returns a string containing the time & date formatted as per the C4::Context setting,
179 or C<undef> if C<undef> was provided.
181 This routine can either be passed a DateTime object or or a hashref. If it is
182 passed a hashref, the expected keys are a mandatory 'dt' for the DateTime,
183 an optional 'dateformat' to override the dateformat system preference, an
184 optional 'timeformat' to override the TimeFormat system preference value,
185 and an optional 'dateonly' to specify that only the formatted date string
186 should be returned without the time.
188 =cut
190 sub output_pref {
191 my $params = shift;
192 my ( $dt, $force_pref, $force_time, $dateonly, $as_due_date );
193 if ( ref $params eq 'HASH' ) {
194 $dt = $params->{dt};
195 $force_pref = $params->{dateformat}; # if testing we want to override Context
196 $force_time = $params->{timeformat};
197 $dateonly = $params->{dateonly} || 0; # if you don't want the hours and minutes
198 $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)
199 } else {
200 $dt = $params;
203 return unless defined $dt;
205 # FIXME: see bug 13242 => no TZ for dates 'infinite'
206 if ( $dt->ymd !~ /^9999/ ) {
207 my $tz = $dateonly ? DateTime::TimeZone->new(name => 'floating') : C4::Context->tz;
208 $dt->set_time_zone( $tz );
211 my $pref =
212 defined $force_pref ? $force_pref : C4::Context->preference('dateformat');
214 my $time_format = $force_time || C4::Context->preference('TimeFormat') || q{};
215 my $time = ( $time_format eq '12hr' ) ? '%I:%M %p' : '%H:%M';
216 my $date;
217 if ( $pref =~ m/^iso/ ) {
218 $date = $dateonly
219 ? $dt->strftime("%Y-%m-%d")
220 : $dt->strftime("%Y-%m-%d $time");
222 elsif ( $pref =~ m/^metric/ ) {
223 $date = $dateonly
224 ? $dt->strftime("%d/%m/%Y")
225 : $dt->strftime("%d/%m/%Y $time");
227 elsif ( $pref =~ m/^us/ ) {
228 $date = $dateonly
229 ? $dt->strftime("%m/%d/%Y")
230 : $dt->strftime("%m/%d/%Y $time");
232 else {
233 $date = $dateonly
234 ? $dt->strftime("%Y-%m-%d")
235 : $dt->strftime("%Y-%m-%d $time");
238 if ( $as_due_date ) {
239 $time_format eq '12hr'
240 ? $date =~ s| 11:59 PM$||
241 : $date =~ s| 23:59$||;
244 return $date;
247 =head2 format_sqldatetime
249 $string = format_sqldatetime( $string_as_returned_from_db );
251 a convenience routine for calling dt_from_string and formatting the result
252 with output_pref as it is a frequent activity in scripts
254 =cut
256 sub format_sqldatetime {
257 my $str = shift;
258 my $force_pref = shift; # if testing we want to override Context
259 my $force_time = shift;
260 my $dateonly = shift;
262 if ( defined $str && $str =~ m/^\d{4}-\d{2}-\d{2}/ ) {
263 my $dt = dt_from_string( $str, 'sql' );
264 return q{} unless $dt;
265 $dt->truncate( to => 'minute' );
266 return output_pref({
267 dt => $dt,
268 dateformat => $force_pref,
269 timeformat => $force_time,
270 dateonly => $dateonly
273 return q{};