--- loncom/auth/switchserver.pm 2011/08/02 14:20:42 1.28.2.4 +++ loncom/auth/switchserver.pm 2015/01/22 22:45:06 1.34 @@ -1,7 +1,7 @@ # The LearningOnline Network # Switch Servers Handler # -# $Id: switchserver.pm,v 1.28.2.4 2011/08/02 14:20:42 raeburn Exp $ +# $Id: switchserver.pm,v 1.34 2015/01/22 22:45:06 raeburn Exp $ # # Copyright Michigan State University Board of Trustees # @@ -59,7 +59,6 @@ sub do_redirect { 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); @@ -67,7 +66,6 @@ sub do_redirect { $r->register_cleanup(\&flush_course_logs); } return OK; - } sub flush_course_logs { @@ -98,9 +96,16 @@ sub handler { if (!defined($switch_to)) { return FORBIDDEN; } + my $protocol = 'http'; + if ($env{'form.otherserver'}) { + if ($Apache::lonnet::protocol{$env{'form.otherserver'}} eq 'https') { + $protocol = $Apache::lonnet::protocol{$env{'form.otherserver'}}; + } + } + if ($env{'user.name'} eq 'public' && $env{'user.domain'} eq 'public') { - my $url = 'http://'.$switch_to.$r->uri; + my $url = $protocol.'://'.$switch_to.$r->uri; return &do_redirect($r,$url,1) } @@ -155,9 +160,15 @@ sub handler { my %temp=('switchserver' => time.':'.$env{'form.otherserver'}, $env{'form.role'}); &Apache::lonnet::put('email_status',\%temp); + my $logmsg = "Switch Server to $env{'form.otherserver'}"; + if ($env{'form.role'}) { + $logmsg .= " with role: $env{'form.role'}"; + } else { + $logmsg .= " (no role)"; + } + $logmsg .= ' '.$ENV{'REMOTE_ADDR'}; &Apache::lonnet::log($env{'user.domain'},$env{'user.name'}, - $env{'user.home'}, - "Switch Server to $env{'form.otherserver'} with role $env{'form.role'} $ENV{'REMOTE_ADDR'}"); + $env{'user.home'},$logmsg); &Apache::loncommon::content_type($r,'text/html'); @@ -172,17 +183,16 @@ sub handler { return OK; } # -------------------------------------------------------- Menu script and info - - my $windowinfo= - &Apache::lonmenu::close(). - &Apache::lonnavmaps::close(); + # ---------------------------------------------------------------- Get handover + my ($is_balancer) = &Apache::lonnet::check_loadbalancing($env{'user.name'},$env{'user.domain'}); my %info=('ip' => $ENV{'REMOTE_ADDR'}, 'domain' => $env{'user.domain'}, 'username' => $env{'user.name'}, 'role' => $env{'form.role'}, - 'server' => $r->dir_config('lonHostID')); + 'server' => $r->dir_config('lonHostID'), + 'balancer' => $is_balancer); if ($env{'form.origurl'}) { $info{'origurl'} = $env{'form.origurl'}; } @@ -196,12 +206,12 @@ sub handler { $info{'sso.reloginserver'} = $env{'request.sso.reloginserver'}; } my $token = &Apache::lonnet::tmpput(\%info,$env{'form.otherserver'}); - my $url ='http://'.$switch_to.'/adm/login?'. + my $url =$protocol.'://'.$switch_to.'/adm/login?'. 'domain='.$env{'user.domain'}. '&username='.$env{'user.name'}. '&token='.$token; # --------------------------------------------------------------- Screen Output - return &do_redirect($r,$url,0,$windowinfo); + return &do_redirect($r, $url, 0); } 1;