--- loncom/auth/lonracc.pm 2002/01/17 19:25:31 1.4 +++ loncom/auth/lonracc.pm 2002/07/26 19:35:20 1.5 @@ -1,7 +1,7 @@ # The LearningOnline Network # Access Handler for File Transfers # -# $Id: lonracc.pm,v 1.4 2002/01/17 19:25:31 harris41 Exp $ +# $Id: lonracc.pm,v 1.5 2002/07/26 19:35:20 albertel Exp $ # # Copyright Michigan State University Board of Trustees # @@ -34,8 +34,22 @@ package Apache::lonracc; use strict; use Apache::Constants qw(:common :remotehost); +use Apache::lonnet(); use Apache::File(); +sub subscribed { + my ($filename,$id) = @_; + my $found=0; + my $expr='^'.$id.':'.$Apache::lonnet::hostip{$id}.':'; + $expr =~ s/\./\\\./g; + my $sh; + if ($sh=Apache::File->new("$filename.subscription")) { + while (my $subline=<$sh>) { if ($subline =~ /$expr/) { $found=1; } } + $sh->close(); + } + return $found; +} + sub handler { my $r = shift; my $reqhost; @@ -55,7 +69,9 @@ sub handler { my ($id,$domain,$role,$name,$ip)=split(/:/,$readline); if ($name =~ /$reqhost/i) { my $filename=$r->filename; - if ((-e "$filename.$id") || ($filename=~/\.meta$/)) { + if ((-e "$filename.$id") || + &subscribed($filename,$id) || + ($filename=~/\.meta$/)) { return OK; } else { $r->log_reason("$id not subscribed", $r->filename);