--- loncom/cgi/archive.pl 2024/05/13 13:55:51 1.1 +++ loncom/cgi/archive.pl 2024/05/21 02:57:17 1.2 @@ -1,6 +1,6 @@ #!/usr/bin/perl # -# $Id: archive.pl,v 1.1 2024/05/13 13:55:51 raeburn Exp $ +# $Id: archive.pl,v 1.2 2024/05/21 02:57:17 raeburn Exp $ # # Copyright Michigan State University Board of Trustees # @@ -28,7 +28,7 @@ # # A CGI script which creates a compressed archive file of the current # directory in Authoring Space, with optional (a) recursion into -# sub-directories, (b) filtering by filetype and (c) encryption. +# sub-directories, and (b) filtering by filetype. # Supported formats are: tar.gz, tar.bz2, tar.xz and zip. #### use strict; @@ -82,13 +82,14 @@ if (!&LONCAPA::loncgi::check_cookie_and_ &Apache::lonlocal::get_language_handle(); &Apache::loncommon::content_type(undef,'text/html'); my $identifier = $ENV{'QUERY_STRING'}; - my ($hashref,$dir,$dirurl,$jsdirurl,$auname,$audom,$allowed,$error,$encrypt,$enckey,$format,$compress); + my ($hashref,$dir,$dirurl,$jsdirurl,$auname,$audom,$allowed,$error, + $format,$compress,$fname,$extension,$adload,$url,$mime); my @posstypes = qw(problem library sty sequence page task rights meta xml html xhtml htm xhtm css js tex txt gif jpg jpeg png svg other); - if (($identifier) && (exists($env{'cgi.'.$identifier.'.archive'}))) { + if (($identifier =~ /^\d+_\d+_\d+$/) && (exists($env{'cgi.'.$identifier.'.archive'}))) { $hashref = &Apache::lonnet::thaw_unescape($env{'cgi.'.$identifier.'.archive'}); if (ref($hashref) eq 'HASH') { $dir = $hashref->{'dir'}; - # check for traversal + $dir =~ s{\.+}{.}g; if (-d $dir) { $dirurl = $dir; ($auname,$audom) = &Apache::lonnet::constructaccess($dir); @@ -98,7 +99,7 @@ if (!&LONCAPA::loncgi::check_cookie_and_ $maxdepth = $prefix =~ tr{/}{}; $jsdirurl = &js_escape($dirurl); if (($auname eq $env{'user.name'}) && ($audom eq $env{'user.domain'}) && - ($env{'environment.authorarchive'})) { + ($env{'environment.canarchive'})) { $allowed = 1; if ($hashref->{'recurse'}) { $recurse = 1; @@ -128,10 +129,6 @@ if (!&LONCAPA::loncgi::check_cookie_and_ } } } - if ((exists($hashref->{'encrypt'}) && $hashref->{'encrypt'} ne '')) { - $encrypt = 1; - $enckey = $hashref->{'encrypt'}; - } if ((exists($hashref->{'format'}) && $hashref->{'format'} =~ /^zip$/i)) { $format = lc($hashref->{'format'}); } else { @@ -144,6 +141,15 @@ if (!&LONCAPA::loncgi::check_cookie_and_ $compress = 'gzip'; } } + if ($hashref->{'adload'}) { + $adload = $hashref->{'adload'}; + } + if ($hashref->{'fname'}) { + $fname = $hashref->{'fname'}; + } + if ($hashref->{'extension'}) { + $extension = $hashref->{'extension'}; + } } } } else { @@ -152,8 +158,10 @@ if (!&LONCAPA::loncgi::check_cookie_and_ } else { $error = 'nohash'; } -# delete cgi.$identifier.archive from %env - &Apache::lonnet::delenv('cgi.'.$identifier.'.archive'); +# delete cgi.$identifier.archive from %env if error + if ($error) { + &Apache::lonnet::delenv('cgi.'.$identifier.'.archive'); + } } else { $error = 'noid'; } @@ -175,22 +183,16 @@ if (!&LONCAPA::loncgi::check_cookie_and_ {'href' => '', 'text' => $title}]; } - my $js; - print &Apache::loncommon::start_page($title, - $js, - {'bread_crumbs' => $brcrum,})."\n". - '
'."\n". - ''."\n"; - if ($error) { - print "&mt('Cannot create archive file -- \n"; - } elsif ($allowed) { - my (%location_of,@tocheck); +# Set up files to write two and url + my ($js,%location_of,$suffix,$namesdest,$filesdest,$filesurl); + if ($allowed) { + my @tocheck; if ($format ne '') { push(@tocheck,$format); } if ($compress ne '') { push(@tocheck,$compress); - } + } foreach my $program (@tocheck) { foreach my $dir ('/bin/','/usr/bin/','/usr/local/bin/','/sbin/', '/usr/sbin/') { @@ -200,26 +202,66 @@ if (!&LONCAPA::loncgi::check_cookie_and_ } } } - if (exists($location_of{$format})) { - my $suffix; + if (($format ne '') && (exists($location_of{$format}))) { if ($format eq 'zip') { - $suffix = 'zip'; + $suffix = '.zip'; + $mime = 'application/x-zip-compressed'; } else { - $suffix = 'tar'; - if (exists($location_of{$compress})) { + $suffix = '.tar'; + if (($compress ne '') && + (exists($location_of{$compress}))) { if ($compress eq 'bzip2') { - $suffix .= '.bz2'; + $suffix .= '.bz2'; + $mime = 'application/x-bzip2'; } elsif ($compress eq 'gzip') { $suffix .= '.gz'; + $mime = 'application/x-gzip'; } elsif ($compress eq 'xz') { $suffix .= '.xz'; + $mime = 'application/x-xz'; } } } - my $namesdest = $perlvar{'lonPrtDir'}.'/'.$env{'user.name'}.'_'.$env{'user.domain'}.'_archive_'.$identifier.'.txt'; - my $filesdest = $perlvar{'lonPrtDir'}.'/'.$env{'user.name'}.'_'.$env{'user.domain'}.'_archive_'.$identifier.'.'.$suffix; - my $filesurl = '/prtspool/'.$env{'user.name'}.'_'.$env{'user.domain'}.'_archive_'.$identifier.'.'.$suffix; - unless ($lock) { $lock=&Apache::lonnet::set_lock(&mt('Archiving [_1]',$dirurl)); } + $namesdest = $perlvar{'lonPrtDir'}.'/'.$env{'user.name'}.'_'.$env{'user.domain'}.'_archive_'.$identifier.'.txt'; + $filesdest = $perlvar{'lonPrtDir'}.'/'.$env{'user.name'}.'_'.$env{'user.domain'}.'_archive_'.$identifier.$suffix; + $filesurl = '/prtspool/'.$env{'user.name'}.'_'.$env{'user.domain'}.'_archive_'.$identifier.$suffix; + if ($suffix eq $extension) { + $fname =~ s{\Q$suffix\E$}{}; + } + if ($fname eq '') { + $fname = $env{'user.name'}.'_'.$env{'user.domain'}.'_archive_'.$identifier.$suffix; + } else { + $fname .= $suffix; + } + my $downloadurl = &Apache::lonnet::absolute_url().$filesurl; + my $delarchive = $identifier.$suffix; + $js = &js($filesurl,$mime,$fname,$delarchive); + } + } + print &Apache::loncommon::start_page($title, + '', + {'bread_crumbs' => $brcrum,})."\n". + ''."\n". + ''."\n"; + if ($error) { + print &mt('Cannot create archive file'); + } elsif ($allowed) { + if (-e $filesdest) { + my $mtime = (stat($filesdest))[9]; + print '
'."\n"; + if ($mtime) { + print '

