Merge remote-tracking branch 'kc/new/bug_5868' into kcmaster
[koha.git] / opac / opac-sendshelf.pl
1 #!/usr/bin/perl
2
3 # Copyright 2009 SARL Biblibre
4 #
5 # This file is part of Koha.
6 #
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.
11 #
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.
15 #
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.
19
20 use strict;
21 use warnings;
22
23 use CGI;
24 use Encode qw(encode);
25 use Carp;
26
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;
36
37 my $query = new CGI;
38
39 my ( $template, $borrowernumber, $cookie ) = get_template_and_user (
40     {
41         template_name   => "opac-sendshelfform.tmpl",
42         query           => $query,
43         type            => "opac",
44         authnotrequired => 1,
45         flagsrequired   => { borrow => 1 },
46     }
47 );
48
49 my $shelfid = $query->param('shelfid');
50 my $email   = $query->param('email');
51
52 my $dbh          = C4::Context->dbh;
53
54 if ( ShelfPossibleAction( (defined($borrowernumber) ? $borrowernumber : -1), $shelfid, 'view' ) ) {
55
56 if ( $email ) {
57     my $email_from = C4::Context->preference('KohaAdminEmailAddress');
58     my $comment    = $query->param('comment');
59
60     my %mail = (
61         To   => $email,
62         From => $email_from
63     );
64
65     my ( $template2, $borrowernumber, $cookie ) = get_template_and_user(
66         {
67             template_name   => "opac-sendshelf.tmpl",
68             query           => $query,
69             type            => "opac",
70             authnotrequired => 1,
71             flagsrequired   => { borrow => 1 },
72         }
73     );
74
75     my @shelf               = GetShelf($shelfid);
76     my ($items, $totitems)  = GetShelfContents($shelfid);
77     my $marcflavour         = C4::Context->preference('marcflavour');
78     my $iso2709;
79     my @results;
80
81     # retrieve biblios from shelf
82     foreach my $biblio (@$items) {
83         my $biblionumber = $biblio->{biblionumber};
84
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
91         my @items = &GetItemsInfo( $biblionumber, 'opac' );
92
93         $dat->{MARCNOTES}      = $marcnotesarray;
94         $dat->{MARCSUBJCTS}    = $marcsubjctsarray;
95         $dat->{MARCAUTHORS}    = $marcauthorsarray;
96         $dat->{'biblionumber'} = $biblionumber;
97         $dat->{ITEM_RESULTS}   = \@items;
98
99         $iso2709 .= $record->as_usmarc();
100
101         push( @results, $dat );
102     }
103
104     my $user = GetMember(borrowernumber => $borrowernumber); 
105
106     $template2->param(
107         BIBLIO_RESULTS => \@results,
108         email_sender   => $email_from,
109         comment        => $comment,
110         shelfname      => $shelf[1],
111         firstname      => $user->{firstname},
112         surname        => $user->{surname},
113     );
114
115     # Getting template result
116     my $template_res = $template2->output();
117     my $body;
118
119     # Analysing information and getting mail properties
120     if ( $template_res =~ /<SUBJECT>\n(.*)\n<END_SUBJECT>/s ) {
121         $mail{'subject'} = $1;
122     }
123     else { $mail{'subject'} = "no subject"; }
124
125     my $email_header = "";
126     if ( $template_res =~ /<HEADER>\n(.*)\n<END_HEADER>/s ) {
127         $email_header = $1;
128     }
129
130     my $email_file = "basket.txt";
131     if ( $template_res =~ /<FILENAME>\n(.*)\n<END_FILENAME>/s ) {
132         $email_file = $1;
133     }
134
135     if ( $template_res =~ /<MESSAGE>\n(.*)\n<END_MESSAGE>/s ) { $body = encode_qp($1); }
136
137     my $boundary = "====" . time() . "====";
138
139     # We set and put the multipart content
140     $mail{'content-type'} = "multipart/mixed; boundary=\"$boundary\"";
141
142     my $isofile = encode_base64(encode("UTF-8", $iso2709));
143     $boundary = '--' . $boundary;
144
145     $mail{body} = <<END_OF_BODY;
146 $boundary
147 Content-Type: text/plain; charset="utf-8"
148 Content-Transfer-Encoding: quoted-printable
149
150 $email_header
151 $body
152 $boundary
153 Content-Type: application/octet-stream; name="shelf.iso2709"
154 Content-Transfer-Encoding: base64
155 Content-Disposition: attachment; filename="shelf.iso2709"
156
157 $isofile
158 $boundary--
159 END_OF_BODY
160
161     # Sending mail
162     if ( sendmail %mail ) {
163         # do something if it works....
164         $template->param( SENT      => "1" );
165     }
166     else {
167         # do something if it doesnt work....
168         carp "Error sending mail: $Mail::Sendmail::error \n";
169         $template->param( error => 1 );
170     }
171
172     $template->param( email => $email );
173     output_html_with_http_headers $query, $cookie, $template->output;
174
175
176 }else{
177     $template->param( shelfid => $shelfid,
178                       url     => "/cgi-bin/koha/opac-sendshelf.pl",
179                     );
180     output_html_with_http_headers $query, $cookie, $template->output;
181 }
182
183 } else {
184     $template->param( invalidlist => 1,
185                       url     => "/cgi-bin/koha/opac-sendshelf.pl",
186     );
187     output_html_with_http_headers $query, $cookie, $template->output;
188 }