Bug 12708 - Unexpected behaviour in IE 9 and lower when using openWindow
[koha.git] / virtualshelves / sendshelf.pl
blob9439609bc9b495edad5becf3dbd758bbd91e0188
1 #!/usr/bin/perl
3 # Copyright 2009 BibLibre
5 # This file is part of Koha.
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.
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.
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.
20 use strict;
21 use warnings;
23 use CGI;
24 use Encode qw(decode encode);
25 use Carp;
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;
36 my $query = new CGI;
38 my ( $template, $borrowernumber, $cookie ) = get_template_and_user (
40 template_name => "virtualshelves/sendshelfform.tt",
41 query => $query,
42 type => "intranet",
43 authnotrequired => 0,
44 flagsrequired => { catalogue => 1 },
48 my $shelfid = $query->param('shelfid');
49 my $email = $query->param('email');
51 my $dbh = C4::Context->dbh;
53 if ( $email ) {
54 my $email_from = C4::Context->preference('KohaAdminEmailAddress');
55 my $comment = $query->param('comment');
57 my %mail = (
58 To => $email,
59 From => $email_from
62 my ( $template2, $borrowernumber, $cookie ) = get_template_and_user(
64 template_name => "virtualshelves/sendshelf.tt",
65 query => $query,
66 type => "intranet",
67 authnotrequired => 0,
68 flagsrequired => { catalogue => 1 },
72 my @shelf = GetShelf($shelfid);
73 my ($items, $totitems) = GetShelfContents($shelfid);
74 my $marcflavour = C4::Context->preference('marcflavour');
75 my $iso2709;
76 my @results;
78 # retrieve biblios from shelf
79 foreach my $biblio (@$items) {
80 my $biblionumber = $biblio->{biblionumber};
81 my $fw = GetFrameworkCode($biblionumber);
82 my $dat = GetBiblioData($biblionumber);
83 my $record = GetMarcBiblio($biblionumber);
84 my $marcnotesarray = GetMarcNotes( $record, $marcflavour );
85 my $marcauthorsarray = GetMarcAuthors( $record, $marcflavour );
86 my $marcsubjctsarray = GetMarcSubjects( $record, $marcflavour );
87 my $subtitle = GetRecordValue('subtitle', $record, $fw);
89 my @items = GetItemsInfo( $biblionumber );
91 $dat->{MARCNOTES} = $marcnotesarray;
92 $dat->{MARCSUBJCTS} = $marcsubjctsarray;
93 $dat->{MARCAUTHORS} = $marcauthorsarray;
94 $dat->{'biblionumber'} = $biblionumber;
95 $dat->{ITEM_RESULTS} = \@items;
96 $dat->{subtitle} = $subtitle;
98 $iso2709 .= $record->as_usmarc();
100 push( @results, $dat );
103 if (C4::Context->preference('OPACBaseURL')){
104 $template2->param( OPACBaseURL => C4::Context->preference('OPACBaseURL') );
107 $template2->param(
108 BIBLIO_RESULTS => \@results,
109 email_sender => $email_from,
110 comment => $comment,
111 shelfname => $shelf[1],
114 # Getting template result
115 my $template_res = $template2->output();
116 my $body;
118 # Analysing information and getting mail properties
119 if ( $template_res =~ /<SUBJECT>(.*)<END_SUBJECT>/s ) {
120 $mail{subject} = $1;
121 $mail{subject} =~ s|\n?(.*)\n?|$1|;
123 else { $mail{'subject'} = "no subject"; }
125 my $email_header = "";
126 if ( $template_res =~ /<HEADER>(.*)<END_HEADER>/s ) {
127 $email_header = $1;
128 $email_header =~ s|\n?(.*)\n?|$1|;
129 $email_header = encode_qp($email_header);
132 my $email_file = "list.txt";
133 if ( $template_res =~ /<FILENAME>(.*)<END_FILENAME>/s ) {
134 $email_file = $1;
135 $email_file =~ s|\n?(.*)\n?|$1|;
138 if ( $template_res =~ /<MESSAGE>(.*)<END_MESSAGE>/s ) {
139 $body = $1;
140 $body =~ s|\n?(.*)\n?|$1|;
141 $body = encode_qp($body);
144 my $boundary = "====" . time() . "====";
146 # We set and put the multipart content
147 $mail{'content-type'} = "multipart/mixed; boundary=\"$boundary\"";
149 my $isofile = encode_base64(encode("UTF-8", $iso2709));
150 $boundary = '--' . $boundary;
152 $mail{body} = <<END_OF_BODY;
153 $boundary
154 Content-Type: text/plain; charset="utf-8"
155 Content-Transfer-Encoding: quoted-printable
157 $email_header
158 $body
159 $boundary
160 Content-Type: application/octet-stream; name="shelf.iso2709"
161 Content-Transfer-Encoding: base64
162 Content-Disposition: attachment; filename="shelf.iso2709"
164 $isofile
165 $boundary--
166 END_OF_BODY
168 # Sending mail
169 if ( sendmail %mail ) {
170 # do something if it works....
171 $template->param( SENT => "1" );
173 else {
174 # do something if it doesnt work....
175 carp "Error sending mail: $Mail::Sendmail::error \n";
176 $template->param( error => 1 );
179 $template->param( email => $email );
180 output_html_with_http_headers $query, $cookie, $template->output;
183 }else{
184 $template->param( shelfid => $shelfid,
185 url => "/cgi-bin/koha/virtualshelves/sendshelf.pl",
187 output_html_with_http_headers $query, $cookie, $template->output;