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