Diff for /loncom/interface/lonconfigsettings.pm between versions 1.21.4.13.2.10 and 1.67

version 1.21.4.13.2.10, 2023/07/05 17:34:15 version 1.67, 2022/09/08 01:41:13
Line 35  use Apache::lonnet; Line 35  use Apache::lonnet;
 use Apache::loncommon();  use Apache::loncommon();
 use Apache::lonhtmlcommon();  use Apache::lonhtmlcommon();
 use Apache::lonlocal;  use Apache::lonlocal;
   use Apache::lonparmset();
 use Apache::courseclassifier();  use Apache::courseclassifier();
 use LONCAPA qw(:DEFAULT :match);  use LONCAPA qw(:DEFAULT :match); 
 use File::Copy;  
   
 sub print_header {  sub print_header {
     my ($r,$phase,$context,$jscript,$container,$instcode,$dom,$confname,$values) = @_;      my ($r,$phase,$context,$jscript,$container,$instcode,$dom,$confname,$values) = @_;
     my ($pagetitle,$brcrumtitle,$action,$call_category_check,$instcode_check,      my ($pagetitle,$brcrumtitle,$action,$call_category_check,$instcode_check,
         $linkprot_check,$ltitools_check,$crstype,@actions,@code_order);          $linkprot_check,$crstype,@actions,@code_order);
     if ($phase eq 'display') {      if ($phase eq 'display') {
         @actions = &Apache::loncommon::get_env_multiple('form.actions');          @actions = &Apache::loncommon::get_env_multiple('form.actions');
     }      }
Line 92  sub print_header { Line 92  sub print_header {
                             var gotcode = 0;                              var gotcode = 0;
                             for (var i=0; i<codes.length; i++) {                              for (var i=0; i<codes.length; i++) {
                                 if (codes[i].selectedIndex != 0) {                                  if (codes[i].selectedIndex != 0) {
                                      gotcode = 1;                                       gotcode = 1; 
                                      break;                                       break;
                                 }                                  }
                             }                              }
Line 116  sub print_header { Line 116  sub print_header {
 ENDSCRIPT  ENDSCRIPT
                 }                  }
             }              }
             if (($context eq 'course') && ((grep(/^linkprot$/,@actions)) ||              if (($context eq 'course') && ($phase eq 'display') &&
                 (grep(/^ltitools$/,@actions)))) {                  (grep(/^linkprot$/,@actions))) {
                 my $allowed;                  my $allowed;
                 my $home = &Apache::lonnet::homeserver($confname,$dom);                  my $home = &Apache::lonnet::homeserver($confname,$dom);
                 unless ($home eq 'no_host') {                  unless ($home eq 'no_host') {
Line 125  ENDSCRIPT Line 125  ENDSCRIPT
                     foreach my $id (@ids) { if ($id eq $home) { $allowed=1; } }                      foreach my $id (@ids) { if ($id eq $home) { $allowed=1; } }
                 }                  }
                 if ($allowed) {                  if ($allowed) {
                     if (grep((/^linkprot$/,@actions))) {                      my (@changeable,@settable);
                         $linkprot_check = &ltisecret_js('linkprot',$dom,$values);                      if (ref($values->{'linkprot'}) eq 'HASH') {
                           if (keys(%{$values->{'linkprot'}})) {
                               my @current = sort { $a <=> $b } keys(%{$values->{'linkprot'}});
                               if (@current) {
                                   for (my $i=0; $i<@current; $i++) {
                                       my $num = $current[$i];
                                       if (ref($values->{'linkprot'}->{$num}) eq 'HASH') {
                                           if ($values->{'linkprot'}->{$num}->{'usable'}) {
                                               push(@changeable,$i);
                                           } else {
                                               push(@settable,$i);
                                           }
                                       }
                                   }
                               }
                           }
                     }                      }
                     if (grep((/^ltitools$/,@actions))) {                      my ($numrules,$intargjs);
                         $ltitools_check = &ltisecret_js('ltitools',$dom,$values);  $linkprot_check .= <<ENDJS;
   
   var linkprotradio = '';
   var secretinput = ''; 
   var posscheck = '';
   
   ENDJS
                       if (@changeable) {
                           foreach my $num (@changeable) {
                               ($numrules,$intargjs) =
                                   &Apache::loncommon::passwd_validation_js('secretinput',$dom,'linkprot',$num);
                               $linkprot_check .= <<ENDJS;
   posscheck = '';
   linkprotradio = document.display.elements['linkprot_changesecret_$num'];
   if (linkprotradio.length) {
       for (var i=0; i<linkprotradio.length; i++) {
           if (linkprotradio[i].checked) {
               if (linkprotradio[i].value == 1) {
                   posscheck = 1;
               }
           }
       }
   }
   
   ENDJS
                               if ($numrules) {
                                   $linkprot_check .= <<ENDJS;
   if (posscheck) {
       secretinput = document.display.elements['linkprot_secret_$num'].value;
       $intargjs
   }
   
   ENDJS
                               }
                               $linkprot_check .= <<ENDJS;
   if (posscheck) {
       uncheckLinkProtMakeVis('visible','$num');
       document.display.elements['linkprot_secret_$num'].type = 'password';
   }
   
   ENDJS
                           }
                       }
                       if (@settable) {
                           foreach my $num (@settable) {
                               ($numrules,$intargjs) =
                                   &Apache::loncommon::passwd_validation_js('secretinput',$dom,'linkprot',$num);
                               if ($numrules) {
                                   $linkprot_check .= <<ENDJS;
   secretinput = document.display.elements['linkprot_secret_$num'].value;
   $intargjs
   
   ENDJS
                               }
                               $linkprot_check .= <<ENDJS;
   uncheckLinkProtMakeVis('visible','$num');
   document.display.elements['linkprot_secret_$num'].type = 'password';
   
   ENDJS
                           }
                     }                      }
                       ($numrules,$intargjs) =
                           &Apache::loncommon::passwd_validation_js('secretinput',$dom,'linkprot','add');
                       if ($numrules) {
                           $linkprot_check .= <<ENDJS
   secretinput = document.display.elements['linkprot_secret_add'].value;
   if (document.display.elements['linkprot_add'].checked) {
       $intargjs
   }
   
   ENDJS
                       }
                       $linkprot_check .= <<ENDJS;
   uncheckLinkProtMakeVis('visible','add');
   document.display.elements['linkprot_secret_add'].type = 'password';
   
   ENDJS
                 }                  }
             }              }
         }          }
