Bug 14585: Fixing up online help on main page
[koha.git] / opac / opac-sendshelf.pl
blobf88e52a56846e46d9da33b44777accf5fe38c4a5
1 #!/usr/bin/perl
3 # Copyright 2009 SARL 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 C4::Members;
36 use Koha::Email;
38 my $query = new CGI;
40 my ( $template, $borrowernumber, $cookie ) = get_template_and_user (
42 template_name => "opac-sendshelfform.tt",
43 query => $query,
44 type => "opac",
45 authnotrequired => 0,
46 flagsrequired => { borrow => 1 },
50 my $shelfid = $query->param('shelfid');
51 my $email = $query->param('email');
53 my $dbh = C4::Context->dbh;
55 if ( ShelfPossibleAction( (defined($borrowernumber) ? $borrowernumber : -1), $shelfid, 'view' ) ) {
57 if ( $email ) {
58 my $message = Koha::Email->new();
59 my $comment = $query->param('comment');
61 my %mail = $message->create_message_headers(
63 to => $email,
67 my ( $template2, $borrowernumber, $cookie ) = get_template_and_user(
69 template_name => "opac-sendshelf.tt",
70 query => $query,
71 type => "opac",
72 authnotrequired => 1,
73 flagsrequired => { borrow => 1 },
77 my @shelf = GetShelf($shelfid);
78 my ($items, $totitems) = GetShelfContents($shelfid);
79 my $marcflavour = C4::Context->preference('marcflavour');
80 my $iso2709;
81 my @results;
83 # retrieve biblios from shelf
84 foreach my $biblio (@$items) {
85 my $biblionumber = $biblio->{biblionumber};
86 my $fw = GetFrameworkCode($biblionumber);
87 my $dat = GetBiblioData($biblionumber);
88 my $record = GetMarcBiblio($biblionumber, 1);
89 my $marcnotesarray = GetMarcNotes( $record, $marcflavour );
90 my $marcauthorsarray = GetMarcAuthors( $record, $marcflavour );
91 my $marcsubjctsarray = GetMarcSubjects( $record, $marcflavour );
92 my $subtitle = GetRecordValue('subtitle', $record, $fw);
94 my @items = GetItemsInfo( $biblionumber );
96 $dat->{ISBN} = GetMarcISBN($record, $marcflavour);
97 $dat->{MARCNOTES} = $marcnotesarray;
98 $dat->{MARCSUBJCTS} = $marcsubjctsarray;
99 $dat->{MARCAUTHORS} = $marcauthorsarray;
100 $dat->{'biblionumber'} = $biblionumber;
101 $dat->{ITEM_RESULTS} = \@items;
102 $dat->{subtitle} = $subtitle;
103 $dat->{HASAUTHORS} = $dat->{'author'} || @$marcauthorsarray;
105 $iso2709 .= $record->as_usmarc();
107 push( @results, $dat );
110 my $user = GetMember(borrowernumber => $borrowernumber);
112 $template2->param(
113 BIBLIO_RESULTS => \@results,
114 comment => $comment,
115 shelfname => $shelf[1],
116 firstname => $user->{firstname},
117 surname => $user->{surname},
120 # Getting template result
121 my $template_res = $template2->output();
122 my $body;
124 # Analysing information and getting mail properties
125 if ( $template_res =~ /<SUBJECT>(.*)<END_SUBJECT>/s ) {
126 $mail{subject} = $1;
127 $mail{subject} =~ s|\n?(.*)\n?|$1|;
129 else { $mail{'subject'} = "no subject"; }
131 my $email_header = "";
132 if ( $template_res =~ /<HEADER>(.*)<END_HEADER>/s ) {
133 $email_header = $1;
134 $email_header =~ s|\n?(.*)\n?|$1|;
135 $email_header = encode_qp($email_header);
138 my $email_file = "list.txt";
139 if ( $template_res =~ /<FILENAME>(.*)<END_FILENAME>/s ) {
140 $email_file = $1;
141 $email_file =~ s|\n?(.*)\n?|$1|;
144 if ( $template_res =~ /<MESSAGE>(.*)<END_MESSAGE>/s ) {
145 $body = $1;
146 $body =~ s|\n?(.*)\n?|$1|;
147 $body = encode_qp($body);
150 my $boundary = "====" . time() . "====";
152 # We set and put the multipart content
153 $mail{'content-type'} = "multipart/mixed; boundary=\"$boundary\"";
155 my $isofile = encode_base64(encode("UTF-8", $iso2709));
156 $boundary = '--' . $boundary;
158 $mail{body} = <<END_OF_BODY;
159 $boundary
160 MIME-Version: 1.0
161 Content-Type: text/plain; charset="utf-8"
162 Content-Transfer-Encoding: quoted-printable
164 $email_header
165 $body
166 $boundary
167 Content-Type: application/octet-stream; name="list.iso2709"
168 Content-Transfer-Encoding: base64
169 Content-Disposition: attachment; filename="list.iso2709"
171 $isofile
172 $boundary--
173 END_OF_BODY
175 # Sending mail
176 if ( sendmail %mail ) {
177 # do something if it works....
178 $template->param( SENT => "1" );
180 else {
181 # do something if it doesnt work....
182 carp "Error sending mail: $Mail::Sendmail::error \n";
183 $template->param( error => 1 );
186 $template->param( email => $email );
187 output_html_with_http_headers $query, $cookie, $template->output;
190 }else{
191 $template->param( shelfid => $shelfid,
192 url => "/cgi-bin/koha/opac-sendshelf.pl",
194 output_html_with_http_headers $query, $cookie, $template->output;
197 } else {
198 $template->param( invalidlist => 1,
199 url => "/cgi-bin/koha/opac-sendshelf.pl",
201 output_html_with_http_headers $query, $cookie, $template->output;