Bug 3280 Restrict Send basket feature
[koha.git] / opac / opac-sendbasket.pl
1 #!/usr/bin/perl
2
3 # Copyright Doxulting 2004
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
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19
20 use strict;
21 use warnings;
22
23 use CGI;
24 use Encode qw(encode);
25 use Carp;
26
27 use Mail::Sendmail;
28 use MIME::QuotedPrint;
29 use MIME::Base64;
30 use HTML::FormatText;
31 use C4::Biblio;
32 use C4::Items;
33 use C4::Auth;
34 use C4::Output;
35 use C4::Biblio;
36 use C4::Members;
37
38 my $query = new CGI;
39
40 my ( $template, $borrowernumber, $cookie ) = get_template_and_user (
41     {
42         template_name   => "opac-sendbasketform.tmpl",
43         query           => $query,
44         type            => "opac",
45         authnotrequired => 0,
46         flagsrequired   => { borrow => 1 },
47     }
48 );
49
50 my $bib_list     = $query->param('bib_list');
51 my $email_add    = $query->param('email_add');
52 my $email_sender = $query->param('email_sender');
53
54 my $dbh          = C4::Context->dbh;
55
56 if ( $email_add ) {
57     my $user = GetMember(borrowernumber => $borrowernumber);
58     my $user_email = GetFirstValidEmailAddress($borrowernumber)
59     || C4::Context->preference('KohaAdminEmailAddress');
60
61     my $email_from = C4::Context->preference('KohaAdminEmailAddress');
62     my $email_replyto = "$user->{firstname} $user->{surname} <$user_email>";
63     my $comment    = $query->param('comment');
64     my %mail = (
65         To   => $email_add,
66         From => $email_from,
67     'Reply-To' => $email_replyto,
68     'X-Orig-IP' => $ENV{'REMOTE_ADDR'},
69     'X-Abuse-Report' => C4::Context->preference('KohaAdminEmailAddress'),
70     );
71
72     my ( $template2, $borrowernumber, $cookie ) = get_template_and_user(
73         {
74             template_name   => "opac-sendbasket.tmpl",
75             query           => $query,
76             type            => "opac",
77             authnotrequired => 0,
78             flagsrequired   => { borrow => 1 },
79         }
80     );
81
82     my @bibs = split( /\//, $bib_list );
83     my @results;
84     my $iso2709;
85     my $marcflavour = C4::Context->preference('marcflavour');
86     foreach my $biblionumber (@bibs) {
87         $template2->param( biblionumber => $biblionumber );
88
89         my $dat              = GetBiblioData($biblionumber);
90         my $record           = GetMarcBiblio($biblionumber);
91         my $marcnotesarray   = GetMarcNotes( $record, $marcflavour );
92         my $marcauthorsarray = GetMarcAuthors( $record, $marcflavour );
93         my $marcsubjctsarray = GetMarcSubjects( $record, $marcflavour );
94
95         my @items = GetItemsInfo( $biblionumber );
96
97         my $hasauthors = 0;
98         if($dat->{'author'} || @$marcauthorsarray) {
99           $hasauthors = 1;
100         }
101         
102
103         $dat->{MARCNOTES}      = $marcnotesarray;
104         $dat->{MARCSUBJCTS}    = $marcsubjctsarray;
105         $dat->{MARCAUTHORS}    = $marcauthorsarray;
106         $dat->{HASAUTHORS}     = $hasauthors;
107         $dat->{'biblionumber'} = $biblionumber;
108         $dat->{ITEM_RESULTS}   = \@items;
109
110         $iso2709 .= $record->as_usmarc();
111
112         push( @results, $dat );
113     }
114
115     my $resultsarray = \@results;
116     
117     $template2->param(
118         BIBLIO_RESULTS => $resultsarray,
119         email_sender   => $email_sender,
120         comment        => $comment,
121         firstname      => $user->{firstname},
122         surname        => $user->{surname},
123     );
124
125     # Getting template result
126     my $template_res = $template2->output();
127     my $body;
128
129     # Analysing information and getting mail properties
130     if ( $template_res =~ /<SUBJECT>\n(.*)\n?<END_SUBJECT>/s ) {
131         $mail{'subject'} = $1;
132     }
133     else { $mail{'subject'} = "no subject"; }
134
135     my $email_header = "";
136     if ( $template_res =~ /<HEADER>\n(.*)\n?<END_HEADER>/s ) {
137         $email_header = $1;
138     }
139
140     my $email_file = "basket.txt";
141     if ( $template_res =~ /<FILENAME>\n(.*)\n?<END_FILENAME>/s ) {
142         $email_file = $1;
143     }
144
145     if ( $template_res =~ /<MESSAGE>\n(.*)\n?<END_MESSAGE>/s ) {
146         $body = $1;
147     }
148
149     my $boundary = "====" . time() . "====";
150
151     $mail{'content-type'} = "multipart/mixed; boundary=\"$boundary\"";
152     my $isofile = encode_base64(encode("UTF-8", $iso2709));
153     $boundary = '--' . $boundary;
154     $mail{body} = <<END_OF_BODY;
155 $boundary
156 MIME-Version: 1.0
157 Content-Type: text/plain; charset="UTF-8"
158 Content-Transfer-Encoding: quoted-printable
159
160 $email_header
161 $body
162 $boundary
163 Content-Type: application/octet-stream; name="basket.iso2709"
164 Content-Transfer-Encoding: base64
165 Content-Disposition: attachment; filename="basket.iso2709"
166
167 $isofile
168 $boundary--
169 END_OF_BODY
170
171     # Sending mail (if not empty basket)
172     if ( defined($iso2709) && sendmail %mail ) {
173     # do something if it works....
174         $template->param( SENT      => "1" );
175     }
176     else {
177         # do something if it doesnt work....
178     carp "Error sending mail: empty basket" if !defined($iso2709);
179         carp "Error sending mail: $Mail::Sendmail::error" if $Mail::Sendmail::error;
180         $template->param( error => 1 );
181     }
182     $template->param( email_add => $email_add );
183     output_html_with_http_headers $query, $cookie, $template->output;
184 }
185 else {
186     $template->param( bib_list => $bib_list );
187     $template->param(
188         url            => "/cgi-bin/koha/opac-sendbasket.pl",
189         suggestion     => C4::Context->preference("suggestion"),
190         virtualshelves => C4::Context->preference("virtualshelves"),
191     );
192     output_html_with_http_headers $query, $cookie, $template->output;
193 }