Bug 28591: Don't pass debug to get_template_and_user
[koha.git] / opac / opac-serial-issues.pl
1 #!/usr/bin/perl
2
3 # Copyright 2000-2002 Katipo Communications
4 #
5 # This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
19
20
21 use Modern::Perl;
22
23 use CGI qw ( -utf8 );
24 use C4::Auth;
25 use C4::Koha;
26 use C4::Serials;
27 use C4::Letters;
28 use C4::Output;
29 use C4::Context;
30
31 my $query      = CGI->new;
32 my $op         = $query->param('op');
33 my $dbh        = C4::Context->dbh;
34 my $selectview = $query->param('selectview');
35 $selectview = C4::Context->preference("SubscriptionHistory") unless $selectview;
36
37 # my $id;
38 my ( $template, $loggedinuser, $cookie );
39 my $biblionumber = $query->param('biblionumber');
40 if ( $selectview eq "full" ) {
41     ( $template, $loggedinuser, $cookie ) = get_template_and_user(
42         {
43             template_name   => "opac-full-serial-issues.tt",
44             query           => $query,
45             type            => "opac",
46             authnotrequired => 1,
47         }
48     );
49     my $subscriptions = GetFullSubscriptionsFromBiblionumber($biblionumber);
50     my $subscriptioninformation=PrepareSerialsData($subscriptions);
51     # PrepareSerialsData does some bogus stuff that the template could handle
52     # But at least it sorts the array by the year field so we dont have to
53     # find 'manage' if its there
54     if ($subscriptioninformation->[0]->{year} eq 'manage') {
55         shift @{$subscriptioninformation};
56     }
57
58     # now, check is there is an alert subscription for one of the subscriptions
59     if ($loggedinuser) {
60         foreach (@$subscriptions) {
61             my $subscription = Koha::Subscriptions->find( $_->{subscriptionid} );
62             my $subscriber = $subscription->subscribers->find( $loggedinuser );
63             $_->{hasalert} = 1 if $subscriber;
64         }
65     }
66
67     my $title   = $subscriptions->[0]->{bibliotitle};
68     my $yearmin = $subscriptions->[0]->{year};
69     my $yearmax = $subscriptions->[ -1 ]->{year};
70
71     $template->param(
72         biblionumber   => scalar $query->param('biblionumber'),
73         years          => $subscriptioninformation,
74         yearmin        => $yearmin,
75         yearmax        => $yearmax,
76         bibliotitle    => $title,
77         suggestion     => C4::Context->preference("suggestion"),
78         virtualshelves => C4::Context->preference("virtualshelves"),
79     );
80
81 }
82 else {
83     ( $template, $loggedinuser, $cookie ) = get_template_and_user(
84         {
85             template_name   => "opac-serial-issues.tt",
86             query           => $query,
87             type            => "opac",
88             authnotrequired => 1,
89         }
90     );
91
92     my $subscriptions = GetSubscriptionsFromBiblionumber($biblionumber);
93     # now, check is there is an alert subscription for one of the subscriptions
94     if ($loggedinuser) {
95         foreach (@$subscriptions) {
96             my $subscription = Koha::Subscriptions->find( $_->{subscriptionid} );
97             my $subscriber = $subscription->subscribers->find( $loggedinuser );
98             $_->{hasalert} = 1 if $subscriber;
99         }
100     }
101
102     my $title   = $subscriptions->[0]->{bibliotitle};
103
104     $template->param(
105         biblionumber      => scalar $query->param('biblionumber'),
106         subscription_LOOP => $subscriptions,
107         bibliotitle        => $title,
108     );
109 }
110 output_html_with_http_headers $query, $cookie, $template->output;