Diff for /loncom/lontrans.pm between versions 1.15 and 1.29

version 1.15, 2016/07/25 19:49:45 version 1.29, 2021/01/05 04:23:45
Line 30  package Apache::lontrans; Line 30  package Apache::lontrans;
   
 use strict;  use strict;
 use Apache::Constants qw(:common :remotehost REDIRECT);  use Apache::Constants qw(:common :remotehost REDIRECT);
 use Apache::lonnet();  use Apache::lonnet;
 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 $hdrhost = $r->headers_in->get('Host');
     if ($r->uri=~m{^/raw/}) {      if ($r->uri=~m{^/raw/}) {
         my $host = $r->headers_in->get('Host');          if ($hdrhost) {
         if ($host) {              unless ($hdrhost =~ /^internal\-/) {
             unless ($host =~ /^internal\-/) {                  my $remote_ip = &Apache::lonnet::get_requestor_ip($r,REMOTE_NOLOOKUP,1);
                 my $c = $r->connection;                  my $lonhost = $r->dir_config('lonHostID');
                 if (ref($c)) {                  if (&redirect_raw($remote_ip,$lonhost)) {
                     my $remote_ip = $c->remote_ip;                      my $location = 'https://internal-'.$hdrhost.$r->uri;
                     my $lonhost = $r->dir_config('lonHostID');                      $r->headers_out->set(Location => $location);
                     if (&redirect_raw($remote_ip,$lonhost)) {                      return REDIRECT;
                         my $location = 'https://internal-'.$host.$r->uri;                  }
                         $r->headers_out->set(Location => $location);              }
                         return REDIRECT;          }
       }
       my $alias = &Apache::lonnet::get_proxy_alias();
       if ($alias) {
           my $lonhost = $r->dir_config('lonHostID');
           my $hostname = &Apache::lonnet::hostname($lonhost);
           if (($hdrhost eq $alias) || ($hdrhost eq $hostname)) {
               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;
               if ($hdrhost eq $alias) {
                   my $remote_ip = &Apache::lonnet::get_requestor_ip($r,REMOTE_NOLOOKUP);
                   if ($vpnext && &Apache::lonnet::ip_match($remote_ip,$vpnext)) {
                       $redirect = $hostname;
                       if ($redirect eq $hdrhost) {
                           undef($redirect);
                       }
                   }
               } elsif ($hdrhost eq $hostname) {
                   my $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)) ||
                           ($vpnint && &Apache::lonnet::ip_match($remote_ip,$vpnint))) {
                       $redirect = $alias;
                       if ($r->uri=~m{^/raw/}){
                           my %iphost = &Apache::lonnet::get_iphost();
                           if (exists($iphost{$remote_ip})) {
                               undef($redirect);
                           }
                     }                      }
                 }                  }
             }              }
               if ($redirect) {
                   my $uri = $r->uri;
                   my $protocol = 'http';
                   my $port = $r->get_server_port();
                   if ($port eq '443') {
                       $protocol = 'https';
                   }
   # FIXME should check if logged in, and if so use switchserver/migrateuser approach,
   # possibly moved to Access Handler?
                   $r->header_out(Location => $protocol.'://'.$redirect.$uri);
                   return REDIRECT;
               }
         }          }
     }      }
     if ($r->uri=~m|^(/raw)?/uploaded/|) {      if ($r->uri=~m|^(/raw)?/uploaded/|) {
Line 69  sub handler { Line 114  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 {
Line 101  sub redirect_raw { Line 149  sub redirect_raw {
                             my $remintdom = &Apache::lonnet::internet_dom($remprimary);                              my $remintdom = &Apache::lonnet::internet_dom($remprimary);
                             if (ref($replication->{'certreq'}) eq 'ARRAY') {                              if (ref($replication->{'certreq'}) eq 'ARRAY') {
                                 if (grep(/^\Q$remintdom\E$/,@{$replication->{'certreq'}})) {                                  if (grep(/^\Q$remintdom\E$/,@{$replication->{'certreq'}})) {
                                     $redirect = 1;  
                                 } else {  
                                     $redirect = 0;                                      $redirect = 0;
                                   } else {
                                       $redirect = 1;
                                 }                                  }
                             }                              }
                             if (ref($replication->{'nocertreq'}) eq 'ARRAY') {                              if (ref($replication->{'nocertreq'}) eq 'ARRAY') {
                                 if (grep(/^\Q$remintdom\E$/,@{$replication->{'nocertreq'}})) {                                  if (grep(/^\Q$remintdom\E$/,@{$replication->{'nocertreq'}})) {
                                     $redirect = 0;  
                                 } else {  
                                     $redirect = 1;                                      $redirect = 1;
                                   } else {
                                       $redirect = 0;
                                 }                                  }
                             }                              }
                         }                          }
Line 120  sub redirect_raw { Line 168  sub redirect_raw {
             last;              last;
         }          }
     }      }
     return $redirect;        return $redirect;
 }  }
   
 1;  1;
 __END__  __END__
   
   
   
   
   
   
   

Removed from v.1.15  
changed lines
  Added in v.1.29


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