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