Bug 30532: (bug 29957 follow-up) Fix '$cookie->value'
[koha.git] / opac / opac-sendbasket.pl
1 #!/usr/bin/perl
2
3 # Copyright Doxulting 2004
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::Biblio qw(
28     GetBiblioData
29     GetMarcAuthors
30     GetMarcBiblio
31     GetMarcSubjects
32 );
33 use C4::Items qw( GetItemsInfo );
34 use C4::Auth qw( get_template_and_user );
35 use C4::Output qw( output_html_with_http_headers );
36 use C4::Templates;
37 use Koha::Email;
38 use Koha::Patrons;
39 use Koha::Token;
40
41 my $query = CGI->new;
42
43 my ( $template, $borrowernumber, $cookie ) = get_template_and_user (
44     {
45         template_name   => "opac-sendbasketform.tt",
46         query           => $query,
47         type            => "opac",
48     }
49 );
50
51 my $bib_list     = $query->param('bib_list') || '';
52 my $email_add    = $query->param('email_add');
53
54 my $dbh          = C4::Context->dbh;
55
56 if ( $email_add ) {
57     die "Wrong CSRF token" unless Koha::Token->new->check_csrf({
58         session_id => scalar $query->cookie('CGISESSID'),
59         token  => scalar $query->param('csrf_token'),
60     });
61     my $patron = Koha::Patrons->find( $borrowernumber );
62     my $borcat = $patron ? $patron->categorycode : q{};
63     my $user_email = $patron->first_valid_email_address
64     || C4::Context->preference('KohaAdminEmailAddress');
65
66     my $email_replyto = $patron->firstname . " " . $patron->surname . " <$user_email>";
67     my $comment    = $query->param('comment');
68
69     # Since we are already logged in, no need to check credentials again
70     # when loading a second template.
71     my $template2 = C4::Templates::gettemplate(
72         'opac-sendbasket.tt', 'opac', $query,
73     );
74
75     my @bibs = split( /\//, $bib_list );
76     my @results;
77     my $iso2709;
78     my $marcflavour = C4::Context->preference('marcflavour');
79     foreach my $biblionumber (@bibs) {
80         $template2->param( biblionumber => $biblionumber );
81
82         my $dat              = GetBiblioData($biblionumber);
83         next unless $dat;
84         my $record           = GetMarcBiblio({
85             biblionumber => $biblionumber,
86             embed_items  => 1,
87             opac         => 1,
88             borcat       => $borcat });
89         my $marcauthorsarray = GetMarcAuthors( $record, $marcflavour );
90         my $marcsubjctsarray = GetMarcSubjects( $record, $marcflavour );
91
92         my @items = GetItemsInfo( $biblionumber );
93
94         my $hasauthors = 0;
95         if($dat->{'author'} || @$marcauthorsarray) {
96           $hasauthors = 1;
97         }
98         
99
100         $dat->{MARCSUBJCTS}    = $marcsubjctsarray;
101         $dat->{MARCAUTHORS}    = $marcauthorsarray;
102         $dat->{HASAUTHORS}     = $hasauthors;
103         $dat->{'biblionumber'} = $biblionumber;
104         $dat->{ITEM_RESULTS}   = \@items;
105
106         $iso2709 .= $record->as_usmarc();
107
108         push( @results, $dat );
109     }
110
111     my $resultsarray = \@results;
112     
113     $template2->param(
114         BIBLIO_RESULTS => $resultsarray,
115         comment        => $comment,
116         firstname      => $patron->firstname,
117         surname        => $patron->surname,
118     );
119
120     # Getting template result
121     my $template_res = $template2->output();
122     my $body;
123
124     # Analysing information and getting mail properties
125     my $subject;
126     if ( $template_res =~ /\<SUBJECT\>(?<subject>.*)\<END_SUBJECT\>/s ) {
127         $subject = $+{subject};
128         $subject =~ s|\n?(.*)\n?|$1|;
129     }
130     else {
131         $subject = "no subject";
132     }
133
134     my $email_header = "";
135     if ( $template_res =~ /<HEADER>(.*)<END_HEADER>/s ) {
136         $email_header = $1;
137         $email_header =~ s|\n?(.*)\n?|$1|;
138     }
139
140     if ( $template_res =~ /<MESSAGE>(.*)<END_MESSAGE>/s ) {
141         $body = $1;
142         $body =~ s|\n?(.*)\n?|$1|;
143     }
144
145     my $THE_body = <<END_OF_BODY;
146 $email_header
147 $body
148 END_OF_BODY
149
150     if ( !defined $iso2709 ) {
151         carp "Error sending mail: empty basket";
152         $template->param( error => 1 );
153     }
154     else {
155         try {
156             # if you want to use the KohaAdmin address as from, that is the default no need to set it
157             my $email = Koha::Email->create({
158                 to       => $email_add,
159                 reply_to => $email_replyto,
160                 subject  => $subject,
161             });
162             $email->header( 'X-Abuse-Report' => C4::Context->preference('KohaAdminEmailAddress') );
163             $email->text_body( $THE_body );
164             $email->attach(
165                 Encode::encode( "UTF-8", $iso2709 ),
166                 content_type => 'application/octet-stream',
167                 name         => 'basket.iso2709',
168                 disposition  => 'attachment',
169             );
170             my $library = $patron->library;
171             $email->transport( $library->smtp_server->transport );
172             $email->send_or_die;
173             $template->param( SENT => "1" );
174         }
175         catch {
176             carp "Error sending mail: $_";
177             $template->param( error => 1 );
178         };
179     }
180
181     $template->param( email_add => $email_add );
182     output_html_with_http_headers $query, $cookie, $template->output, undef, { force_no_caching => 1 };
183 }
184 else {
185     my $new_session_id = $query->cookie('CGISESSID');
186     $template->param(
187         bib_list       => $bib_list,
188         url            => "/cgi-bin/koha/opac-sendbasket.pl",
189         suggestion     => C4::Context->preference("suggestion"),
190         virtualshelves => C4::Context->preference("virtualshelves"),
191         csrf_token => Koha::Token->new->generate_csrf(
192             { session_id => $new_session_id, } ),
193     );
194     output_html_with_http_headers $query, $cookie, $template->output, undef, { force_no_caching => 1 };
195 }