Bug 25898: Prohibit indirect object notation
[koha.git] / tools / holidays.pl
blob252882dbef34e6083789f54515dd0d6bcdfd93a7
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 Modern::Perl;
21 use CGI qw ( -utf8 );
23 use C4::Auth;
24 use C4::Output;
26 use C4::Calendar;
27 use Koha::DateUtils;
29 my $input = CGI->new;
31 my $dbh = C4::Context->dbh();
32 # Get the template to use
33 my ($template, $loggedinuser, $cookie)
34 = get_template_and_user({template_name => "tools/holidays.tt",
35 type => "intranet",
36 query => $input,
37 flagsrequired => {tools => 'edit_calendar'},
38 debug => 1,
39 });
41 # calendardate - date passed in url for human readability (syspref)
42 # if the url has an invalid date default to 'now.'
43 my $calendarinput_dt = eval { dt_from_string( scalar $input->param('calendardate') ); } || dt_from_string;
44 my $calendardate = output_pref( { dt => $calendarinput_dt, dateonly => 1 } );
46 # keydate - date passed to calendar.js. calendar.js does not process dashes within a date.
47 my $keydate = output_pref( { dt => $calendarinput_dt, dateonly => 1, dateformat => 'iso' } );
48 $keydate =~ s/-/\//g;
50 my $branch= $input->param('branch') || C4::Context->userenv->{'branch'};
52 # Get all the holidays
54 my $calendar = C4::Calendar->new(branchcode => $branch);
55 my $week_days_holidays = $calendar->get_week_days_holidays();
56 my @week_days;
57 foreach my $weekday (keys %$week_days_holidays) {
58 # warn "WEEK DAY : $weekday";
59 my %week_day;
60 %week_day = (KEY => $weekday,
61 TITLE => $week_days_holidays->{$weekday}{title},
62 DESCRIPTION => $week_days_holidays->{$weekday}{description});
63 push @week_days, \%week_day;
66 my $day_month_holidays = $calendar->get_day_month_holidays();
67 my @day_month_holidays;
68 foreach my $monthDay (keys %$day_month_holidays) {
69 # Determine date format on month and day.
70 my $day_monthdate;
71 my $day_monthdate_sort;
72 if (C4::Context->preference("dateformat") eq "metric") {
73 $day_monthdate_sort = "$day_month_holidays->{$monthDay}{month}-$day_month_holidays->{$monthDay}{day}";
74 $day_monthdate = "$day_month_holidays->{$monthDay}{day}/$day_month_holidays->{$monthDay}{month}";
75 } elsif (C4::Context->preference("dateformat") eq "dmydot") {
76 $day_monthdate_sort = "$day_month_holidays->{$monthDay}{month}.$day_month_holidays->{$monthDay}{day}";
77 $day_monthdate = "$day_month_holidays->{$monthDay}{day}.$day_month_holidays->{$monthDay}{month}";
78 }elsif (C4::Context->preference("dateformat") eq "us") {
79 $day_monthdate = "$day_month_holidays->{$monthDay}{month}/$day_month_holidays->{$monthDay}{day}";
80 $day_monthdate_sort = $day_monthdate;
81 } else {
82 $day_monthdate = "$day_month_holidays->{$monthDay}{month}-$day_month_holidays->{$monthDay}{day}";
83 $day_monthdate_sort = $day_monthdate;
85 my %day_month;
86 %day_month = (KEY => $monthDay,
87 DATE_SORT => $day_monthdate_sort,
88 DATE => $day_monthdate,
89 TITLE => $day_month_holidays->{$monthDay}{title},
90 DESCRIPTION => $day_month_holidays->{$monthDay}{description});
91 push @day_month_holidays, \%day_month;
94 my $exception_holidays = $calendar->get_exception_holidays();
95 my @exception_holidays;
96 foreach my $yearMonthDay (keys %$exception_holidays) {
97 my $exceptiondate = eval { dt_from_string( $exception_holidays->{$yearMonthDay}{date} ) };
98 my %exception_holiday;
99 %exception_holiday = (KEY => $yearMonthDay,
100 DATE_SORT => $exception_holidays->{$yearMonthDay}{date},
101 DATE => output_pref( { dt => $exceptiondate, dateonly => 1 } ),
102 TITLE => $exception_holidays->{$yearMonthDay}{title},
103 DESCRIPTION => $exception_holidays->{$yearMonthDay}{description});
104 push @exception_holidays, \%exception_holiday;
107 my $single_holidays = $calendar->get_single_holidays();
108 my @holidays;
109 foreach my $yearMonthDay (keys %$single_holidays) {
110 my $holidaydate_dt = eval { dt_from_string( $single_holidays->{$yearMonthDay}{date} ) };
111 my %holiday;
112 %holiday = (KEY => $yearMonthDay,
113 DATE_SORT => $single_holidays->{$yearMonthDay}{date},
114 DATE => output_pref( { dt => $holidaydate_dt, dateonly => 1 } ),
115 TITLE => $single_holidays->{$yearMonthDay}{title},
116 DESCRIPTION => $single_holidays->{$yearMonthDay}{description});
117 push @holidays, \%holiday;
120 $template->param(
121 WEEK_DAYS_LOOP => \@week_days,
122 HOLIDAYS_LOOP => \@holidays,
123 EXCEPTION_HOLIDAYS_LOOP => \@exception_holidays,
124 DAY_MONTH_HOLIDAYS_LOOP => \@day_month_holidays,
125 calendardate => $calendardate,
126 keydate => $keydate,
127 branch => $branch,
130 # Shows the template with the real values replaced
131 output_html_with_http_headers $input, $cookie, $template->output;