version 1.35.2.6.2.8, 2024/10/09 15:49:17
|
version 1.35.2.8, 2024/10/08 02:46:19
|
Line 31 package Apache::switchserver;
|
Line 31 package Apache::switchserver;
|
use strict; |
use strict; |
use Apache::Constants qw(:common :remotehost); |
use Apache::Constants qw(:common :remotehost); |
use Apache::lonnet; |
use Apache::lonnet; |
use Apache::loncommon; |
|
use Apache::lonmenu; |
|
use Digest::MD5 qw(md5_hex); |
use Digest::MD5 qw(md5_hex); |
use CGI::Cookie(); |
use CGI::Cookie(); |
use Apache::lonlocal; |
use Apache::lonlocal; |
Line 56 sub init_env {
|
Line 54 sub init_env {
|
} |
} |
|
|
sub do_redirect { |
sub do_redirect { |
my ($r,$url,$only_body,$extra_text,$write_to_opener) = @_; |
my ($r,$url,$only_body,$extra_text) = @_; |
$r->send_http_header; |
$r->send_http_header; |
my $delay = 0.5; |
my $delay = 0.5; |
if ($only_body && !$extra_text) { |
if ($only_body && !$extra_text) { |
Line 64 sub do_redirect {
|
Line 62 sub do_redirect {
|
} |
} |
my $start_page = |
my $start_page = |
&Apache::loncommon::start_page('Switching Server ...',undef, |
&Apache::loncommon::start_page('Switching Server ...',undef, |
{'redirect' => [$delay,$url,'',$write_to_opener,1], |
{'redirect' => [$delay,$url,'',1], |
'only_body' => $only_body, |
'only_body' => $only_body, |
'switchserver' => 1, |
'switchserver' => 1, |
'links_disabled' => 1, |
'links_disabled' => 1, |
Line 102 sub flush_course_logs {
|
Line 100 sub flush_course_logs {
|
|
|
sub handler { |
sub handler { |
my ($r) = @_; |
my ($r) = @_; |
|
|
my $handle=&init_env($r); |
my $handle=&init_env($r); |
if (!defined($handle)) { return FORBIDDEN; } |
if (!defined($handle)) { return FORBIDDEN; } |
|
|
&Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'}, |
&Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'}, |
['otherserver','role','origurl','symb','lcssowin','edit']); |
['otherserver','role','origurl','symb','edit']); |
|
|
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'}) { |
Line 247 sub handler {
|
Line 245 sub handler {
|
my $logmsg = "Switch Server to $env{'form.otherserver'}"; |
my $logmsg = "Switch Server to $env{'form.otherserver'}"; |
if ($env{'form.role'}) { |
if ($env{'form.role'}) { |
$logmsg .= " with role: $env{'form.role'}"; |
$logmsg .= " with role: $env{'form.role'}"; |
} elsif (($env{'form.lti.reqcrs'}) && ($env{'form.lti.reqrole'} eq 'cc')) { |
|
$logmsg .= " to create new LTI course"; |
|
} elsif ($env{'form.lti.selfenrollrole'}) { |
|
$logmsg .= " to selfenroll with role: $env{'form.lti.selfenrollrole'}"; |
|
} else { |
} else { |
$logmsg .= " (no role)"; |
$logmsg .= " (no role)"; |
} |
} |
Line 276 sub handler {
|
Line 270 sub handler {
|
} |
} |
# -------------------------------------------------------- Menu script and info |
# -------------------------------------------------------- Menu script and info |
|
|
my $windowinfo = &Apache::lonmenu::close(); |
|
|
|
# ---------------------------------------------------------------- Get handover |
# ---------------------------------------------------------------- Get handover |
|
|
my ($is_balancer,$setcookie,$newcookieid,$otherbalcookie); |
my ($is_balancer,$setcookie,$newcookieid,$otherbalcookie); |
Line 315 sub handler {
|
Line 307 sub handler {
|
} |
} |
if ($env{'form.origurl'}) { |
if ($env{'form.origurl'}) { |
$info{'origurl'} = $env{'form.origurl'}; |
$info{'origurl'} = $env{'form.origurl'}; |
if ($env{'form.origurl'} eq '/adm/email') { |
|
if ($env{'request.display'} && ($env{'request.mailrecip'} eq "$env{'user.name'}:$env{'user.domain'}")) { |
|
$info{'display'} = &escape($env{'request.display'}); |
|
$info{'mailrecip'} = &escape($env{'request.mailrecip'}); |
|
} |
|
} |
|
} |
} |
if ($env{'form.symb'}) { |
if ($env{'form.symb'}) { |
$info{'symb'} = $env{'form.symb'}; |
$info{'symb'} = $env{'form.symb'}; |
} |
} |
my $ssologoutscript = ''; |
my $ssologoutscript = ''; |
my $write_to_opener; |
|
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 (defined($r->dir_config("lonSSOUserLogoutScriptFile_$info{domain}"))) { |
if (defined($r->dir_config("lonSSOUserLogoutScriptFile_$info{domain}"))) { |
Line 345 sub handler {
|
Line 330 sub handler {
|
if ($env{'request.sso.reloginserver'}) { |
if ($env{'request.sso.reloginserver'}) { |
$info{'sso.reloginserver'} = $env{'request.sso.reloginserver'}; |
$info{'sso.reloginserver'} = $env{'request.sso.reloginserver'}; |
} |
} |
if ($env{'request.linkprot'}) { |
|
$info{'linkprot'} = $env{'request.linkprot'}; |
|
foreach my $item ('linkprotuser','linkprotexit','linkprotpbid','linkprotpburl') { |
|
if ($env{'request.'.$item}) { |
|
$info{$item} = $env{'request.'.$item}; |
|
} |
|
} |
|
} elsif ($env{'request.linkkey'} ne '') { |
|
$info{'linkkey'} = $env{'request.linkkey'}; |
|
} |
|
if ($env{'request.deeplink.login'}) { |
|
$info{'deeplink.login'} = $env{'request.deeplink.login'}; |
|
} |
|
if ($env{'request.lti.login'}) { |
|
$info{'lti.login'} = $env{'request.lti.login'}; |
|
} |
|
if ($env{'request.lti.uri'}) { |
|
$info{'lti.uri'} = $env{'request.lti.uri'}; |
|
} |
|
if ($env{'request.lti.reqcrs'}) { |
|
$info{'lti.reqcrs'} = $env{'request.lti.reqcrs'}; |
|
} |
|
if ($env{'request.lti.reqrole'}) { |
|
$info{'lti.reqrole'} = $env{'request.lti.reqrole'}; |
|
} |
|
if ($env{'request.lti.selfenrollrole'}) { |
|
$info{'lti.selfenrollrole'} = $env{'request.lti.selfenrollrole'}; |
|
} |
|
if ($env{'request.lti.sourcecrs'}) { |
|
$info{'lti.sourcecrs'} = $env{'request.lti.sourcecrs'}; |
|
} |
|
if ($env{'request.lti.passbackid'}) { |
|
$info{'lti.passbackid'} = $env{'request.lti.passbackid'}; |
|
} |
|
if ($env{'request.lti.passbackurl'}) { |
|
$info{'lti.passbackurl'} = $env{'request.lti.passbackurl'}; |
|
} |
|
if ($env{'request.lti.rosterid'}) { |
|
$info{'lti.rosterid'} = $env{'request.lti.rosterid'}; |
|
} |
|
if ($env{'request.lti.rosterurl'}) { |
|
$info{'lti.rosterurl'} = $env{'request.lti.rosterurl'}; |
|
} |
|
if ($env{'request.lti.target'}) { |
|
$info{'lti.target'} = $env{'request.lti.target'}; |
|
} |
|
my $token = &Apache::lonnet::tmpput(\%info,$env{'form.otherserver'}); |
my $token = &Apache::lonnet::tmpput(\%info,$env{'form.otherserver'}); |
my @args = ("domain=$env{'user.domain'}", |
my $url =$protocol.'://'.$switch_to.'/adm/login?'. |
"username=$env{'user.name'}", |
'domain='.$env{'user.domain'}. |
"token=$token"); |
'&username='.$env{'user.name'}. |
my $url = $protocol.'://'.$switch_to.'/adm/login?'; |
'&token='.$token; |
if ($env{'form.lcssowin'}) { |
|
$url .= join('&',@args); |
|
$only_body = 1; |
|
} else { |
|
$url .= join('&',@args); |
|
} |
|
# --------------------------------------------------------------- Screen Output |
# --------------------------------------------------------------- Screen Output |
return &do_redirect($r, $url, $only_body, $windowinfo.$ssologoutscript, |
return &do_redirect($r, $url, $only_body, $ssologoutscript); |
$env{'form.lcssowin'}); |
|
} |
} |
|
|
1; |
1; |