Bug 14544: Get rid of GetShelfContent
[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
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.
11 #
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.
16 #
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>.
19
20 use strict;
21 use warnings;
22
23 use CGI qw ( -utf8 );
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 use Koha::Email;
37 use Koha::Virtualshelves;
38
39 my $query = new CGI;
40
41 my ( $template, $borrowernumber, $cookie ) = get_template_and_user (
42     {
43         template_name   => "opac-sendshelfform.tt",
44         query           => $query,
45         type            => "opac",
46         authnotrequired => 0,
47     }
48 );
49
50 my $shelfid = $query->param('shelfid');
51 my $email   = $query->param('email');
52
53 my $dbh          = C4::Context->dbh;
54
55 my $shelf = Koha::Virtualshelves->find( $shelfid );
56 if ( $shelf->can_be_viewed( $borrowernumber ) ) {
57
58 if ( $email ) {
59     my $message = Koha::Email->new();
60     my $comment    = $query->param('comment');
61
62     my %mail = $message->create_message_headers(
63         {
64             to => $email,
65         }
66     );
67
68     my ( $template2, $borrowernumber, $cookie ) = get_template_and_user(
69         {
70             template_name   => "opac-sendshelf.tt",
71             query           => $query,
72             type            => "opac",
73             authnotrequired => 1,
74         }
75     );
76
77     my $shelf = Koha::Virtualshelves->find( $shelfid );
78     my $contents = $shelf->get_contents;
79     my $marcflavour         = C4::Context->preference('marcflavour');
80     my $iso2709;
81     my @results;
82
83     while ( my $content = $contents->next ) {
84         my $biblionumber = $content->biblionumber->biblionumber;
85         my $fw               = GetFrameworkCode($biblionumber);
86         my $dat              = GetBiblioData($biblionumber);
87         my $record           = GetMarcBiblio($biblionumber, 1);
88         my $marcnotesarray   = GetMarcNotes( $record, $marcflavour );
89         my $marcauthorsarray = GetMarcAuthors( $record, $marcflavour );
90         my $marcsubjctsarray = GetMarcSubjects( $record, $marcflavour );
91         my $subtitle         = GetRecordValue('subtitle', $record, $fw);
92
93         my @items = GetItemsInfo( $biblionumber );
94
95         $dat->{ISBN}           = GetMarcISBN($record, $marcflavour);
96         $dat->{MARCNOTES}      = $marcnotesarray;
97         $dat->{MARCSUBJCTS}    = $marcsubjctsarray;
98         $dat->{MARCAUTHORS}    = $marcauthorsarray;
99         $dat->{'biblionumber'} = $biblionumber;
100         $dat->{ITEM_RESULTS}   = \@items;
101         $dat->{subtitle}       = $subtitle;
102         $dat->{HASAUTHORS}     = $dat->{'author'} || @$marcauthorsarray;
103
104         $iso2709 .= $record->as_usmarc();
105
106         push( @results, $dat );
107     }
108
109     my $user = GetMember(borrowernumber => $borrowernumber);
110
111     $template2->param(
112         BIBLIO_RESULTS => \@results,
113         comment        => $comment,
114         shelfname      => $shelf->shelfname,
115         firstname      => $user->{firstname},
116         surname        => $user->{surname},
117     );
118
119     # Getting template result
120     my $template_res = $template2->output();
121     my $body;
122
123     # Analysing information and getting mail properties
124     if ( $template_res =~ /<SUBJECT>(.*)<END_SUBJECT>/s ) {
125         $mail{subject} = $1;
126         $mail{subject} =~ s|\n?(.*)\n?|$1|;
127     }
128     else { $mail{'subject'} = "no subject"; }
129     $mail{subject} = Encode::encode("UTF-8", $mail{subject});
130
131     my $email_header = "";
132     if ( $template_res =~ /<HEADER>(.*)<END_HEADER>/s ) {
133         $email_header = $1;
134         $email_header =~ s|\n?(.*)\n?|$1|;
135         $email_header = encode_qp(Encode::encode("UTF-8", $email_header));
136     }
137
138     my $email_file = "list.txt";
139     if ( $template_res =~ /<FILENAME>(.*)<END_FILENAME>/s ) {
140         $email_file = $1;
141         $email_file =~ s|\n?(.*)\n?|$1|;
142     }
143
144     if ( $template_res =~ /<MESSAGE>(.*)<END_MESSAGE>/s ) {
145         $body = $1;
146         $body =~ s|\n?(.*)\n?|$1|;
147         $body = encode_qp(Encode::encode("UTF-8", $body));
148     }
149
150     my $boundary = "====" . time() . "====";
151
152     # We set and put the multipart content
153     $mail{'content-type'} = "multipart/mixed; boundary=\"$boundary\"";
154
155     my $isofile = encode_base64(encode("UTF-8", $iso2709));
156     $boundary = '--' . $boundary;
157
158     $mail{body} = <<END_OF_BODY;
159 $boundary
160 MIME-Version: 1.0
161 Content-Type: text/plain; charset="utf-8"
162 Content-Transfer-Encoding: quoted-printable
163
164 $email_header
165 $body
166 $boundary
167 Content-Type: application/octet-stream; name="list.iso2709"
168 Content-Transfer-Encoding: base64
169 Content-Disposition: attachment; filename="list.iso2709"
170
171 $isofile
172 $boundary--
173 END_OF_BODY
174
175     # Sending mail
176     if ( sendmail %mail ) {
177         # do something if it works....
178         $template->param( SENT      => "1" );
179     }
180     else {
181         # do something if it doesnt work....
182         carp "Error sending mail: $Mail::Sendmail::error \n";
183         $template->param( error => 1 );
184     }
185
186     $template->param( email => $email );
187     output_html_with_http_headers $query, $cookie, $template->output;
188
189
190 }else{
191     $template->param( shelfid => $shelfid,
192                       url     => "/cgi-bin/koha/opac-sendshelf.pl",
193                     );
194     output_html_with_http_headers $query, $cookie, $template->output;
195 }
196
197 } else {
198     $template->param( invalidlist => 1,
199                       url     => "/cgi-bin/koha/opac-sendshelf.pl",
200     );
201     output_html_with_http_headers $query, $cookie, $template->output;
202 }