Diff for /loncom/interface/lonmodifycourse.pm between versions 1.79.2.9 and 1.79.2.9.2.2

version 1.79.2.9, 2021/06/20 17:27:03 version 1.79.2.9.2.2, 2022/02/20 19:22:30
Line 410  sub print_modification_menu { Line 410  sub print_modification_menu {
                       'setanon'       => 'View/Modify responders threshold for anonymous survey submissions display',                        'setanon'       => 'View/Modify responders threshold for anonymous survey submissions display',
                       'selfenroll'    => 'View/Modify Self-Enrollment configuration',                        'selfenroll'    => 'View/Modify Self-Enrollment configuration',
                       'setpostsubmit' => 'View/Modify submit button behavior, post-submission',                        'setpostsubmit' => 'View/Modify submit button behavior, post-submission',
                         'setltiauth'    => 'View/Modify re-authentication requirement for LTI launch of deep-linked item',
                     );                      );
     } else {      } else {
         %linktext = (          %linktext = (
Line 417  sub print_modification_menu { Line 418  sub print_modification_menu {
                       'setanon'       => 'View responders threshold for anonymous survey submissions display',                        'setanon'       => 'View responders threshold for anonymous survey submissions display',
                       'selfenroll'    => 'View Self-Enrollment configuration',                        'selfenroll'    => 'View Self-Enrollment configuration',
                       'setpostsubmit' => 'View submit button behavior, post-submission',                        'setpostsubmit' => 'View submit button behavior, post-submission',
                         'setltiauth'    => 'View re-authentication requirement for LTI launch of deep-linked item',
                     );                      );
     }      }
     if ($type eq 'Community') {      if ($type eq 'Community') {
Line 455  sub print_modification_menu { Line 457  sub print_modification_menu {
     my $anon_text = &mt('Responder threshold required to display anonymous survey submissions.');      my $anon_text = &mt('Responder threshold required to display anonymous survey submissions.');
     my $postsubmit_text = &mt('Override defaults for submit button behavior post-submission for this specific course.');       my $postsubmit_text = &mt('Override defaults for submit button behavior post-submission for this specific course.'); 
     my $mysqltables_text = &mt('Override default for lifetime of "temporary" MySQL tables containing student performance data.');      my $mysqltables_text = &mt('Override default for lifetime of "temporary" MySQL tables containing student performance data.');
       my $ltiauth_text = &mt('Override default for requirement for re-authentication for LTI-limited launch of deep-linked item');
     $linktext{'viewparms'} = 'Display current settings for automated enrollment';      $linktext{'viewparms'} = 'Display current settings for automated enrollment';
   
     my %domconf = &Apache::lonnet::get_dom('configuration',['coursecategories'],$dom);      my %domconf = &Apache::lonnet::get_dom('configuration',['coursecategories'],$dom);
Line 536  sub print_modification_menu { Line 539  sub print_modification_menu {
                 permission => $permission->{'setpostsubmit'},                  permission => $permission->{'setpostsubmit'},
                 linktitle => '',                  linktitle => '',
             },              },
               {
                   linktext => $linktext{'setltiauth'},
                   icon => 'system-lock-screen.png',
                   #help => '',
                   url => &phaseurl('setltiauth'),
                   permission => $permission->{'setltiauth'},
                   linktitle => '',
               },
         ]          ]
         },          },
         );          );
