File:  [LON-CAPA] / loncom / auth / lonacc.pm
Revision 1.3: download - view: text, annotated - select for diffs
Mon Nov 22 17:23:13 1999 UTC (24 years, 5 months ago) by www
Branches: MAIN
CVS tags: HEAD
Limit length of $middlename to 16 characters for critical message buffer
Add appenv to lonnet (not tested yet)

# The LearningOnline Network
# Cookie Based Access Handler
# 5/21/99,5/22,5/29,5/31,6/15,16/11 Gerd Kortemeyer

package Apache::lonacc;

use strict;
use Apache::Constants qw(:common);
use Apache::File;
use CGI::Cookie();

sub handler {
    my $r = shift;
    my $requrl=$r->uri;
    my %cookies=CGI::Cookie->parse($r->header_in('Cookie'));
    my $lonid=$cookies{'lonID'};
    my $cookie;
    if ($lonid) {
	my $handle=$lonid->value;
        $handle=~s/\W//g;
        my $lonidsdir=$r->dir_config('lonIDsDir');
        if ((-e "$lonidsdir/$handle.id") && ($handle ne '')) {
            my @profile;
	    {
             my $idf=Apache::File->new("$lonidsdir/$handle.id");
             @profile=<$idf>;
	    }
            my $envi;
            for ($envi=0;$envi<=$#profile;$envi++) {
		chomp($profile[$envi]);
		my ($envname,$envvalue)=split(/=/,$profile[$envi]);
                $r->subprocess_env("profile.$envname" => "$envvalue");
            }
            $r->subprocess_env("user.environment" => "$lonidsdir/$handle.id");
            $r->subprocess_env("request.state" => "published");
            return OK; 
        } else { 
           $r->log_reason("Cookie $handle not valid", $r->filename) 
        };
    }
    $cookie=CGI::Cookie->new(-name  => 'lonURL',
                             -value => $requrl, 
                             -path  => '/');
    $r->err_headers_out->add('Set-Cookie' => $cookie);
    return FORBIDDEN;
}

1;
__END__









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