Diff for /loncom/lontrans.pm between versions 1.28 and 1.34

version 1.28, 2020/12/23 22:03:42 version 1.34, 2021/08/08 20:51:33
Line 29 Line 29
 package Apache::lontrans;  package Apache::lontrans;
   
 use strict;  use strict;
 use Apache::Constants qw(:common :remotehost REDIRECT);  use Apache::Constants qw(:common :remotehost);
 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);
   
Line 58  sub handler { Line 59  sub handler {
         my $hostname = &Apache::lonnet::hostname($lonhost);          my $hostname = &Apache::lonnet::hostname($lonhost);
         if (($hdrhost eq $alias) || ($hdrhost eq $hostname)) {          if (($hdrhost eq $alias) || ($hdrhost eq $hostname)) {
             my $proxyinfo = &Apache::lonnet::get_proxy_settings($r->dir_config('lonDefDomain'));              my $proxyinfo = &Apache::lonnet::get_proxy_settings($r->dir_config('lonDefDomain'));
             my ($vpnpriv,$vpnnat);              my ($vpnint,$vpnext);
             if (ref($proxyinfo) eq 'HASH') {              if (ref($proxyinfo) eq 'HASH') {
                 $vpnpriv = $proxyinfo->{'exempt'};                  $vpnint = $proxyinfo->{'vpnint'};
                 $vpnnat = '35.12.16.96-35.12.16.111';                  $vpnext = $proxyinfo->{'vpnext'};
             }              }
             my $redirect;              my ($redirect,$remote_ip);
             if ($hdrhost eq $alias) {              if ($hdrhost eq $alias) {
                 my $remote_ip = &Apache::lonnet::get_requestor_ip($r,REMOTE_NOLOOKUP);                  $remote_ip = &Apache::lonnet::get_requestor_ip($r,REMOTE_NOLOOKUP);
                 if ($vpnnat && &Apache::lonnet::ip_match($remote_ip,$vpnnat)) {                  if (($vpnext && &Apache::lonnet::ip_match($remote_ip,$vpnext)) &&
                       ($r->uri !~ m{^/adm/(lti|launch)/})) {
                     $redirect = $hostname;                      $redirect = $hostname;
                     if ($redirect eq $hdrhost) {                      if ($redirect eq $hdrhost) {
                         undef($redirect);                          undef($redirect);
                     }                      }
                 }                  }
             } elsif ($hdrhost eq $hostname) {              } elsif ($hdrhost eq $hostname) {
                 my $remote_ip = &Apache::lonnet::get_requestor_ip($r,REMOTE_NOLOOKUP,1);                  $remote_ip = &Apache::lonnet::get_requestor_ip($r,REMOTE_NOLOOKUP,1);
                 unless (($remote_ip eq '127.0.0.1') ||                  unless (($remote_ip eq '127.0.0.1') || ($remote_ip eq '::1') ||
                         ($remote_ip eq &Apache::lonnet::get_host_ip($lonhost)) ||                          ($remote_ip eq &Apache::lonnet::get_host_ip($lonhost)) ||
                         ($vpnpriv && &Apache::lonnet::ip_match($remote_ip,$vpnpriv))) {                          ($r->uri=~m{^/adm/(lti|launch)/}) ||
                           ($vpnint && &Apache::lonnet::ip_match($remote_ip,$vpnint))) {
                     $redirect = $alias;                      $redirect = $alias;
                     if ($r->uri=~m{^/raw/}){                      if (($r->uri=~m{^/raw/}) || ($r->uri=~m{^/adm/dns/})) {
                         my %iphost = &Apache::lonnet::get_iphost();                          my %iphost = &Apache::lonnet::get_iphost();
                         if (exists($iphost{$remote_ip})) {                          if (exists($iphost{$remote_ip})) {
                             undef($redirect);                              undef($redirect);
Line 88  sub handler { Line 91  sub handler {
             }              }
             if ($redirect) {              if ($redirect) {
                 my $uri = $r->uri;                  my $uri = $r->uri;
                   if (($uri eq '/adm/sso') || ($uri eq '/adm/switchserver') ||
                       ($uri =~ m{^/Shibboleth.sso/})) {
                       return DECLINED;
                   }
                   unless ($uri eq '/adm/migrateuser') {
                       my %user;
                       my $handle = &Apache::lonnet::check_for_valid_session($r,undef,\%user);
                       if (($handle) && ($user{'name'} ne '') && ($user{'domain'} ne '')) {
                           my $token = &get_token($r,$remote_ip,\%user);
                           unless ($token eq '') {
                               $r->internal_redirect("/adm/migrateuser?token=$token");
                               $r->set_handlers('PerlHandler'=> undef);
                               return DECLINED;
                           }
                       }
                   }
                 my $protocol = 'http';                  my $protocol = 'http';
                 my $port = $r->get_server_port();                  my $port = $r->get_server_port();
                 if ($port eq '443') {                  if ($port eq '443') {
                     $protocol = 'https';                      $protocol = 'https';
                 }                  }
 # FIXME should check if logged in, and if so use switchserver/migrateuser approach,                  my $querystring = $r->args;
 # possibly moved to Access Handler?                  if ($uri =~ m{^(/adm/css/)(.+)(.css)$}) {
                 $r->header_out(Location => $protocol.'://'.$redirect.$uri);                      $uri = $1.&escape($2).$3;
                   }
                   my $location = $protocol.'://'.$redirect.$uri;
                   if ($querystring) {
                       $location .= "?$querystring";
                   }
                   $r->header_out(Location => $location);
                 return REDIRECT;                  return REDIRECT;
             }              }
         }          }
Line 171  sub redirect_raw { Line 196  sub redirect_raw {
     return $redirect;      return $redirect;
 }  }
   
   sub get_token {
       my ($r,$remote_ip,$userref) = @_;
       return unless (ref($userref) eq 'HASH');
       my %user = %{$userref};
       my %info = ('ip' => $remote_ip,
                   'domain'    => $user{'domain'},
                   'username'  => $user{'name'},
                   'server'    => $r->dir_config('lonHostID'),
                  );
       my $query = $r->args;
       if ($query) {
           foreach my $pair (split(/&/,$query)) {
               my ($name,$value) = split(/=/,$pair);
               $name = &LONCAPA::unescape($name);
               next unless (($name eq 'role') || ($name eq 'symb'));
               $value =~ tr/+/ /;
               $value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C",hex($1))/eg;
               $info{$name} = $value;
           }
       }
       unless ($info{'role'}) {
           if ($user{'role'} ne '') {
               $info{'role'} = $user{'role'};
           }
       }
       unless ($info{'symb'}) {
           unless ($r->uri eq '/adm/roles') {
                $info{'origurl'} = $r->uri;
           }
       }
       my $token = &Apache::lonnet::tmpput(\%info,$r->dir_config('lonHostID'));
       unless (($token eq 'con_lost') || ($token eq 'refused') ||
               ($token eq 'unknown_cmd') || ($token eq 'no_such_host')) {
           return $token;
       }
       return;
   }
   
 1;  1;
 __END__  __END__
   

Removed from v.1.28  
changed lines
  Added in v.1.34


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>