3 # Copyright (C) 2007 LibLime
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>.
21 #use warnings; FIXME - Bug 2505
23 # standard or CPAN modules used
28 use C4
::Auth qw
/check_cookie_auth/;
29 use CGI
::Cookie
; # need to check cookies before
30 # having CGI parse the POST request
33 # upload-file.pl must authenticate the user
34 # before processing the POST request,
35 # and quickly bounce if the user is
36 # not authorized. Consequently, unlike
37 # most of the other CGI scripts, upload-file.pl
38 # requires that the session cookie already
41 my %cookies = fetch CGI
::Cookie
;
42 my ($auth_status, $sessionID) = check_cookie_auth
($cookies{'CGISESSID'}->value, { tools
=> '*' });
43 if ($auth_status ne "ok") {
44 $auth_status = 'denied' if $auth_status eq 'failed';
45 send_reply
($auth_status, "");
49 our $uploaded_file = C4
::UploadedFile
->new($sessionID);
50 unless (defined $uploaded_file) {
51 # FIXME - failed to create file for some reason
52 send_reply
('failed', '');
55 $uploaded_file->max_size($ENV{'CONTENT_LENGTH'}); # may not be the file size, exactly
58 $query = new CGI \
&upload_hook
;
59 $uploaded_file->done();
60 send_reply
('done', $uploaded_file->id());
62 # FIXME - if possible, trap signal caused by user cancelling upload
63 # FIXME - something is wrong during cleanup: \t(in cleanup) Can't call method "commit" on unblessed reference at /usr/local/share/perl/5.8.8/CGI/Session/Driver/DBI.pm line 130 during global destruction.
67 my ($file_name, $buffer, $bytes_read, $session) = @_;
68 $uploaded_file->stash(\
$buffer, $bytes_read);
69 if ( ! $uploaded_file->name && $file_name ) { # save name on first chunk
70 $uploaded_file->name($file_name);
75 my ($upload_status, $fileid) = @_;
77 my $reply = CGI
->new("");
78 print $reply->header(-type
=> 'text/html');
79 # response will be sent back as JSON
80 print '{"status":"' . $upload_status . '","fileid":"' . $fileid . '"}';