'.&mt('Archive file already exists -- created: [_1].', + &Apache::lonlocal::locallocaltime($mtime)).'

'; + } else { + print '

'.&mt('Archive file already exists.').'

'; + } + print '
'."\n"; + print &archive_link($adload,$filesurl,$suffix); + if ($adload) { + print $js; + } + } elsif (exists($location_of{$format})) { + unless ($lock) { $lock=&Apache::lonnet::set_lock(&mt('Creating Archive file for [_1]',$dirurl)); } if (open($fh,'>',$namesdest)) { find( {preprocess => \&filter_files, @@ -227,38 +269,85 @@ if (!&LONCAPA::loncgi::check_cookie_and_ no_chdir => 1, },$dir); close($fh); + if (ref($hashref) eq 'HASH') { + $hashref->{'numfiles'} = $totalfiles; + $hashref->{'numdirs'} = $totalsubdirs; + $hashref->{'bytes'} = $totalsize; + my $storestring = &Apache::lonnet::freeze_escape($hashref); + &Apache::lonnet::appenv({'cgi.'.$identifier.'.archive' => $storestring}); + } + &Apache::lonnet::thaw_unescape($env{'cgi.'.$identifier.'.archive'}); if (($totalfiles) || ($totalsubdirs)) { - print '

'. - &mt('Archiving: [quant,_1,file,files] with total size: [_2] bytes in [quant,_3,subdirectory,subdirectories] ...', - $totalfiles,$totalsize,$totalsubdirs). - '

