version 1.8, 2023/08/23 20:39:06
|
version 1.15, 2024/04/14 17:12:28
|
Line 42 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); |
|
my %editors = &Apache::loncommon::permitted_editors($uri); |
|
unless ($editors{'daxe'}) { |
|
$request->content_type('text/plain'); |
|
$request->print(&mt('Daxe editor is not enabled for this Authoring Space.')); |
|
$request->status(403); |
|
return OK; |
|
} |
if ($uri =~ m{/$}) { |
if ($uri =~ m{/$}) { |
return directory_listing($uri, $request); |
return directory_listing($uri, $request); |
} elsif ($uri =~ m{^/priv/.*\.(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); |
|
} elsif ($uri =~ m{^/uploaded/$match_domain/$match_courseid/(docs|supplemental)/(default|\d+)/\d+/.*\.(html|htm|xhtml|xhtm)$}) { |
|
return convert_problem($uri, $request); |
} else { |
} else { |
# Apache should send other files directly |
# Apache should send other files directly |
$request->status(406); |
$request->status(406); |
Line 62 sub handler {
|
Line 71 sub handler {
|
|
|
sub convert_problem { |
sub convert_problem { |
my ($uri, $request) = @_; |
my ($uri, $request) = @_; |
|
if ($uri =~ m{^/priv/$match_domain/$match_username/}) { |
if ($uri =~ m{^/priv/([^/]+)/([^/]+)/}) { |
unless (&has_priv_access($uri)) { |
my ($domain, $user) = ($1, $2); |
$request->content_type('text/plain'); |
my ($uname, $udom) = ($env{'user.name'}, $env{'user.domain'}); |
$request->print(&mt('Forbidden URI: [_1]',$uri)); |
if (!defined $uname || !defined $udom || $domain ne $udom || $user ne $uname) { |
$request->status(403); |
|
return OK; |
|
} |
|
} elsif ($uri =~ m{^/uploaded/($match_domain)/($match_courseid)/}) { |
|
my ($posscdom,$posscnum) = ($1,$2); |
|
my $allowed; |
|
if ($env{'request.course.id'}) { |
|
my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'}; |
|
my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'}; |
|
if (($posscdom eq $cdom) && ($posscnum eq $cnum)) { |
|
if (&Apache::lonnet::allowed('mdc',$env{'request.course.id'})) { |
|
$allowed = 1; |
|
} |
|
} |
|
} |
|
unless ($allowed) { |
$request->content_type('text/plain'); |
$request->content_type('text/plain'); |
$request->print("Forbidden URI: $uri"); |
$request->print(&mt('Forbidden URI: [_1]',$uri)); |
$request->status(403); |
$request->status(403); |
return OK; |
return OK; |
} |
} |
} |
} |
my $file = &Apache::lonnet::filelocation('', $uri); |
my $file = &Apache::lonnet::filelocation('', $uri); |
&Apache::lonnet::repcopy($file); |
if (&Apache::lonnet::repcopy($file) eq 'ok') { |
if (! -e $file) { |
if (! -e $file) { |
$request->status(404); |
$request->print(&mt('Not found: [_1]',$uri)); |
|
$request->status(404); |
|
return OK; |
|
} |
|
} else { |
|
$request->print(&mt('Forbidden URI: [_1]',$uri)); |
|
$request->status(403); |
return OK; |
return OK; |
} |
} |
try { |
try { |
Line 95 sub convert_problem {
|
Line 125 sub convert_problem {
|
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 104 sub convert_problem {
|
Line 134 sub convert_problem {
|
sub directory_listing { |
sub directory_listing { |
my ($uri, $request) = @_; |
my ($uri, $request) = @_; |
my $res = '<?xml version="1.0" encoding="UTF-8"?>'."\n"; |
my $res = '<?xml version="1.0" encoding="UTF-8"?>'."\n"; |
|
my $referrer = $request->headers_in->{'Referer'}; |
|
my ($cdom,$cnum); |
|
if ($env{'request.course.id'}) { |
|
$cdom = $env{'course.'.$env{'request.course.id'}.'.domain'}; |
|
$cnum = $env{'course.'.$env{'request.course.id'}.'.num'}; |
|
} |
if ($uri eq '/') { |
if ($uri eq '/') { |
# root: let users browse /res |
|
$res .= "<directory name=\"/\">\n"; |
$res .= "<directory name=\"/\">\n"; |
$res .= "<directory name=\"priv\"/>\n"; |
if (($env{'request.course.id'}) && |
$res .= "<directory name=\"res\"/>\n"; |
($referrer =~ m{\Qfile=/daxeopen/uploaded/$cdom/$cnum/\E(docs|supplemental)/(default|\d+)/(\d+)/})) { |
} elsif ($uri !~ /^\/(priv|res)\//) { |
$res .= "<directory name=\"uploaded\"/>\n"; |
|
} else { |
|
# root: let users browse /res |
|
$res .= "<directory name=\"priv\"/>\n"; |
|
$res .= "<directory name=\"res\"/>\n"; |
|
} |
|
} elsif ($uri =~ m{^/uploaded/(.*)$}) { |
|
my $rem = $1; |
|
$rem =~ s{/$}{}; |
|
if (($env{'request.course.id'}) && |
|
($referrer =~ m{\Qfile=/daxeopen/uploaded/$cdom/$cnum/\E(docs|supplemental)/(default|\d+)/(\d+)/})) { |
|
my ($type,$folder,$rid) = ($1,$2,$3); |
|
if ($rem eq '') { |
|
$res .= "<directory name=\"uploaded\">\n"; |
|
$res .= "<directory name=\"$cdom\"/>\n"; |
|
} else { |
|
my @expected = ($cdom,$cnum,$type,$folder,$rid); |
|
my @rest = split(/\//,$rem); |
|
my $valid = 1; |
|
for (my $i=0; $i<@rest; $i++) { |
|
unless ($rest[$i] eq $expected[$i]) { |
|
$valid = 0; |
|
last; |
|
} |
|
} |
|
if ($valid) { |
|
my $dirname = $rest[-1]; |
|
$res .= "<directory name=\"$dirname\">\n"; |
|
if (scalar(@rest) == scalar(@expected)) { |
|
my $subdir = "/userfiles/$type/$folder/$rid"; |
|
my ($listref, $listerror) = &Apache::lonnet::dirlist($subdir,$cdom,$cnum,'',1); |
|
if ($listerror) { |
|
$request->content_type('text/plain'); |
|
$request->print(&mt('listing error: [_1]',$listerror)); |
|
$request->status(406); |
|
return OK; |
|
} elsif (scalar(@{$listref}) == 0) { |
|
$request->content_type('text/plain'); |
|
$request->print(&mt('Not found: [_1]',$uri)); |
|
$request->status(404); |
|
return OK; |
|
} else { |
|
my @lines = @{$listref}; |
|
my $dirpath = &LONCAPA::propath($cdom,$cnum).'/userfiles'; |
|
my $dirname = $uri; |
|
$dirname =~ s{^.*/([^/]*)$}{$1}; |
|
foreach my $line (@lines) { |
|
my ($path,$dom,undef,$testdir,undef,undef,undef,undef,$size,undef,$mtime) = split(/\&/,$line,12); |
|
my $isdir = ($testdir & 16384); |
|
$path =~ s{^$dirpath}{}; |
|
next if ($path eq '.' || $path eq '..'); |
|
$path =~ s{/$}{}; |
|
my $name = $path; |
|
if ($isdir) { |
|
$res .= "<directory name=\"$name\"/>\n"; |
|
} else { |
|
next if ($name =~ /\.bak$/); |
|
my $dt = DateTime->from_epoch(epoch => $mtime); |
|
my $modified = $dt->iso8601().'Z'; |
|
$res .= "<file name=\"$name\" size=\"$size\" modified=\"$modified\"/>\n"; |
|
} |
|
} |
|
} |
|
} else { |
|
my $nextidx = scalar(@rest); |
|
my $subdir = $expected[$nextidx]; |
|
$res .= "<directory name=\"$subdir\"/>"."\n"; |
|
} |
|
} else { |
|
$request->content_type('text/plain'); |
|
$request->print(&mt('Forbidden URI: [_1]',$uri)); |
|
$request->status(403); |
|
return OK; |
|
} |
|
} |
|
} else { |
|
$request->content_type('text/plain'); |
|
$request->print(&mt('Forbidden URI: [_1]',$uri)); |
|
$request->status(403); |
|
return OK; |
|
} |
|
} elsif ($uri !~ m{^/(priv|res)/}) { |
$request->content_type('text/plain'); |
$request->content_type('text/plain'); |
$request->print("Not found: $uri"); |
$request->print(&mt('Not found: [_1]',$uri)); |
$request->status(404); |
$request->status(404); |
return OK; |
return OK; |
} elsif ($uri =~ m{^/res/}) { |
} elsif ($uri =~ m{^/res/}) { |
Line 119 sub directory_listing {
|
Line 235 sub directory_listing {
|
my ($listref, $listerror) = &Apache::lonnet::dirlist($uri); |
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) { |
} elsif ($uri =~ m{^/res/[^/]+/$} && scalar(@{$listref}) == 0) { |
$request->content_type('text/plain'); |
$request->content_type('text/plain'); |
$request->print("Not found: $uri"); |
$request->print(&mt('Not found: [_1]',$uri)); |
$request->status(404); |
$request->status(404); |
return OK; |
return OK; |
} |
} |
my $dirname = $uri; |
my $dirname = $uri; |
$dirname =~ s{^.*/([^/]*)$}{$1}; |
$dirname =~ s{^.*/([^/]*)$}{$1}; |
$res .= "<directory name=\"$dirname/\">\n"; |
$res .= "<directory name=\"$dirname/\">\n"; |
|
my (%is_course,%is_courseauthor); |
if (ref($listref) eq 'ARRAY') { |
if (ref($listref) eq 'ARRAY') { |
my @lines = @{$listref}; |
my @lines = @{$listref}; |
foreach my $line (@lines) { |
foreach my $line (@lines) { |
Line 148 sub directory_listing {
|
Line 265 sub directory_listing {
|
($udom, $uname) = ($uri =~ m{^/res/($match_domain)/($match_courseid)}); |
($udom, $uname) = ($uri =~ m{^/res/($match_domain)/($match_courseid)}); |
} |
} |
if ($udom ne '' && $uname ne '') { |
if ($udom ne '' && $uname ne '') { |
# remove courses from the list |
my $key = $udom.':'.$uname; |
next if (&Apache::lonnet::is_course($udom, $uname)); |
if (exists($is_course{$key})) { |
|
if ($is_course{$key}) { |
|
next unless ($is_courseauthor{$key}); |
|
} |
|
} else { |
|
if (&Apache::lonnet::is_course($udom, $uname)) { |
|
$is_course{$key} = 1; |
|
if ($env{'request.course.id'}) { |
|
my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'}; |
|
my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'}; |
|
if (($cdom eq $udom) && ($cnum eq $uname)) { |
|
if (&Apache::lonnet::allowed('mdc', $env{'request.course.id'})) { |
|
$is_courseauthor{$key} = 1; |
|
} |
|
} |
|
} |
|
# remove courses from the list |
|
next unless ($is_courseauthor{$key}); |
|
} else { |
|
$is_course{$key} = 0; |
|
} |
|
} |
} |
} |
} |
} |
$path =~ s{/$}{}; |
$path =~ s{/$}{}; |
Line 164 sub directory_listing {
|
Line 302 sub directory_listing {
|
} |
} |
} |
} |
} elsif ($uri eq '/priv/') { |
} elsif ($uri eq '/priv/') { |
my $udom = $env{'user.domain'}; |
my $defdom = &get_defdom($referrer); |
if (!defined $udom) { |
if (!defined $defdom) { |
$request->content_type('text/plain'); |
$request->content_type('text/plain'); |
$request->print("Forbidden URI: $uri"); |
$request->print(&mt('Forbidden URI: [_1]',$uri)); |
$request->status(403); |
$request->status(403); |
return OK; |
return OK; |
} |
} |
$res .= "<directory name=\"priv\">\n"; |
$res .= "<directory name=\"priv\">\n"; |
$res .= "<directory name=\"$udom\"/>\n"; |
$res .= "<directory name=\"$defdom\"/>\n"; |
} elsif ($uri =~ m{^/priv/([^/]+)/$}) { |
} elsif ($uri =~ m{^/priv/($match_domain)/$}) { |
my $domain = $1; |
my $domain = $1; |
my ($uname, $udom) = ($env{'user.name'}, $env{'user.domain'}); |
my $defdom = &get_defdom($referrer); |
if (!defined $uname || !defined $udom || $domain ne $udom) { |
if ($domain ne $defdom) { |
$request->content_type('text/plain'); |
$request->content_type('text/plain'); |
$request->print("Forbidden URI: $uri"); |
$request->print(&mt('Forbidden URI: [_1]',$uri)); |
$request->status(403); |
$request->status(403); |
return OK; |
return OK; |
} |
} |
|
my $defname = &get_defname($domain,$referrer); |
$res .= "<directory name=\"$domain\">\n"; |
$res .= "<directory name=\"$domain\">\n"; |
$res .= "<directory name=\"$uname\"/>\n"; |
$res .= "<directory name=\"$defname\"/>\n"; |
} elsif ($uri =~ m{^/priv/([^/]+)/([^/]+)/}) { |
} elsif ($uri =~ m{^/priv/($match_domain)\/($match_username)/}) { |
my ($domain, $user) = ($1, $2); |
unless (&has_priv_access($uri)) { |
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->content_type('text/plain'); |
$request->print("Forbidden URI: $uri"); |
$request->print(&mt('Forbidden URI: [_1]',$uri)); |
$request->status(403); |
$request->status(403); |
return OK; |
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->content_type('text/plain'); |
$request->print("Not found: $uri"); |
$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"; |
Line 231 sub directory_listing {
|
Line 375 sub directory_listing {
|
} |
} |
} else { |
} else { |
$request->content_type('text/plain'); |
$request->content_type('text/plain'); |
$request->print("Not found: $uri"); |
$request->print(&mt('Not found: [_1]',$uri)); |
$request->status(404); |
$request->status(404); |
return OK; |
return OK; |
} |
} |
Line 241 sub directory_listing {
|
Line 385 sub directory_listing {
|
return OK; |
return OK; |
} |
} |
|
|
|
sub has_priv_access { |
|
my ($uri) = @_; |
|
my ($ownername,$ownerdom,$ownerhome) = |
|
&Apache::lonnet::constructaccess($uri); |
|
my $allowed; |
|
if (($ownername ne '') && ($ownerdom ne '') && ($ownerhome ne '')) { |
|
unless ($ownerhome eq 'no_host') { |
|
my @hosts = &Apache::lonnet::current_machine_ids(); |
|
if (grep(/^\Q$ownerhome\E$/,@hosts)) { |
|
$allowed = 1; |
|
} |
|
} |
|
} |
|
return $allowed; |
|
} |
|
|
|
sub get_defdom { |
|
my ($referrer) = @_; |
|
my $defdom; |
|
if ($env{'request.role'} =~ m{^au\./($match_domain)/$}) { |
|
$defdom = $1; |
|
} elsif ($env{'request.role'} =~ m{^(?:ca|aa)\.($match_domain)/($match_username)$}) { |
|
$defdom = $1; |
|
} elsif ($env{'request.course.id'}) { |
|
if ($referrer =~ m{\Qfile=/daxeopen/priv/\E($match_domain)/($match_username)/}) { |
|
my ($possdom,$possuname) = ($1,$2); |
|
if (&Apache::lonnet::is_course($possdom,$possuname)) { |
|
my $crsurl = &Apache::lonnet::courseid_to_courseurl($env{'request.course.id'}); |
|
if ($crsurl eq "/$possdom/$possuname") { |
|
$defdom = $possdom; |
|
} |
|
} else { |
|
if (&Apache::lonnet::domain($possdom) ne '') { |
|
$defdom = $possdom; |
|
} |
|
} |
|
} |
|
} |
|
if ($defdom eq '') { |
|
my ($is_adv,$is_author) = &Apache::lonnet::is_advanced_user($env{'user.domain'},$env{'user.name'}); |
|
if ($is_author) { |
|
$defdom = $env{'user.domain'}; |
|
} |
|
} |
|
return $defdom; |
|
} |
|
|
|
sub get_defname { |
|
my ($domain,$referrer) = @_; |
|
my $defname; |
|
if ($env{'request.role'} eq "au./$domain/") { |
|
$defname = $env{'user.name'}; |
|
} elsif ($env{'request.role'} =~ m{^(?:ca|aa)\./\Q$domain\E/($match_username)$}) { |
|
$defname = $1; |
|
} elsif ($env{'request.course.id'}) { |
|
if ($referrer =~ m{\Qfile=/daxeopen/priv/\E($match_domain)/($match_username)/}) { |
|
my ($possdom,$possuname) = ($1,$2); |
|
if ($domain eq $possdom) { |
|
if (&Apache::lonnet::is_course($possdom,$possuname)) { |
|
my $crsurl = &Apache::lonnet::courseid_to_courseurl($env{'request.course.id'}); |
|
if ($crsurl eq "/$possdom/$possuname") { |
|
$defname = $possuname; |
|
} |
|
} else { |
|
unless (&Apache::lonnet::homeserver($possuname,$possdom) eq 'no_host') { |
|
$defname = $possuname; |
|
} |
|
} |
|
} |
|
} |
|
} |
|
if ($defname eq '') { |
|
my ($is_adv,$is_author) = &Apache::lonnet::is_advanced_user($domain,$env{'user.name'}); |
|
if ($is_author) { |
|
$defname = $env{'user.name'}; |
|
} |
|
} |
|
return $defname; |
|
} |
|
|
1; |
1; |
__END__ |
__END__ |