3 # Copyright 2009 BibLibre
5 # This file is part of Koha.
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
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.
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.
24 use Encode
qw(decode encode);
28 use MIME
::QuotedPrint
;
34 use C4
::VirtualShelves
;
39 my ( $template, $borrowernumber, $cookie ) = get_template_and_user
(
41 template_name
=> "virtualshelves/sendshelfform.tt",
45 flagsrequired
=> { catalogue
=> 1 },
49 my $shelfid = $query->param('shelfid');
50 my $email = $query->param('email');
52 my $dbh = C4
::Context
->dbh;
55 my $comment = $query->param('comment');
56 my $message = Koha
::Email
->new();
57 my %mail = $message->create_message_headers(
63 my ( $template2, $borrowernumber, $cookie ) = get_template_and_user
(
65 template_name
=> "virtualshelves/sendshelf.tt",
69 flagsrequired
=> { catalogue
=> 1 },
73 my @shelf = GetShelf
($shelfid);
74 my ( $items, $totitems ) = GetShelfContents
($shelfid);
75 my $marcflavour = C4
::Context
->preference('marcflavour');
79 # retrieve biblios from shelf
80 foreach my $biblio (@
$items) {
81 my $biblionumber = $biblio->{biblionumber
};
82 my $fw = GetFrameworkCode
($biblionumber);
83 my $dat = GetBiblioData
($biblionumber);
84 my $record = GetMarcBiblio
($biblionumber);
85 my $marcnotesarray = GetMarcNotes
( $record, $marcflavour );
86 my $marcauthorsarray = GetMarcAuthors
( $record, $marcflavour );
87 my $marcsubjctsarray = GetMarcSubjects
( $record, $marcflavour );
88 my $subtitle = GetRecordValue
( 'subtitle', $record, $fw );
90 my @items = GetItemsInfo
($biblionumber);
92 $dat->{MARCNOTES
} = $marcnotesarray;
93 $dat->{MARCSUBJCTS
} = $marcsubjctsarray;
94 $dat->{MARCAUTHORS
} = $marcauthorsarray;
95 $dat->{'biblionumber'} = $biblionumber;
96 $dat->{ITEM_RESULTS
} = \
@items;
97 $dat->{subtitle
} = $subtitle;
99 $iso2709 .= $record->as_usmarc();
101 push( @results, $dat );
104 if ( C4
::Context
->preference('OPACBaseURL') ) {
106 OPACBaseURL
=> C4
::Context
->preference('OPACBaseURL') );
110 BIBLIO_RESULTS
=> \
@results,
111 email_sender
=> $mail{'from'},
113 shelfname
=> $shelf[1],
116 # Getting template result
117 my $template_res = $template2->output();
120 # Analysing information and getting mail properties
121 if ( $template_res =~ /<SUBJECT>(.*)<END_SUBJECT>/s ) {
123 $mail{subject
} =~ s
|\n?
(.*)\n?
|$1|;
125 else { $mail{'subject'} = "no subject"; }
127 my $email_header = "";
128 if ( $template_res =~ /<HEADER>(.*)<END_HEADER>/s ) {
130 $email_header =~ s
|\n?
(.*)\n?
|$1|;
131 $email_header = encode_qp
($email_header);
134 my $email_file = "list.txt";
135 if ( $template_res =~ /<FILENAME>(.*)<END_FILENAME>/s ) {
137 $email_file =~ s
|\n?
(.*)\n?
|$1|;
140 if ( $template_res =~ /<MESSAGE>(.*)<END_MESSAGE>/s ) {
142 $body =~ s
|\n?
(.*)\n?
|$1|;
143 $body = encode_qp
($body);
146 my $boundary = "====" . time() . "====";
148 # We set and put the multipart content
149 $mail{'content-type'} = "multipart/mixed; boundary=\"$boundary\"";
151 my $isofile = encode_base64
( encode
( "UTF-8", $iso2709 ) );
152 $boundary = '--' . $boundary;
154 $mail{body
} = <<END_OF_BODY;
156 Content-Type: text/plain; charset="utf-8"
157 Content-Transfer-Encoding: quoted-printable
162 Content-Type: application/octet-stream; name="shelf.iso2709"
163 Content-Transfer-Encoding: base64
164 Content-Disposition: attachment; filename="shelf.iso2709"
171 if ( sendmail %mail ) {
173 # do something if it works....
174 $template->param( SENT => "1" );
177 # do something if it doesnt work....
178 carp "Error sending mail: $Mail::Sendmail::error \n";
179 $template->param( error => 1 );
182 $template->param( email => $email );
183 output_html_with_http_headers $query, $cookie, $template->output;
189 url => "/cgi-bin/koha/virtualshelves/sendshelf.pl",
191 output_html_with_http_headers $query, $cookie, $template->output;