--- loncom/auth/lonlogout.pm 2008/04/02 12:29:38 1.30 +++ loncom/auth/lonlogout.pm 2018/11/24 16:19:04 1.56 @@ -1,7 +1,7 @@ # The LearningOnline Network # Logout Handler # -# $Id: lonlogout.pm,v 1.30 2008/04/02 12:29:38 bisitz Exp $ +# $Id: lonlogout.pm,v 1.56 2018/11/24 16:19:04 raeburn Exp $ # # Copyright Michigan State University Board of Trustees # @@ -26,15 +26,30 @@ # http://www.lon-capa.org/ # +=head1 NAME + +Apache::lonlogout + +=head1 SYNOPSIS + + +This is part of the LearningOnline Network with CAPA project +described at http://www.lon-capa.org. + + +=cut + package Apache::lonlogout; use strict; use Apache::Constants qw(:common); use Apache::File; use Apache::lonnet; +use Apache::loncommon; use Apache::lonmenu; use CGI::Cookie(); use Apache::lonlocal; +use LONCAPA qw(:DEFAULT :match); sub handler { my $r = shift; @@ -49,10 +64,23 @@ sub handler { } #we've got a valid user + #any locks in place? + my $locknum=&Apache::lonnet::get_locks(); + if ($locknum) { return 409; } + #nope, go ahead 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); &Apache::lonnet::put('email_status',\%temp); &Apache::lonnet::log($env{'user.domain'}, @@ -62,18 +90,19 @@ sub handler { &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 - my $windowinfo=&Apache::lonmenu::close(); - $windowinfo.=&Apache::lonnavmaps::close(); # ---------------------------------------------------------------- Get handover &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['handover']); my $switch=''; @@ -81,48 +110,130 @@ sub handler { my $relogmessage=''; if ($env{'form.handover'}) { $switch=''; + $env{'form.handover'}.'" />'; $start_page=&Apache::loncommon::start_page('Switching Server ...', $switch); } else { - $start_page=&Apache::loncommon::start_page('Logged Out',undef, - {'no_inline_link' => 1,}); + my $domain = $env{'user.domain'}; + my ($headextra,$ssofile); + if ($env{'request.sso.login'}) { + my $londocroot = $r->dir_config('lonDocRoot'); + if ($domain =~ /^$match_domain$/) { + if (defined($r->dir_config("lonSSOUserLogoutHeadFile_$domain"))) { + $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)) { + $headextra = join('',<$fh>); + close($fh); + } + } + } + } + } + if (defined($r->dir_config('lonSSOUserLogoutHeadFile'))) { + $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)) { + $headextra.= join('',<$fh>); + close($fh); + } + } + } + } + } + $start_page=&Apache::loncommon::start_page('Logged Out',$headextra, + {'no_nav_bar' => 1,}); - $relogmessage.='

'.&mt('Goodbye').'

'; + $relogmessage.='

'.&mt('Goodbye').'

' + .'

'.&mt('Thank you for using LON-CAPA.').'

'; if (!$env{'request.sso.norelogin'}) { - my $relogin_server; + my ($relogin_server,$login_url); if ($env{'request.sso.reloginserver'}) { $relogin_server = $env{'request.sso.reloginserver'}; - } - my $login_url = $relogin_server.'/adm/'. - ($env{'request.sso.login'} ? 'roles': 'login'); - - $relogmessage.=&mt('Please either [_1]close this window[_2] or [_3]log in again[_4].' - ,'','' - ,'',''); + } else { + my %domdefaults = &Apache::lonnet::get_domain_defaults($domain); + if ($domdefaults{'portal_def'}) { + $login_url = $domdefaults{'portal_def'}; + } else { + my $checkloginvia = 1; + my ($lonhost,$server,$path,$isredirect) = + &Apache::lonnet::choose_server($domain,$checkloginvia); + if ($server && $lonhost) { + $login_url = $Apache::lonnet::protocol{$lonhost}. + '://'.$server.$path; + if (($path eq '') && (!$isredirect)) { + my $serverhomeID = + &Apache::lonnet::get_server_homeID($server); + my $serverhomedom = + &Apache::lonnet::host_domain($serverhomeID); + if ($serverhomedom ne $domain) { + $path = '/adm/login'; + $login_url .= $path; + } + } + if ($path eq '/adm/login' && $domain ne '') { + $login_url .= '?domain='.$domain; + } + } + } + } + if ($login_url eq '') { + $login_url = $relogin_server.'/adm/'. + ($env{'request.sso.login'} ? 'roles': 'login?domain='.$domain); + } + $relogmessage.='

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

'; +=pod + +=head1 NOTES: + +'','' + +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 + unless ($env{'request.lti.login'}) { + $relogmessage.='

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

'; + } } - my $domain = $env{'user.domain'}; if ($env{'request.sso.login'} && defined($r->dir_config("lonSSOUserLogoutMessageFile_$domain"))) { - open(my $fh,$r->dir_config("lonSSOUserLogoutMessageFile_$domain")); - $relogmessage.= join('',<$fh>); + if (open(my $fh,'<',$r->dir_config("lonSSOUserLogoutMessageFile_$domain"))) { + $relogmessage.= join('',<$fh>); + close($fh); + } } if ($env{'request.sso.login'} && defined($r->dir_config('lonSSOUserLogoutMessageFile'))) { - open(my $fh,$r->dir_config('lonSSOUserLogoutMessageFile')); - $relogmessage.= join('',<$fh>); + if (open(my $fh,'<',$r->dir_config('lonSSOUserLogoutMessageFile'))) { + $relogmessage.= join('',<$fh>); + close($fh); + } } - } my $end_page=&Apache::loncommon::end_page(); # --------------------------------------------------------------- Screen Output $r->print(<register_cleanup(\&flush_course_logs); return OK; } @@ -137,7 +248,6 @@ __END__ -