'; - my ($cwd,@args); - if ($format eq 'zip') { - $cwd = &Cwd::getcwd(); - @args = ('zip',$filesdest,'-v','-r','.','-i@'.$namesdest); - chdir $prefix; - } else { - @args = ('tar',"--create","--verbose"); - if (($compress ne '') && (exists($location_of{$compress}))) { - push(@args,"--$compress"); + my $freespace; + my @dfargs = ('df','-k','--output=avail','/home'); + if (open(my $pipe,'-|',@dfargs)) { + while (my $line = <$pipe>) { + chomp($line); + if ($line =~ /^\d+$/) { + $freespace = $line; + last; + } } - push(@args,("--file=$filesdest","--directory=$prefix","--files-from=$namesdest")); + close($pipe); } - if (open(my $pipe,'-|',@args)) { - my %prog_state=&Apache::lonhtmlcommon::Create_PrgWin('',$totalfiles); - while (<$pipe>) { - &Apache::lonhtmlcommon::Increment_PrgWin('',\%prog_state,'last file'); + if (($freespace ne '') && ($totalsize < $freespace*1024)) { + my $showsize = $totalsize/(1024*1024); + if ($showsize <= 0.01) { + $showsize = sprintf("%.3f",$showsize); + } elsif ($showsize <= 0.1) { + $showsize = sprintf("%.2f",$showsize); + } elsif ($showsize < 10) { + $showsize = sprintf("%.1f",$showsize); + } else { + $showsize = sprintf("%.0f",$showsize); } - &Apache::lonhtmlcommon::Close_PrgWin('',\%prog_state); - close($pipe); - if (!-e $filesdest) { - print '

'.&mt('No archive file available for download').'

'."\n"; + print '

'. + &mt('Creating archive file for [quant,_1,file,files] with total size before compression of [_2] MB.', + $totalfiles,$showsize); + if ($totalsubdirs) { + print '
'.&mt('Archive includes [quant,_1,subdirectory,subdirectories].', + $totalsubdirs); + } + print '

'; + my ($cwd,@args); + if ($format eq 'zip') { + $cwd = &Cwd::getcwd(); + @args = ('zip',$filesdest,'-v','-r','.','-i@'.$namesdest); + chdir $prefix; + } else { + @args = ('tar',"--create","--verbose"); + if (($compress ne '') && (exists($location_of{$compress}))) { + push(@args,"--$compress"); + } + push(@args,("--file=$filesdest","--directory=$prefix","--files-from=$namesdest")); + } + if (open(my $pipe,'-|',@args)) { + my %prog_state=&Apache::lonhtmlcommon::Create_PrgWin('',$totalfiles); + while (<$pipe>) { + &Apache::lonhtmlcommon::Increment_PrgWin('',\%prog_state,'last file'); + } + &Apache::lonhtmlcommon::Close_PrgWin('',\%prog_state); + close($pipe); + if (-e $filesdest) { + my $size = (stat($filesdest))[7]; + &Apache::lonnet::authorarchivelog($hashref,$size,$filesdest,'create'); + print &archive_link($adload,$filesurl,$suffix); + if ($adload) { + print $js; + } + } else { + print '

