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);
39 my ( $template, $borrowernumber, $cookie ) = get_template_and_user
(
41 template_name
=> "opac-sendbasketform.tt",
47 my $bib_list = $query->param('bib_list') || '';
48 my $email_add = $query->param('email_add');
50 my $dbh = C4
::Context
->dbh;
53 die "Wrong CSRF token" unless Koha
::Token
->new->check_csrf({
54 session_id
=> scalar $query->cookie('CGISESSID'),
55 token
=> scalar $query->param('csrf_token'),
57 my $patron = Koha
::Patrons
->find( $borrowernumber );
58 my $borcat = $patron ?
$patron->categorycode : q{};
59 my $user_email = $patron->first_valid_email_address
60 || C4
::Context
->preference('KohaAdminEmailAddress');
62 my $email_replyto = $patron->firstname . " " . $patron->surname . " <$user_email>";
63 my $comment = $query->param('comment');
65 # Since we are already logged in, no need to check credentials again
66 # when loading a second template.
67 my $template2 = C4
::Templates
::gettemplate
(
68 'opac-sendbasket.tt', 'opac', $query,
71 my @bibs = split( /\//, $bib_list );
74 my $marcflavour = C4
::Context
->preference('marcflavour');
75 foreach my $biblionumber (@bibs) {
76 $template2->param( biblionumber
=> $biblionumber );
78 my $dat = GetBiblioData
($biblionumber);
80 my $record = GetMarcBiblio
({
81 biblionumber
=> $biblionumber,
85 my $marcauthorsarray = GetMarcAuthors
( $record, $marcflavour );
86 my $marcsubjctsarray = GetMarcSubjects
( $record, $marcflavour );
88 my @items = GetItemsInfo
( $biblionumber );
91 if($dat->{'author'} || @
$marcauthorsarray) {
96 $dat->{MARCSUBJCTS
} = $marcsubjctsarray;
97 $dat->{MARCAUTHORS
} = $marcauthorsarray;
98 $dat->{HASAUTHORS
} = $hasauthors;
99 $dat->{'biblionumber'} = $biblionumber;
100 $dat->{ITEM_RESULTS
} = \
@items;
102 $iso2709 .= $record->as_usmarc();
104 push( @results, $dat );
107 my $resultsarray = \
@results;
110 BIBLIO_RESULTS
=> $resultsarray,
112 firstname
=> $patron->firstname,
113 surname
=> $patron->surname,
116 # Getting template result
117 my $template_res = $template2->output();
120 # Analysing information and getting mail properties
122 if ( $template_res =~ /\<SUBJECT\>(?<subject>.*)\<END_SUBJECT\>/s ) {
123 $subject = $+{subject
};
124 $subject =~ s
|\n?
(.*)\n?
|$1|;
127 $subject = "no subject";
130 my $email_header = "";
131 if ( $template_res =~ /<HEADER>(.*)<END_HEADER>/s ) {
133 $email_header =~ s
|\n?
(.*)\n?
|$1|;
136 if ( $template_res =~ /<MESSAGE>(.*)<END_MESSAGE>/s ) {
138 $body =~ s
|\n?
(.*)\n?
|$1|;
141 my $THE_body = <<END_OF_BODY;
146 if ( !defined $iso2709 ) {
147 carp "Error sending mail: empty basket";
148 $template->param( error => 1 );
152 # if you want to use the KohaAdmin address as from, that is the default no need to set it
153 my $email = Koha::Email->create({
155 reply_to => $email_replyto,
158 $email->header( 'X-Abuse-Report' => C4::Context->preference('KohaAdminEmailAddress') );
159 $email->text_body( $THE_body );
161 Encode::encode( "UTF-8", $iso2709 ),
162 content_type => 'application/octet-stream',
163 name => 'basket.iso2709',
164 disposition => 'attachment',
166 my $library = $patron->library;
167 $email->transport( $library->smtp_server->transport );
169 $template->param( SENT => "1" );
172 carp "Error sending mail: $_";
173 $template->param( error => 1 );
177 $template->param( email_add => $email_add );
178 output_html_with_http_headers $query, $cookie, $template->output, undef, { force_no_caching => 1 };
181 my $new_session_id = $cookie->value;
183 bib_list => $bib_list,
184 url => "/cgi-bin/koha/opac-sendbasket.pl",
185 suggestion => C4::Context->preference("suggestion"),
186 virtualshelves => C4::Context->preference("virtualshelves"),
187 csrf_token => Koha::Token->new->generate_csrf(
188 { session_id => $new_session_id, } ),
190 output_html_with_http_headers $query, $cookie, $template->output, undef, { force_no_caching => 1 };