Line 163  function changePage(formname,newphase) { Line 253  function changePage(formname,newphase) {
             return;              return;
         }          }
     }      }
     '.$instcode_check.$call_category_check.$linkprot_check.$ltitools_check.'      '.$instcode_check.$call_category_check.$linkprot_check.'
     formname.submit();      formname.submit();
 }'."\n";  }'."\n";
     if ($phase eq 'pickactions') {      if ($phase eq 'pickactions') {
Line 173  function changePage(formname,newphase) { Line 263  function changePage(formname,newphase) {
     } elsif ($phase eq 'display') {      } elsif ($phase eq 'display') {
  $js .= &Apache::lonhtmlcommon::color_picker();   $js .= &Apache::lonhtmlcommon::color_picker();
         $js .= &color_pick_js()."\n";          $js .= &color_pick_js()."\n";
         if ($context eq 'domain') {  
             if (grep(/^(lti|ltitools)$/,@actions)) {  
                  $js .= &ltisec_javascript($dom)."\n";  
             }  
         }  
     }      }
     $js .= &Apache::loncommon::viewport_size_js().'      $js .= &Apache::loncommon::viewport_size_js().'
   
Line 231  $jscript Line 316  $jscript
                     $onload .= "toggleEmailOptions(document.display,'cancreate_emailoptions','$hascustom',".                      $onload .= "toggleEmailOptions(document.display,'cancreate_emailoptions','$hascustom',".
                                                        "'cancreate_emaildomain','default');";                                                         "'cancreate_emaildomain','default');";
                 }                  }
             }              } 
             if (grep(/^contacts$/,@actions)) {              if (grep(/^contacts$/,@actions)) {
                 my $customclass = 'LC_helpdesk_override';                  my $customclass = 'LC_helpdesk_override';
                 my $optionsprefix = 'LC_options_helpdesk_';                  my $optionsprefix = 'LC_options_helpdesk_';
Line 261  $jscript Line 346  $jscript
                 }                  }
                 my %servers = &Apache::lonnet::get_servers($dom,'library');                  my %servers = &Apache::lonnet::get_servers($dom,'library');
                 foreach my $server (keys(%servers)) {                  foreach my $server (keys(%servers)) {
                     $onload .= "togglePrivKey(document.display,'ltisec','$server');";                      $onload .= "togglePrivKey(document.display,'$server');";
                 }                  }
                 $onload .= "toggleLTIEncKey(document.display,'ltisec');";                  $onload .= "toggleLTIEncKey(document.display);";
             }              }
             if (grep(/^ltitools$/,@actions)) {              if (grep(/^ltitools$/,@actions)) {
                 $onload .= "toggleLTITools(document.display,'passback','add');".                  $onload .= "toggleLTITools(document.display,'passback','add');".
Line 279  $jscript Line 364  $jscript
                         }                          }
                     }                      }
                 }                  }
                 my %servers = &Apache::lonnet::get_servers($dom,'library');  
                 foreach my $server (keys(%servers)) {  
                     $onload .= "togglePrivKey(document.display,'toolsec','$server');";  
                 }  
                 $onload .= "toggleLTIEncKey(document.display,'toolsec');";  
             }              }
             if (grep(/^wafproxy$/,@actions)) {              if (grep(/^wafproxy$/,@actions)) {
                 $onload .= "toggleWAF();checkWAF();updateWAF();";                  $onload .= "toggleWAF();checkWAF();updateWAF();";
             }              }
               if (grep(/^proctoring$/,@actions)) {
                   $onload .= "toggleProctoring(document.display,'proctorio');".
                              "toggleProctoring(document.display,'examity');";
               }
             if (grep(/^scantron$/,@actions)) {              if (grep(/^scantron$/,@actions)) {
                 $onload .= "toggleScantron(document.display);";                  $onload .= "toggleScantron(document.display);";
             }              }
