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
;
36 use Koha
::Virtualshelves
;
40 # if virtualshelves is disabled, leave immediately
41 if ( ! C4
::Context
->preference('virtualshelves') ) {
42 print $query->redirect("/cgi-bin/koha/errors/404.pl");
46 my ( $template, $borrowernumber, $cookie ) = get_template_and_user
(
48 template_name
=> "opac-sendshelfform.tt",
55 my $shelfid = $query->param('shelfid');
56 my $email = $query->param('email');
58 my $dbh = C4
::Context
->dbh;
60 my $shelf = Koha
::Virtualshelves
->find( $shelfid );
61 if ( $shelf and $shelf->can_be_viewed( $borrowernumber ) ) {
64 my $message = Koha
::Email
->new();
65 my $comment = $query->param('comment');
67 my %mail = $message->create_message_headers(
73 my ( $template2, $borrowernumber, $cookie ) = get_template_and_user
(
75 template_name
=> "opac-sendshelf.tt",
82 my $shelf = Koha
::Virtualshelves
->find( $shelfid );
83 my $contents = $shelf->get_contents;
84 my $marcflavour = C4
::Context
->preference('marcflavour');
88 while ( my $content = $contents->next ) {
89 my $biblionumber = $content->biblionumber->biblionumber;
90 my $fw = GetFrameworkCode
($biblionumber);
91 my $dat = GetBiblioData
($biblionumber);
92 my $record = GetMarcBiblio
($biblionumber, 1);
93 my $marcauthorsarray = GetMarcAuthors
( $record, $marcflavour );
94 my $marcsubjctsarray = GetMarcSubjects
( $record, $marcflavour );
95 my $subtitle = GetRecordValue
('subtitle', $record, $fw);
97 my @items = GetItemsInfo
( $biblionumber );
99 $dat->{ISBN
} = GetMarcISBN
($record, $marcflavour);
100 $dat->{MARCSUBJCTS
} = $marcsubjctsarray;
101 $dat->{MARCAUTHORS
} = $marcauthorsarray;
102 $dat->{'biblionumber'} = $biblionumber;
103 $dat->{ITEM_RESULTS
} = \
@items;
104 $dat->{subtitle
} = $subtitle;
105 $dat->{HASAUTHORS
} = $dat->{'author'} || @
$marcauthorsarray;
107 $iso2709 .= $record->as_usmarc();
109 push( @results, $dat );
112 my $user = GetMember
(borrowernumber
=> $borrowernumber);
115 BIBLIO_RESULTS
=> \
@results,
117 shelfname
=> $shelf->shelfname,
118 firstname
=> $user->{firstname
},
119 surname
=> $user->{surname
},
122 # Getting template result
123 my $template_res = $template2->output();
126 # Analysing information and getting mail properties
127 if ( $template_res =~ /<SUBJECT>(.*)<END_SUBJECT>/s ) {
129 $mail{subject
} =~ s
|\n?
(.*)\n?
|$1|;
131 else { $mail{'subject'} = "no subject"; }
132 $mail{subject
} = Encode
::encode
("UTF-8", $mail{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 = "list.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));
153 my $boundary = "====" . time() . "====";
155 # We set and put the multipart content
156 $mail{'content-type'} = "multipart/mixed; boundary=\"$boundary\"";
158 my $isofile = encode_base64
(encode
("UTF-8", $iso2709));
159 $boundary = '--' . $boundary;
161 $mail{body
} = <<END_OF_BODY;
164 Content-Type: text/plain; charset="utf-8"
165 Content-Transfer-Encoding: quoted-printable
170 Content-Type: application/octet-stream; name="list.iso2709"
171 Content-Transfer-Encoding: base64
172 Content-Disposition: attachment; filename="list.iso2709"
179 if ( sendmail %mail ) {
180 # do something if it works....
181 $template->param( SENT => "1" );
184 # do something if it doesnt work....
185 carp "Error sending mail: $Mail::Sendmail::error \n";
186 $template->param( error => 1 );
193 output_html_with_http_headers $query, $cookie, $template->output;
197 $template->param( shelfid => $shelfid,
198 url => "/cgi-bin/koha/opac-sendshelf.pl",
200 output_html_with_http_headers $query, $cookie, $template->output;
204 $template->param( invalidlist => 1,
205 url => "/cgi-bin/koha/opac-sendshelf.pl",
207 output_html_with_http_headers $query, $cookie, $template->output;