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

version 1.17, 2017/11/30 15:14:58 version 1.25, 2019/01/20 02:42:35
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' => '');
     if ($r->uri =~ m{^/adm/lti/(.+)$}) {      if ($r->uri=~m{^/raw/}) {
         my $realuri = $1;  
         my %user;  
         my $handle = &Apache::lonnet::check_for_valid_session($r,undef,\%user);  
         if (($handle ne '') && ($user{'lti'})) {  
             if ($realuri =~ m{^uploaded/$match_domain/$match_courseid/(default|supplemental)(|_\d+)\.(?:sequence|page)___\d+___.+$}) {  
                 my ($map,$resid,$url) = split(/___/,$realuri);  
                 $realuri = &Apache::lonnet::clutter($url).'?symb='.$realuri;  
             } 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{^/raw/}) {  
         my $host = $r->headers_in->get('Host');          my $host = $r->headers_in->get('Host');
         if ($host) {          if ($host) {
             unless ($host =~ /^internal\-/) {              unless ($host =~ /^internal\-/) {
Line 93  sub handler { Line 66  sub handler {
  '/userfiles/'.(join('/',@ufile)));   '/userfiles/'.(join('/',@ufile)));
         }          }
         return OK;          return OK;
     } else {       } else {
         return DECLINED;          return DECLINED;
     }      }
 }  }
Line 125  sub redirect_raw { Line 98  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 144  sub redirect_raw { Line 117  sub redirect_raw {
             last;              last;
         }          }
     }      }
     return $redirect;        return $redirect;
 }  }
   
 1;  1;
 __END__  __END__
   
   
   
   
   
   
   

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


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