--- loncom/auth/lonracc.pm 2002/10/29 18:34:33 1.7 +++ loncom/auth/lonracc.pm 2004/03/31 17:42:21 1.11 @@ -1,7 +1,7 @@ # The LearningOnline Network # Access Handler for File Transfers # -# $Id: lonracc.pm,v 1.7 2002/10/29 18:34:33 matthew Exp $ +# $Id: lonracc.pm,v 1.11 2004/03/31 17:42:21 raeburn Exp $ # # Copyright Michigan State University Board of Trustees # @@ -68,21 +68,28 @@ sub handler { $r->log_reason("Could not find host tab file"); return FORBIDDEN; } + my $return; + my @ids=(); while ($readline=<$fh>) { my ($id,$domain,$role,$name,$ip)=split(/:/,$readline); if ($name =~ /$reqhost/i) { my $filename=$r->filename; + my $uri =$r->uri; if ((-e "$filename.$id") || &subscribed($filename,$id) || - ($filename=~/\.meta$/)) { + ($filename=~/\.meta$/) || + ($uri=~m|^/raw/uploaded|)) { return OK; } else { - $r->log_reason("$id not subscribed", $r->filename); - return FORBIDDEN; + $return=FORBIDDEN; + push(@ids,$id); } } } - + if ($return == FORBIDDEN) { + $r->log_reason(join(':',@ids)." not subscribed", $r->filename); + return FORBIDDEN; + } } $r->log_reason("Invalid request for file transfer from $reqhost", $r->filename);