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

version 1.18, 2018/01/12 13:34:08 version 1.29, 2021/01/05 04:23:45
Line 29 Line 29
 package Apache::lontrans;  package Apache::lontrans;
   
 use strict;  use strict;
 use Apache::Constants qw(:common :remotehost REDIRECT :http);  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' => '');
     if ($r->uri =~ m{^/adm/lti/(.+)$}) {      my $hdrhost = $r->headers_in->get('Host');
         my $realuri = $1;      if ($r->uri=~m{^/raw/}) {
         my %user;          if ($hdrhost) {
         my $handle = &Apache::lonnet::check_for_valid_session($r,undef,\%user);              unless ($hdrhost =~ /^internal\-/) {
         if (($handle ne '') && ($user{'lti'})) {                  my $remote_ip = &Apache::lonnet::get_requestor_ip($r,REMOTE_NOLOOKUP,1);
             if ($realuri =~ m{^uploaded/$match_domain/$match_courseid/(default|supplemental)(|_\d+)\.(?:sequence|page)___\d+___.+$}) {                  my $lonhost = $r->dir_config('lonHostID');
                 my ($map,$resid,$url) = split(/___/,$realuri);                  if (&redirect_raw($remote_ip,$lonhost)) {
                 $realuri = &Apache::lonnet::clutter($url).'?symb='.$realuri;                      my $location = 'https://internal-'.$hdrhost.$r->uri;
             } elsif ($realuri =~ m{^tiny/$match_domain/\w+$}) {                      $r->headers_out->set(Location => $location);
                 $realuri = '/'.$realuri;                          return REDIRECT;
             } elsif ($realuri =~ m{($match_domain)/($match_courseid)$}) {  
                 $realuri = '/adm/navmaps';  
             } else {  
                 $realuri = '/'.$realuri;  
                 if ($realuri =~ m{/default_\d+\.sequence$}) {  
                     $realuri .= (($realuri =~/\?/)?'&':'?').'navmap=1';  
                 }  
             }  
             my $host = $r->headers_in->get('Host');  
             if ($host) {  
                 my $protocol = 'http';  
                 if ($r->get_server_port == 443) {  
                     $protocol = 'https';  
                 }                  }
                 my $location = $protocol.'://'.$host.$realuri;  
                 $r->headers_out->set(Location => $location);  
                 return REDIRECT;  
             }              }
         }          }
     } elsif ($r->uri =~ m{^/+tiny/+($match_domain)/+(\w+)$}) {      }
         my ($cdom,$key) = ($1,$2);      my $alias = &Apache::lonnet::get_proxy_alias();
         if (&Apache::lonnet::domain($cdom) ne '') {      if ($alias) {
             my %user;          my $lonhost = $r->dir_config('lonHostID');
             my $handle = &Apache::lonnet::check_for_valid_session($r,undef,\%user);          my $hostname = &Apache::lonnet::hostname($lonhost);
             if ($handle ne '') {          if (($hdrhost eq $alias) || ($hdrhost eq $hostname)) {
                 my $lonidsdir=$r->dir_config('lonIDsDir');              my $proxyinfo = &Apache::lonnet::get_proxy_settings($r->dir_config('lonDefDomain'));
                 &Apache::lonnet::transfer_profile_to_env($lonidsdir,$handle);              my ($vpnint,$vpnext);
                 if ($env{'request.course.id'}) {              if (ref($proxyinfo) eq 'HASH') {
                     my $tinyurl;                  $vpnint = $proxyinfo->{'vpnint'};
                     my ($result,$cached)=&Apache::lonnet::is_cached_new('tiny',$cdom."\0".$key);                  $vpnext = $proxyinfo->{'vpnext'};
                     if (defined($cached)) {              }
                         $tinyurl = $result;              my $redirect;
                     } else {              if ($hdrhost eq $alias) {
                         my $configuname = &Apache::lonnet::get_domainconfiguser($cdom);                  my $remote_ip = &Apache::lonnet::get_requestor_ip($r,REMOTE_NOLOOKUP);
                         my %currtiny = &Apache::lonnet::get('tiny',[$key],$cdom,$configuname);                  if ($vpnext && &Apache::lonnet::ip_match($remote_ip,$vpnext)) {
                         if ($currtiny{$key} ne '') {                      $redirect = $hostname;
                             $tinyurl = $currtiny{$key};                      if ($redirect eq $hdrhost) {
                             &Apache::lonnet::do_cache_new('tiny',$cdom."\0".$key,$currtiny{$key},600);                          undef($redirect);
                         }  
                     }                      }
                     if ($tinyurl ne '') {                  }
                         my ($cnum,$symb) = split(/\&/,$tinyurl);              } elsif ($hdrhost eq $hostname) {
                         if (($cnum =~ /^$match_courseid$/) &&                  my $remote_ip = &Apache::lonnet::get_requestor_ip($r,REMOTE_NOLOOKUP,1);
                             (&Apache::lonnet::homeserver($cnum,$cdom) ne 'no_host')) {                  unless (($remote_ip eq '127.0.0.1') || ($remote_ip eq '::1') ||
                             if ($env{'request.course.id'} eq $cdom.'_'.$cnum) {                          ($remote_ip eq &Apache::lonnet::get_host_ip($lonhost)) ||
                                 my ($map,$resid,$url) = &Apache::lonnet::decode_symb($symb);                          ($vpnint && &Apache::lonnet::ip_match($remote_ip,$vpnint))) {
                                 if (&Apache::lonnet::is_on_map($url)) {                      $redirect = $alias;
                                     my $realuri;                      if ($r->uri=~m{^/raw/}){
                                     if ((&Apache::lonnet::EXT('resource.0.hiddenresource',$symb) =~ /^yes$/i) &&                          my %iphost = &Apache::lonnet::get_iphost();
                                         (!$env{'request.role.adv'})) {                          if (exists($iphost{$remote_ip})) {
                                         $env{'user.error.msg'}=$r->uri.':bre:1:1:Access to resource denied';                              undef($redirect);
                                         return HTTP_NOT_ACCEPTABLE;  
                                     }  
                                     if ((&Apache::lonnet::EXT('resource.0.encrypturl',$symb) =~ /^yes$/i) &&  
                                         (!$env{'request.role.adv'})) {  
                                         $realuri = &Apache::lonenc::encrypted(&Apache::lonnet::clutter($url)).  
                                                    '?symb='.&Apache::lonenc::encrypted($symb);  
                                     } else {  
                                         $realuri = &Apache::lonnet::clutter($url).'?symb='.$symb;  
                                     }  
                                     my $host = $r->headers_in->get('Host');  
                                     if ($host) {  
                                         my $protocol = 'http';  
                                         if ($r->get_server_port == 443) {  
                                             $protocol = 'https';  
                                         }  
                                         my $location = $protocol.'://'.$host.$realuri;  
                                         $r->headers_out->set(Location => $location);  
                                         return REDIRECT;  
                                     }  
                                 }  
                             }  
                         }                          }
                     }                      }
                 }                  }
             }              }
         }              if ($redirect) {
     } elsif ($r->uri=~m{^/raw/}) {                  my $uri = $r->uri;
         my $host = $r->headers_in->get('Host');                  my $protocol = 'http';
         if ($host) {                  my $port = $r->get_server_port();
             unless ($host =~ /^internal\-/) {                  if ($port eq '443') {
                 my $remote_ip = $r->get_remote_host();                      $protocol = 'https';
                 my $lonhost = $r->dir_config('lonHostID');  
                 if (&redirect_raw($remote_ip,$lonhost)) {  
                     my $location = 'https://internal-'.$host.$r->uri;  
                     $r->headers_out->set(Location => $location);  
                     return REDIRECT;  
                 }                  }
   # 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;
             }              }
         }          }
     }      }
Line 153  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 185  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 204  sub redirect_raw { Line 168  sub redirect_raw {
             last;              last;
         }          }
     }      }
     return $redirect;        return $redirect;
 }  }
   
 1;  1;

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


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