Bug 21637: Fixed upercase letter in EasyAnalyticalRecords syspref
[koha.git] / opac / opac-sendshelf.pl
bloba5b393e5e443a0eb7763b4968164bfac4601ec0f
1 #!/usr/bin/perl
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>.
20 use Modern::Perl;
22 use CGI qw ( -utf8 );
23 use Encode qw( encode );
24 use Carp;
26 use Mail::Sendmail;
27 use MIME::QuotedPrint;
28 use MIME::Base64;
29 use C4::Auth;
30 use C4::Biblio;
31 use C4::Items;
32 use C4::Output;
33 use C4::Members;
34 use Koha::Email;
35 use Koha::Patrons;
36 use Koha::Virtualshelves;
38 my $query = new CGI;
40 # if virtualshelves is disabled, leave immediately
41 if ( ! C4::Context->preference('virtualshelves') ) {
42 print $query->redirect("/cgi-bin/koha/errors/404.pl");
43 exit;
46 my ( $template, $borrowernumber, $cookie ) = get_template_and_user (
48 template_name => "opac-sendshelfform.tt",
49 query => $query,
50 type => "opac",
51 authnotrequired => 0,
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 ) ) {
63 if ( $email ) {
64 my $message = Koha::Email->new();
65 my $comment = $query->param('comment');
67 my %mail = $message->create_message_headers(
69 to => $email,
73 my ( $template2, $borrowernumber, $cookie ) = get_template_and_user(
75 template_name => "opac-sendshelf.tt",
76 query => $query,
77 type => "opac",
78 authnotrequired => 1,
82 my $patron = Koha::Patrons->find( $borrowernumber );
83 my $borcat = $patron ? $patron->categorycode : q{};
85 my $shelf = Koha::Virtualshelves->find( $shelfid );
86 my $contents = $shelf->get_contents;
87 my $marcflavour = C4::Context->preference('marcflavour');
88 my $iso2709;
89 my @results;
91 while ( my $content = $contents->next ) {
92 my $biblionumber = $content->biblionumber;
93 my $record = GetMarcBiblio({
94 biblionumber => $biblionumber,
95 embed_items => 1,
96 opac => 1,
97 borcat => $borcat });
98 next unless $record;
99 my $fw = GetFrameworkCode($biblionumber);
100 my $dat = GetBiblioData($biblionumber);
102 my $marcauthorsarray = GetMarcAuthors( $record, $marcflavour );
103 my $marcsubjctsarray = GetMarcSubjects( $record, $marcflavour );
104 my $subtitle = GetRecordValue('subtitle', $record, $fw);
106 my @items = GetItemsInfo( $biblionumber );
108 $dat->{ISBN} = GetMarcISBN($record, $marcflavour);
109 $dat->{MARCSUBJCTS} = $marcsubjctsarray;
110 $dat->{MARCAUTHORS} = $marcauthorsarray;
111 $dat->{'biblionumber'} = $biblionumber;
112 $dat->{ITEM_RESULTS} = \@items;
113 $dat->{subtitle} = $subtitle;
114 $dat->{HASAUTHORS} = $dat->{'author'} || @$marcauthorsarray;
116 $iso2709 .= $record->as_usmarc();
118 push( @results, $dat );
121 $template2->param(
122 BIBLIO_RESULTS => \@results,
123 comment => $comment,
124 shelfname => $shelf->shelfname,
125 firstname => $patron->firstname,
126 surname => $patron->surname,
129 # Getting template result
130 my $template_res = $template2->output();
131 my $body;
133 # Analysing information and getting mail properties
134 if ( $template_res =~ /<SUBJECT>(.*)<END_SUBJECT>/s ) {
135 $mail{subject} = $1;
136 $mail{subject} =~ s|\n?(.*)\n?|$1|;
138 else { $mail{'subject'} = "no subject"; }
139 $mail{subject} = encode('MIME-Header', $mail{subject});
141 my $email_header = "";
142 if ( $template_res =~ /<HEADER>(.*)<END_HEADER>/s ) {
143 $email_header = $1;
144 $email_header =~ s|\n?(.*)\n?|$1|;
145 $email_header = encode_qp(Encode::encode("UTF-8", $email_header));
148 my $email_file = "list.txt";
149 if ( $template_res =~ /<FILENAME>(.*)<END_FILENAME>/s ) {
150 $email_file = $1;
151 $email_file =~ s|\n?(.*)\n?|$1|;
154 if ( $template_res =~ /<MESSAGE>(.*)<END_MESSAGE>/s ) {
155 $body = $1;
156 $body =~ s|\n?(.*)\n?|$1|;
157 $body = encode_qp(Encode::encode("UTF-8", $body));
160 my $boundary = "====" . time() . "====";
162 # We set and put the multipart content
163 $mail{'content-type'} = "multipart/mixed; boundary=\"$boundary\"";
165 my $isofile = encode_base64(encode("UTF-8", $iso2709));
166 $boundary = '--' . $boundary;
168 $mail{body} = <<END_OF_BODY;
169 $boundary
170 MIME-Version: 1.0
171 Content-Type: text/plain; charset="utf-8"
172 Content-Transfer-Encoding: quoted-printable
174 $email_header
175 $body
176 $boundary
177 Content-Type: application/octet-stream; name="list.iso2709"
178 Content-Transfer-Encoding: base64
179 Content-Disposition: attachment; filename="list.iso2709"
181 $isofile
182 $boundary--
183 END_OF_BODY
185 # Sending mail
186 if ( sendmail %mail ) {
187 # do something if it works....
188 $template->param( SENT => "1" );
190 else {
191 # do something if it doesn't work....
192 carp "Error sending mail: $Mail::Sendmail::error \n";
193 $template->param( error => 1 );
196 $template->param(
197 shelfid => $shelfid,
198 email => $email,
200 output_html_with_http_headers $query, $cookie, $template->output;
203 }else{
204 $template->param( shelfid => $shelfid,
205 url => "/cgi-bin/koha/opac-sendshelf.pl",
207 output_html_with_http_headers $query, $cookie, $template->output;
210 } else {
211 $template->param( invalidlist => 1,
212 url => "/cgi-bin/koha/opac-sendshelf.pl",
214 output_html_with_http_headers $query, $cookie, $template->output;