Koha 3.8.0 Translation Update
[koha.git] / opac / opac-sendshelf.pl
blob6e60bc913ad3219c9cf7d7c51db4acff0169eb1a
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 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
10 # version.
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.
20 use strict;
21 use warnings;
23 use CGI;
24 use Encode qw(encode);
25 use Carp;
27 use Mail::Sendmail;
28 use MIME::QuotedPrint;
29 use MIME::Base64;
30 use C4::Auth;
31 use C4::Biblio;
32 use C4::Items;
33 use C4::Output;
34 use C4::VirtualShelves;
35 use C4::Members;
37 my $query = new CGI;
39 my ( $template, $borrowernumber, $cookie ) = get_template_and_user (
41 template_name => "opac-sendshelfform.tmpl",
42 query => $query,
43 type => "opac",
44 authnotrequired => 0,
45 flagsrequired => { borrow => 1 },
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' ) ) {
56 if ( $email ) {
57 my $email_from = C4::Context->preference('KohaAdminEmailAddress');
58 my $comment = $query->param('comment');
60 my %mail = (
61 To => $email,
62 From => $email_from
65 my ( $template2, $borrowernumber, $cookie ) = get_template_and_user(
67 template_name => "opac-sendshelf.tmpl",
68 query => $query,
69 type => "opac",
70 authnotrequired => 1,
71 flagsrequired => { borrow => 1 },
75 my @shelf = GetShelf($shelfid);
76 my ($items, $totitems) = GetShelfContents($shelfid);
77 my $marcflavour = C4::Context->preference('marcflavour');
78 my $iso2709;
79 my @results;
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);
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->{MARCNOTES} = $marcnotesarray;
95 $dat->{MARCSUBJCTS} = $marcsubjctsarray;
96 $dat->{MARCAUTHORS} = $marcauthorsarray;
97 $dat->{'biblionumber'} = $biblionumber;
98 $dat->{ITEM_RESULTS} = \@items;
99 $dat->{subtitle} = $subtitle;
101 $iso2709 .= $record->as_usmarc();
103 push( @results, $dat );
106 my $user = GetMember(borrowernumber => $borrowernumber);
108 if (C4::Context->preference('OPACBaseURL')){
109 $template2->param( OPACBaseURL => C4::Context->preference('OPACBaseURL') );
112 $template2->param(
113 BIBLIO_RESULTS => \@results,
114 email_sender => $email_from,
115 comment => $comment,
116 shelfname => $shelf[1],
117 firstname => $user->{firstname},
118 surname => $user->{surname},
121 # Getting template result
122 my $template_res = $template2->output();
123 my $body;
125 # Analysing information and getting mail properties
126 if ( $template_res =~ /<SUBJECT>\n(.*)\n<END_SUBJECT>/s ) {
127 $mail{'subject'} = $1;
129 else { $mail{'subject'} = "no subject"; }
131 my $email_header = "";
132 if ( $template_res =~ /<HEADER>\n(.*)\n<END_HEADER>/s ) {
133 $email_header = $1;
136 my $email_file = "basket.txt";
137 if ( $template_res =~ /<FILENAME>\n(.*)\n<END_FILENAME>/s ) {
138 $email_file = $1;
141 if ( $template_res =~ /<MESSAGE>\n(.*)\n<END_MESSAGE>/s ) { $body = encode_qp($1); }
143 my $boundary = "====" . time() . "====";
145 # We set and put the multipart content
146 $mail{'content-type'} = "multipart/mixed; boundary=\"$boundary\"";
148 my $isofile = encode_base64(encode("UTF-8", $iso2709));
149 $boundary = '--' . $boundary;
151 $mail{body} = <<END_OF_BODY;
152 $boundary
153 Content-Type: text/plain; charset="utf-8"
154 Content-Transfer-Encoding: quoted-printable
156 $email_header
157 $body
158 $boundary
159 Content-Type: application/octet-stream; name="shelf.iso2709"
160 Content-Transfer-Encoding: base64
161 Content-Disposition: attachment; filename="shelf.iso2709"
163 $isofile
164 $boundary--
165 END_OF_BODY
167 # Sending mail
168 if ( sendmail %mail ) {
169 # do something if it works....
170 $template->param( SENT => "1" );
172 else {
173 # do something if it doesnt work....
174 carp "Error sending mail: $Mail::Sendmail::error \n";
175 $template->param( error => 1 );
178 $template->param( email => $email );
179 output_html_with_http_headers $query, $cookie, $template->output;
182 }else{
183 $template->param( shelfid => $shelfid,
184 url => "/cgi-bin/koha/opac-sendshelf.pl",
186 output_html_with_http_headers $query, $cookie, $template->output;
189 } else {
190 $template->param( invalidlist => 1,
191 url => "/cgi-bin/koha/opac-sendshelf.pl",
193 output_html_with_http_headers $query, $cookie, $template->output;