Bug 17600: Standardize our EXPORT_OK
[koha.git] / opac / opac-sendshelf.pl
1 #!/usr/bin/perl
2
3 # Copyright 2009 SARL 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;
24 use Carp qw( carp );
25 use Try::Tiny qw( catch try );
26
27 use C4::Auth qw( get_template_and_user );
28 use C4::Biblio qw(
29     GetBiblioData
30     GetFrameworkCode
31     GetMarcAuthors
32     GetMarcBiblio
33     GetMarcISBN
34     GetMarcSubjects
35 );
36 use C4::Items qw( GetItemsInfo );
37 use C4::Output qw( output_html_with_http_headers );
38 use Koha::Email;
39 use Koha::Patrons;
40 use Koha::Virtualshelves;
41
42 my $query = CGI->new;
43
44 # if virtualshelves is disabled, leave immediately
45 if ( ! C4::Context->preference('virtualshelves') ) {
46     print $query->redirect("/cgi-bin/koha/errors/404.pl");
47     exit;
48 }
49
50 my ( $template, $borrowernumber, $cookie ) = get_template_and_user (
51     {
52         template_name   => "opac-sendshelfform.tt",
53         query           => $query,
54         type            => "opac",
55     }
56 );
57
58 my $shelfid = $query->param('shelfid');
59 my $email   = $query->param('email');
60
61 my $dbh          = C4::Context->dbh;
62
63 my $shelf = Koha::Virtualshelves->find( $shelfid );
64 if ( $shelf and $shelf->can_be_viewed( $borrowernumber ) ) {
65
66 if ( $email ) {
67     my $comment    = $query->param('comment');
68
69     my ( $template2, $borrowernumber, $cookie ) = get_template_and_user(
70         {
71             template_name   => "opac-sendshelf.tt",
72             query           => $query,
73             type            => "opac",
74             authnotrequired => 1,
75         }
76     );
77
78     my $patron = Koha::Patrons->find( $borrowernumber );
79     my $borcat = $patron ? $patron->categorycode : q{};
80
81     my $shelf = Koha::Virtualshelves->find( $shelfid );
82     my $contents = $shelf->get_contents;
83     my $marcflavour         = C4::Context->preference('marcflavour');
84     my $iso2709;
85     my @results;
86
87     while ( my $content = $contents->next ) {
88         my $biblionumber = $content->biblionumber;
89         my $record           = GetMarcBiblio({
90             biblionumber => $biblionumber,
91             embed_items  => 1,
92             opac         => 1,
93             borcat       => $borcat });
94         next unless $record;
95         my $fw               = GetFrameworkCode($biblionumber);
96         my $dat              = GetBiblioData($biblionumber);
97
98         my $marcauthorsarray = GetMarcAuthors( $record, $marcflavour );
99         my $marcsubjctsarray = GetMarcSubjects( $record, $marcflavour );
100
101         my @items = GetItemsInfo( $biblionumber );
102
103         $dat->{ISBN}           = GetMarcISBN($record, $marcflavour);
104         $dat->{MARCSUBJCTS}    = $marcsubjctsarray;
105         $dat->{MARCAUTHORS}    = $marcauthorsarray;
106         $dat->{'biblionumber'} = $biblionumber;
107         $dat->{ITEM_RESULTS}   = \@items;
108         $dat->{HASAUTHORS}     = $dat->{'author'} || @$marcauthorsarray;
109
110         $iso2709 .= $record->as_usmarc();
111
112         push( @results, $dat );
113     }
114
115     $template2->param(
116         BIBLIO_RESULTS => \@results,
117         comment        => $comment,
118         shelfname      => $shelf->shelfname,
119         firstname      => $patron->firstname,
120         surname        => $patron->surname,
121     );
122
123     # Getting template result
124     my $template_res = $template2->output();
125     my $body;
126
127     my $subject;
128     # Analysing information and getting mail properties
129     if ( $template_res =~ /<SUBJECT>(?<subject>.*)<END_SUBJECT>/s ) {
130         $subject = $+{subject};
131         $subject =~ s|\n?(.*)\n?|$1|;
132     }
133     else {
134         $subject = "no subject";
135     }
136
137     my $email_header = "";
138     if ( $template_res =~ /<HEADER>(.*)<END_HEADER>/s ) {
139         $email_header = $1;
140         $email_header =~ s|\n?(.*)\n?|$1|;
141     }
142
143     if ( $template_res =~ /<MESSAGE>(.*)<END_MESSAGE>/s ) {
144         $body = $1;
145         $body =~ s|\n?(.*)\n?|$1|;
146     }
147
148     my $THE_body = <<END_OF_BODY;
149 $email_header
150 $body
151 END_OF_BODY
152
153     try {
154         my $email = Koha::Email->create(
155             {
156                 to      => $email,
157                 subject => $subject,
158             }
159         );
160         $email->text_body( $THE_body );
161         $email->attach(
162             Encode::encode( "UTF-8", $iso2709 ),
163             content_type => 'application/octet-stream',
164             name         => 'list.iso2709',
165             disposition  => 'attachment',
166         );
167         my $library = Koha::Patrons->find( $borrowernumber )->library;
168         $email->transport( $library->smtp_server->transport );
169         $email->send_or_die;
170         $template->param( SENT => "1" );
171     }
172     catch {
173         carp "Error sending mail: $_";
174         $template->param( error => 1 );
175     };
176
177     $template->param(
178         shelfid => $shelfid,
179         email   => $email,
180     );
181     output_html_with_http_headers $query, $cookie, $template->output, undef, { force_no_caching => 1 };
182
183
184 }else{
185     $template->param( shelfid => $shelfid,
186                       url     => "/cgi-bin/koha/opac-sendshelf.pl",
187                     );
188     output_html_with_http_headers $query, $cookie, $template->output, undef, { force_no_caching => 1 };
189 }
190
191 } else {
192     $template->param( invalidlist => 1,
193                       url     => "/cgi-bin/koha/opac-sendshelf.pl",
194     );
195     output_html_with_http_headers $query, $cookie, $template->output, undef, { force_no_caching => 1 };
196 }