Bug 17146: Fix CSRF in picture-upload.pl
[koha.git] / tools / picture-upload.pl
1 #!/usr/bin/perl
2 #
3 #
4 # This file is part of Koha.
5 #
6 # Koha is free software; you can redistribute it and/or modify it
7 # under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 3 of the License, or
9 # (at your option) any later version.
10 #
11 # Koha is distributed in the hope that it will be useful, but
12 # WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with Koha; if not, see <http://www.gnu.org/licenses>.
18 #
19 #
20 #
21
22 use Modern::Perl;
23
24 use File::Temp;
25 use File::Copy;
26 use CGI qw ( -utf8 );
27 use GD;
28 use Digest::MD5 qw(md5_base64);
29 use C4::Context;
30 use C4::Auth;
31 use C4::Output;
32 use C4::Members;
33 use C4::Debug;
34
35 use Koha::Patrons;
36 use Koha::Patron::Image;
37 use Koha::Patron::Images;
38 use Koha::Token;
39
40 my $input = new CGI;
41
42 my ($template, $loggedinuser, $cookie)
43     = get_template_and_user({template_name => "tools/picture-upload.tt",
44                                         query => $input,
45                                         type => "intranet",
46                                         authnotrequired => 0,
47                                         flagsrequired => { tools => 'batch_upload_patron_images'},
48                                         debug => 0,
49                                         });
50
51 our $filetype      = $input->param('filetype') || '';
52 my $cardnumber     = $input->param('cardnumber');
53 our $uploadfilename = $input->param('uploadfile') || '';
54 my $uploadfile     = $input->upload('uploadfile');
55 my $borrowernumber = $input->param('borrowernumber');
56 my $op             = $input->param('op') || '';
57
58 #FIXME: This code is really in the rough. The variables need to be re-scoped as the two subs depend on global vars to operate.
59 #       Other parts of this code could be optimized as well, I think. Perhaps the file upload could be done with YUI's upload
60 #       coded. -fbcit
61
62 $debug and warn "Params are: filetype=$filetype, cardnumber=$cardnumber, borrowernumber=$borrowernumber, uploadfile=$uploadfilename";
63
64 =head1 NAME
65
66 picture-upload.pl - Script for handling uploading of both single and bulk patronimages and importing them into the database.
67
68 =head1 SYNOPSIS
69
70 picture-upload.pl
71
72 =head1 DESCRIPTION
73
74 This script is called and presents the user with an interface allowing him/her to upload a single patron image or bulk patron images via a zip file.
75 Files greater than 100K will be refused. Images should be 140x200 pixels. If they are larger they will be auto-resized to comply.
76
77 =cut
78
79 $debug and warn "Operation requested: $op";
80
81 my ( $total, $handled, $tempfile, $tfh );
82 our @counts = ();
83 our %errors = ();
84
85 # Case is important in these operational values as the template must use case to be visually pleasing!
86 if ( ( $op eq 'Upload' ) && $uploadfile ) {
87
88     die "Wrong CSRF token"
89         unless Koha::Token->new->check_csrf({
90             id     => C4::Context->userenv->{id},
91             secret => md5_base64( C4::Context->config('pass') ),
92             token  => scalar $input->param('csrf_token'),
93         });
94
95     my $dirname = File::Temp::tempdir( CLEANUP => 1 );
96     $debug and warn "dirname = $dirname";
97     my $filesuffix;
98     if ( $uploadfilename =~ m/(\..+)$/i ) {
99         $filesuffix = $1;
100     }
101     ( $tfh, $tempfile ) =
102       File::Temp::tempfile( SUFFIX => $filesuffix, UNLINK => 1 );
103     $debug and warn "tempfile = $tempfile";
104     my ( @directories, $results );
105
106     $errors{'NOTZIP'} = 1
107       if ( $uploadfilename !~ /\.zip$/i && $filetype =~ m/zip/i );
108     $errors{'NOWRITETEMP'} = 1 unless ( -w $dirname );
109     $errors{'EMPTYUPLOAD'} = 1 unless ( length($uploadfile) > 0 );
110
111     if (%errors) {
112         $template->param( ERRORS => [ \%errors ] );
113         output_html_with_http_headers $input, $cookie, $template->output;
114         exit;
115     }
116     while (<$uploadfile>) {
117         print $tfh $_;
118     }
119     close $tfh;
120     if ( $filetype eq 'zip' ) {
121         unless ( system( "unzip", $tempfile, '-d', $dirname ) == 0 ) {
122             $errors{'UZIPFAIL'} = $uploadfilename;
123             $template->param( ERRORS => [ \%errors ] );
124             # This error is fatal to the import, so bail out here
125             output_html_with_http_headers $input, $cookie, $template->output;
126             exit;
127         }
128         push @directories, "$dirname";
129         foreach my $recursive_dir (@directories) {
130             opendir RECDIR, $recursive_dir;
131             while ( my $entry = readdir RECDIR ) {
132                 push @directories, "$recursive_dir/$entry"
133                   if ( -d "$recursive_dir/$entry" and $entry !~ /^\./ );
134                 $debug and warn "$recursive_dir/$entry";
135             }
136             closedir RECDIR;
137         }
138         foreach my $dir (@directories) {
139             $results = handle_dir( $dir, $filesuffix, $template );
140             $handled++ if $results == 1;
141         }
142         $total = scalar @directories;
143     }
144     else {
145         #if ($filetype eq 'zip' )
146         $results = handle_dir( $dirname, $filesuffix, $template, $cardnumber,
147             $tempfile );
148         $handled++ if $results == 1;
149         $total   = 1;
150     }
151
152     if ( $results!=1 || %errors ) {
153         $template->param( ERRORS => [$results] );
154     }
155     else {
156         my $filecount;
157         map { $filecount += $_->{count} } @counts;
158         $debug and warn "Total directories processed: $total";
159         $debug and warn "Total files processed: $filecount";
160         $template->param(
161             TOTAL   => $total,
162             HANDLED => $handled,
163             COUNTS  => \@counts,
164             TCOUNTS => ( $filecount > 0 ? $filecount : undef ),
165         );
166         $template->param( borrowernumber => $borrowernumber )
167           if $borrowernumber;
168     }
169 }
170 elsif ( ( $op eq 'Upload' ) && !$uploadfile ) {
171     warn "Problem uploading file or no file uploaded.";
172     $template->param( cardnumber => $cardnumber );
173     $template->param( filetype   => $filetype );
174 }
175 elsif ( $op eq 'Delete' ) {
176     my $deleted = eval {
177         Koha::Patron::Images->find( $borrowernumber )->delete;
178     };
179     if ( $@ or not $deleted ) {
180         warn "Image for patron '$borrowernumber' has not been deleted";
181     }
182 }
183 if ( $borrowernumber && !%errors && !$template->param('ERRORS') ) {
184     print $input->redirect(
185         "/cgi-bin/koha/members/moremember.pl?borrowernumber=$borrowernumber");
186 }
187 else {
188     $template->param(
189         csrf_token => Koha::Token->new->generate_csrf({
190             id     => C4::Context->userenv->{id},
191             secret => md5_base64( C4::Context->config('pass') ),
192         }),
193     );
194     output_html_with_http_headers $input, $cookie, $template->output;
195 }
196
197 sub handle_dir {
198     my ( $dir, $suffix, $template, $cardnumber, $source ) = @_;
199     my ( %counts, %direrrors );
200     $debug and warn "Entering sub handle_dir; passed \$dir=$dir, \$suffix=$suffix";
201     if ( $suffix =~ m/zip/i ) {
202         # If we were sent a zip file, process any included data/idlink.txt files
203         my ( $file, $filename );
204         undef $cardnumber;
205         $debug and warn "Passed a zip file.";
206         opendir DIR, $dir;
207         while ( my $filename = readdir DIR ) {
208             $file = "$dir/$filename"
209               if ( $filename =~ m/datalink\.txt/i
210                 || $filename =~ m/idlink\.txt/i );
211         }
212         unless ( open( FILE, $file ) ) {
213             warn "Opening $dir/$file failed!";
214             $direrrors{'OPNLINK'} = $file;
215             # This error is fatal to the import of this directory contents
216             # so bail and return the error to the caller
217             return \%direrrors;
218         }
219
220         while ( my $line = <FILE> ) {
221             $debug and warn "Reading contents of $file";
222             chomp $line;
223             $debug and warn "Examining line: $line";
224             my $delim = ( $line =~ /\t/ ) ? "\t" : ( $line =~ /,/ ) ? "," : "";
225             $debug and warn "Delimeter is \'$delim\'";
226             unless ( $delim eq "," || $delim eq "\t" ) {
227                 warn "Unrecognized or missing field delimeter. Please verify that you are using either a ',' or a 'tab'";
228                 $direrrors{'DELERR'} = 1;
229                 # This error is fatal to the import of this directory contents
230                 # so bail and return the error to the caller
231                 return \%direrrors;
232             }
233             ( $cardnumber, $filename ) = split $delim, $line;
234             $cardnumber =~ s/[\"\r\n]//g; # remove offensive characters
235             $filename   =~ s/[\"\r\n\s]//g;
236             $debug and warn "Cardnumber: $cardnumber Filename: $filename";
237             $source = "$dir/$filename";
238             %counts = handle_file( $cardnumber, $source, $template, %counts );
239         }
240         close FILE;
241         closedir DIR;
242     }
243     else {
244         %counts = handle_file( $cardnumber, $source, $template, %counts );
245     }
246     push @counts, \%counts;
247     return 1;
248 }
249
250 sub handle_file {
251     my ( $cardnumber, $source, $template, %count ) = @_;
252     $debug and warn "Entering sub handle_file; passed \$cardnumber=$cardnumber, \$source=$source";
253     $count{filenames} = ()      if !$count{filenames};
254     $count{source}    = $source if !$count{source};
255     $count{count}     = 0       unless exists $count{count};
256     my %filerrors;
257     my $filename;
258     if ( $filetype eq 'image' ) {
259         $filename = $uploadfilename;
260     }
261     else {
262         $filename = $1 if ( $source && $source =~ /\/([^\/]+)$/ );
263     }
264     if ( $cardnumber && $source ) {
265         # Now process any imagefiles
266         $debug and warn "Source: $source";
267         my $size = ( stat($source) )[7];
268         if ( $size > 550000 ) {
269             # This check is necessary even with image resizing to avoid possible security/performance issues...
270             $filerrors{'OVRSIZ'} = 1;
271             push my @filerrors, \%filerrors;
272             push @{ $count{filenames} },
273               {
274                 filerrors  => \@filerrors,
275                 source     => $filename,
276                 cardnumber => $cardnumber
277               };
278             $template->param( ERRORS => 1 );
279             # this one is fatal so bail here...
280             return %count;
281         }
282         my ( $srcimage, $image );
283         if ( open( IMG, "$source" ) ) {
284             $srcimage = GD::Image->new(*IMG);
285             close(IMG);
286             if ( defined $srcimage ) {
287                 my $imgfile;
288                 my $mimetype = 'image/png';
289                 # GD autodetects three basic image formats: PNG, JPEG, XPM
290                 # we will convert all to PNG which is lossless...
291                 # Check the pixel size of the image we are about to import...
292                 my ( $width, $height ) = $srcimage->getBounds();
293                 $debug and warn "$filename is $width pix X $height pix.";
294                 if ( $width > 200 || $height > 300 ) {
295                     # MAX pixel dims are 200 X 300...
296                     $debug and warn "$filename exceeds the maximum pixel dimensions of 200 X 300. Resizing...";
297                     # Percent we will reduce the image dimensions by...
298                     my $percent_reduce;
299                     if ( $width > 200 ) {
300                         # If the width is oversize, scale based on width overage...
301                         $percent_reduce = sprintf( "%.5f", ( 140 / $width ) );
302                     }
303                     else {
304                         # otherwise scale based on height overage.
305                         $percent_reduce = sprintf( "%.5f", ( 200 / $height ) );
306                     }
307                     my $width_reduce =
308                       sprintf( "%.0f", ( $width * $percent_reduce ) );
309                     my $height_reduce =
310                       sprintf( "%.0f", ( $height * $percent_reduce ) );
311                     $debug
312                       and warn "Reducing $filename by "
313                       . ( $percent_reduce * 100 )
314                       . "\% or to $width_reduce pix X $height_reduce pix";
315                     #'1' creates true color image...
316                     $image = GD::Image->new( $width_reduce, $height_reduce, 1 );
317                     $image->copyResampled( $srcimage, 0, 0, 0, 0, $width_reduce,
318                         $height_reduce, $width, $height );
319                     $imgfile = $image->png();
320                     $debug
321                       and warn "$filename is "
322                       . length($imgfile)
323                       . " bytes after resizing.";
324                     undef $image;
325                     undef $srcimage; # This object can get big...
326                 }
327                 else {
328                     $image   = $srcimage;
329                     $imgfile = $image->png();
330                     $debug
331                       and warn "$filename is " . length($imgfile) . " bytes.";
332                     undef $image;
333                     undef $srcimage; # This object can get big...
334                 }
335                 $debug and warn "Image is of mimetype $mimetype";
336                 my $dberror;
337                 if ($mimetype) {
338                     my $patron = Koha::Patrons->find({ cardnumber => $cardnumber });
339                     if ( $patron ) {
340                         my $image = $patron->image;
341                         $image ||= Koha::Patron::Image->new({ borrowernumber => $patron->borrowernumber });
342                         $image->set({
343                             mimetype => $mimetype,
344                             imagefile => $imgfile,
345                         });
346                         eval { $image->store };
347                         if ( $@ ) {
348                             # Errors from here on are fatal only to the import of a particular image
349                             #so don't bail, just note the error and keep going
350                             warn "Database returned error: $@";
351                             $filerrors{'DBERR'} = 1;
352                             push my @filerrors, \%filerrors;
353                             push @{ $count{filenames} },
354                               {
355                                 filerrors  => \@filerrors,
356                                 source     => $filename,
357                                 cardnumber => $cardnumber
358                               };
359                             $template->param( ERRORS => 1 );
360                         } else {
361                             $count{count}++;
362                             push @{ $count{filenames} },
363                               { source => $filename, cardnumber => $cardnumber };
364                         }
365                     } else {
366                         warn "Patron with the cardnumber '$cardnumber' does not exist";
367                         $filerrors{'CARDNUMBER_DOES_NOT_EXIST'} = 1;
368                         push my @filerrors, \%filerrors;
369                         push @{ $count{filenames} },
370                           {
371                             filerrors  => \@filerrors,
372                             source     => $filename,
373                             cardnumber => $cardnumber
374                           };
375                         $template->param( ERRORS => 1 );
376                     }
377                 }
378                 else {
379                     warn "Unable to determine mime type of $filename. Please verify mimetype.";
380                     $filerrors{'MIMERR'} = 1;
381                     push my @filerrors, \%filerrors;
382                     push @{ $count{filenames} },
383                       {
384                         filerrors  => \@filerrors,
385                         source     => $filename,
386                         cardnumber => $cardnumber
387                       };
388                     $template->param( ERRORS => 1 );
389                 }
390             }
391             else {
392                 warn "Contents of $filename corrupted!";
393                 #$count{count}--;
394                 $filerrors{'CORERR'} = 1;
395                 push my @filerrors, \%filerrors;
396                 push @{ $count{filenames} },
397                   {
398                     filerrors  => \@filerrors,
399                     source     => $filename,
400                     cardnumber => $cardnumber
401                   };
402                 $template->param( ERRORS => 1 );
403             }
404         }
405         else {
406             warn "Opening $source failed!";
407             $filerrors{'OPNERR'} = 1;
408             push my @filerrors, \%filerrors;
409             push @{ $count{filenames} },
410               {
411                 filerrors  => \@filerrors,
412                 source     => $filename,
413                 cardnumber => $cardnumber
414               };
415             $template->param( ERRORS => 1 );
416         }
417     }
418     else {
419         # The need for this seems a bit unlikely, however, to maximize error trapping it is included
420         warn "Missing "
421           . (
422             $cardnumber
423             ? "filename"
424             : ( $filename ? "cardnumber" : "cardnumber and filename" )
425           );
426         $filerrors{'CRDFIL'} = (
427             $cardnumber
428             ? "filename"
429             : ( $filename ? "cardnumber" : "cardnumber and filename" )
430         );
431         push my @filerrors, \%filerrors;
432         push @{ $count{filenames} },
433           {
434             filerrors  => \@filerrors,
435             source     => $filename,
436             cardnumber => $cardnumber
437           };
438         $template->param( ERRORS => 1 );
439     }
440     return (%count);
441 }
442
443 =head1 AUTHORS
444
445 Original contributor(s) undocumented
446
447 Database storage, single patronimage upload option, and extensive error trapping contributed by Chris Nighswonger cnighswonger <at> foundations <dot> edu
448 Image scaling/resizing contributed by the same.
449
450 =cut