version 1.15, 2016/08/01 15:19:05
|
version 1.16, 2018/07/04 16:58:26
|
Line 82 BEGIN {
|
Line 82 BEGIN {
|
Inputs: 1 ( optional). When called from a handler in mod_perl, |
Inputs: 1 ( optional). When called from a handler in mod_perl, |
pass in the request object. |
pass in the request object. |
|
|
Returns: 1 if the user has a LON-CAPA cookie 0 if not. |
Returns: 1 if the user has a LON-CAPA cookie, 0 if not. |
Loads the users environment into the %env hash if the cookie is correct. |
Side effect: Loads the user's environment into the %env hash |
|
if the cookie is correct. |
|
|
=cut |
=cut |
|
|
Line 91 Loads the users environment into the %en
|
Line 92 Loads the users environment into the %en
|
############################################# |
############################################# |
sub check_cookie_and_load_env { |
sub check_cookie_and_load_env { |
my ($r) = @_; |
my ($r) = @_; |
my %cookies; |
my ($hascookie,$handle) = &check_cookie($r); |
if (ref($r)) { |
if (($hascookie) && ($handle)) { |
%cookies = CGI::Cookie->fetch($r); |
&transfer_profile_to_env($handle); |
} else { |
|
%cookies = CGI::Cookie->fetch(); |
|
} |
|
if (exists($cookies{'lonID'}) && |
|
-e "$lonidsdir/".$cookies{'lonID'}->value.".id") { |
|
# cookie found |
|
&transfer_profile_to_env($cookies{'lonID'}->value); |
|
return 1; |
|
} else { |
|
# No cookie found |
|
return 0; |
|
} |
} |
|
return $hascookie; |
} |
} |
|
|
############################################# |
############################################# |
Line 117 sub check_cookie_and_load_env {
|
Line 108 sub check_cookie_and_load_env {
|
|
|
Inputs: none |
Inputs: none |
|
|
|
Array context: |
|
Returns: (1,$handle) if the user has a LON-CAPA cookie; |
|
(0) if user does not have a LON-CAPA cookie. |
|
|
|
Scalar context: |
Returns: 1 if the user has a LON-CAPA cookie and 0 if not. |
Returns: 1 if the user has a LON-CAPA cookie and 0 if not. |
|
|
=cut |
=cut |
Line 124 Returns: 1 if the user has a LON-CAPA co
|
Line 120 Returns: 1 if the user has a LON-CAPA co
|
############################################# |
############################################# |
############################################# |
############################################# |
sub check_cookie { |
sub check_cookie { |
my %cookies=fetch CGI::Cookie; |
my ($r) = @_; |
if (exists($cookies{'lonID'}) && |
my %cookies; |
-e "$lonidsdir/".$cookies{'lonID'}->value.".id") { |
if (ref($r)) { |
# cookie found |
%cookies = CGI::Cookie->fetch($r); |
return 1; |
} else { |
|
%cookies = CGI::Cookie->fetch(); |
|
} |
|
if (keys(%cookies)) { |
|
my $name = 'lonID'; |
|
my $secure = 'lonSID'; |
|
my $linkname = 'lonLinkID'; |
|
my $pubname = 'lonPubID'; |
|
my $lonid; |
|
if (exists($cookies{$secure})) { |
|
$lonid=$cookies{$secure}; |
|
} elsif (exists($cookies{$name})) { |
|
$lonid=$cookies{$name}; |
|
} elsif (exists($cookies{$linkname})) { |
|
$lonid=$cookies{$linkname}; |
|
} elsif (exists($cookies{$pubname})) { |
|
$lonid=$cookies{$pubname}; |
|
} |
|
if ($lonid) { |
|
my $handle=&LONCAPA::clean_handle($lonid->value); |
|
if ($handle) { |
|
if (-l "$lonidsdir/$handle.id") { |
|
my $link = readlink("$lonidsdir/$handle.id"); |
|
if ((-e $link) && ($link =~ m{^\Q$lonidsdir\E/(.+)\.id$})) { |
|
$handle = $1; |
|
} |
|
} |
|
if (-e "$lonidsdir/".$handle.".id") { |
|
# valid cookie found |
|
if (wantarray) { |
|
return (1,$handle); |
|
} else { |
|
return 1; |
|
} |
|
} |
|
} |
|
} |
|
} |
|
# No valid cookie found |
|
if (wantarray) { |
|
return (0); |
} else { |
} else { |
# No cookie found |
|
return 0; |
return 0; |
} |
} |
} |
} |