Bug 14562: All patrons returned if 1 has a cardnumber set to an empty string (Fix...
[koha.git] / opac / opac-sendbasket.pl
blobee1acf2732984faa5c34d4a9ceb67f6b2258086e
1 #!/usr/bin/perl
3 # Copyright Doxulting 2004
5 # This file is part of Koha.
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.
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.
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>.
20 use strict;
21 use warnings;
23 use CGI;
24 use Encode qw(encode);
25 use Carp;
27 use Mail::Sendmail;
28 use MIME::QuotedPrint;
29 use MIME::Base64;
30 use C4::Biblio;
31 use C4::Items;
32 use C4::Auth;
33 use C4::Output;
34 use C4::Biblio;
35 use C4::Members;
36 use Koha::Email;
38 my $query = new CGI;
40 my ( $template, $borrowernumber, $cookie ) = get_template_and_user (
42 template_name => "opac-sendbasketform.tt",
43 query => $query,
44 type => "opac",
45 authnotrequired => 0,
46 flagsrequired => { borrow => 1 },
50 my $bib_list = $query->param('bib_list');
51 my $email_add = $query->param('email_add');
53 my $dbh = C4::Context->dbh;
55 if ( $email_add ) {
56 my $email = Koha::Email->new();
57 my $user = GetMember(borrowernumber => $borrowernumber);
58 my $user_email = GetFirstValidEmailAddress($borrowernumber)
59 || C4::Context->preference('KohaAdminEmailAddress');
61 my $email_replyto = "$user->{firstname} $user->{surname} <$user_email>";
62 my $comment = $query->param('comment');
64 # if you want to use the KohaAdmin address as from, that is the default no need to set it
65 my %mail = $email->create_message_headers({
66 to => $email_add,
67 replyto => $email_replyto,
68 });
69 $mail{'X-Abuse-Report'} = C4::Context->preference('KohaAdminEmailAddress');
71 my ( $template2, $borrowernumber, $cookie ) = get_template_and_user(
73 template_name => "opac-sendbasket.tt",
74 query => $query,
75 type => "opac",
76 authnotrequired => 0,
77 flagsrequired => { borrow => 1 },
81 my @bibs = split( /\//, $bib_list );
82 my @results;
83 my $iso2709;
84 my $marcflavour = C4::Context->preference('marcflavour');
85 foreach my $biblionumber (@bibs) {
86 $template2->param( biblionumber => $biblionumber );
88 my $dat = GetBiblioData($biblionumber);
89 next unless $dat;
90 my $record = GetMarcBiblio($biblionumber, 1);
91 my $marcnotesarray = GetMarcNotes( $record, $marcflavour );
92 my $marcauthorsarray = GetMarcAuthors( $record, $marcflavour );
93 my $marcsubjctsarray = GetMarcSubjects( $record, $marcflavour );
95 my @items = GetItemsInfo( $biblionumber );
97 my $hasauthors = 0;
98 if($dat->{'author'} || @$marcauthorsarray) {
99 $hasauthors = 1;
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;
110 $iso2709 .= $record->as_usmarc();
112 push( @results, $dat );
115 my $resultsarray = \@results;
117 $template2->param(
118 BIBLIO_RESULTS => $resultsarray,
119 comment => $comment,
120 firstname => $user->{firstname},
121 surname => $user->{surname},
124 # Getting template result
125 my $template_res = $template2->output();
126 my $body;
128 # Analysing information and getting mail properties
130 if ( $template_res =~ /<SUBJECT>(.*)<END_SUBJECT>/s ) {
131 $mail{subject} = $1;
132 $mail{subject} =~ s|\n?(.*)\n?|$1|;
134 else { $mail{'subject'} = "no subject"; }
136 my $email_header = "";
137 if ( $template_res =~ /<HEADER>(.*)<END_HEADER>/s ) {
138 $email_header = $1;
139 $email_header =~ s|\n?(.*)\n?|$1|;
140 $email_header = encode_qp($email_header);
143 my $email_file = "basket.txt";
144 if ( $template_res =~ /<FILENAME>(.*)<END_FILENAME>/s ) {
145 $email_file = $1;
146 $email_file =~ s|\n?(.*)\n?|$1|;
149 if ( $template_res =~ /<MESSAGE>(.*)<END_MESSAGE>/s ) {
150 $body = $1;
151 $body =~ s|\n?(.*)\n?|$1|;
152 $body = encode_qp($body);
155 $mail{body} = $body;
157 my $boundary = "====" . time() . "====";
159 $mail{'content-type'} = "multipart/mixed; boundary=\"$boundary\"";
160 my $isofile = encode_base64(encode("UTF-8", $iso2709));
161 $boundary = '--' . $boundary;
162 $mail{body} = <<END_OF_BODY;
163 $boundary
164 MIME-Version: 1.0
165 Content-Type: text/plain; charset="UTF-8"
166 Content-Transfer-Encoding: quoted-printable
168 $email_header
169 $body
170 $boundary
171 Content-Type: application/octet-stream; name="basket.iso2709"
172 Content-Transfer-Encoding: base64
173 Content-Disposition: attachment; filename="basket.iso2709"
175 $isofile
176 $boundary--
177 END_OF_BODY
179 # Sending mail (if not empty basket)
180 if ( defined($iso2709) && sendmail %mail ) {
181 # do something if it works....
182 $template->param( SENT => "1" );
184 else {
185 # do something if it doesnt work....
186 carp "Error sending mail: empty basket" if !defined($iso2709);
187 carp "Error sending mail: $Mail::Sendmail::error" if $Mail::Sendmail::error;
188 $template->param( error => 1 );
190 $template->param( email_add => $email_add );
191 output_html_with_http_headers $query, $cookie, $template->output;
193 else {
194 $template->param( bib_list => $bib_list );
195 $template->param(
196 url => "/cgi-bin/koha/opac-sendbasket.pl",
197 suggestion => C4::Context->preference("suggestion"),
198 virtualshelves => C4::Context->preference("virtualshelves"),
200 output_html_with_http_headers $query, $cookie, $template->output;