Diff for /loncom/cgi/decompress.pl between versions 1.9 and 1.16

version 1.9, 2003/11/19 20:03:05 version 1.16, 2006/05/05 21:07:19
Line 31 Line 31
 ####  ####
 use strict;  use strict;
 use lib '/home/httpd/lib/perl';  use lib '/home/httpd/lib/perl';
 use LONCAPA::loncgi ();  use LONCAPA::loncgi;
 if(! &LONCAPA::loncgi::check_cookie_and_load_env()) {  
     print "Content-type: text/html\n\n";  my %location_of;
     print <<END;  foreach my $program ('tar','gunzip','bunzip2','unzip') {
       foreach my $dir ('/bin/','/usr/bin/','/usr/local/bin/','/sbin/',
        '/usr/sbin/') {
    if (-x $dir.$program) {
       $location_of{$program} = $dir.$program;
    }
       }
   }
   
   if (!&LONCAPA::loncgi::check_cookie_and_load_env()) {
       print("Content-type: text/html\n\n");
       print(<<END);
     <html><body>NO COOKIE!</body></html>      <html><body>NO COOKIE!</body></html>
 END  END
 } else {  } else {
     print "Content-type: text/html\n\n";      print "Content-type: text/html\n\n";
     if(! $ENV{'cgi.file'} || ! $ENV{'cgi.dir'}) {      my $file=$Apache::lonnet::env{'cgi.file'};
         print <<END;      my $dir=$Apache::lonnet::env{'cgi.dir'}; 
       if(! $file || ! $dir) {
           print(<<END);
         <html><body>Bad Enviroment!</body></html>          <html><body>Bad Enviroment!</body></html>
 END  END
     } else {      } else {
         print <<END;          print(<<END);
  <html><body><b>Output of decompress:</b><br /><br />   <html><body><p><b>Output of decompress:</b></p>
 END  END
         chdir $ENV{'cgi.dir'};          chdir($dir);
         if ($ENV{'cgi.file'} =~ m|zip|) {   my @cmd;
             open(OUTPUT, "unzip $ENV{'cgi.file'} 2> /dev/null |");          if ($file =~ m|\.zip$|) {
             while (<OUTPUT>) {              @cmd = ($location_of{'unzip'},"-o");
                 print "$_<br />";          } elsif ($file =~ m|\.tar\.gz$|
             }   || $file =~ m|\.tgz$| ) {
             close(TRACE);              @cmd = ($location_of{'tar'},"-zxpvf");
         } elsif ($ENV{'cgi.file'} =~ m|tar.gz|) {          } elsif ($file =~ m|\.tar\.bz2$|) {
             open(OUTPUT, "tar -zxpvf $ENV{'cgi.file'} 2> /dev/null |");              @cmd = ($location_of{'tar'},"-jxpvf");
             while (<OUTPUT>) {          } elsif ($file =~ m|\.bz2$|) {
                 print "$_<br />";              @cmd = ($location_of{'bunzip2'});
             }          } elsif ($file =~ m|\.gz$|) {
             close(TRACE);      @cmd = ($location_of{'gunzip'});
         } elsif ($ENV{'cgi.file'} =~ m|tar.bz2|) {          } elsif ($file =~ m|\.tar$|) {
             open(OUTPUT, "tar -jxpvf $ENV{'cgi.file'} 2> /dev/null |");              @cmd = ($location_of{'tar'},"-xpvf");
             while (<OUTPUT>) {  
                 print "$_<br />";  
             }  
             close(TRACE);  
         } elsif ($ENV{'cgi.file'} =~ m|bz2|) {  
             open(OUTPUT, "bunzip2 $ENV{'cgi.file'} 2> /dev/null |");  
             while (<OUTPUT>) {  
                 print "$_<br />";  
             }  
             close(TRACE);  
         } elsif ($ENV{'cgi.file'} =~ m|tgz|) {  
             open(OUTPUT, "tar -zxpvf $ENV{'cgi.file'} 2> /dev/null |");  
             while (<OUTPUT>) {  
                 print "$_<br />";  
             }  
             close(TRACE);  
         } elsif ($ENV{'cgi.file'} =~ m|gz|) {  
             open(OUTPUT, "gunzip $ENV{'cgi.file'} 2> /dev/null |");  
             while (<OUTPUT>) {  
                 print "$_<br />";  
             }  
             close(TRACE);  
         } elsif ($ENV{'cgi.file'} =~ m|tar|) {  
             open(OUTPUT, "tar -xpvf $ENV{'cgi.file'} 2> /dev/null |");  
             while (<OUTPUT>) {  
                 print "$_<br />";  
             }  
             close(TRACE);  
         } else {          } else {
             print "There has been an error in determining the file type of $ENV{'cgi.file'}, please check name";              print("There has been an error in determining the file type of $file, please check name");
         }          }
         print "<br /><b>Decompress complete!</b><br /></body></html>";   if (@cmd) {
       undef($!);
       undef($@);
       open(OUTPUT,"-|", @cmd, $file);
       while (my $line = <OUTPUT>) { print("$line<br />"); }
       close(OUTPUT);
       print("<p><b>Decompress complete.</b></p>");
       if ($! || $@) {
    print("<p><b>An error occurred</b></p><p>$!</p><p>$@</p>");
       }
       print("</body></html>");
    }
     }      }
 }  }
   

Removed from v.1.9  
changed lines
  Added in v.1.16


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>