version 1.10, 2006/11/23 01:49:41
|
version 1.16, 2007/09/08 02:43:33
|
Line 59 sub init_env {
|
Line 59 sub init_env {
|
return $r->dir_config('lonIDsDir')."/$handle.id"; |
return $r->dir_config('lonIDsDir')."/$handle.id"; |
} |
} |
|
|
|
sub do_redirect { |
|
my ($r,$url,$only_body,$extra_text) = @_; |
|
$r->send_http_header; |
|
my $start_page = |
|
&Apache::loncommon::start_page('Switching Server ...',undef, |
|
{'redirect' => [0.5,$url], |
|
'no_inline_link' => 1, |
|
'only_body' => $only_body,}); |
|
my $end_page = &Apache::loncommon::end_page(); |
|
$r->print($start_page.$extra_text.$end_page); |
|
return OK; |
|
|
|
} |
|
|
sub handler { |
sub handler { |
my ($r) = @_; |
my ($r) = @_; |
|
|
Line 68 sub handler {
|
Line 82 sub handler {
|
&Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'}, |
&Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'}, |
['otherserver','role']); |
['otherserver','role']); |
|
|
my $switch_to=$Apache::lonnet::hostname{$env{'form.otherserver'}}; |
my $switch_to=&Apache::lonnet::hostname($env{'form.otherserver'}); |
if (!$env{'form.otherserver'}) { |
if (!$env{'form.otherserver'}) { |
$env{'form.otherserver'}=&Apache::lonnet::spareserver(30000,undef,1); |
$env{'form.otherserver'}=&Apache::lonnet::spareserver(30000,undef,1); |
$switch_to=$Apache::lonnet::hostname{$env{'form.otherserver'}}; |
$switch_to=&Apache::lonnet::hostname($env{'form.otherserver'}); |
} |
} |
|
|
if (!defined($switch_to)) { return FORBIDDEN; } |
if (!defined($switch_to)) { return FORBIDDEN; } |
|
|
|
if ($env{'user.name'} eq 'public' |
|
&& $env{'user.domain'} eq 'public') { |
|
my $url = 'http://'.$switch_to.'/'.$r->uri; |
|
return &do_redirect($r,$url,1) |
|
} |
|
|
if ($env{'form.role'} && |
if ($env{'form.role'} && |
!exists($env{'user.role.'.$env{'form.role'}})) { return FORBIDDEN; } |
!exists($env{'user.role.'.$env{'form.role'}})) { return FORBIDDEN; } |
|
|
Line 89 sub handler {
|
Line 109 sub handler {
|
"Switch Server to $env{'form.otherserver'} with role $env{'form.role'} $ENV{'REMOTE_ADDR'}"); |
"Switch Server to $env{'form.otherserver'} with role $env{'form.role'} $ENV{'REMOTE_ADDR'}"); |
|
|
&Apache::loncommon::content_type($r,'text/html'); |
&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); |
$r->send_http_header; |
$r->send_http_header; |
return OK if $r->header_only; |
return OK if $r->header_only; |
# -------------------------------------------------------- Menu script and info |
# -------------------------------------------------------- Menu script and info |
|
|
my $windowinfo=&Apache::lonmenu::close(); |
my $windowinfo= |
$windowinfo.=&Apache::lonnavmaps::close(); |
&Apache::lonmenu::close(). |
|
&Apache::lonnavmaps::close(); |
# ---------------------------------------------------------------- Get handover |
# ---------------------------------------------------------------- Get handover |
|
|
my %info=('ip' => $ENV{'REMOTE_ADDR'}, |
my %info=('ip' => $ENV{'REMOTE_ADDR'}, |
Line 105 sub handler {
|
Line 132 sub handler {
|
if ($env{'request.sso.login'}) { |
if ($env{'request.sso.login'}) { |
$info{'sso.login'} = $env{'request.sso.login'}; |
$info{'sso.login'} = $env{'request.sso.login'}; |
} |
} |
|
if ($env{'request.sso.reloginserver'}) { |
|
$info{'sso.reloginserver'} = $env{'request.sso.reloginserver'}; |
|
} |
my $token = &Apache::lonnet::tmpput(\%info,$env{'form.otherserver'}); |
my $token = &Apache::lonnet::tmpput(\%info,$env{'form.otherserver'}); |
my $switch='<meta HTTP-EQUIV="Refresh" CONTENT="0.5; url=http://'.$switch_to.'/adm/login?domain='.$env{'user.domain'}.'&username='.$env{'user.name'}.'&token='.$token.'">'; |
my $url ='http://'.$switch_to.'/adm/login?'. |
my $start_page = &Apache::loncommon::start_page('Switching Server ...', |
'domain='.$env{'user.domain'}. |
$switch, |
'&username='.$env{'user.name'}. |
{'no_inline_link' => 1,}); |
'&token='.$token; |
my $end_page = &Apache::loncommon::end_page(); |
|
# --------------------------------------------------------------- Screen Output |
# --------------------------------------------------------------- Screen Output |
$r->print($start_page.$windowinfo.$end_page); |
|
|
|
&Apache::lonnet::flushcourselogs(); |
&Apache::lonnet::flushcourselogs(); |
return OK; |
return &do_redirect($r,$url,0,$windowinfo); |
} |
} |
|
|
1; |
1; |