adding export feature to OPAC
[koha.git] / opac / opac-alert-subscribe.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 under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
10 # version.
11 #
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License along with
17 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
18 # Suite 330, Boston, MA  02111-1307 USA
19
20
21 use strict;
22 use CGI;
23 use C4::Auth;
24 use C4::Date;
25 use C4::Output;
26 use C4::Context;
27 use C4::Koha;
28 use C4::Letters;
29 use C4::Serials;
30
31
32 my $query = new CGI;
33 my $op    = $query->param('op');
34 my $dbh   = C4::Context->dbh;
35
36 my $sth;
37 my ( $template, $loggedinuser, $cookie );
38 my $externalid   = $query->param('externalid');
39 my $alerttype    = $query->param('alerttype');
40 my $biblionumber = $query->param('biblionumber');
41
42 ( $template, $loggedinuser, $cookie ) = get_template_and_user(
43     {
44         template_name   => "opac-alert-subscribe.tmpl",
45         query           => $query,
46         type            => "opac",
47         authnotrequired => 1,
48         debug           => 1,
49     }
50 );
51
52 if ( $op eq 'alert_confirmed' ) {
53     addalert( $loggedinuser, $alerttype, $externalid );
54     if ( $alerttype eq 'issue' ) {
55         print $query->redirect(
56             "opac-serial-issues.pl?biblionumber=$biblionumber");
57         exit;
58     }
59 }
60 elsif ( $op eq 'cancel_confirmed' ) {
61     my $alerts = getalert( $loggedinuser, $alerttype, $externalid );
62     foreach (@$alerts)
63     {    # we are supposed to have only 1 result, but just in case...
64         delalert( $_->{alertid} );
65     }
66     if ( $alerttype eq 'issue' ) {
67         print $query->redirect(
68             "opac-serial-issues.pl?biblionumber=$biblionumber");
69         exit;
70     }
71
72 }
73 else {
74     if ( $alerttype eq 'issue' ) {    # alert for subscription issues
75         my $subscription = &GetSubscription($externalid);
76         $template->param(
77             "typeissue$op" => 1,
78             bibliotitle    => $subscription->{bibliotitle},
79             notes          => $subscription->{notes},
80             externalid     => $externalid,
81             biblionumber   => $biblionumber,
82         );
83     }
84     else {
85     }
86
87 }
88 output_html_with_http_headers $query, $cookie, $template->output;