Diff for /loncom/interface/lontiny.pm between versions 1.8.2.6 and 1.14

version 1.8.2.6, 2024/02/10 14:24:46 version 1.14, 2022/07/02 17:23:02
Line 68  sub handler { Line 68  sub handler {
                         my $chome = &Apache::lonnet::homeserver($cnum,$cdom);                          my $chome = &Apache::lonnet::homeserver($cnum,$cdom);
                         if ($chome ne 'no_host') {                          if ($chome ne 'no_host') {
                             &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['ttoken']);                              &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['ttoken']);
                             my ($linkprot,$linkprotuser,$linkprotexit,$ltoken,$linkprotpbid,$linkprotpburl);                              my ($linkprot,$linkprotuser,$linkprotexit,$ltoken);
                             if ($env{'form.ttoken'}) {                              if ($env{'form.ttoken'}) {
                                 my %link_info = &Apache::lonnet::tmpget($env{'form.ttoken'});                                  my %link_info = &Apache::lonnet::tmpget($env{'form.ttoken'});
                                 if ($link_info{'origurl'} eq $r->uri) {                                  if ($link_info{'origurl'} eq $r->uri) {
Line 78  sub handler { Line 78  sub handler {
                                         $linkprot = $ltoken_info{'linkprot'};                                          $linkprot = $ltoken_info{'linkprot'};
                                         $linkprotuser = $ltoken_info{'linkprotuser'};                                          $linkprotuser = $ltoken_info{'linkprotuser'};
                                         $linkprotexit = $ltoken_info{'linkprotexit'};                                          $linkprotexit = $ltoken_info{'linkprotexit'};
                                         $linkprotpbid = $ltoken_info{'linkprotpbid'};  
                                         $linkprotpburl = $ltoken_info{'linkprotpburl'};  
                                     } elsif ($link_info{'linkprot'}) {                                      } elsif ($link_info{'linkprot'}) {
                                         $linkprot = $link_info{'linkprot'};                                          $linkprot = $link_info{'linkprot'};
                                         if ($link_info{'linkprotuser'}) {                                          if ($link_info{'linkprotuser'}) {
Line 88  sub handler { Line 86  sub handler {
                                         if ($link_info{'linkprotexit'}) {                                          if ($link_info{'linkprotexit'}) {
                                             $linkprotexit = $link_info{'linkprotexit'};                                              $linkprotexit = $link_info{'linkprotexit'};
                                         }                                          }
                                         if ($link_info{'linkprotpbid'}) {  
                                             $linkprotpbid = $link_info{'linkprotpbid'};  
                                         }  
                                         if ($link_info{'linkprotpburl'}) {  
                                             $linkprotpburl = $link_info{'linkprotpburl'};  
                                         }  
                                     }                                      }
                                 }                                  }
                             }                              }
Line 126  sub handler { Line 118  sub handler {
                                             $realuri .= '?symb='.$symb;                                              $realuri .= '?symb='.$symb;
                                         }                                          }
                                     }                                      }
                                     my ($update,$reinitresult);                                      my $update;
                                     # Check if course needs to be re-initialized                                      # Check if course needs to be re-initialized
                                     if ($newlauncher) {                                      if ($newlauncher) {
                                         $update = 1;                                          $update = 1;
                                     } else {                                      } else {
                                         my $loncaparev = $r->dir_config('lonVersion');                                          my $loncaparev = $r->dir_config('lonVersion');
                                         ($reinitresult,my @reinit) = &Apache::loncommon::needs_coursereinit($loncaparev);                                          my ($result,@reinit) = &Apache::loncommon::needs_coursereinit($loncaparev);
                                         if (($reinitresult eq 'main') || ($reinitresult eq 'both')) {                                          if ($result eq 'update') {
                                             $update = 1;                                              $update = 1;
                                         } elsif (!-e $env{'request.course.fn'}.'.db') {                                          } elsif (!-e $env{'request.course.fn'}.'.db') {
                                             $update = 1;                                              $update = 1;
Line 163  sub handler { Line 155  sub handler {
                                             return HTTP_NOT_ACCEPTABLE;                                              return HTTP_NOT_ACCEPTABLE;
                                         }                                          }
                                     }                                      }
                                     if (($reinitresult eq 'both') || ($reinitresult eq 'supp')) {  
                                         my $possdel;  
                                         if ($reinitresult eq 'supp') {  
                                             $possdel = 1;  
                                         }  
                                         my ($supplemental,$refs_updated) = &Apache::loncommon::get_supplemental($cnum,$cdom,'',$possdel);  
                                         unless ($refs_updated) {  
                                             &Apache::loncommon::set_supp_httprefs($cnum,$cdom,$supplemental,$possdel);  
                                         }  
                                     }  
                                     my $host = $r->headers_in->get('Host');                                      my $host = $r->headers_in->get('Host');
                                     if (!$host) {                                      if (!$host) {
                                         $r->internal_redirect($realuri);                                          $r->internal_redirect($realuri);
Line 255  sub handler { Line 237  sub handler {
                                     }                                      }
                                 }                                  }
                                 if (@allposs == 0) {                                  if (@allposs == 0) {
                                     &show_roles($r,\%crsenv,\%active,'','',\%future,\%expired,$linkprot,$linkprotuser,                                      &show_roles($r,\%crsenv,\%active,'','',\%future,\%expired,$linkprot,$linkprotuser,$linkprotexit,$ltoken);
                                                 $linkprotexit,$linkprotpbid,$linkprotpburl,$ltoken);  
                                 } elsif (@allposs == 1) {                                  } elsif (@allposs == 1) {
                                     my $newrole = "$allposs[0]./$cdom/$cnum";                                      my $newrole = "$allposs[0]./$cdom/$cnum";
                                     $newrole = "$allposs[0]./$cdom/$cnum";                                      $newrole = "$allposs[0]./$cdom/$cnum";
Line 269  sub handler { Line 250  sub handler {
                                         $destination .= '&ttoken='.$env{'form.ttoken'};                                          $destination .= '&ttoken='.$env{'form.ttoken'};
                                     }                                      }
                                     &do_redirect($r,$destination,$linkprot);                                      &do_redirect($r,$destination,$linkprot);
                                 } elsif (@allposs > 1) {                                  } elsif (keys(%possroles) > 1) {
                                     if (grep(/^(cc|co)$/,@allposs)) {                                      if (grep(/^(cc|co)$/,@allposs)) {
                                         my $newrole;                                          my $newrole;
                                         if (exists($possroles{'cc'})) {                                          if (exists($possroles{'cc'})) {
Line 289  sub handler { Line 270  sub handler {
                                         if (grep(/^cr\//,@allposs)) {                                          if (grep(/^cr\//,@allposs)) {
                                             $hascustom = 1;                                              $hascustom = 1;
                                         }                                          }
                                         &show_roles($r,\%crsenv,\%active,$hassection,$hascustom);                                          &show_roles($r,\%crsenv,\%possroles,$hassection,$hascustom);
                                     }                                      }
                                 }                                  }
                                 return OK;                                  return OK;
Line 308  sub handler { Line 289  sub handler {
   
 sub launch_check {  sub launch_check {
     my ($linkuri,$symb) = @_;      my ($linkuri,$symb) = @_;
     my ($linkprotector,$linkproturi,$linkprotexit,$linkprotpbid,$linkprotpburl,      my ($linkprotector,$linkproturi,$linkkey,$newlauncher);
         $linkkey,$newlauncher,$prevlaunch);  
     if ($env{'form.ttoken'}) {      if ($env{'form.ttoken'}) {
         my %link_info = &Apache::lonnet::tmpget($env{'form.ttoken'});          my %link_info = &Apache::lonnet::tmpget($env{'form.ttoken'});
         &Apache::lonnet::tmpdel($env{'form.ttoken'});          &Apache::lonnet::tmpdel($env{'form.ttoken'});
Line 347  sub launch_check { Line 327  sub launch_check {
             } else {              } else {
                 &Apache::lonnet::appenv({'user.linkproturi' => $linkproturi});                  &Apache::lonnet::appenv({'user.linkproturi' => $linkproturi});
             }              }
             if ($link_info{'linkprotexit'}) {  
                 $linkprotexit = $link_info{'linkprotexit'};  
             }  
             if ($link_info{'linkprotpbid'}) {  
                 $linkprotpbid = $link_info{'linkprotpbid'};  
             }  
             if ($link_info{'linkprotpburl'}) {  
                 $linkprotpburl = $link_info{'linkprotpburl'};  
             }  
         } elsif ($link_info{'linkkey'} ne '') {          } elsif ($link_info{'linkkey'} ne '') {
             $linkkey = $link_info{'linkkey'};              $linkkey = $link_info{'linkkey'};
             my $keyedlinkuri = $linkuri;              my $keyedlinkuri = $linkuri;
Line 381  sub launch_check { Line 352  sub launch_check {
         if ($link_info{'checklaunch'}) {          if ($link_info{'checklaunch'}) {
             $newlauncher = 1;              $newlauncher = 1;
         }          }
         if ($link_info{'prevlaunch'} ne '') {  
             $prevlaunch = $link_info{'prevlaunch'};  
         }  
     }      }
     my $currdeeplinklogin = $env{'request.deeplink.login'};      my $currdeeplinklogin = $env{'request.deeplink.login'};
     my $deeplink;      my $deeplink;
Line 398  sub launch_check { Line 366  sub launch_check {
     }      }
     if ($deeplink ne '') {      if ($deeplink ne '') {
         my $disallow;          my $disallow;
         my ($state,$others,$listed,$scope,$protect,$display,$target,$exit) = split(/,/,$deeplink);          my ($state,$others,$listed,$scope,$protect,$display,$target) = split(/,/,$deeplink);
         if (($protect ne 'none') && ($protect ne '')) {          if (($protect ne 'none') && ($protect ne '')) {
             my ($acctype,$item) = split(/:/,$protect);              my ($acctype,$item) = split(/:/,$protect);
             if ($acctype =~ /lti(c|d)$/) {              if ($acctype =~ /lti(c|d)$/) {
Line 426  sub launch_check { Line 394  sub launch_check {
                 if ($env{'request.deeplink.target'} ne '') {                  if ($env{'request.deeplink.target'} ne '') {
                     &Apache::lonnet::delenv('request.deeplink.target');                      &Apache::lonnet::delenv('request.deeplink.target');
                 }                  }
                 if ($env{'request.linkprot'} ne '') {  
                     &Apache::lonnet::delenv('request.linkprot');  
                 }  
                 if ($env{'request.linkprotexit'} ne '') {  
                     &Apache::lonnet::delenv('request.linkprotexit');  
                 }  
                 if ($env{'request.linkprotpbid'} ne '') {  
                     &Apache::lonnet::delenv('request.linkprotpbid');  
                 }  
                 if ($env{'request.linkprotpburl'} ne '') {  
                     &Apache::lonnet::delenv('request.linkprotpburl');  
                 }  
             }              }
         } else {          } else {
             unless ($currdeeplinklogin eq $linkuri) {              unless ($currdeeplinklogin eq $linkuri) {
                 if (($linkprotector) || ($linkkey ne '')) {                  if (($linkprotector) || ($linkkey ne '')) {
                     $newlauncher = 1;                      if ($linkprotector) {
                 }                          &Apache::lonnet::appenv({'request.linkprot' => $linkprotector.':'.$linkproturi});
             }                      } elsif ($env{'request.linkprot'}) {
             if ($linkprotector) {                          &Apache::lonnet::delenv('request.linkprot');
                 &Apache::lonnet::appenv({'request.linkprot' => $linkprotector.':'.$linkproturi});  
             } elsif ($env{'request.linkprot'}) {  
                 &Apache::lonnet::delenv('request.linkprot');  
             }  
             if ($linkkey ne '') {  
                 &Apache::lonnet::appenv({'request.linkkey' => $linkkey});  
             } elsif ($env{'request.linkkey'} ne '') {  
                 &Apache::lonnet::delenv('request.linkkey');  
             }  
             if (($linkprotector) || ($linkkey ne '')) {  
                 if ($linkprotexit ne $env{'request.linkprotexit'}) {  
                     if ($linkprotexit) {  
                         &Apache::lonnet::appenv({'request.linkprotexit' => $linkprotexit});  
                     } elsif ($env{'request.linkprotexit'}) {  
                         &Apache::lonnet::delenv('request.linkprotexit');  
                     }  
                 }  
                 if ($linkprotpbid ne $env{'request.linkprotpbid'}) {  
                     if ($linkprotpbid) {  
                         &Apache::lonnet::appenv({'request.linkprotpbid' => $linkprotpbid});  
                     } elsif ($env{'request.linkprotpbid'}) {  
                         &Apache::lonnet::delenv('request.linkprotpbid');  
                     }  
                 }  
                 if ($linkprotpburl ne $env{'request.linkprotpburl'}) {  
                     if ($linkprotpburl) {  
                         &Apache::lonnet::appenv({'request.linkprotpburl' => $linkprotpburl});  
                     } elsif ($env{'request.linkprotpburl'}) {  
                         &Apache::lonnet::delenv('request.linkprotpburl');  
                     }                      }
                 }                      if ($linkkey ne '') {
             } elsif ($prevlaunch) {                          &Apache::lonnet::appenv({'request.linkkey' => $linkkey});
                 foreach my $requestkey ('linkprotpbid','linkprotpburl','linkprotexit') {                      } elsif ($env{'request.linkkey'} ne '') {
                     if ($env{"request.$requestkey"}) {                          &Apache::lonnet::delenv('request.linkkey');
                         &Apache::lonnet::delenv("request.$requestkey");  
                     }                      }
                       $newlauncher = 1;
                 }                  }
             }              }
             &Apache::lonnet::appenv({'request.deeplink.login' => $linkuri});              &Apache::lonnet::appenv({'request.deeplink.login' => $linkuri});
Line 497  sub launch_check { Line 424  sub launch_check {
         } elsif ($env{'request.linkprot'}) {          } elsif ($env{'request.linkprot'}) {
             &Apache::lonnet::delenv('request.linkprot');              &Apache::lonnet::delenv('request.linkprot');
         }          }
         if ($linkprotexit) {  
             &Apache::lonnet::appenv({'request.linkprotexit' => $linkprotexit});  
         } elsif ($env{'request.linkprotexit'}) {  
             &Apache::lonnet::delenv('request.linkprotexit');  
         }  
         if ($linkprotpbid) {  
             &Apache::lonnet::appenv({'request.linkprotpbid' => $linkprotpbid});  
         } elsif ($env{'request.linkprotpbid'}) {  
             &Apache::lonnet::delenv('request.linkprotpbid');  
         }  
         if ($linkprotpburl) {  
             &Apache::lonnet::appenv({'request.linkprotpburl' => $linkprotpburl});  
         } elsif ($env{'request.linkprotpburl'}) {  
             &Apache::lonnet::delenv('request.linkprotpburl');  
         }  
         if ($linkkey ne '') {          if ($linkkey ne '') {
             &Apache::lonnet::appenv({'request.linkkey' => $linkkey});              &Apache::lonnet::appenv({'request.linkkey' => $linkkey});
         } else {          } else {
Line 554  sub do_redirect { Line 466  sub do_redirect {
 }  }
   
 sub show_roles {  sub show_roles {
     my ($r,$crsenv,$possroles,$hassection,$hascustom,$futureroles,$expiredroles,      my ($r,$crsenv,$possroles,$hassection,$hascustom,$futureroles,$expiredroles,$linkprot,$linkprotuser,$linkprotexit,$ltoken) = @_;
         $linkprot,$linkprotuser,$linkprotexit,$linkprotpbid,$linkprotpburl,$ltoken) = @_;  
     my ($crsdesc,$crstype,$cdom,$cnum,$header,$title,$preamble,$datatable,$js,$args);      my ($crsdesc,$crstype,$cdom,$cnum,$header,$title,$preamble,$datatable,$js,$args);
     if (ref($crsenv) eq 'HASH') {      if (ref($crsenv) eq 'HASH') {
         $crsdesc = $crsenv->{'description'};          $crsdesc = $crsenv->{'description'};
Line 696  ENDJS Line 607  ENDJS
                                 origurl => $r->uri,                                  origurl => $r->uri,
                                 linkprot => $linkprot,                                  linkprot => $linkprot,
                                 linkprotexit => $linkprotexit,                                  linkprotexit => $linkprotexit,
                                 linkprotpbid => $linkprotpbid,  
                                 linkprotpburl => $linkprotpburl,  
                     );                      );
                     my $token =                      my $token =
                         &Apache::lonnet::tmpput(\%data,$r->dir_config('lonHostID'),'retry');                          &Apache::lonnet::tmpput(\%data,$r->dir_config('lonHostID'),'retry');

Removed from v.1.8.2.6  
changed lines
  Added in v.1.14


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