'.&mt('No archive file available for download').'

'."\n"; + } + } else { + print '

'.&mt('Could not call [_1] command',$format).'

'."\n"; + } + if (($format eq 'zip') && ($cwd ne '')) { + chdir $cwd; } + } elsif ($freespace eq '') { + print '

'.&mt('No archive file created as the available free space could not be determined.').'

'."\n"; } else { - print '

'.&mt('Could not call [_1] command',$format).'

'."\n"; - } - if (($format eq 'zip') && ($cwd ne '')) { - chdir $cwd; + print '

'.&mt('No archive file created because there is insufficient free space available.').'

'."\n"; } } else { print '

'.&mt('No files match the requested types so no archive file was created.').'

'."\n"; @@ -273,7 +362,7 @@ if (!&LONCAPA::loncgi::check_cookie_and_ } } if ($dirurl) { - print '

'. + print '
'. &Apache::lonhtmlcommon::actionbox(['').'">'. &mt('Return to Directory').'']); } @@ -306,6 +395,7 @@ sub filter_files { } push(@ChosenFiles,$file); } else { + next if ($file =~ /^\./); my ($extension) = ($file =~ /\.([^.]+)$/); if ((!$excluded{$extension}) && ($alltypes || $includeother || $included{$extension})) { push(@ChosenFiles,$file); @@ -332,54 +422,155 @@ sub store_names { print $fh "$filename\n"; } +sub archive_link { + my ($adload,$filesurl,$suffix) = @_; + if ($adload) { + return +'

'."\n". +''."\n". +''."\n"; + } else { + return +'

'.&mt('Download [_1] file',$suffix).'

'."\n"; + } +} + sub js { - my $output = <<'END'; -const xhrButtonSuccess = document.querySelector(".xhr.success"); -const xhrButtonError = document.querySelector(".xhr.error"); -const xhrButtonAbort = document.querySelector(".xhr.abort"); -const log = document.querySelector(".event-log"); - -function handleEvent(e) { - log.textContent = `${log.textContent}${e.type}: ${e.loaded} bytes transferred\n`; -} - -function addListeners(xhr) { - xhr.addEventListener("loadstart", handleEvent); - xhr.addEventListener("load", handleEvent); - xhr.addEventListener("loadend", handleEvent); - xhr.addEventListener("progress", handleEvent); - xhr.addEventListener("error", handleEvent); - xhr.addEventListener("abort", handleEvent); -} - -function runXHR(url) { - log.textContent = ""; - - const xhr = new XMLHttpRequest(); - addListeners(xhr); - xhr.open("GET", url); - xhr.send(); - return xhr; -} - -xhrButtonSuccess.addEventListener("click", () => { - runXHR( - "https://somewhere", - ); -}); - -xhrButtonError.addEventListener("click", () => { - runXHR("http://i-dont-exist"); -}); - -xhrButtonAbort.addEventListener("click", () => { - runXHR( - "https://somewhere", - ).abort(); -}); + my ($url,$mime,$fname,$delarchive) = @_; + &js_escape(\$url); + &js_escape(\$mime); + &js_escape(\$fname); + my %js_lt = &Apache::lonlocal::texthash ( + afdo => 'Archive file download complete.', + diun => 'Download is unavailable.', + tfbr => 'The archive file has been removed.', + ynrd => 'You do not have rights to download the archive file.', + ); + &js_escape(\%js_lt); + return <<"END"; + +END + +}