Line 310  $jscript Line 394  $jscript
                 $additem = {'add_entries' => \%loaditems,};                  $additem = {'add_entries' => \%loaditems,};
             }              }
         } elsif ($context eq 'course') {          } elsif ($context eq 'course') {
             my ($onload,$ishome,$crshome_checked);              my $onload;
             if (grep(/^courseinfo$/,@actions)) {              if (grep(/^courseinfo$/,@actions)) {
                 if (@code_order) {                  if (@code_order) {
                     $onload = "courseSet('','load');toggleCloners(document.display.cloners_instcode);";                      $onload = "courseSet('','load');toggleCloners(document.display.cloners_instcode);";
Line 326  $jscript Line 410  $jscript
                             my %domdefs = &Apache::lonnet::get_domain_defaults($dom);                              my %domdefs = &Apache::lonnet::get_domain_defaults($dom);
                             $ltiauth = $domdefs{'crsltiauth'};                              $ltiauth = $domdefs{'crsltiauth'};
                         }                          }
                         unless ($crshome_checked) {                          my $ishome;
                             $ishome = &is_home();                          my $chome = $env{'course.'.$env{'request.course.id'}.'.home'};
                             $crshome_checked = 1;                          unless (($chome eq 'no_host') || ($chome eq '')) {
                               my @ids=&Apache::lonnet::current_machine_ids();
                               foreach my $id (@ids) { if ($id eq $chome) { $ishome=1; } }
                         }                          }
                         my $posslti = scalar(keys(%{$values->{'linkprot'}}));                          my $posslti = scalar(keys(%{$values->{'linkprot'}}));
                         for (my $i=0; $i<=$posslti; $i++) {                          for (my $i=0; $i<=$posslti; $i++) {
Line 338  $jscript Line 424  $jscript
                             }                              }
                             if (ref($values->{'linkprot'}->{$i}) eq 'HASH') {                              if (ref($values->{'linkprot'}->{$i}) eq 'HASH') {
                                 if ($values->{'linkprot'}->{$i}->{'usable'}) {                                  if ($values->{'linkprot'}->{$i}->{'usable'}) {
                                     $onload .= "toggleChgSecret(document.display,'$num','secret','linkprot');";                                      $onload .= "toggleLinkProt(document.display,'$num','secret');";
                                 }                                  }
                             }                              }
                             $onload .= "toggleLinkProtExtra(document.display,'returnurl','divurlparam','1','inline-block','$num');".                              $onload .= "toggleLinkProtExtra(document.display,'returnurl','divurlparam','1','inline-block','$num');";
                                        "toggleLinkProtExtra(document.display,'passback','passbackparam','1','inline-block','$num');";  
                             if ($ltiauth) {                              if ($ltiauth) {
                                 $onload .= "toggleLinkProtExtra(document.display,'requser','optional','1','block','$num');".                                  $onload .= "toggleLinkProtExtra(document.display,'requser','optional','1','block','$num');".
                                            "toggleLinkProtExtra(document.display,'mapuser','userfield','other','inline-block','$num');";                                             "toggleLinkProtExtra(document.display,'mapuser','userfield','other','inline-block','$num');";
                             }                              }
                             if ($ishome) {                              if ($ishome) {
                                 $onload .= "uncheckLinkProtMakeVis('linkprot','visible','$num');";                                  $onload .= "uncheckLinkProtMakeVis('visible','$num');";
                             }  
                         }  
                     }  
                 }  
             }  
             if (grep(/^ltitools$/,@actions)) {  
                 if (ref($values) eq 'HASH') {  
                     if (ref($values->{'ltitools'}) eq 'HASH') {  
                         unless ($crshome_checked) {  
                             $ishome = &is_home();  
                             $crshome_checked = 1;  
                         }  
                         my $possltitools = scalar(keys(%{$values->{'ltitools'}}));  
                         for (my $i=0; $i<=$possltitools; $i++) {  
                             my $num = $i;  
                             if ($i == $possltitools) {  
                                 $num = 'add';  
                             }  
                             if (ref($values->{'ltitools'}->{$i}) eq 'HASH') {  
                                 if ($values->{'ltitools'}->{$i}->{'usable'}) {  
                                     $onload .= "toggleChgSecret(document.display,'$num','secret','ltitools');";  
                                 }  
                             }  
                             if ($ishome) {  
                                 $onload .= "uncheckLinkProtMakeVis('ltitools','visible','$num');";  
                             }                              }
                         }                          }
                     }                      }
