3 # Copyright 2009 SARL Biblibre
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>.
24 use Encode
qw( encode );
28 use MIME
::QuotedPrint
;
34 use C4
::VirtualShelves
;
40 my ( $template, $borrowernumber, $cookie ) = get_template_and_user
(
42 template_name
=> "opac-sendshelfform.tt",
49 my $shelfid = $query->param('shelfid');
50 my $email = $query->param('email');
52 my $dbh = C4
::Context
->dbh;
54 if ( ShelfPossibleAction
( (defined($borrowernumber) ?
$borrowernumber : -1), $shelfid, 'view' ) ) {
57 my $message = Koha
::Email
->new();
58 my $comment = $query->param('comment');
60 my %mail = $message->create_message_headers(
66 my ( $template2, $borrowernumber, $cookie ) = get_template_and_user
(
68 template_name
=> "opac-sendshelf.tt",
75 my @shelf = GetShelf
($shelfid);
76 my ($items, $totitems) = GetShelfContents
($shelfid);
77 my $marcflavour = C4
::Context
->preference('marcflavour');
81 # retrieve biblios from shelf
82 foreach my $biblio (@
$items) {
83 my $biblionumber = $biblio->{biblionumber
};
84 my $fw = GetFrameworkCode
($biblionumber);
85 my $dat = GetBiblioData
($biblionumber);
86 my $record = GetMarcBiblio
($biblionumber, 1);
87 my $marcnotesarray = GetMarcNotes
( $record, $marcflavour );
88 my $marcauthorsarray = GetMarcAuthors
( $record, $marcflavour );
89 my $marcsubjctsarray = GetMarcSubjects
( $record, $marcflavour );
90 my $subtitle = GetRecordValue
('subtitle', $record, $fw);
92 my @items = GetItemsInfo
( $biblionumber );
94 $dat->{ISBN
} = GetMarcISBN
($record, $marcflavour);
95 $dat->{MARCNOTES
} = $marcnotesarray;
96 $dat->{MARCSUBJCTS
} = $marcsubjctsarray;
97 $dat->{MARCAUTHORS
} = $marcauthorsarray;
98 $dat->{'biblionumber'} = $biblionumber;
99 $dat->{ITEM_RESULTS
} = \
@items;
100 $dat->{subtitle
} = $subtitle;
101 $dat->{HASAUTHORS
} = $dat->{'author'} || @
$marcauthorsarray;
103 $iso2709 .= $record->as_usmarc();
105 push( @results, $dat );
108 my $user = GetMember
(borrowernumber
=> $borrowernumber);
111 BIBLIO_RESULTS
=> \
@results,
113 shelfname
=> $shelf[1],
114 firstname
=> $user->{firstname
},
115 surname
=> $user->{surname
},
118 # Getting template result
119 my $template_res = $template2->output();
122 # Analysing information and getting mail properties
123 if ( $template_res =~ /<SUBJECT>(.*)<END_SUBJECT>/s ) {
125 $mail{subject
} =~ s
|\n?
(.*)\n?
|$1|;
127 else { $mail{'subject'} = "no subject"; }
128 $mail{subject
} = Encode
::encode
("UTF-8", $mail{subject
});
130 my $email_header = "";
131 if ( $template_res =~ /<HEADER>(.*)<END_HEADER>/s ) {
133 $email_header =~ s
|\n?
(.*)\n?
|$1|;
134 $email_header = encode_qp
(Encode
::encode
("UTF-8", $email_header));
137 my $email_file = "list.txt";
138 if ( $template_res =~ /<FILENAME>(.*)<END_FILENAME>/s ) {
140 $email_file =~ s
|\n?
(.*)\n?
|$1|;
143 if ( $template_res =~ /<MESSAGE>(.*)<END_MESSAGE>/s ) {
145 $body =~ s
|\n?
(.*)\n?
|$1|;
146 $body = encode_qp
(Encode
::encode
("UTF-8", $body));
149 my $boundary = "====" . time() . "====";
151 # We set and put the multipart content
152 $mail{'content-type'} = "multipart/mixed; boundary=\"$boundary\"";
154 my $isofile = encode_base64
(encode
("UTF-8", $iso2709));
155 $boundary = '--' . $boundary;
157 $mail{body
} = <<END_OF_BODY;
160 Content-Type: text/plain; charset="utf-8"
161 Content-Transfer-Encoding: quoted-printable
166 Content-Type: application/octet-stream; name="list.iso2709"
167 Content-Transfer-Encoding: base64
168 Content-Disposition: attachment; filename="list.iso2709"
175 if ( sendmail %mail ) {
176 # do something if it works....
177 $template->param( SENT => "1" );
180 # do something if it doesnt work....
181 carp "Error sending mail: $Mail::Sendmail::error \n";
182 $template->param( error => 1 );
185 $template->param( email => $email );
186 output_html_with_http_headers $query, $cookie, $template->output;
190 $template->param( shelfid => $shelfid,
191 url => "/cgi-bin/koha/opac-sendshelf.pl",
193 output_html_with_http_headers $query, $cookie, $template->output;
197 $template->param( invalidlist => 1,
198 url => "/cgi-bin/koha/opac-sendshelf.pl",
200 output_html_with_http_headers $query, $cookie, $template->output;