Line 566  sub print_modification_menu { Line 577  sub print_modification_menu {
                   '<li>'.$setquota_text.'</li>'."\n".                    '<li>'.$setquota_text.'</li>'."\n".
                   '<li>'.$setuploadquota_text.'</li>'."\n".                    '<li>'.$setuploadquota_text.'</li>'."\n".
                   '<li>'.$anon_text.'</li>'."\n".                    '<li>'.$anon_text.'</li>'."\n".
                   '<li>'.$postsubmit_text.'</li>'."\n";                    '<li>'.$postsubmit_text.'</li>'."\n".
                     '<li>'.$ltiauth_text.'</li>'."\n";
     my ($categories_link_start,$categories_link_end);      my ($categories_link_start,$categories_link_end);
     if ($permission->{'catsettings'} eq 'edit') {      if ($permission->{'catsettings'} eq 'edit') {
         $categories_link_start = '<a href="/adm/domainprefs?actions=coursecategories&amp;phase=display">';          $categories_link_start = '<a href="/adm/domainprefs?actions=coursecategories&amp;phase=display">';
Line 1239  sub print_selfenrollconfig { Line 1251  sub print_selfenrollconfig {
     return;      return;
 }  }
   
   sub print_set_ltiauth {
       my ($r,$cdom,$cnum,$cdesc,$type,$readonly) = @_;
       my %lt = &Apache::lonlocal::texthash(
                   'requ' => 'Requirement for re-authentication for student LTI-limited launch of deep-linked item',
                   'link' => 'Link protection can be set to accept username for an enrolled student (if sent by Consumer)',
                   'logi' => 'Login needed, regardless of user information sent by LTI Consumer in (signed) parameters',
                   'used' => 'Use domain default',
                   'cour' => 'Use course-specific setting',
                   'curd' => 'Current domain default is',
                   'valu' => 'Value for this course',
                   'modi' => 'Save',
                   'back' => 'Pick another action',
       );
       my ($domdef,$checkeddom,$checkedcrs,$domdefdisplay,$divsty,$authok,$authno);
       $domdef = 0;
       $checkeddom = 'checked="checked "';
       $domdefdisplay = $lt{'logi'};
       $divsty = 'display:none';
       $authno = 'checked="checked" ';
       my %domconfig =
           &Apache::lonnet::get_dom('configuration',['coursedefaults'],$cdom);
       if (ref($domconfig{'coursedefaults'}) eq 'HASH') {
           $domdef = $domconfig{'coursedefaults'}{'ltiauth'};
       }
       if ($domdef) {
           $domdefdisplay = $lt{'link'};
       }
       my %settings = &Apache::lonnet::get('environment',['internal.ltiauth'],$cdom,$cnum);
       my $ltiauth = $settings{'internal.ltiauth'};
   
       if ($ltiauth ne '') {
           $checkedcrs = $checkeddom;
           $checkeddom = '';
           $divsty = 'display:inline-block';
           if ($ltiauth) {
               $authok = 'checked="checked "';
           }
       }
       &print_header($r,$type);
       my $hidden_elements = &hidden_form_elements();
       my ($disabled,$submit);
       if ($readonly) {
           $disabled = ' disabled="disabled"';
       } else {
           $submit = '<input type="button" onclick="javascript:changePage(this.form,'."'processltiauth'".');" value="'.$lt{'modi'}.'" />';
       }
       my $helpitem = &Apache::loncommon::help_open_topic('Modify_Course_LTI_Authen');
       $r->print(<<ENDDOCUMENT);
   <form action="/adm/modifycourse" method="post" name="setltiauth">
   <h3>$helpitem $lt{'requ'} <span class="LC_nobreak">$cdesc</span></h3>
   <p><span class="LC_nobreak">$lt{'curd'}: <span style="font-style:italic">$domdefdisplay</span></span</p>
   <p><span class="LC_nobreak">
   <label><input type="radio" name="ltiauthset" value="dom" onclick="toggleLTIOptions(this.form);" $checkeddom$disabled/>$lt{'used'}</label></span><br />
   <span class="LC_nobreak">
   <label><input type="radio" name="ltiauthset" value="course" onclick="toggleLTIOptions(this.form);" $checkedcrs$disabled/>$lt{'cour'}</label></span>
   <fieldset id="crsltiauth" style="$divsty">
   <legend>$lt{'valu'}</legend>
   <span class="LC_nobreak">
   <label><input type="radio" name="ltiauth" value="0" $authno$disabled/>$lt{'logi'}</label>
   </span><br />
   <span class="LC_nobreak">
   <label><input type="radio" name="ltiauth" value="1" $authok$disabled/>$lt{'link'}</label>
   </span>
   </fieldset>
   $submit
   </p>
   $hidden_elements
   <a href="javascript:changePage(document.setltiauth,'menu')">$lt{'back'}</a>
   </form>
   ENDDOCUMENT
       return;
   }
   
 sub modify_selfenrollconfig {  sub modify_selfenrollconfig {
     my ($r,$type,$cdesc,$coursehash) = @_;      my ($r,$type,$cdesc,$coursehash) = @_;
     return unless(ref($coursehash) eq 'HASH');      return unless(ref($coursehash) eq 'HASH');
Line 2231  sub modify_catsettings { Line 2316  sub modify_catsettings {
     return;      return;
 }  }
   
   sub modify_ltiauth {
       my ($r,$cdom,$cnum,$cdesc,$domdesc,$type) = @_;
       my %lt = &Apache::lonlocal::texthash(
                   'requ' => 'Requirement for re-authentication for student LTI-limited launch of deep-linked item',
                   'link' => 'Link protection can be set to accept username for an enrolled student (if sent by Consumer)',
                   'logi' => 'Login needed, regardless of user information sent by LTI Consumer in (signed) parameters',
                   'used' => 'Use domain default',
                   'cour' => 'Use course-specific setting',
                   'modi' => 'Save',
                   'back' => 'Pick another action',
       );
       &print_header($r,$type);
       $r->print('<form action="/adm/modifycourse" method="post" name="processltiauth">'."\n".
                 '<h3>'.$lt{'requ'}.
                 ' <span class="LC_nobreak">'.$cdesc.'</span></h3>');
       my %oldsettings = &Apache::lonnet::get('environment',['internal.ltiauth'],$cdom,$cnum);
       my $oldltiauth = $oldsettings{'internal.ltiauth'};
       my $domdef;
       my %domconfig =
           &Apache::lonnet::get_dom('configuration',['coursedefaults'],$cdom);
       if (ref($domconfig{'coursedefaults'}) eq 'HASH') {
           $domdef = $domconfig{'coursedefaults'}{'ltiauth'};
       }
       my ($newltiauth,$nochange,$change,$status,$error,$ltiauth);
       if ($env{'form.ltiauthset'} eq 'dom') {
           if ($oldltiauth eq '') {
               $nochange = 1;
           } else {
               $change = 1;
           }
       } elsif ($env{'form.ltiauthset'} eq 'course') {
           if ($env{'form.ltiauth'} =~ /^0|1$/) {
               $newltiauth = $env{'form.ltiauth'};
           }
           if ($oldltiauth == $newltiauth) {
               $nochange = 1;
           } else {
               $change = 1;
           }
       }
       if ($change) {
           if ($newltiauth ne '') {
               my %cenv = (
                            'internal.ltiauth' => $newltiauth,
                          );
               if (&Apache::lonnet::put('environment',\%cenv,$cdom,$cnum) eq 'ok') {
                   if ($env{'course.'.$cdom.'_'.$cnum.'.description'} ne '') {
                       &Apache::lonnet::appenv(
                          {'course.'.$cdom.'_'.$cnum.'.internal.ltiauth' => $newltiauth});
                   }
               } else {
                   $error = 1;
               }
           } else {
               if (&Apache::lonnet::del('environment',['internal.ltiauth'],$cdom,$cnum) eq 'ok') {
                   if (exists($env{'course.'.$cdom.'_'.$cnum.'.internal.ltiauth'})) {
                       &Apache::lonnet::delenv('course.'.$cdom.'_'.$cnum.'.internal.ltiauth');
                   }
               } else {
                   $error = 1;
               }
           }
       }
       if ($error) {
           $nochange = 1;
       }
       if ($nochange) {
           $ltiauth = $oldltiauth;
       } else {
           $ltiauth = $newltiauth;
       }
       if ($ltiauth eq '') {
           $status = $lt{'used'}.': ';
           if ($domdef) {
               $status .= '<span style="font-style:italic">'.$lt{'link'}.'</span>';
           } else {
               $status .= '<span style="font-style:italic">'.$lt{'logi'}.'</span>';
           }
       } else {
           $status = $lt{'cour'}.': ';
           if ($ltiauth) {
               $status .= '<span style="font-style:italic">'.$lt{'link'}.'</span>';
           } else {
               $status .= '<span style="font-style:italic">'.$lt{'logi'}.'</span>';
           }
       }
       if ($error) {
           $r->print('<p class="LC_warning">'.&mt('An error occurred when saving your changes').'</p>');
       }
       $r->print('<p>');
       if ($nochange) {
           $r->print(&mt('Re-authentication requirement for LTI launch of deep-linked item is unchanged'));
       } elsif ($change) {
           $r->print(&mt('Re-authentication requirement for LTI launch of deep-linked changed'));
       }
       $r->print('<br />'.$status);
       $r->print('</p><p>'.
                 '<a href="javascript:changePage(document.processltiauth,'."'menu'".')">'.
                 &mt('Pick another action').'</a></p>');
       $r->print(&hidden_form_elements().'</form>');
       return;
   }
   
 sub print_header {  sub print_header {
     my ($r,$type,$javascript_validations) = @_;      my ($r,$type,$javascript_validations) = @_;
     my $phase = "start";      my $phase = "start";
Line 2386  function togglePostsubmit(caller) { Line 2574  function togglePostsubmit(caller) {
   
 ENDSCRIPT  ENDSCRIPT
   
       } elsif ($phase eq 'setltiauth') {
           $js .= <<"ENDJS";
   function toggleLTIOptions(form) {
       var radioname = 'ltiauthset';
       var divid = 'crsltiauth';
       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 == 'course') {
                       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';
               }
           }
       }
       return;
   }
   
   ENDJS
     }      }
     my $starthash;      my $starthash;
     if ($env{'form.phase'} eq 'adhocrole') {      if ($env{'form.phase'} eq 'adhocrole') {
Line 2396  ENDSCRIPT Line 2613  ENDSCRIPT
         $starthash = {          $starthash = {
            add_entries => {'onload' => "hide_searching(); courseSet(document.filterpicker.official, 'load');"},             add_entries => {'onload' => "hide_searching(); courseSet(document.filterpicker.official, 'load');"},
                      };                       };
       } elsif ($env{'form.phase'} eq 'setltiauth') {
           $starthash = {
              add_entries => {'onload' => "toggleLTIOptions(document.setltiauth);"},
                        };
     }      }
     $r->print(&Apache::loncommon::start_page('View/Modify Course/Community Settings',      $r->print(&Apache::loncommon::start_page('View/Modify Course/Community Settings',
      &Apache::lonhtmlcommon::scripttag($js),       &Apache::lonhtmlcommon::scripttag($js),
Line 2493  sub hidden_form_elements { Line 2714  sub hidden_form_elements {
           'locarg','krbarg','krbver','counter','hidefromcat','usecategory',            'locarg','krbarg','krbver','counter','hidefromcat','usecategory',
           'threshold','postsubmit','postsubtimeout','defaultcredits','uploadquota',            'threshold','postsubmit','postsubtimeout','defaultcredits','uploadquota',
           'selfenrollmgrdc','selfenrollmgrcc','action','state','currsec_st',            'selfenrollmgrdc','selfenrollmgrcc','action','state','currsec_st',
           'sections','newsec','mysqltables','nopasswdchg'],            'sections','newsec','mysqltables','nopasswdchg','ltiauth','ltiauthset'],
           ['^selfenrollmgr_','^selfenroll_'])."\n".            ['^selfenrollmgr_','^selfenroll_'])."\n".
           '<input type="hidden" name="prevphase" value="'.$env{'form.phase'}.'" />';            '<input type="hidden" name="prevphase" value="'.$env{'form.phase'}.'" />';
     return $hidden_elements;      return $hidden_elements;
Line 2527  sub get_permission { Line 2748  sub get_permission {
             processcat        => 'edit',              processcat        => 'edit',
             selfenroll        => 'edit',              selfenroll        => 'edit',
             adhocrole         => 'coord',              adhocrole         => 'coord',
               setltiauth        => 'edit',
               processltiauth    => 'edit',
         );          );
         if ($passwdconf{'crsownerchg'}) {          if ($passwdconf{'crsownerchg'}) {
             $permission{passwdchg} = 'edit';              $permission{passwdchg} = 'edit';
Line 2542  sub get_permission { Line 2765  sub get_permission {
             catsettings   => 'view',              catsettings   => 'view',
             selfenroll    => 'view',              selfenroll    => 'view',
             adhocrole     => 'custom',              adhocrole     => 'custom',
               setltiauth    => 'view',
         );          );
         if ($passwdconf{'crsownerchg'}) {          if ($passwdconf{'crsownerchg'}) {
             $permission{passwdchg} = 'view';              $permission{passwdchg} = 'view';
Line 2741  sub handler { Line 2965  sub handler {
                                   text=>"Result"});                                    text=>"Result"});
                                 &modify_selfenrollconfig($r,$type,$cdesc,$coursehash);                                  &modify_selfenrollconfig($r,$type,$cdesc,$coursehash);
                             }                              }
                           } elsif (($phase eq 'setltiauth') && ($permission->{'setltiauth'})) {
                               &Apache::lonhtmlcommon::add_breadcrumb
                               ({href=>"javascript:changePage(document.$phase,'$phase')",
                                 text=>"Requirement for re-authentication for LTI launch of deep-linked item"});
                               &print_set_ltiauth($r,$cdom,$cnum,$cdesc,$type,$readonly);
                           } elsif (($phase eq 'processltiauth') && ($permission->{'processltiauth'})) {
                               &Apache::lonhtmlcommon::add_breadcrumb
                               ({href=>"javascript:changePage(document.$phase,'setltiauth')",
                                 text=>"Requirement for re-authentication for LTI launch of deep-linked item"});
                               &Apache::lonhtmlcommon::add_breadcrumb
                               ({href=>"javascript:changePage(document.$phase,'$phase')",
                                 text=>"Result"});
                               &modify_ltiauth($r,$cdom,$cnum,$cdesc,$domdesc,$type);
                         }                          }
                     }                      }
                 } else {                  } else {

Removed from v.1.79.2.9  
changed lines
  Added in v.1.79.2.9.2.2


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