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>.
23 use Encode
qw(encode);
26 use MIME
::QuotedPrint
;
40 my ( $template, $borrowernumber, $cookie ) = get_template_and_user
(
42 template_name
=> "opac-sendbasketform.tt",
49 my $bib_list = $query->param('bib_list') || '';
50 my $email_add = $query->param('email_add');
52 my $dbh = C4
::Context
->dbh;
55 die "Wrong CSRF token" unless Koha
::Token
->new->check_csrf({
56 session_id
=> scalar $query->cookie('CGISESSID'),
57 token
=> scalar $query->param('csrf_token'),
59 my $email = Koha
::Email
->new();
60 my $user = GetMember
(borrowernumber
=> $borrowernumber);
61 my $user_email = GetFirstValidEmailAddress
($borrowernumber)
62 || C4
::Context
->preference('KohaAdminEmailAddress');
64 my $email_replyto = "$user->{firstname} $user->{surname} <$user_email>";
65 my $comment = $query->param('comment');
67 # if you want to use the KohaAdmin address as from, that is the default no need to set it
68 my %mail = $email->create_message_headers({
70 replyto
=> $email_replyto,
72 $mail{'X-Abuse-Report'} = C4
::Context
->preference('KohaAdminEmailAddress');
74 # Since we are already logged in, no need to check credentials again
75 # when loading a second template.
76 my $template2 = C4
::Templates
::gettemplate
(
77 'opac-sendbasket.tt', 'opac', $query,
80 my @bibs = split( /\//, $bib_list );
83 my $marcflavour = C4
::Context
->preference('marcflavour');
84 foreach my $biblionumber (@bibs) {
85 $template2->param( biblionumber
=> $biblionumber );
87 my $dat = GetBiblioData
($biblionumber);
89 my $record = GetMarcBiblio
($biblionumber, 1);
90 my $marcauthorsarray = GetMarcAuthors
( $record, $marcflavour );
91 my $marcsubjctsarray = GetMarcSubjects
( $record, $marcflavour );
93 my @items = GetItemsInfo
( $biblionumber );
96 if($dat->{'author'} || @
$marcauthorsarray) {
101 $dat->{MARCSUBJCTS
} = $marcsubjctsarray;
102 $dat->{MARCAUTHORS
} = $marcauthorsarray;
103 $dat->{HASAUTHORS
} = $hasauthors;
104 $dat->{'biblionumber'} = $biblionumber;
105 $dat->{ITEM_RESULTS
} = \
@items;
107 $iso2709 .= $record->as_usmarc();
109 push( @results, $dat );
112 my $resultsarray = \
@results;
115 BIBLIO_RESULTS
=> $resultsarray,
117 firstname
=> $user->{firstname
},
118 surname
=> $user->{surname
},
121 # Getting template result
122 my $template_res = $template2->output();
125 # Analysing information and getting mail properties
127 if ( $template_res =~ /<SUBJECT>(.*)<END_SUBJECT>/s ) {
129 $mail{subject
} =~ s
|\n?
(.*)\n?
|$1|;
130 $mail{subject
} = Encode
::encode
("UTF-8", $mail{subject
});
132 else { $mail{'subject'} = "no subject"; }
134 my $email_header = "";
135 if ( $template_res =~ /<HEADER>(.*)<END_HEADER>/s ) {
137 $email_header =~ s
|\n?
(.*)\n?
|$1|;
138 $email_header = encode_qp
(Encode
::encode
("UTF-8", $email_header));
141 my $email_file = "basket.txt";
142 if ( $template_res =~ /<FILENAME>(.*)<END_FILENAME>/s ) {
144 $email_file =~ s
|\n?
(.*)\n?
|$1|;
147 if ( $template_res =~ /<MESSAGE>(.*)<END_MESSAGE>/s ) {
149 $body =~ s
|\n?
(.*)\n?
|$1|;
150 $body = encode_qp
(Encode
::encode
("UTF-8", $body));
155 my $boundary = "====" . time() . "====";
157 $mail{'content-type'} = "multipart/mixed; boundary=\"$boundary\"";
158 my $isofile = encode_base64
(encode
("UTF-8", $iso2709));
159 $boundary = '--' . $boundary;
160 $mail{body
} = <<END_OF_BODY;
163 Content-Type: text/plain; charset="UTF-8"
164 Content-Transfer-Encoding: quoted-printable
169 Content-Type: application/octet-stream; name="basket.iso2709"
170 Content-Transfer-Encoding: base64
171 Content-Disposition: attachment; filename="basket.iso2709"
177 # Sending mail (if not empty basket)
178 if ( defined($iso2709) && sendmail %mail ) {
179 # do something if it works....
180 $template->param( SENT => "1" );
183 # do something if it doesnt work....
184 carp "Error sending mail: empty basket" if !defined($iso2709);
185 carp "Error sending mail: $Mail::Sendmail::error" if $Mail::Sendmail::error;
186 $template->param( error => 1 );
188 $template->param( email_add => $email_add );
189 output_html_with_http_headers $query, $cookie, $template->output;
193 bib_list => $bib_list,
194 url => "/cgi-bin/koha/opac-sendbasket.pl",
195 suggestion => C4::Context->preference("suggestion"),
196 virtualshelves => C4::Context->preference("virtualshelves"),
197 csrf_token => Koha::Token->new->generate_csrf(
198 { session_id => scalar $query->cookie('CGISESSID'), } ),
200 output_html_with_http_headers $query, $cookie, $template->output;