--- loncom/auth/lonlogout.pm 2017/11/03 18:55:16 1.45.2.3.2.1 +++ loncom/auth/lonlogout.pm 2022/05/29 13:07:03 1.45.2.8.2.1 @@ -1,7 +1,7 @@ # The LearningOnline Network # Logout Handler # -# $Id: lonlogout.pm,v 1.45.2.3.2.1 2017/11/03 18:55:16 raeburn Exp $ +# $Id: lonlogout.pm,v 1.45.2.8.2.1 2022/05/29 13:07:03 raeburn Exp $ # # Copyright Michigan State University Board of Trustees # @@ -71,25 +71,35 @@ sub handler { my @profile; my $lonidsdir=$r->dir_config('lonIDsDir'); &Apache::lonnet::transfer_profile_to_env($lonidsdir,$handle); - unlink("$lonidsdir/$handle.id"); + if (unlink("$lonidsdir/$handle.id")) { + if (($env{'user.linkedenv'} =~ /^[a-f0-9]+_linked$/) && + (-l "$lonidsdir/$env{'user.linkedenv'}.id") && + (readlink("$lonidsdir/$env{'user.linkedenv'}.id") eq "$lonidsdir/$handle.id")) { + unlink("$lonidsdir/$env{'user.linkedenv'}.id"); + } + } if (!$Apache::lonlocal::lh) { &Apache::lonlocal::get_language_handle($r); } my %temp=('logout' => time); + my $ip = &Apache::lonnet::get_requestor_ip(); &Apache::lonnet::put('email_status',\%temp); &Apache::lonnet::log($env{'user.domain'}, $env{'user.name'}, $env{'user.home'}, - "Logout $ENV{'REMOTE_ADDR'}"); + "Logout $ip"); &Apache::loncommon::content_type($r,'text/html'); - #expire the cookie - my $c = new CGI::Cookie(-name => 'lonID', - -value => '', - -expires => '-10y',); - $r->header_out('Set-cookie' => $c); - + #expire the cookies + my %cookies=CGI::Cookie->parse($r->header_in('Cookie')); + foreach my $name (keys(%cookies)) { + next unless ($name =~ /^lon(|S|Link|Pub)ID$/); + my $c = new CGI::Cookie(-name => $name, + -value => '', + -expires => '-10y',); + $r->headers_out->add('Set-cookie' => $c); + } $r->send_http_header; return OK if $r->header_only; # -------------------------------------------------------- Menu script and info @@ -115,7 +125,7 @@ sub handler { $ssofile = '/'.&Apache::loncommon::clean_path($r->dir_config("lonSSOUserLogoutHeadFile_$domain")); if ($ssofile eq $r->dir_config("lonSSOUserLogoutHeadFile_$domain")) { if ($ssofile =~ /^\Q$londocroot\E/) { - if (open(my $fh,"<$ssofile")) { + if (open(my $fh,'<',$ssofile)) { $headextra = join('',<$fh>); close($fh); } @@ -127,7 +137,7 @@ sub handler { $ssofile = '/'.&Apache::loncommon::clean_path($r->dir_config('lonSSOUserLogoutHeadFile')); if ($ssofile eq $r->dir_config('lonSSOUserLogoutHeadFile')) { if ($ssofile =~ /^\Q$londocroot\E/) { - if (open(my $fh,"<$ssofile")) { + if (open(my $fh,'<',$ssofile)) { $headextra.= join('',<$fh>); close($fh); } @@ -177,10 +187,13 @@ sub handler { $login_url = $relogin_server.'/adm/'. ($env{'request.sso.login'} ? 'roles': 'login?domain='.$domain); } - $relogmessage.='

'.&mt('You have been successfully logged out.').' ' - .&mt('You can [_1]close this window[_2] now.' - ,'','') # ,'','') - .'

'; + $relogmessage.='

'.&mt('You have been successfully logged out.'); + unless (($env{'request.deeplink.login'}) && ($env{'request.deeplink.target'} eq '_self')) { + $relogmessage.=' '.&mt('You can [_1]close this window[_2] now.', + '','') # ,'',''); + } + $relogmessage.='

'; + =pod =head1 NOTES: @@ -190,20 +203,22 @@ sub handler { Due to security reasons in new web browsers a window could only be closed with javascript, if this window has also been opened with javascript. This is not done here which means that in most cases the close link will not work. Unless we find another solution, this link should not be offered. (Stefan Bisitz, 2008-08-01) =cut - $relogmessage.='

'.&mt('[_1]Log in again[_2]' - ,'','') - .'

'; + unless ($env{'request.deeplink.login'}) { + $relogmessage.='

'.&mt('[_1]Log in again[_2]' + ,'','') + .'

'; + } } if ($env{'request.sso.login'} && defined($r->dir_config("lonSSOUserLogoutMessageFile_$domain"))) { - if (open(my $fh,$r->dir_config("lonSSOUserLogoutMessageFile_$domain"))) { + if (open(my $fh,'<',$r->dir_config("lonSSOUserLogoutMessageFile_$domain"))) { $relogmessage.= join('',<$fh>); close($fh); } } if ($env{'request.sso.login'} && defined($r->dir_config('lonSSOUserLogoutMessageFile'))) { - if (open(my $fh,$r->dir_config('lonSSOUserLogoutMessageFile'))) { + if (open(my $fh,'<',$r->dir_config('lonSSOUserLogoutMessageFile'))) { $relogmessage.= join('',<$fh>); close($fh); } @@ -217,6 +232,13 @@ $windowinfo $relogmessage $end_page ENDDOCUMENT + if ($env{'request.balancercookie'}) { + my ($balancer,$cookie) = split(/:/,$env{'request.balancercookie'}); + if ((&Apache::lonnet::hostname($balancer)) && ($cookie =~ /^[a-f0-9]{32}$/)) { + $cookie = $env{'user.domain'}.'_'.$env{'user.name'}.'_'.$cookie; + &Apache::lonnet::delbalcookie($cookie,$balancer); + } + } $r->register_cleanup(\&flush_course_logs); return OK; }