Diff for /loncom/lontrans.pm between versions 1.25 and 1.27

version 1.25, 2019/01/20 02:42:35 version 1.27, 2020/12/18 15:23:04
Line 38  sub handler { Line 38  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 $actualhost = $r->headers_in->get('Host');
     if ($r->uri=~m{^/raw/}) {      if ($r->uri=~m{^/raw/}) {
         my $host = $r->headers_in->get('Host');          if ($actualhost) {
         if ($host) {  
             unless ($host =~ /^internal\-/) {              unless ($host =~ /^internal\-/) {
                 my $remote_ip = $r->get_remote_host();                  my $remote_ip = &Apache::lonnet::get_requestor_ip($r,REMOTE_NOLOOKUP,1);
                 my $lonhost = $r->dir_config('lonHostID');                  my $lonhost = $r->dir_config('lonHostID');
                 if (&redirect_raw($remote_ip,$lonhost)) {                  if (&redirect_raw($remote_ip,$lonhost)) {
                     my $location = 'https://internal-'.$host.$r->uri;                      my $location = 'https://internal-'.$host.$r->uri;
Line 52  sub handler { Line 52  sub handler {
             }              }
         }          }
     }      }
       my $alias = &Apache::lonnet::get_proxy_alias();
       if ($alias) {
           my $lonhost = $r->dir_config('lonHostID');
           my $expected_host = &Apache::lonnet::hostname($lonhost);
           if (($actualhost eq $expected_host) && ($actualhost ne $alias)) {
               my $remote_ip = &Apache::lonnet::get_requestor_ip($r,REMOTE_NOLOOKUP,1);
               unless ($remote_ip eq '127.0.0.1') {
                   my $hostip = &Apache::lonnet::get_host_ip($lonhost);
                   unless ($remote_ip eq $hostip) {
                       my $do_redirect = 1;
                       if ($r->uri=~m{^/raw/}){
                           my %iphost = &Apache::lonnet::get_iphost();
                           if (exists($iphost{$remote_ip})) {
                               undef($do_redirect);
                           }
                       }
                       if ($do_redirect) {
                           my $uri = $r->uri;
                           my $protocol = 'http';
                           my $port = $r->get_server_port();
                           if ($port eq '443') {
                               $protocol = 'https';
                           }
                           $r->header_out(Location => $protocol.'://'.$alias.$uri);
                           return REDIRECT;
                       }
                   }
               }
           }
       }
     if ($r->uri=~m|^(/raw)?/uploaded/|) {      if ($r->uri=~m|^(/raw)?/uploaded/|) {
         my $fn = $r->uri();          my $fn = $r->uri();
         $fn=~s/^\/raw//;          $fn=~s/^\/raw//;
Line 66  sub handler { Line 96  sub handler {
  '/userfiles/'.(join('/',@ufile)));   '/userfiles/'.(join('/',@ufile)));
         }          }
         return OK;          return OK;
     } else {      } elsif ($r->uri =~ m{^\Q/adm/wrapper/ext/https:/\E[^/]}) {
         return DECLINED;          my $uri = $r->uri;
           $uri =~ s{^(\Q/adm/wrapper/ext/https:/\E)}{$1/};
           $r->uri($uri);
     }      }
       return DECLINED;
 }  }
   
 sub redirect_raw {  sub redirect_raw {

Removed from v.1.25  
changed lines
  Added in v.1.27


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