Line 402  $jscript Line 462  $jscript
 <input type="hidden" name="pres_value" />  <input type="hidden" name="pres_value" />
 </form>  </form>
 ');  ');
       if ($container) {
          &Apache::lonparmset::startSettingsScreen($r,$container,$crstype);
       }
     $r->print('<form method="post" name="'.$phase.'" action="'.$action.'"'.      $r->print('<form method="post" name="'.$phase.'" action="'.$action.'"'.
               ' enctype="multipart/form-data">');                ' enctype="multipart/form-data">');
     return;      return;
 }  }
   
 sub ltisecret_js {  
     my ($name,$dom,$values) = @_;  
     return unless (ref($values) eq 'HASH');  
     my $js;  
     if (($name eq 'linkprot') || ($name eq 'ltitools')) {  
         my (@changeable,@settable);  
         if (ref($values->{$name}) eq 'HASH') {  
             if (keys(%{$values->{$name}})) {  
                 my @current = sort { $a <=> $b } keys(%{$values->{$name}});  
                 if (@current) {  
                     for (my $i=0; $i<@current; $i++) {  
                         my $num = $current[$i];  
                         if (ref($values->{$name}->{$num}) eq 'HASH') {  
                             if ($values->{$name}->{$num}->{'usable'}) {  
                                 push(@changeable,$i);  
                             } else {  
                                 push(@settable,$i);  
                             }  
                         }  
                     }  
                 }  
             }  
         }  
         my ($numrules,$intargjs);  
 $js .= <<ENDJS;  
   
 var ${name}radio = '';  
 var ${name}secretinput = '';  
 var ${name}posscheck = '';  
   
 ENDJS  
         if (@changeable) {  
             foreach my $num (@changeable) {  
                 ($numrules,$intargjs) =  
                     &Apache::loncommon::passwd_validation_js($name.'secretinput',$dom,$name,$num);  
                 $js .= <<"ENDJS";  
 ${name}posscheck = '';  
 ${name}radio = document.display.elements['${name}_changesecret_$num'];  
 if (${name}radio.length) {  
     for (var i=0; i<${name}radio.length; i++) {  
         if (${name}radio[i].checked) {  
             if (${name}radio[i].value == 1) {  
                 ${name}posscheck = 1;  
             }  
         }  
     }  
 }  
   
 ENDJS  
                 if ($numrules) {  
                     $js .= <<"ENDJS";  
 if (${name}posscheck) {  
     ${name}secretinput = document.display.elements['${name}_secret_$num'].value;  
     $intargjs  
 }  
   
 ENDJS  
                 }  
                 $js .= <<"ENDJS";  
 if (${name}posscheck) {  
     uncheckLinkProtMakeVis('$name','visible','$num');  
     document.display.elements['${name}_secret_$num'].type = 'password';  
 }  
   
 ENDJS  
             }  
         }  
         if (@settable) {  
             foreach my $num (@settable) {  
                 ($numrules,$intargjs) =  
                     &Apache::loncommon::passwd_validation_js($name.'secretinput',$dom,$name,$num);  
                 if ($numrules) {  
                     $js .= <<ENDJS;  
 ${name}secretinput = document.display.elements['${name}_secret_$num'].value;  
 $intargjs  
   
 ENDJS  
                 }  
                 $js .= <<ENDJS;  
 uncheckLinkProtMakeVis('$name','visible','$num');  
 document.display.elements['${name}_secret_$num'].type = 'password';  
   
 ENDJS  
             }  
         }  
         ($numrules,$intargjs) =  
             &Apache::loncommon::passwd_validation_js($name.'secretinput',$dom,$name,'add');  
         if ($numrules) {  
             $js .= <<ENDJS  
 ${name}secretinput = document.display.elements['${name}_secret_add'].value;  
 if (document.display.elements['${name}_add'].checked) {  
     $intargjs  
 }  
   
 ENDJS  
         }  
         $js .= <<ENDJS;  
 uncheckLinkProtMakeVis('$name','visible','add');  
 document.display.elements['${name}_secret_add'].type = 'password';  
   
 ENDJS  
     }  
     return $js;  
 }  
   
 sub is_home {  
     my $ishome;  
     my $chome = $env{'course.'.$env{'request.course.id'}.'.home'};  
     unless (($chome eq 'no_host') || ($chome eq '')) {  
         my @ids=&Apache::lonnet::current_machine_ids();  
         foreach my $id (@ids) {  
             if ($id eq $chome) {  
                 $ishome=1;  
                 last;  
             }  
         }  
     }  
     return $ishome;  
 }  
   
 sub print_footer {  sub print_footer {
     my ($r,$phase,$newphase,$button_text,$actions,$container,$parm_permission) = @_;      my ($r,$phase,$newphase,$button_text,$actions,$container,$parm_permission) = @_;
     $button_text = &mt($button_text);      $button_text = &mt($button_text);
Line 562  sub print_footer { Line 505  sub print_footer {
         if ($showbutton) {          if ($showbutton) {
             $r->print('<p><input type="button" name="store" value="'.              $r->print('<p><input type="button" name="store" value="'.
                       $button_text.'" onclick='.$onclick.' /></p>');                        $button_text.'" onclick='.$onclick.' /></p>');
         }          } 
     }      }
     if ($phase eq 'process') {      if ($phase eq 'process') {
         $r->print('</form>');          $r->print('</form>');
           if ($container) {
              &Apache::lonparmset::endSettingsScreen($r);
           }
         $r->print(&Apache::loncommon::end_page());          $r->print(&Apache::loncommon::end_page());
     }      }
     return;      return;
Line 664  sub display_settings { Line 610  sub display_settings {
     if ((ref($prefs_order) eq 'ARRAY') && (ref($prefs) eq 'HASH') && (ref($values) eq 'HASH')) {       if ((ref($prefs_order) eq 'ARRAY') && (ref($prefs) eq 'HASH') && (ref($values) eq 'HASH')) { 
         if (@actions > 0) {          if (@actions > 0) {
             my $rowsum = 0;              my $rowsum = 0;
             my (%output,%rowtotal,@items,$got_check_uncheck,$got_change_secret);              my (%output,%rowtotal,@items,$got_check_uncheck);
             foreach my $item (@{$prefs_order}) {              foreach my $item (@{$prefs_order}) {
                 if (grep(/^\Q$item\E$/,@actions)) {                  if (grep(/^\Q$item\E$/,@actions)) {
                     push(@items,$item);                      push(@items,$item);
                     if ($context eq 'domain') {                      if ($context eq 'domain') {
                         my $settings;                          my $settings;
                         if (ref($values) eq 'HASH') {                          if (ref($values) eq 'HASH') { 
                             $settings = $values->{$item};                              $settings = $values->{$item};
                         }                          }
                         if ($item eq 'usersessions') {                          if (($item eq 'usersessions') || ($item eq 'ssl')) {
                             $r->print('<script type="text/javascript">'."\n".                              unless ($got_check_uncheck) {
                                       '// <![CDATA['."\n".                                  $r->print('<script type="text/javascript">'."\n".
                                       &Apache::loncommon::check_uncheck_jscript()."\n".                                            '// <![CDATA['."\n".
                                       '// ]]>'."\n".                                            &Apache::loncommon::check_uncheck_jscript()."\n".
                                       '</script>'."\n");                                            '// ]]>'."\n".
                                             '</script>'."\n");
                                   $got_check_uncheck = 1;
                               }
                         } elsif ($item eq 'selfcreation') {                          } elsif ($item eq 'selfcreation') {
                             if (ref($values) eq 'HASH') {                              if (ref($values) eq 'HASH') {
                                 $settings = $values->{'usercreation'};                                  $settings = $values->{'usercreation'};
Line 695  sub display_settings { Line 644  sub display_settings {
                                 my $inststatus = {                                  my $inststatus = {
                                                    inststatustypes => $usertypes,                                                     inststatustypes => $usertypes,
                                                    inststatusorder => $types,                                                     inststatusorder => $types,
                                                    inststatusguest => [],                                                     inststatusguest => [], 
                                                  };                                                   };
                                 if (ref($values->{defaults}) eq 'HASH') {                                  if (ref($values->{defaults}) eq 'HASH') {
                                     $settings = {%{$inststatus},%{$values->{'defaults'}}};                                      $settings = {%{$inststatus},%{$values->{'defaults'}}};
Line 703  sub display_settings { Line 652  sub display_settings {
                                     $settings = $inststatus;                                      $settings = $inststatus;
                                 }                                  }
                             }                              }
                         } elsif (($item eq 'lti') || ($item eq 'ltitools')) {                          } elsif ($item eq 'lti') {
                             unless ($got_change_secret) {                              if (ref($values->{'ltisec'}) eq 'HASH') {
                                 $r->print('<script type="text/javascript">'."\n".                                  if (ref($values->{'lti'}) eq 'HASH') {
                                           '// <![CDATA['."\n".                                      $settings = {%{$values->{'lti'}},%{$values->{'ltisec'}}};
                                           &change_secret_js()."\n".                                  } else {
                                           '// ]]>'."\n".                                      $settings = $values->{'ltisec'};
                                           '</script>'."\n");  
                                 $got_change_secret = 1;  
                             }  
                             if ($item eq 'lti') {  
                                 if (ref($values->{'ltisec'}) eq 'HASH') {  
                                     if (ref($values->{'lti'}) eq 'HASH') {  
                                         $settings = {%{$values->{'lti'}},%{$values->{'ltisec'}}};  
                                     } else {  
                                         $settings = $values->{'ltisec'};  
                                     }  
                                 } elsif (ref($values->{'lti'}) eq 'HASH') {  
                                     $settings = $values->{'lti'};  
                                 }  
                             } elsif ($item eq 'ltitools') {  
                                 if (ref($values->{'toolsec'}) eq 'HASH') {  
                                     if (ref($values->{'ltitools'}) eq 'HASH') {  
                                         $settings = {%{$values->{'ltitools'}},%{$values->{'toolsec'}}};  
                                     } else {  
                                         $settings = $values->{'toolsec'};  
                                     }  
                                 }                                  }
                               } elsif (ref($values->{'lti'}) eq 'HASH') {
                                   $settings = $values->{'lti'};
                             }                              }
                         }                          }
                         ($output{$item},$rowtotal{$item}) =                          ($output{$item},$rowtotal{$item}) =
                             &Apache::domainprefs::print_config_box($r,$dom,$confname,                              &Apache::domainprefs::print_config_box($r,$dom,$confname,
                                 $phase,$item,$prefs->{$item},$settings);                                  $phase,$item,$prefs->{$item},$settings);
                     } else {                      } else {
                         unless ($got_change_secret) {  
                             $r->print('<script type="text/javascript">'."\n".  
                                       '// <![CDATA['."\n".  
                                       &change_secret_js()."\n".  
                                       '// ]]>'."\n".  
                                       '</script>'."\n");  
                             $got_change_secret = 1;  
                         }  
                         ($output{$item},$rowtotal{$item}) =                          ($output{$item},$rowtotal{$item}) =
                             &Apache::courseprefs::print_config_box($r,$dom,$confname,$phase,                              &Apache::courseprefs::print_config_box($r,$dom,$confname,$phase,
                                 $item,$prefs->{$item},$values,$allitems,$crstype,$parm_permission);                                  $item,$prefs->{$item},$values,$allitems,$crstype,$parm_permission);
Line 764  sub display_settings { Line 687  sub display_settings {
         }          }
         $r->print('</form>');          $r->print('</form>');
     }      }
       if ($container) {
           &Apache::lonparmset::endSettingsScreen($r);
       }
     $r->print(&Apache::loncommon::end_page());      $r->print(&Apache::loncommon::end_page());
     return;      return;
 }  }
Line 826  sub display_choices { Line 752  sub display_choices {
     $r->print('</div><div style="padding:0;clear:both;margin:0;border:0"></div>');      $r->print('</div><div style="padding:0;clear:both;margin:0;border:0"></div>');
     $r->print(&print_footer($r,$phase,'display','Display',undef,$container,$parm_permission));      $r->print(&print_footer($r,$phase,'display','Display',undef,$container,$parm_permission));
     $r->print('</form>');      $r->print('</form>');
       if ($container) {
           &Apache::lonparmset::endSettingsScreen($r);
       }
     $r->print(&Apache::loncommon::end_page());      $r->print(&Apache::loncommon::end_page());
     return;      return;
 }  }
Line 872  ENDCOL Line 801  ENDCOL
     return $output;      return $output;
 }  }
   
 sub ltisec_javascript {  
     my ($dom) = @_;  
     my %servers = &Apache::lonnet::get_servers($dom,'library');  
     my $primary = &Apache::lonnet::domain($dom,'primary');  
     my $course_servers = "'".join("','",keys(%servers))."'";  
     my $output = <<"ENDJS";  
   
 function toggleLTIEncKey(form,context) {  
     var shownhosts = new Array();  
     var hiddenhosts = new Array();  
     var forcourse = new Array($course_servers);  
     var fromdomain = '$primary';  
     var crsradio;  
     if (context == 'ltisec') {  
         crsradio = form.elements['ltisec_crslinkprot'];  
     } else {  
         crsradio = form.elements['toolsec_crs'];  
     }  
     if (crsradio.length) {  
         for (var i=0; i<crsradio.length; i++) {  
             if (crsradio[i].checked) {  
                 if (crsradio[i].value == 1) {  
                     if (forcourse.length > 0) {  
                         for (var j=0; j<forcourse.length; j++) {  
                             if (!shownhosts.includes(forcourse[j])) {  
                                 shownhosts.push(forcourse[j]);  
                             }  
                         }  
                     }  
                 } else {  
                     if (forcourse.length > 0) {  
                         for (var j=0; j<forcourse.length; j++) {  
                             if (!hiddenhosts.includes(forcourse[j])) {  
                                 hiddenhosts.push(forcourse[j]);  
                             }  
                         }  
                     }  
                 }  
             }  
         }  
     }  
     var domradio;  
     if (context == 'ltisec') {  
         domradio = form.elements['ltisec_domlinkprot'];  
     } else {  
         domradio = form.elements['toolsec_dom'];  
     }  
     if (domradio.length) {  
         for (var i=0; i<domradio.length; i++) {  
             if (domradio[i].checked) {  
                 if (domradio[i].value == 1) {  
                     if (!shownhosts.includes(fromdomain)) {  
                         shownhosts.push(fromdomain);  
                     }  
                 } else {  
                     if (!hiddenhosts.includes(fromdomain)) {  
                         hiddenhosts.push(fromdomain);  
                     }  
                 }  
             }  
         }  
     }  
     if (context == 'ltisec') {  
         var consumersradio = form.elements['ltisec_consumers'];  
         if (consumersradio.length) {  
             for (var i=0; i<consumersradio.length; i++) {  
                 if (consumersradio[i].checked) {  
                     if (consumersradio[i].value == 1) {  
                         if (!shownhosts.includes(fromdomain)) {  
                             shownhosts.push(fromdomain);  
                         }  
                     } else {  
                         if (!hiddenhosts.includes(fromdomain)) {  
                             hiddenhosts.push(fromdomain);  
                         }  
                     }  
                 }  
             }  
         }  
     }  
     if (shownhosts.length > 0) {  
         for (var i=0; i<shownhosts.length; i++) {  
             if (document.getElementById(context+'_info_'+shownhosts[i])) {  
                 document.getElementById(context+'_info_'+shownhosts[i]).style.display = 'block';  
             }  
         }  
         if (document.getElementById(context+'_noprivkey')) {  
             document.getElementById(context+'_noprivkey').style.display = 'none';  
         }  
     } else {  
         if (document.getElementById(context+'_noprivkey')) {  
             document.getElementById(context+'_noprivkey').style.display = 'inline-block';  
         }  
     }  
     if (hiddenhosts.length > 0) {  
         for (var i=0; i<hiddenhosts.length; i++) {  
             if (!shownhosts.includes(hiddenhosts[i])) {  
                 if (document.getElementById(context+'_info_'+hiddenhosts[i])) {  
                     document.getElementById(context+'_info_'+hiddenhosts[i]).style.display = 'none';  
                 }  
             }  
         }  
     }  
     return;  
 }  
   
 function togglePrivKey(form,context,hostid) {  
     var radioname = '';  
     var currdivid = '';  
     var newdivid = '';  
     if ((document.getElementById(context+'_divcurrprivkey_'+hostid)) &&  
         (document.getElementById(context+'_divchgprivkey_'+hostid))) {  
         currdivid = document.getElementById(context+'_divcurrprivkey_'+hostid);  
         newdivid = document.getElementById(context+'_divchgprivkey_'+hostid);  
         radioname = form.elements[context+'_changeprivkey_'+hostid];  
         if (radioname) {  
             if (radioname.length > 0) {  
                 var setvis;  
                 for (var i=0; i<radioname.length; i++) {  
                     if (radioname[i].checked == true) {  
                         if (radioname[i].value == 1) {  
                             newdivid.style.display = 'inline-block';  
                             currdivid.style.display = 'none';  
                             setvis = 1;  
                         }  
                         break;  
                     }  
                 }  
                 if (!setvis) {  
                     newdivid.style.display = 'none';  
                     currdivid.style.display = 'inline-block';  
                 }  
             }  
         }  
     }  
     return;  
 }  
   
 ENDJS  
   
 }  
   
 sub ltitools_javascript {  
     my ($settings) = @_;  
     my $togglejs = &ltitools_toggle_js();  
     unless (ref($settings) eq 'HASH') {  
         return $togglejs;  
     }  
     my (%ordered,$total,%jstext);  
     $total = 0;  
     foreach my $item (keys(%{$settings})) {  
         if (ref($settings->{$item}) eq 'HASH') {  
             my $num = $settings->{$item}{'order'};  
             $ordered{$num} = $item;  
         }  
     }  
     $total = scalar(keys(%{$settings}));  
     my @jsarray = ();  
     foreach my $item (sort {$a <=> $b } (keys(%ordered))) {  
         push(@jsarray,$ordered{$item});  
     }  
     my $jstext = '    var ltitools = Array('."'".join("','",@jsarray)."'".');'."\n";  
     return <<"ENDSCRIPT";  
 <script type="text/javascript">  
 // <![CDATA[  
 function reorderLTITools(form,item) {  
     var changedVal;  
 $jstext  
     var newpos = 'ltitools_add_pos';  
     var maxh = 1 + $total;  
     var current = new Array;  
     var newitemVal = form.elements[newpos].options[form.elements[newpos].selectedIndex].value;  
     if (item == newpos) {  
         changedVal = newitemVal;  
     } else {  
         changedVal = form.elements[item].options[form.elements[item].selectedIndex].value;  
         current[newitemVal] = newpos;  
     }  
     for (var i=0; i<ltitools.length; i++) {  
         var elementName = 'ltitools_'+ltitools[i];  
         if (elementName != item) {  
             if (form.elements[elementName]) {  
                 var currVal = form.elements[elementName].options[form.elements[elementName].selectedIndex].value;  
                 current[currVal] = elementName;  
             }  
         }  
     }  
     var oldVal;  
     for (var j=0; j<maxh; j++) {  
         if (current[j] == undefined) {  
             oldVal = j;  
         }  
     }  
     if (oldVal < changedVal) {  
         for (var k=oldVal+1; k<=changedVal ; k++) {  
            var elementName = current[k];  
            form.elements[elementName].selectedIndex = form.elements[elementName].selectedIndex - 1;  
         }  
     } else {  
         for (var k=changedVal; k<oldVal; k++) {  
             var elementName = current[k];  
             form.elements[elementName].selectedIndex = form.elements[elementName].selectedIndex + 1;  
         }  
     }  
     return;  
 }  
   
 // ]]>  
 </script>  
   
 $togglejs  
   
 ENDSCRIPT  
 }  
   
 sub ltitools_toggle_js {  
     return <<"ENDSCRIPT";  
 <script type="text/javascript">  
 // <![CDATA[  
   
 function toggleLTITools(form,setting,item) {  
     var radioname = '';  
     var divid = '';  
     if ((setting == 'passback') || (setting == 'roster')) {  
         radioname = 'ltitools_'+setting+'_'+item;  
         divid = 'ltitools_'+setting+'time_'+item;  
         var num = form.elements[radioname].length;  
         if (num) {  
             var setvis = '';  
             for (var i=0; i<num; i++) {  
                 if (form.elements[radioname][i].checked) {  
                     if (form.elements[radioname][i].value == '1') {  
                         if (document.getElementById(divid)) {  
                             document.getElementById(divid).style.display = 'inline-block';  
                         }  
                         setvis = 1;  
                     }  
                     break;  
                 }  
             }  
         }  
         if (!setvis) {  
             if (document.getElementById(divid)) {  
                 document.getElementById(divid).style.display = 'none';  
             }  
         }  
     }  
     if (setting == 'user') {  
         divid = 'ltitools_'+setting+'_div_'+item;  
         var checkid = 'ltitools_'+setting+'_field_'+item;  
         if (document.getElementById(divid)) {  
             if (document.getElementById(checkid)) {  
                 if (document.getElementById(checkid).checked) {  
                     document.getElementById(divid).style.display = 'inline-block';  
                 } else {  
                     document.getElementById(divid).style.display = 'none';  
                 }  
             }  
         }  
     }  
     return;  
 }  
 // ]]>  
 </script>  
   
 ENDSCRIPT  
 }  
   
 sub get_crumb_text {  sub get_crumb_text {
     my %brcrumbtext = (      my %brcrumbtext = (
                        domain => 'Domain Settings',                         domain => 'Domain Settings',
Line 1148  sub get_crumb_text { Line 809  sub get_crumb_text {
     return %brcrumbtext;      return %brcrumbtext;
 }  }
   
 sub publishlogo {  
     my ($r,$action,$formname,$dom,$confname,$subdir,$thumbwidth,$thumbheight,  
         $savefileas,$modified) = @_;  
     my ($output,$fname,$logourl,$madethumb);  
     if ($action eq 'upload') {  
         $fname=$env{'form.'.$formname.'.filename'};  
         chop($env{'form.'.$formname});  
     } else {  
         ($fname) = ($formname =~ /([^\/]+)$/);  
     }  
     if ($savefileas ne '') {  
         $fname = $savefileas;  
     }  
     $fname=&Apache::lonnet::clean_filename($fname);  
 # See if there is anything left  
     unless ($fname) { return ('error: no uploaded file'); }  
     $fname="$subdir/$fname";  
     my $docroot=$r->dir_config('lonDocRoot');  
     my $filepath="$docroot/priv";  
     my $relpath = "$dom/$confname";  
     my ($fnamepath,$file,$fetchthumb);  
     $file=$fname;  
     if ($fname=~m|/|) {  
         ($fnamepath,$file) = ($fname =~ m|^(.*)/([^/]+)$|);  
     }  
     my @parts=split(/\//,"$filepath/$relpath/$fnamepath");  
     my $count;  
     for ($count=5;$count<=$#parts;$count++) {  
         $filepath.="/$parts[$count]";  
         if ((-e $filepath)!=1) {  
             mkdir($filepath,02770);  
         }  
     }  
     # Check for bad extension and disallow upload  
     if ($file=~/\.(\w+)$/ &&  
         (&Apache::loncommon::fileembstyle($1) eq 'hdn')) {  
         $output =  
             &mt('Invalid file extension ([_1]) - reserved for internal use.',$1);  
     } elsif ($file=~/\.(\w+)$/ &&  
         !defined(&Apache::loncommon::fileembstyle($1))) {  
         $output = &mt('Unrecognized file extension ([_1]) - rename the file with a proper extension and re-upload.',$1);  
     } elsif ($file=~/\.(\d+)\.(\w+)$/) {  
         $output = &mt('Filename not allowed - rename the file to remove the number immediately before the file extension([_1]) and re-upload.',$2);  
     } elsif (-d "$filepath/$file") {  
         $output = &mt('Filename is a directory name - rename the file and re-upload');  
     } else {  
         my $source = $filepath.'/'.$file;  
         my $logfile;  
         if (!open($logfile,">>",$source.'.log')) {  
             return (&mt('No write permission to Authoring Space'));  
         }  
         print $logfile  
 "\n================= Publish ".localtime()." ================\n".  
 $env{'user.name'}.':'.$env{'user.domain'}."\n";  
 # Save the file  
         if (!open(FH,">",$source)) {  
             &Apache::lonnet::logthis('Failed to create '.$source);  
             return (&mt('Failed to create file'));  
         }  
         if ($action eq 'upload') {  
             if (!print FH ($env{'form.'.$formname})) {  
                 &Apache::lonnet::logthis('Failed to write to '.$source);  
                 return (&mt('Failed to write file'));  
             }  
         } else {  
             my $original = &Apache::lonnet::filelocation('',$formname);  
             if(!copy($original,$source)) {  
                 &Apache::lonnet::logthis('Failed to copy '.$original.' to '.$source);  
                 return (&mt('Failed to write file'));  
             }  
         }  
         close(FH);  
         chmod(0660, $source); # Permissions to rw-rw---.  
   
         my $targetdir=$docroot.'/res/'.$dom.'/'.$confname .'/'.$fnamepath;  
         my $copyfile=$targetdir.'/'.$file;  
   
         my @parts=split(/\//,$targetdir);  
         my $path="/$parts[1]/$parts[2]/$parts[3]/$parts[4]";  
         for (my $count=5;$count<=$#parts;$count++) {  
             $path.="/$parts[$count]";  
             if (!-e $path) {  
                 print $logfile "\nCreating directory ".$path;  
                 mkdir($path,02770);  
             }  
         }  
         my $versionresult;  
         if (-e $copyfile) {  
             $versionresult = &logo_versioning($targetdir,$file,$logfile);  
         } else {  
             $versionresult = 'ok';  
         }  
         if ($versionresult eq 'ok') {  
             if (copy($source,$copyfile)) {  
                 print $logfile "\nCopied original source to ".$copyfile."\n";  
                 $output = 'ok';  
                 $logourl = '/res/'.$dom.'/'.$confname.'/'.$fname;  
                 if (ref($modified) eq 'ARRAY') {  
                     push(@{$modified},[$copyfile,$source]);  
                 }  
                 my $metaoutput =  
                     &write_metadata($dom,$confname,$formname,$targetdir,$file,$logfile);  
             } else {  
                 print $logfile "\nUnable to write ".$copyfile.':'.$!."\n";  
                 $output = &mt('Failed to copy file to RES space').", $!";  
             }  
             if (($thumbwidth =~ /^\d+$/) && ($thumbheight =~ /^\d+$/)) {  
                 my $inputfile = $filepath.'/'.$file;  
                 my $outfile = $filepath.'/'.'tn-'.$file;  
                 my ($fullwidth,$fullheight) = &Apache::lonnet::check_dimensions($inputfile);  
                 if ($fullwidth ne '' && $fullheight ne '') {  
                     if ($fullwidth > $thumbwidth && $fullheight > $thumbheight) {  
                         my $thumbsize = $thumbwidth.'x'.$thumbheight;  
                         my @args = ('convert','-sample',$thumbsize,$inputfile,$outfile);  
                         system({$args[0]} @args);  
                         chmod(0660, $filepath.'/tn-'.$file);  
                         if (-e $outfile) {  
                             my $copyfile=$targetdir.'/tn-'.$file;  
                             if (copy($outfile,$copyfile)) {  
                                 print $logfile "\nCopied source to ".$copyfile."\n";  
                                 my $thumb_metaoutput =  
                                     &write_metadata($dom,$confname,$formname,  
                                                     $targetdir,'tn-'.$file,$logfile);  
                                 if (ref($modified) eq 'ARRAY') {  
                                     push(@{$modified},[$copyfile,$outfile]);  
                                 }  
                                 $madethumb = 1;  
                             } else {  
                                 print $logfile "\nUnable to write ".$copyfile.  
                                                ':'.$!."\n";  
                             }  
                         }  
                     }  
                 }  
             }  
         } else {  
             $output = $versionresult;  
         }  
     }  
     return ($output,$logourl,$madethumb);  
 }  
   
 sub logo_versioning {  
     my ($targetdir,$file,$logfile) = @_;  
     my $target = $targetdir.'/'.$file;  
     my ($maxversion,$fn,$extn,$output);  
     $maxversion = 0;  
     if ($file =~ /^(.+)\.(\w+)$/) {  
         $fn=$1;  
         $extn=$2;  
     }  
     opendir(DIR,$targetdir);  
     while (my $filename=readdir(DIR)) {  
         if ($filename=~/\Q$fn\E\.(\d+)\.\Q$extn\E$/) {  
             $maxversion=($1>$maxversion)?$1:$maxversion;  
         }  
     }  
     $maxversion++;  
     print $logfile "\nCreating old version ".$maxversion."\n";  
     my $copyfile=$targetdir.'/'.$fn.'.'.$maxversion.'.'.$extn;  
     if (copy($target,$copyfile)) {  
         print $logfile "Copied old target to ".$copyfile."\n";  
         $copyfile=$copyfile.'.meta';  
         if (copy($target.'.meta',$copyfile)) {  
             print $logfile "Copied old target metadata to ".$copyfile."\n";  
             $output = 'ok';  
         } else {  
             print $logfile "Unable to write metadata ".$copyfile.':'.$!."\n";  
             $output = &mt('Failed to copy old meta').", $!, ";  
         }  
     } else {  
         print $logfile "Unable to write ".$copyfile.':'.$!."\n";  
         $output = &mt('Failed to copy old target').", $!, ";  
     }  
     return $output;  
 }  
   
 sub write_metadata {  
     my ($dom,$confname,$formname,$targetdir,$file,$logfile) = @_;  
     my (%metadatafields,%metadatakeys,$output);  
     $metadatafields{'title'}=$formname;  
     $metadatafields{'creationdate'}=time;  
     $metadatafields{'lastrevisiondate'}=time;  
     $metadatafields{'copyright'}='public';  
     $metadatafields{'modifyinguser'}=$env{'user.name'}.':'.  
                                          $env{'user.domain'};  
     $metadatafields{'authorspace'}=$confname.':'.$dom;  
     $metadatafields{'domain'}=$dom;  
     {  
         print $logfile "\nWrite metadata file for ".$targetdir.'/'.$file;  
         my $mfh;  
         if (open($mfh,">",$targetdir.'/'.$file.'.meta')) {  
             foreach (sort(keys(%metadatafields))) {  
                 unless ($_=~/\./) {  
                     my $unikey=$_;  
                     $unikey=~/^([A-Za-z]+)/;  
                     my $tag=$1;  
                     $tag=~tr/A-Z/a-z/;  
                     print $mfh "\n\<$tag";  
                     foreach (split(/\,/,$metadatakeys{$unikey})) {  
                         my $value=$metadatafields{$unikey.'.'.$_};  
                         $value=~s/\"/\'\'/g;  
                         print $mfh ' '.$_.'="'.$value.'"';  
                     }  
                     print $mfh '>'.  
                         &HTML::Entities::encode($metadatafields{$unikey},'<>&"')  
                             .'</'.$tag.'>';  
                 }  
             }  
             $output = 'ok';  
             print $logfile "\nWrote metadata";  
             close($mfh);  
         } else {  
             print $logfile "\nFailed to open metadata file";  
             $output = &mt('Could not write metadata');  
         }  
     }  
     return $output;  
 }  
   
 sub change_secret_js {  
     return <<"ENDSCRIPT";  
 function toggleChgSecret(form,num,item,name) {  
     var radioname = '';  
     var currdivid = '';  
     var newdivid = '';  
     if ((document.getElementById(name+'_divcurr'+item+'_'+num)) &&  
         (document.getElementById(name+'_divchg'+item+'_'+num))) {  
         currdivid = document.getElementById(name+'_divcurr'+item+'_'+num);  
         newdivid = document.getElementById(name+'_divchg'+item+'_'+num);  
         radioname = form.elements[name+'_change'+item+'_'+num];  
         if (radioname) {  
             if (radioname.length > 0) {  
                 var setvis;  
                 for (var i=0; i<radioname.length; i++) {  
                     if (radioname[i].checked == true) {  
                         if (radioname[i].value == 1) {  
                             newdivid.style.display = 'inline-block';  
                             currdivid.style.display = 'none';  
                             setvis = 1;  
                         }  
                         break;  
                     }  
                 }  
                 if (!setvis) {  
                     newdivid.style.display = 'none';  
                     currdivid.style.display = 'inline-block';  
                 }  
             }  
         }  
     }  
     return;  
 }  
   
 function uncheckLinkProtMakeVis(name,item,num) {  
     if (document.getElementById(name+'_'+item+'_'+num)) {  
         var currtype = document.getElementById(name+'_'+item+'_'+num).type;  
         if (currtype.toLowerCase() == 'checkbox') {  
             document.getElementById(name+'_'+item+'_'+num).checked = false;  
         }  
     }  
     return;  
 }  
 ENDSCRIPT  
   
 }  
   
 1;  1;

Removed from v.1.21.4.13.2.10  
changed lines
  Added in v.1.67


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