Bug 14585: Fixing up online help on main page
[koha.git] / virtualshelves / sendshelf.pl
blob6f6c078afbfb2fcd3bc0e5b5a4671a21538462d7
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
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.
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.
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>.
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;
35 use Koha::Email;
37 my $query = new CGI;
39 my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
41 template_name => "virtualshelves/sendshelfform.tt",
42 query => $query,
43 type => "intranet",
44 authnotrequired => 0,
45 flagsrequired => { catalogue => 1 },
49 my $shelfid = $query->param('shelfid');
50 my $email = $query->param('email');
52 my $dbh = C4::Context->dbh;
54 if ($email) {
55 my $comment = $query->param('comment');
56 my $message = Koha::Email->new();
57 my %mail = $message->create_message_headers(
59 to => $email
63 my ( $template2, $borrowernumber, $cookie ) = get_template_and_user(
65 template_name => "virtualshelves/sendshelf.tt",
66 query => $query,
67 type => "intranet",
68 authnotrequired => 0,
69 flagsrequired => { catalogue => 1 },
73 my @shelf = GetShelf($shelfid);
74 my ( $items, $totitems ) = GetShelfContents($shelfid);
75 my $marcflavour = C4::Context->preference('marcflavour');
76 my $iso2709;
77 my @results;
79 # retrieve biblios from shelf
80 foreach my $biblio (@$items) {
81 my $biblionumber = $biblio->{biblionumber};
82 my $fw = GetFrameworkCode($biblionumber);
83 my $dat = GetBiblioData($biblionumber);
84 my $record = GetMarcBiblio($biblionumber, 1);
85 my $marcnotesarray = GetMarcNotes( $record, $marcflavour );
86 my $marcauthorsarray = GetMarcAuthors( $record, $marcflavour );
87 my $marcsubjctsarray = GetMarcSubjects( $record, $marcflavour );
88 my $subtitle = GetRecordValue( 'subtitle', $record, $fw );
90 my @items = GetItemsInfo($biblionumber);
92 $dat->{MARCNOTES} = $marcnotesarray;
93 $dat->{MARCSUBJCTS} = $marcsubjctsarray;
94 $dat->{MARCAUTHORS} = $marcauthorsarray;
95 $dat->{'biblionumber'} = $biblionumber;
96 $dat->{ITEM_RESULTS} = \@items;
97 $dat->{subtitle} = $subtitle;
99 $iso2709 .= $record->as_usmarc();
101 push( @results, $dat );
104 if ( C4::Context->preference('OPACBaseURL') ) {
105 $template2->param(
106 OPACBaseURL => C4::Context->preference('OPACBaseURL') );
109 $template2->param(
110 BIBLIO_RESULTS => \@results,
111 comment => $comment,
112 shelfname => $shelf[1],
115 # Getting template result
116 my $template_res = $template2->output();
117 my $body;
119 # Analysing information and getting mail properties
120 if ( $template_res =~ /<SUBJECT>(.*)<END_SUBJECT>/s ) {
121 $mail{subject} = $1;
122 $mail{subject} =~ s|\n?(.*)\n?|$1|;
124 else { $mail{'subject'} = "no subject"; }
126 my $email_header = "";
127 if ( $template_res =~ /<HEADER>(.*)<END_HEADER>/s ) {
128 $email_header = $1;
129 $email_header =~ s|\n?(.*)\n?|$1|;
130 $email_header = encode_qp($email_header);
133 my $email_file = "list.txt";
134 if ( $template_res =~ /<FILENAME>(.*)<END_FILENAME>/s ) {
135 $email_file = $1;
136 $email_file =~ s|\n?(.*)\n?|$1|;
139 if ( $template_res =~ /<MESSAGE>(.*)<END_MESSAGE>/s ) {
140 $body = $1;
141 $body =~ s|\n?(.*)\n?|$1|;
142 $body = encode_qp($body);
145 my $boundary = "====" . time() . "====";
147 # We set and put the multipart content
148 $mail{'content-type'} = "multipart/mixed; boundary=\"$boundary\"";
150 my $isofile = encode_base64( encode( "UTF-8", $iso2709 ) );
151 $boundary = '--' . $boundary;
153 $mail{body} = <<END_OF_BODY;
154 $boundary
155 Content-Type: text/plain; charset="utf-8"
156 Content-Transfer-Encoding: quoted-printable
158 $email_header
159 $body
160 $boundary
161 Content-Type: application/octet-stream; name="shelf.iso2709"
162 Content-Transfer-Encoding: base64
163 Content-Disposition: attachment; filename="shelf.iso2709"
165 $isofile
166 $boundary--
167 END_OF_BODY
169 # Sending mail
170 if ( sendmail %mail ) {
172 # do something if it works....
173 $template->param( SENT => "1" );
175 else {
176 # do something if it doesnt work....
177 carp "Error sending mail: $Mail::Sendmail::error \n";
178 $template->param( error => 1 );
181 $template->param( email => $email );
182 output_html_with_http_headers $query, $cookie, $template->output;
185 else {
186 $template->param(
187 shelfid => $shelfid,
188 url => "/cgi-bin/koha/virtualshelves/sendshelf.pl",
190 output_html_with_http_headers $query, $cookie, $template->output;