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 haspermission/;
30 use CGI
::Cookie
; # need to check cookies before
31 # having CGI parse the POST request
33 my $flags_required = [
34 {circulate
=> 'circulate_remaining_permissions'},
35 {tools
=> 'stage_marc_import'},
36 {tools
=> 'upload_local_cover_images'}
39 my %cookies = fetch CGI
::Cookie
;
41 my ($auth_status, $sessionID) = check_cookie_auth
($cookies{'CGISESSID'}->value);
44 foreach my $flag_required (@
{ $flags_required}) {
45 if (my $flags = haspermission
(C4
::Context
->config('user'), $flag_required)) {
46 $auth_failure = 0 if $auth_status eq 'ok';
51 my $reply = CGI
->new("");
52 print $reply->header(-type
=> 'text/html');
53 print '{"progress":"0"}';
57 my $reported_progress = C4
::UploadedFile
->upload_progress($sessionID);
59 my $reply = CGI
->new("");
60 print $reply->header(-type
=> 'text/html');
61 # response will be sent back as JSON
62 print '{"progress":"' . $reported_progress . '"}';