Bug 14954: (followup) Display exceptions in syspref format
[koha.git] / tools / holidays.pl
blob1aea801b54237cdf562eff2abf344f3dd41ea47d
1 #!/usr/bin/perl
3 # This file is part of Koha.
5 # Koha is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
10 # Koha is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with Koha; if not, see <http://www.gnu.org/licenses>.
18 #####Sets holiday periods for each branch. Datedues will be extended if branch is closed -TG
19 use strict;
20 use warnings;
22 use CGI qw ( -utf8 );
24 use C4::Auth;
25 use C4::Output;
27 use C4::Branch; # GetBranches
28 use C4::Calendar;
29 use Koha::DateUtils;
31 my $input = new CGI;
33 my $dbh = C4::Context->dbh();
34 # Get the template to use
35 my ($template, $loggedinuser, $cookie)
36 = get_template_and_user({template_name => "tools/holidays.tt",
37 type => "intranet",
38 query => $input,
39 authnotrequired => 0,
40 flagsrequired => {tools => 'edit_calendar'},
41 debug => 1,
42 });
44 # calendardate - date passed in url for human readability (syspref)
45 # if the url has an invalid date default to 'now.'
46 my $calendarinput_dt = eval { dt_from_string( $input->param('calendardate') ); } || dt_from_string;
47 my $calendardate = output_pref( { dt => $calendarinput_dt, dateonly => 1 } );
49 # keydate - date passed to calendar.js. calendar.js does not process dashes within a date.
50 my $keydate = output_pref( { dt => $calendarinput_dt, dateonly => 1, dateformat => 'iso' } );
51 $keydate =~ s/-/\//g;
53 my $branch= $input->param('branch') || C4::Context->userenv->{'branch'};
54 # Set all the branches.
55 my $onlymine =
56 ( C4::Context->preference('IndependentBranches')
57 && C4::Context->userenv
58 && !C4::Context->IsSuperLibrarian()
59 && C4::Context->userenv->{branch} ? 1 : 0 );
60 if ( $onlymine ) {
61 $branch = C4::Context->userenv->{'branch'};
63 my $branchname = GetBranchName($branch);
64 my $branches = GetBranches($onlymine);
65 my @branchloop;
66 for my $thisbranch (
67 sort { $branches->{$a}->{branchname} cmp $branches->{$b}->{branchname} }
68 keys %{$branches} ) {
69 push @branchloop,
70 { value => $thisbranch,
71 selected => $thisbranch eq $branch,
72 branchname => $branches->{$thisbranch}->{'branchname'},
76 # branches calculated - put branch codes in a single string so they can be passed in a form
77 my $branchcodes = join '|', keys %{$branches};
79 # Get all the holidays
81 my $calendar = C4::Calendar->new(branchcode => $branch);
82 my $week_days_holidays = $calendar->get_week_days_holidays();
83 my @week_days;
84 foreach my $weekday (keys %$week_days_holidays) {
85 # warn "WEEK DAY : $weekday";
86 my %week_day;
87 %week_day = (KEY => $weekday,
88 TITLE => $week_days_holidays->{$weekday}{title},
89 DESCRIPTION => $week_days_holidays->{$weekday}{description});
90 push @week_days, \%week_day;
93 my $day_month_holidays = $calendar->get_day_month_holidays();
94 my @day_month_holidays;
95 foreach my $monthDay (keys %$day_month_holidays) {
96 # Determine date format on month and day.
97 my $day_monthdate;
98 my $day_monthdate_sort;
99 if (C4::Context->preference("dateformat") eq "metric") {
100 $day_monthdate_sort = "$day_month_holidays->{$monthDay}{month}-$day_month_holidays->{$monthDay}{day}";
101 $day_monthdate = "$day_month_holidays->{$monthDay}{day}/$day_month_holidays->{$monthDay}{month}";
102 } elsif (C4::Context->preference("dateformat") eq "us") {
103 $day_monthdate = "$day_month_holidays->{$monthDay}{month}/$day_month_holidays->{$monthDay}{day}";
104 $day_monthdate_sort = $day_monthdate;
105 } else {
106 $day_monthdate = "$day_month_holidays->{$monthDay}{month}-$day_month_holidays->{$monthDay}{day}";
107 $day_monthdate_sort = $day_monthdate;
109 my %day_month;
110 %day_month = (KEY => $monthDay,
111 DATE_SORT => $day_monthdate_sort,
112 DATE => $day_monthdate,
113 TITLE => $day_month_holidays->{$monthDay}{title},
114 DESCRIPTION => $day_month_holidays->{$monthDay}{description});
115 push @day_month_holidays, \%day_month;
118 my $exception_holidays = $calendar->get_exception_holidays();
119 my @exception_holidays;
120 foreach my $yearMonthDay (keys %$exception_holidays) {
121 my $exceptiondate = eval { dt_from_string( $exception_holidays->{$yearMonthDay}{date} ) };
122 my %exception_holiday;
123 %exception_holiday = (KEY => $yearMonthDay,
124 DATE_SORT => $exception_holidays->{$yearMonthDay}{date},
125 DATE => output_pref( { dt => $exceptiondate, dateonly => 1 } ),
126 TITLE => $exception_holidays->{$yearMonthDay}{title},
127 DESCRIPTION => $exception_holidays->{$yearMonthDay}{description});
128 push @exception_holidays, \%exception_holiday;
131 my $single_holidays = $calendar->get_single_holidays();
132 my @holidays;
133 foreach my $yearMonthDay (keys %$single_holidays) {
134 my $holidaydate_dt = eval { dt_from_string( $single_holidays->{$yearMonthDay}{date} ) };
135 my %holiday;
136 %holiday = (KEY => $yearMonthDay,
137 DATE_SORT => $single_holidays->{$yearMonthDay}{date},
138 DATE => output_pref( { dt => $holidaydate_dt, dateonly => 1 } ),
139 TITLE => $single_holidays->{$yearMonthDay}{title},
140 DESCRIPTION => $single_holidays->{$yearMonthDay}{description});
141 push @holidays, \%holiday;
144 $template->param(
145 WEEK_DAYS_LOOP => \@week_days,
146 branchloop => \@branchloop,
147 HOLIDAYS_LOOP => \@holidays,
148 EXCEPTION_HOLIDAYS_LOOP => \@exception_holidays,
149 DAY_MONTH_HOLIDAYS_LOOP => \@day_month_holidays,
150 calendardate => $calendardate,
151 keydate => $keydate,
152 branchcodes => $branchcodes,
153 branch => $branch,
154 branchname => $branchname,
155 branch => $branch,
158 # Shows the template with the real values replaced
159 output_html_with_http_headers $input, $cookie, $template->output;