Diff for /loncom/homework/daxeopen.pm between versions 1.5 and 1.10

version 1.5, 2017/02/23 21:32:08 version 1.10, 2023/08/23 22:25:48
Line 28 Line 28
 ###  ###
   
 package Apache::daxeopen;  package Apache::daxeopen;
   use strict;
   
 use Apache::Constants;  use Apache::Constants qw(:common);
 use DateTime;  use DateTime;
 use Try::Tiny;  use Try::Tiny;
 use File::stat;  use File::stat;
Line 41  use Apache::lonnet; Line 42  use Apache::lonnet;
 use Apache::pre_xml;  use Apache::pre_xml;
 use Apache::html_to_xml;  use Apache::html_to_xml;
 use Apache::post_xml;  use Apache::post_xml;
   use Apache::lonlocal;
   
 sub handler {  sub handler {
     my $request = shift;      my $request = shift;
     my $uri = $request->uri;      my $uri = $request->uri;
     $uri =~ s/^\/daxeopen//;      $uri =~ s{^/daxeopen}{};
     &Apache::loncommon::no_cache($request);      &Apache::loncommon::no_cache($request);
     if ($uri =~ /\/$/) {      if ($uri =~ m{/$}) {
         return directory_listing($uri, $request);          return directory_listing($uri, $request);
     } elsif ($uri =~ /\.(task|problem|exam|quiz|assess|survey|library|xml|html|htm|xhtml|xhtm)$/) {      } elsif ($uri =~ m{^/priv/.*\.(task|problem|exam|quiz|assess|survey|library|xml|html|htm|xhtml|xhtm)$}) {
         return convert_problem($uri, $request);          return convert_problem($uri, $request);
     } else {      } else {
         # Apache should send other files directly          # Apache should send other files directly
Line 61  sub handler { Line 62  sub handler {
   
 sub convert_problem {  sub convert_problem {
     my ($uri, $request) = @_;      my ($uri, $request) = @_;
           if ($uri =~ m{^/priv/([^/]+)/([^/]+)/}) {
           my ($domain, $user) = ($1, $2);
           my ($uname, $udom) = ($env{'user.name'}, $env{'user.domain'});
           if (!defined $uname || !defined $udom || $domain ne $udom || $user ne $uname) {
               $request->content_type('text/plain');
               $request->print(&mt('Forbidden URI: [_1]',$uri));
               $request->status(403);
               return OK;
           }
       }
     my $file = &Apache::lonnet::filelocation('', $uri);      my $file = &Apache::lonnet::filelocation('', $uri);
     &Apache::lonnet::repcopy($file);      &Apache::lonnet::repcopy($file);
     if (! -e $file) {      if (! -e $file) {
Line 78  sub convert_problem { Line 88  sub convert_problem {
           $case_sensitive = 0;            $case_sensitive = 0;
         }          }
         $textref = &Apache::html_to_xml::html_to_xml($textref, $warnings, $case_sensitive);          $textref = &Apache::html_to_xml::html_to_xml($textref, $warnings, $case_sensitive);
         my $text = &Apache::post_xml::post_xml($textref, $file, $perlvar{'lonDocRoot'}, $warnings);          my $text = &Apache::post_xml::post_xml($textref, $file, $Apache::lonnet::perlvar{'lonDocRoot'}, $warnings);
         &Apache::loncommon::content_type($request, 'text/xml', 'utf-8');          &Apache::loncommon::content_type($request, 'text/xml', 'utf-8');
         $request->print($text);          $request->print($text);
         return OK;          return OK;
     } catch {      } catch {
         $request->content_type('text/plain');          $request->content_type('text/plain');
         $request->print("convert failed for $file: $_");          $request->print(&mt('convert failed for [_1]:',$file)." $_");
         $request->status(406);          $request->status(406);
         return OK;          return OK;
     };      };
Line 96  sub directory_listing { Line 106  sub directory_listing {
     if ($uri eq '/') {      if ($uri eq '/') {
         # root: let users browse /res          # root: let users browse /res
         $res .= "<directory name=\"/\">\n";          $res .= "<directory name=\"/\">\n";
           $res .= "<directory name=\"priv\"/>\n";
         $res .= "<directory name=\"res\"/>\n";          $res .= "<directory name=\"res\"/>\n";
     } elsif ($uri !~ /^\/(priv|res)\//) {      } elsif ($uri !~ /^\/(priv|res)\//) {
           $request->content_type('text/plain');
           $request->print(&mt('Not found: [_1]',$uri));
         $request->status(404);          $request->status(404);
         return OK;          return OK;
     } elsif ($uri =~ /^\/res\//) {      } elsif ($uri =~ m{^/res/}) {
  (my $listref, $listerror) = &Apache::lonnet::dirlist($uri);          # NOTE: dirlist does not return an error for /res/idontexist/
    my ($listref, $listerror) = &Apache::lonnet::dirlist($uri);
  if ($listerror) {   if ($listerror) {
             $request->content_type('text/plain');              $request->content_type('text/plain');
             $request->print("listing error: $listerror");              $request->print(&mt('listing error: [_1]',$listerror));
             $request->status(406);              $request->status(406);
             return OK;              return OK;
    } elsif ($uri =~ m{^/res/[^/]+/$} && scalar(@{$listref}) == 0) {
               $request->content_type('text/plain');
               $request->print(&mt('Not found: [_1]',$uri));
               $request->status(404);
               return OK;
  }   }
         my $dirname = $uri;          my $dirname = $uri;
         $dirname =~ s/^.*\/([^\/]*)$/$1/;          $dirname =~ s{^.*/([^/]*)$}{$1};
         $res .= "<directory name=\"$dirname/\">\n";          $res .= "<directory name=\"$dirname/\">\n";
         if (ref($listref) eq 'ARRAY') {          if (ref($listref) eq 'ARRAY') {
             my @lines = @{$listref};              my @lines = @{$listref};
             foreach my $line (@lines) {              foreach my $line (@lines) {
                 my ($path, $dom, undef, $testdir, undef, undef, undef, undef, undef, undef, undef, undef, undef, undef, $obs, undef) = split(/\&/, $line, 16);                  my ($path, $dom, undef, $testdir, undef, undef, undef, undef, $size, undef, $mtime, undef, undef, undef, $obs, undef) = split(/\&/, $line, 16);
                 my $isdir = ($testdir & 16384) || $dom =~ /^(user|domain)$/;                  my $isdir = ($testdir & 16384) || $dom =~ /^(user|domain)$/;
                 $path =~ s/^\/home\/httpd\/html\/res\///;                  $path =~ s{^/home/httpd/html/res/}{};
                 next if $path eq '.' || $path eq '..';                  next if $path eq '.' || $path eq '..';
                 next if $path =~ /\.meta$/ || $obs || $path =~ /\.\d+\.[^.]+$/;                  next if $path =~ /\.meta$/ || $obs || $path =~ /\.\d+\.[^.]+$/;
                 if ($dom ne 'domain') {                  if ($dom ne 'domain') {
Line 132  sub directory_listing { Line 151  sub directory_listing {
                         next if (&Apache::lonnet::is_course($udom, $uname));                          next if (&Apache::lonnet::is_course($udom, $uname));
                     }                      }
                 }                  }
                 $path =~ s/\/$//;                  $path =~ s{/$}{};
                 my $name = $path;                  my $name = $path;
                 if ($isdir) {                  if ($isdir) {
                     $res .= "<directory name=\"$name\"/>\n";                      $res .= "<directory name=\"$name\"/>\n";
                 } else {                  } else {
                     $res .= "<file name=\"$name\"/>\n";                      my $dt = DateTime->from_epoch(epoch => $mtime);
                       my $modified = $dt->iso8601().'Z';
                       $res .= "<file name=\"$name\" size=\"$size\" modified=\"$modified\"/>\n";
                 }                  }
             }              }
         }          }
     } else {      } elsif ($uri eq '/priv/') {
           my $udom = $env{'user.domain'};
           if (!defined $udom) {
               $request->content_type('text/plain');
               $request->print(&mt('Forbidden URI: [_1]',$uri));
               $request->status(403);
               return OK;
           }
           $res .= "<directory name=\"priv\">\n";
           $res .= "<directory name=\"$udom\"/>\n";
       } elsif ($uri =~ m{^/priv/([^/]+)/$}) {
           my $domain = $1;
           my ($uname, $udom) = ($env{'user.name'}, $env{'user.domain'});
           if (!defined $uname || !defined $udom || $domain ne $udom) {
               $request->content_type('text/plain');
               $request->print(&mt('Forbidden URI: [_1]',$uri));
               $request->status(403);
               return OK;
           }
           $res .= "<directory name=\"$domain\">\n";
           $res .= "<directory name=\"$uname\"/>\n";
       } elsif ($uri =~ m{^/priv/([^/]+)/([^/]+)/}) {
           my ($domain, $user) = ($1, $2);
           my ($uname, $udom) = ($env{'user.name'}, $env{'user.domain'});
           if (!defined $uname || !defined $udom || $domain ne $udom || $user ne $uname) {
               $request->content_type('text/plain');
               $request->print(&mt('Forbidden URI: [_1]',$uri));
               $request->status(403);
               return OK;
           }
         my $dirpath = &Apache::lonnet::filelocation('', $uri);          my $dirpath = &Apache::lonnet::filelocation('', $uri);
         if (! -e $dirpath) {          if (! -e $dirpath) {
               $request->content_type('text/plain');
               $request->print(&mt('Not found: [_1]',$uri));
             $request->status(404);              $request->status(404);
             return OK;              return OK;
         }          }
         $dirpath =~ s/\/$//;          $dirpath =~ s{/$}{};
         opendir my $dir, $dirpath or die "Cannot open directory: $dirpath";          my @files;
         my @files = readdir $dir;          if (opendir(my $dir, $dirpath)) {
         closedir $dir;              @files = readdir($dir);
               closedir($dir);
           } else {
               $request->content_type('text/plain');
               $request->print(&mt('Error opening directory: [_1]',$dirpath));
               $request->status(403);
               return OK;
           }
         my $dirname = $dirpath;          my $dirname = $dirpath;
         $dirname =~ s/^.*\/([^\/]*)$/$1/;          $dirname =~ s{^.*/([^/]*)$}{$1};
         $res .= "<directory name=\"$dirname\">\n";          $res .= "<directory name=\"$dirname\">\n";
         foreach my $name (@files) {          foreach my $name (@files) {
             if ($name eq '.' || $name eq '..') {              if ($name eq '.' || $name eq '..') {
Line 161  sub directory_listing { Line 220  sub directory_listing {
             if ($name =~ /\.(bak|log|meta|save)$/) {              if ($name =~ /\.(bak|log|meta|save)$/) {
                 next;                  next;
             }              }
             $sb = stat($dirpath.'/'.$name);              my $sb = stat($dirpath.'/'.$name);
             my $mode = $sb->mode;              my $mode = $sb->mode;
             if (S_ISDIR($mode)) {              if (S_ISDIR($mode)) {
                 $res .= "<directory name=\"$name\"/>\n";                  $res .= "<directory name=\"$name\"/>\n";
Line 176  sub directory_listing { Line 235  sub directory_listing {
                 $res .= "/>\n";                  $res .= "/>\n";
             }              }
         }          }
       } else {
           $request->content_type('text/plain');
           $request->print(&mt('Not found: [_1]',$uri));
           $request->status(404);
           return OK;
     }      }
     $res .= "</directory>\n";      $res .= "</directory>\n";
     &Apache::loncommon::content_type($request, 'text/xml', 'utf-8');      &Apache::loncommon::content_type($request, 'text/xml', 'utf-8');

Removed from v.1.5  
changed lines
  Added in v.1.10


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