Bug 20936: Add patron's hold history menu in OPAC
[koha.git] / opac / opac-holdshistory.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
19 use Modern::Perl;
20
21 use CGI qw ( -utf8 );
22
23 use C4::Auth;
24 use C4::Output;
25
26 use Koha::Patrons;
27
28 my $query = CGI->new;
29 my @all_holds;
30
31 # if opacreadinghistory is disabled, leave immediately
32 unless ( C4::Context->preference('OPACHoldsHistory') ) {
33     print $query->redirect("/cgi-bin/koha/errors/404.pl");
34     exit;
35 }
36
37 my ( $template, $patron_id, $cookie ) = get_template_and_user(
38     {
39         template_name   => "opac-holdshistory.tt",
40         query           => $query,
41         type            => "opac"
42     }
43 );
44
45 my $patron = Koha::Patrons->find( $patron_id );
46
47 my $holds = $patron->holds;
48 my $old_holds = $patron->old_holds;
49
50 while (my $hold = $holds->next) {
51     push @all_holds, $hold;
52 }
53
54 while (my $hold = $old_holds->next) {
55     push @all_holds, $hold;
56 }
57
58 my $sort = $query->param('sort');
59
60 $sort = 'reservedate' unless $sort;
61
62 if($sort eq 'reservedate') {
63     @all_holds = sort {$b->$sort cmp $a->$sort} @all_holds;
64 } else {
65     my ($obj, $col) = split /\./, $sort;
66     @all_holds = sort {$a->$obj->$col cmp $b->$obj->$col} @all_holds;
67 }
68
69 my $unlimit = $query->param('unlimit');
70
71 unless($unlimit) {
72     @all_holds = splice(@all_holds, 0, 50);
73 }
74
75 $template->param(
76     holdshistoryview => 1,
77     patron           => $patron,
78     holds            => \@all_holds,
79     unlimit          => $unlimit,
80     sort             => $sort
81 );
82
83 output_html_with_http_headers $query, $cookie, $template->output, undef, { force_no_caching => 1 };