version 1.14.10.2.2.2, 2022/01/05 00:51:20
|
version 1.25, 2019/01/20 02:42:35
|
Line 29
|
Line 29
|
package Apache::lontrans; |
package Apache::lontrans; |
|
|
use strict; |
use strict; |
use Apache::Constants qw(:common :remotehost); |
use Apache::Constants qw(:common :remotehost REDIRECT); |
use Apache::lonnet; |
use Apache::lonnet; |
use Apache::loncommon; |
|
use Apache::File(); |
use Apache::File(); |
use LONCAPA qw(:DEFAULT :match); |
use LONCAPA qw(:DEFAULT :match); |
|
|
sub handler { |
sub handler { |
my $r = shift; |
my $r = shift; |
# FIXME line remove when mod_perl fixes BUG#4948 |
# FIXME line remove when mod_perl fixes BUG#4948 |
$r->notes->set('error-notes' => ''); |
$r->notes->set('error-notes' => ''); |
my $alias = &Apache::lonnet::get_proxy_alias(); |
if ($r->uri=~m{^/raw/}) { |
if ($alias) { |
my $host = $r->headers_in->get('Host'); |
my $hdrhost = $r->headers_in->get('Host'); |
if ($host) { |
my $lonhost = $r->dir_config('lonHostID'); |
unless ($host =~ /^internal\-/) { |
my $hostname = &Apache::lonnet::hostname($lonhost); |
my $remote_ip = $r->get_remote_host(); |
my $ssourl = '/adm/sso'; |
my $lonhost = $r->dir_config('lonHostID'); |
if ($r->dir_config('lonOtherAuthenUrl') ne '') { |
if (&redirect_raw($remote_ip,$lonhost)) { |
$ssourl = $r->dir_config('lonOtherAuthenUrl'); |
my $location = 'https://internal-'.$host.$r->uri; |
} |
$r->headers_out->set(Location => $location); |
if (($hdrhost eq $alias) || ($hdrhost eq $hostname)) { |
return REDIRECT; |
my $proxyinfo = &Apache::lonnet::get_proxy_settings($r->dir_config('lonDefDomain')); |
|
my ($vpnint,$vpnext); |
|
if (ref($proxyinfo) eq 'HASH') { |
|
$vpnint = $proxyinfo->{'vpnint'}; |
|
$vpnext = $proxyinfo->{'vpnext'}; |
|
} |
|
my ($redirect,$remote_ip); |
|
if ($hdrhost eq $alias) { |
|
$remote_ip = &Apache::lonnet::get_requestor_ip($r,REMOTE_NOLOOKUP); |
|
if (($vpnext && &Apache::lonnet::ip_match($remote_ip,$vpnext)) && |
|
($r->uri !~ m{^/adm/(lti|launch)/})) { |
|
$redirect = $hostname; |
|
} |
|
if ($r->uri eq $ssourl) { |
|
if (&Apache::lonnet::alias_sso($lonhost)) { |
|
undef($redirect); |
|
} else { |
|
$redirect = $hostname; |
|
} |
|
} |
|
if ($redirect eq $hdrhost) { |
|
undef($redirect); |
|
} |
|
} elsif ($hdrhost eq $hostname) { |
|
$remote_ip = &Apache::lonnet::get_requestor_ip($r,REMOTE_NOLOOKUP,1); |
|
unless (($remote_ip eq '127.0.0.1') || ($remote_ip eq '::1') || |
|
($remote_ip eq &Apache::lonnet::get_host_ip($lonhost)) || |
|
($r->uri=~m{^/adm/(lti|launch)/}) || |
|
($vpnint && &Apache::lonnet::ip_match($remote_ip,$vpnint))) { |
|
$redirect = $alias; |
|
if (($r->uri=~m{^/raw/}) || ($r->uri=~m{^/adm/dns/})) { |
|
my %iphost = &Apache::lonnet::get_iphost(); |
|
if (exists($iphost{$remote_ip})) { |
|
undef($redirect); |
|
} |
|
} elsif ($r->uri eq $ssourl) { |
|
unless (&Apache::lonnet::alias_sso($lonhost)) { |
|
undef($redirect); |
|
} |
|
} |
|
} |
} |
} |
} |
if ($redirect) { |
|
my $uri = $r->uri; |
|
if (($uri eq '/adm/switchserver') || ($uri =~ m{^/Shibboleth.sso/})) { |
|
return DECLINED; |
|
} |
|
unless (($uri eq '/adm/migrateuser') || ($uri eq $ssourl)) { |
|
my %user; |
|
my $handle = &Apache::lonnet::check_for_valid_session($r,undef,\%user); |
|
if (($handle) && ($user{'name'} ne '') && ($user{'domain'} ne '')) { |
|
unless (($user{'name'} eq 'public') && ($user{'domain'} eq 'public')) { |
|
my $dest = '/adm/migrateuser'; |
|
my $token = &set_token($r,$dest,$remote_ip,\%user); |
|
unless ($token eq '') { |
|
$r->internal_redirect("$dest?token=$token"); |
|
$r->set_handlers('PerlHandler'=> undef); |
|
return DECLINED; |
|
} |
|
} |
|
} |
|
} |
|
my $protocol = 'http'; |
|
my $port = $r->get_server_port(); |
|
if ($port eq '443') { |
|
$protocol = 'https'; |
|
} |
|
if ($uri =~ m{^(/adm/css/)(.+)(.css)$}) { |
|
$uri = $1.&escape($2).$3; |
|
} |
|
my $location = $protocol.'://'.$redirect.$uri; |
|
if ($r->uri =~ m{^/tiny/$match_domain/\w+$}) { |
|
my $token = &set_token($r,$r->uri); |
|
unless ($token eq '') { |
|
$location .= '?ttoken='.$token; |
|
} |
|
} elsif ($r->args) { |
|
$location .= '?'.$r->args; |
|
} |
|
$r->header_out(Location => $location); |
|
return REDIRECT; |
|
} |
|
} |
|
} |
|
if ($r->uri =~ m{^/tiny/$match_domain/\w+$}) { |
|
my $token = &set_token($r,$r->uri); |
|
unless ($token eq '') { |
|
$r->args('ttoken='.$token); |
|
} |
} |
} |
} |
if ($r->uri=~m|^(/raw)?/uploaded/|) { |
if ($r->uri=~m|^(/raw)?/uploaded/|) { |
Line 153 sub handler {
|
Line 66 sub handler {
|
'/userfiles/'.(join('/',@ufile))); |
'/userfiles/'.(join('/',@ufile))); |
} |
} |
return OK; |
return OK; |
} elsif ($r->uri =~ m{^\Q/adm/wrapper/ext/https:/\E[^/]}) { |
} else { |
my $uri = $r->uri; |
return DECLINED; |
$uri =~ s{^(\Q/adm/wrapper/ext/https:/\E)}{$1/}; |
|
$r->uri($uri); |
|
} |
} |
return DECLINED; |
|
} |
} |
|
|
sub set_token { |
sub redirect_raw { |
my ($r,$dest,$remote_ip,$userref) = @_; |
my ($remote_ip,$lonhost) = @_; |
my (%info,%user); |
my @remhostids = &Apache::lonnet::get_hosts_from_ip($remote_ip); |
if ($dest eq '/adm/migrateuser') { |
my $redirect; |
return unless (ref($userref) eq 'HASH'); |
while (@remhostids) { |
%user = %{$userref}; |
my $try_server = pop(@remhostids); |
%info = ('ip' => $remote_ip, |
my $remhostname = &Apache::lonnet::hostname($try_server); |
'domain' => $user{'domain'}, |
if ($remhostname) { |
'username' => $user{'name'}, |
my $remoterev = &Apache::lonnet::get_server_loncaparev(undef,$try_server); |
'server' => $r->dir_config('lonHostID'), |
my ($remmajor,$remminor) = ($remoterev =~ /^(\d+)\.(\d+)/); |
); |
if (($remmajor > 2) || (($remmajor == 2) && $remminor >= 12)) { |
} |
my $internet_names = &Apache::lonnet::get_internet_names($try_server); |
if ($r->args) { |
if (ref($internet_names) eq 'ARRAY') { |
foreach my $pair (split(/&/,$r->args)) { |
my $intdom = &Apache::lonnet::internet_dom($lonhost); |
my ($name,$value) = split(/=/,$pair); |
unless (grep(/^\Q$intdom\E$/,@{$internet_names})) { |
$name = &LONCAPA::unescape($name); |
my $lonhostname = &Apache::lonnet::hostname($lonhost); |
next unless (($name eq 'role') || ($name eq 'symb') || |
my $serverhomeID = &Apache::lonnet::get_server_homeID($lonhostname); |
($name eq 'ltoken') || ($name eq 'linkkey') || |
my $serverhomedom = &Apache::lonnet::host_domain($serverhomeID); |
($name eq 'ttoken')); |
my %domdefaults = &Apache::lonnet::get_domain_defaults($serverhomedom); |
$value =~ tr/+/ /; |
my $replication = $domdefaults{'replication'}; |
$value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C",hex($1))/eg; |
if (ref($replication) eq 'HASH') { |
$info{$name} = $value; |
my $remhomeID = &Apache::lonnet::get_server_homeID($remhostname); |
} |
my $remhomedom = &Apache::lonnet::host_domain($remhomeID); |
if ($info{'ttoken'}) { |
my $remprimary = &Apache::lonnet::domain($remhomedom,'primary'); |
my %current = &Apache::lonnet::tmpget($info{'ttoken'}); |
my $remintdom = &Apache::lonnet::internet_dom($remprimary); |
delete($info{'ttoken'}); |
if (ref($replication->{'certreq'}) eq 'ARRAY') { |
if ($current{'origurl'} eq $r->uri) { |
if (grep(/^\Q$remintdom\E$/,@{$replication->{'certreq'}})) { |
return if (keys(%current)); |
$redirect = 0; |
} |
} else { |
} |
$redirect = 1; |
} |
} |
# |
} |
# To be able to support deep-linking for a shortened URL, i.e., |
if (ref($replication->{'nocertreq'}) eq 'ARRAY') { |
# /tiny/$dom/$id with (a) linkkey included in POSTed data and |
if (grep(/^\Q$remintdom\E$/,@{$replication->{'nocertreq'}})) { |
# data and (b) non-Shibboleth SSO in use, ltoken (or linkprot |
$redirect = 1; |
# if sending to /adm/migrateuser), or linkkey are written to a |
} else { |
# .tmp file in /home/httpd/perl/tmp and the query string is |
$redirect = 0; |
# replaced with ttoken=tokenid. This does mean other POSTed |
} |
# data will be discarded. |
} |
# |
} |
if ($r->uri =~ m{^/tiny/$match_domain/\w+$}) { |
} |
unless (($info{'ltoken'}) || ($info{'linkkey'} ne '')) { |
} |
&Apache::lonacc::get_posted_cgi($r,['linkkey']); |
|
if ($env{'form.linkkey'} ne '') { |
|
$info{'linkkey'} = $env{'form.linkkey'}; |
|
} |
|
} |
|
} |
|
if ($dest eq '/adm/migrateuser') { |
|
if ($info{'ltoken'}) { |
|
my %link_info = &Apache::lonnet::tmpget($info{'ltoken'}); |
|
if ($link_info{'linkprot'}) { |
|
$info{'linkprot'} = $link_info{'linkprot'}; |
|
} |
|
&Apache::lonnet::tmpdel($info{'ltoken'});; |
|
delete($info{'ltoken'}); |
|
} |
|
unless ($info{'role'}) { |
|
if ($user{'role'} ne '') { |
|
$info{'role'} = $user{'role'}; |
|
} |
|
} |
|
unless ($info{'symb'}) { |
|
unless ($r->uri eq '/adm/roles') { |
|
$info{'origurl'} = $r->uri; |
|
} |
} |
|
last; |
} |
} |
} |
} |
if (($dest eq '/adm/migrateuser') || (keys(%info) > 0)) { |
return $redirect; |
unless ($dest eq '/adm/migrateuser') { |
|
$info{'origurl'} = $r->uri; |
|
} |
|
my $token = &Apache::lonnet::tmpput(\%info,$r->dir_config('lonHostID'),'link'); |
|
unless (($token eq 'con_lost') || ($token eq 'refused') || |
|
($token eq 'unknown_cmd') || ($token eq 'no_such_host')) { |
|
return $token; |
|
} |
|
} |
|
return; |
|
} |
} |
|
|
1; |
1; |