Bug 25716: (QA follow-up) Move additional options to etc/z3950/config.xml
[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 qw( get_template_and_user );
25 use C4::Serials qw( GetFullSubscription GetFullSubscriptionsFromBiblionumber PrepareSerialsData GetSubscription GetSubscriptionsFromBiblionumber );
26 use C4::Output qw( output_html_with_http_headers );
27 use C4::Context;
28
29 my $query      = CGI->new;
30 my $op         = $query->param('op');
31 my $dbh        = C4::Context->dbh;
32 my $selectview = $query->param('selectview');
33 $selectview = C4::Context->preference("SubscriptionHistory") unless $selectview;
34
35 # my $id;
36 my ( $template, $loggedinuser, $cookie );
37 my $biblionumber = $query->param('biblionumber');
38 if ( $selectview eq "full" ) {
39     ( $template, $loggedinuser, $cookie ) = get_template_and_user(
40         {
41             template_name   => "opac-full-serial-issues.tt",
42             query           => $query,
43             type            => "opac",
44             authnotrequired => 1,
45         }
46     );
47     my $subscriptions = GetFullSubscriptionsFromBiblionumber($biblionumber);
48     my $subscriptioninformation=PrepareSerialsData($subscriptions);
49     # PrepareSerialsData does some bogus stuff that the template could handle
50     # But at least it sorts the array by the year field so we dont have to
51     # find 'manage' if its there
52     if ($subscriptioninformation->[0]->{year} eq 'manage') {
53         shift @{$subscriptioninformation};
54     }
55
56     # now, check is there is an alert subscription for one of the subscriptions
57     if ($loggedinuser) {
58         foreach (@$subscriptions) {
59             my $subscription = Koha::Subscriptions->find( $_->{subscriptionid} );
60             my $subscriber = $subscription->subscribers->find( $loggedinuser );
61             $_->{hasalert} = 1 if $subscriber;
62         }
63     }
64
65     my $title   = $subscriptions->[0]->{bibliotitle};
66     my $yearmin = $subscriptions->[0]->{year};
67     my $yearmax = $subscriptions->[ -1 ]->{year};
68
69     $template->param(
70         biblionumber   => scalar $query->param('biblionumber'),
71         years          => $subscriptioninformation,
72         yearmin        => $yearmin,
73         yearmax        => $yearmax,
74         bibliotitle    => $title,
75         suggestion     => C4::Context->preference("suggestion"),
76         virtualshelves => C4::Context->preference("virtualshelves"),
77     );
78
79 }
80 else {
81     ( $template, $loggedinuser, $cookie ) = get_template_and_user(
82         {
83             template_name   => "opac-serial-issues.tt",
84             query           => $query,
85             type            => "opac",
86             authnotrequired => 1,
87         }
88     );
89
90     my $subscriptions = GetSubscriptionsFromBiblionumber($biblionumber);
91     # now, check is there is an alert subscription for one of the subscriptions
92     if ($loggedinuser) {
93         foreach (@$subscriptions) {
94             my $subscription = Koha::Subscriptions->find( $_->{subscriptionid} );
95             my $subscriber = $subscription->subscribers->find( $loggedinuser );
96             $_->{hasalert} = 1 if $subscriber;
97         }
98     }
99
100     my $title   = $subscriptions->[0]->{bibliotitle};
101
102     $template->param(
103         biblionumber      => scalar $query->param('biblionumber'),
104         subscription_LOOP => $subscriptions,
105         bibliotitle        => $title,
106     );
107 }
108 output_html_with_http_headers $query, $cookie, $template->output;