Bug 15758: Koha::Libraries - Remove GetBranchName
[koha.git] / tools / holidays.pl
1 #!/usr/bin/perl
2
3 # This file is part of Koha.
4 #
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.
9 #
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.
14 #
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>.
17
18 #####Sets holiday periods for each branch. Datedues will be extended if branch is closed -TG
19 use strict;
20 use warnings;
21
22 use CGI qw ( -utf8 );
23
24 use C4::Auth;
25 use C4::Output;
26
27 use C4::Branch; # GetBranches
28 use C4::Calendar;
29 use Koha::DateUtils;
30
31 my $input = new CGI;
32
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                            });
43
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( scalar $input->param('calendardate') ); } || dt_from_string;
47 my $calendardate = output_pref( { dt => $calendarinput_dt, dateonly => 1 } );
48
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;
52
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'};
62 }
63 my $branches   = GetBranches($onlymine);
64 my @branchloop;
65 for my $thisbranch (
66     sort { $branches->{$a}->{branchname} cmp $branches->{$b}->{branchname} }
67     keys %{$branches} ) {
68     push @branchloop,
69       { value      => $thisbranch,
70         selected   => $thisbranch eq $branch,
71         branchname => $branches->{$thisbranch}->{'branchname'},
72       };
73 }
74
75 # branches calculated - put branch codes in a single string so they can be passed in a form
76 my $branchcodes = join '|', keys %{$branches};
77
78 # Get all the holidays
79
80 my $calendar = C4::Calendar->new(branchcode => $branch);
81 my $week_days_holidays = $calendar->get_week_days_holidays();
82 my @week_days;
83 foreach my $weekday (keys %$week_days_holidays) {
84 # warn "WEEK DAY : $weekday";
85     my %week_day;
86     %week_day = (KEY => $weekday,
87                  TITLE => $week_days_holidays->{$weekday}{title},
88                  DESCRIPTION => $week_days_holidays->{$weekday}{description});
89     push @week_days, \%week_day;
90 }
91
92 my $day_month_holidays = $calendar->get_day_month_holidays();
93 my @day_month_holidays;
94 foreach my $monthDay (keys %$day_month_holidays) {
95     # Determine date format on month and day.
96     my $day_monthdate;
97     my $day_monthdate_sort;
98     if (C4::Context->preference("dateformat") eq "metric") {
99       $day_monthdate_sort = "$day_month_holidays->{$monthDay}{month}-$day_month_holidays->{$monthDay}{day}";
100       $day_monthdate = "$day_month_holidays->{$monthDay}{day}/$day_month_holidays->{$monthDay}{month}";
101     } elsif (C4::Context->preference("dateformat") eq "dmydot") {
102       $day_monthdate_sort = "$day_month_holidays->{$monthDay}{month}.$day_month_holidays->{$monthDay}{day}";
103       $day_monthdate = "$day_month_holidays->{$monthDay}{day}.$day_month_holidays->{$monthDay}{month}";
104     }elsif (C4::Context->preference("dateformat") eq "us") {
105       $day_monthdate = "$day_month_holidays->{$monthDay}{month}/$day_month_holidays->{$monthDay}{day}";
106       $day_monthdate_sort = $day_monthdate;
107     } else {
108       $day_monthdate = "$day_month_holidays->{$monthDay}{month}-$day_month_holidays->{$monthDay}{day}";
109       $day_monthdate_sort = $day_monthdate;
110     }
111     my %day_month;
112     %day_month = (KEY => $monthDay,
113                   DATE_SORT => $day_monthdate_sort,
114                   DATE => $day_monthdate,
115                   TITLE => $day_month_holidays->{$monthDay}{title},
116                   DESCRIPTION => $day_month_holidays->{$monthDay}{description});
117     push @day_month_holidays, \%day_month;
118 }
119
120 my $exception_holidays = $calendar->get_exception_holidays();
121 my @exception_holidays;
122 foreach my $yearMonthDay (keys %$exception_holidays) {
123     my $exceptiondate = eval { dt_from_string( $exception_holidays->{$yearMonthDay}{date} ) };
124     my %exception_holiday;
125     %exception_holiday = (KEY => $yearMonthDay,
126                           DATE_SORT => $exception_holidays->{$yearMonthDay}{date},
127                           DATE => output_pref( { dt => $exceptiondate, dateonly => 1 } ),
128                           TITLE => $exception_holidays->{$yearMonthDay}{title},
129                           DESCRIPTION => $exception_holidays->{$yearMonthDay}{description});
130     push @exception_holidays, \%exception_holiday;
131 }
132
133 my $single_holidays = $calendar->get_single_holidays();
134 my @holidays;
135 foreach my $yearMonthDay (keys %$single_holidays) {
136     my $holidaydate_dt = eval { dt_from_string( $single_holidays->{$yearMonthDay}{date} ) };
137     my %holiday;
138     %holiday = (KEY => $yearMonthDay,
139                 DATE_SORT => $single_holidays->{$yearMonthDay}{date},
140                 DATE => output_pref( { dt => $holidaydate_dt, dateonly => 1 } ),
141                 TITLE => $single_holidays->{$yearMonthDay}{title},
142                 DESCRIPTION => $single_holidays->{$yearMonthDay}{description});
143     push @holidays, \%holiday;
144 }
145
146 $template->param(
147     WEEK_DAYS_LOOP           => \@week_days,
148     branchloop               => \@branchloop,
149     HOLIDAYS_LOOP            => \@holidays,
150     EXCEPTION_HOLIDAYS_LOOP  => \@exception_holidays,
151     DAY_MONTH_HOLIDAYS_LOOP  => \@day_month_holidays,
152     calendardate             => $calendardate,
153     keydate                  => $keydate,
154     branchcodes              => $branchcodes,
155     branch                   => $branch,
156 );
157
158 # Shows the template with the real values replaced
159 output_html_with_http_headers $input, $cookie, $template->output;