Bug 14004: Add ability to temporarily disable JS/CSS sysprefs
[koha.git] / virtualshelves / sendshelf.pl
1 #!/usr/bin/perl
2
3 # Copyright 2009 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 Modern::Perl;
21
22 use CGI qw ( -utf8 );
23 use Encode qw( encode );
24 use Carp;
25
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 Koha::Email;
34 use Koha::Virtualshelves;
35
36 my $query = new CGI;
37
38 my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
39     {
40         template_name   => "virtualshelves/sendshelfform.tt",
41         query           => $query,
42         type            => "intranet",
43         flagsrequired   => { catalogue => 1 },
44     }
45 );
46
47 my $shelfid = $query->param('shelfid');
48 my $email   = $query->param('email');
49
50 my $dbh = C4::Context->dbh;
51
52 if ($email) {
53     my $comment = $query->param('comment');
54     my $message = Koha::Email->new();
55     my %mail    = $message->create_message_headers(
56         {
57             to => $email
58         }
59     );
60
61     my ( $template2, $borrowernumber, $cookie ) = get_template_and_user(
62         {
63         template_name   => "virtualshelves/sendshelf.tt",
64         query           => $query,
65         type            => "intranet",
66         flagsrequired   => { catalogue => 1 },
67         }
68     );
69
70     my $shelf = Koha::Virtualshelves->find( $shelfid );
71     my $contents = $shelf->get_contents;
72     my $marcflavour = C4::Context->preference('marcflavour');
73     my $iso2709;
74     my @results;
75
76     while ( my $content = $contents->next ) {
77         my $biblionumber     = $content->biblionumber;
78         my $dat              = GetBiblioData($biblionumber);
79         my $record           = GetMarcBiblio({
80             biblionumber => $biblionumber,
81             embed_items  => 1 });
82         my $marcauthorsarray = GetMarcAuthors( $record, $marcflavour );
83         my $marcsubjctsarray = GetMarcSubjects( $record, $marcflavour );
84
85         my @items = GetItemsInfo($biblionumber);
86
87         $dat->{ISBN}           = GetMarcISBN($record, $marcflavour);
88         $dat->{MARCSUBJCTS}    = $marcsubjctsarray;
89         $dat->{MARCAUTHORS}    = $marcauthorsarray;
90         $dat->{'biblionumber'} = $biblionumber;
91         $dat->{ITEM_RESULTS}   = \@items;
92         $dat->{HASAUTHORS}     = $dat->{'author'} || @$marcauthorsarray;
93
94         $iso2709 .= $record->as_usmarc();
95
96         push( @results, $dat );
97     }
98
99     $template2->param(
100         BIBLIO_RESULTS => \@results,
101         comment        => $comment,
102         shelfname      => $shelf->shelfname,
103     );
104
105     # Getting template result
106     my $template_res = $template2->output();
107     my $body;
108
109     # Analysing information and getting mail properties
110     if ( $template_res =~ /<SUBJECT>(.*)<END_SUBJECT>/s ) {
111         $mail{subject} = $1;
112         $mail{subject} =~ s|\n?(.*)\n?|$1|;
113     }
114     else { $mail{'subject'} = "no subject"; }
115     $mail{subject} = encode( 'MIME-Header', $mail{subject} );
116
117     my $email_header = "";
118     if ( $template_res =~ /<HEADER>(.*)<END_HEADER>/s ) {
119         $email_header = $1;
120         $email_header =~ s|\n?(.*)\n?|$1|;
121         $email_header = encode_qp(Encode::encode("UTF-8", $email_header));
122     }
123
124     my $email_file = "list.txt";
125     if ( $template_res =~ /<FILENAME>(.*)<END_FILENAME>/s ) {
126         $email_file = $1;
127         $email_file =~ s|\n?(.*)\n?|$1|;
128     }
129
130     if ( $template_res =~ /<MESSAGE>(.*)<END_MESSAGE>/s ) {
131         $body = $1;
132         $body =~ s|\n?(.*)\n?|$1|;
133         $body = encode_qp(Encode::encode("UTF-8", $body));
134     }
135
136     my $boundary = "====" . time() . "====";
137
138     # We set and put the multipart content
139     $mail{'content-type'} = "multipart/mixed; boundary=\"$boundary\"";
140
141     my $isofile = encode_base64( encode( "UTF-8", $iso2709 ) );
142     $boundary = '--' . $boundary;
143
144     $mail{body} = <<END_OF_BODY;
145 $boundary
146 Content-Type: text/plain; charset="utf-8"
147 Content-Transfer-Encoding: quoted-printable
148
149 $email_header
150 $body
151 $boundary
152 Content-Type: application/octet-stream; name="shelf.iso2709"
153 Content-Transfer-Encoding: base64
154 Content-Disposition: attachment; filename="shelf.iso2709"
155
156 $isofile
157 $boundary--
158 END_OF_BODY
159
160     # Sending mail
161     if ( sendmail %mail ) {
162
163         # do something if it works....
164         $template->param( SENT => "1" );
165     }
166     else {
167         # do something if it doesn't 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(
178         shelfid => $shelfid,
179         url     => "/cgi-bin/koha/virtualshelves/sendshelf.pl",
180     );
181     output_html_with_http_headers $query, $cookie, $template->output;
182 }