Annotation of loncom/interface/loncreateuser.pm, revision 1.437

1.20      harris41    1: # The LearningOnline Network with CAPA
1.1       www         2: # Create a user
                      3: #
1.437   ! raeburn     4: # $Id: loncreateuser.pm,v 1.436 2017/03/26 22:11:54 raeburn Exp $
1.22      albertel    5: #
                      6: # Copyright Michigan State University Board of Trustees
                      7: #
                      8: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
                      9: #
                     10: # LON-CAPA is free software; you can redistribute it and/or modify
                     11: # it under the terms of the GNU General Public License as published by
                     12: # the Free Software Foundation; either version 2 of the License, or
                     13: # (at your option) any later version.
                     14: #
                     15: # LON-CAPA is distributed in the hope that it will be useful,
                     16: # but WITHOUT ANY WARRANTY; without even the implied warranty of
                     17: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
                     18: # GNU General Public License for more details.
                     19: #
                     20: # You should have received a copy of the GNU General Public License
                     21: # along with LON-CAPA; if not, write to the Free Software
                     22: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
                     23: #
                     24: # /home/httpd/html/adm/gpl.txt
                     25: #
                     26: # http://www.lon-capa.org/
                     27: #
1.20      harris41   28: ###
                     29: 
1.1       www        30: package Apache::loncreateuser;
1.66      bowersj2   31: 
                     32: =pod
                     33: 
                     34: =head1 NAME
                     35: 
1.263     jms        36: Apache::loncreateuser.pm
1.66      bowersj2   37: 
                     38: =head1 SYNOPSIS
                     39: 
1.263     jms        40:     Handler to create users and custom roles
                     41: 
                     42:     Provides an Apache handler for creating users,
1.66      bowersj2   43:     editing their login parameters, roles, and removing roles, and
                     44:     also creating and assigning custom roles.
                     45: 
                     46: =head1 OVERVIEW
                     47: 
                     48: =head2 Custom Roles
                     49: 
                     50: In LON-CAPA, roles are actually collections of privileges. "Teaching
                     51: Assistant", "Course Coordinator", and other such roles are really just
                     52: collection of privileges that are useful in many circumstances.
                     53: 
1.324     raeburn    54: Custom roles can be defined by a Domain Coordinator, Course Coordinator
                     55: or Community Coordinator via the Manage User functionality.
                     56: The custom role editor screen will show all privileges which can be
                     57: assigned to users. For a complete list of privileges, please see 
                     58: C</home/httpd/lonTabs/rolesplain.tab>.
1.66      bowersj2   59: 
1.324     raeburn    60: Custom role definitions are stored in the C<roles.db> file of the creator
                     61: of the role.
1.66      bowersj2   62: 
                     63: =cut
1.1       www        64: 
                     65: use strict;
                     66: use Apache::Constants qw(:common :http);
                     67: use Apache::lonnet;
1.54      bowersj2   68: use Apache::loncommon;
1.68      www        69: use Apache::lonlocal;
1.117     raeburn    70: use Apache::longroup;
1.190     raeburn    71: use Apache::lonuserutils;
1.307     raeburn    72: use Apache::loncoursequeueadmin;
1.139     albertel   73: use LONCAPA qw(:DEFAULT :match);
1.1       www        74: 
1.20      harris41   75: my $loginscript; # piece of javascript used in two separate instances
                     76: my $authformnop;
                     77: my $authformkrb;
                     78: my $authformint;
                     79: my $authformfsys;
                     80: my $authformloc;
                     81: 
1.94      matthew    82: sub initialize_authen_forms {
1.227     raeburn    83:     my ($dom,$formname,$curr_authtype,$mode) = @_;
                     84:     my ($krbdef,$krbdefdom) = &Apache::loncommon::get_kerberos_defaults($dom);
                     85:     my %param = ( formname => $formname,
1.187     raeburn    86:                   kerb_def_dom => $krbdefdom,
1.227     raeburn    87:                   kerb_def_auth => $krbdef,
1.187     raeburn    88:                   domain => $dom,
                     89:                 );
1.188     raeburn    90:     my %abv_auth = &auth_abbrev();
1.227     raeburn    91:     if ($curr_authtype =~ /^(krb4|krb5|internal|localauth|unix):(.*)$/) {
1.188     raeburn    92:         my $long_auth = $1;
1.227     raeburn    93:         my $curr_autharg = $2;
1.188     raeburn    94:         my %abv_auth = &auth_abbrev();
                     95:         $param{'curr_authtype'} = $abv_auth{$long_auth};
                     96:         if ($long_auth =~ /^krb(4|5)$/) {
                     97:             $param{'curr_kerb_ver'} = $1;
1.227     raeburn    98:             $param{'curr_autharg'} = $curr_autharg;
1.188     raeburn    99:         }
1.205     raeburn   100:         if ($mode eq 'modifyuser') {
                    101:             $param{'mode'} = $mode;
                    102:         }
1.187     raeburn   103:     }
1.227     raeburn   104:     $loginscript  = &Apache::loncommon::authform_header(%param);
                    105:     $authformkrb  = &Apache::loncommon::authform_kerberos(%param);
1.31      matthew   106:     $authformnop  = &Apache::loncommon::authform_nochange(%param);
                    107:     $authformint  = &Apache::loncommon::authform_internal(%param);
                    108:     $authformfsys = &Apache::loncommon::authform_filesystem(%param);
                    109:     $authformloc  = &Apache::loncommon::authform_local(%param);
1.20      harris41  110: }
                    111: 
1.188     raeburn   112: sub auth_abbrev {
                    113:     my %abv_auth = (
1.368     raeburn   114:                      krb5      => 'krb',
                    115:                      krb4      => 'krb',
                    116:                      internal  => 'int',
                    117:                      localauth => 'loc',
                    118:                      unix      => 'fsys',
1.188     raeburn   119:                    );
                    120:     return %abv_auth;
                    121: }
1.43      www       122: 
1.134     raeburn   123: # ====================================================
                    124: 
1.378     raeburn   125: sub user_quotas {
1.134     raeburn   126:     my ($ccuname,$ccdomain) = @_;
                    127:     my %lt = &Apache::lonlocal::texthash(
1.267     raeburn   128:                    'usrt'      => "User Tools",
                    129:                    'cust'      => "Custom quota",
                    130:                    'chqu'      => "Change quota",
1.134     raeburn   131:     );
1.378     raeburn   132:    
1.149     raeburn   133:     my $quota_javascript = <<"END_SCRIPT";
                    134: <script type="text/javascript">
1.301     bisitz    135: // <![CDATA[
1.378     raeburn   136: function quota_changes(caller,context) {
                    137:     var customoff = document.getElementById('custom_'+context+'quota_off');
                    138:     var customon = document.getElementById('custom_'+context+'quota_on');
                    139:     var number = document.getElementById(context+'quota');
1.149     raeburn   140:     if (caller == "custom") {
1.378     raeburn   141:         if (customoff) {
                    142:             if (customoff.checked) {
                    143:                 number.value = "";
                    144:             }
1.149     raeburn   145:         }
                    146:     }
                    147:     if (caller == "quota") {
1.378     raeburn   148:         if (customon) {
                    149:             customon.checked = true;
                    150:         }
1.149     raeburn   151:     }
1.378     raeburn   152:     return;
1.149     raeburn   153: }
1.301     bisitz    154: // ]]>
1.149     raeburn   155: </script>
                    156: END_SCRIPT
1.378     raeburn   157:     my $longinsttype;
                    158:     my ($usertypes,$order) = &Apache::lonnet::retrieve_inst_usertypes($ccdomain);
1.267     raeburn   159:     my $output = $quota_javascript."\n".
                    160:                  '<h3>'.$lt{'usrt'}.'</h3>'."\n".
                    161:                  &Apache::loncommon::start_data_table();
                    162: 
1.418     raeburn   163:     if ((&Apache::lonnet::allowed('mut',$ccdomain)) ||
                    164:         (&Apache::lonnet::allowed('udp',$ccdomain))) {
1.275     raeburn   165:         $output .= &build_tools_display($ccuname,$ccdomain,'tools');
1.267     raeburn   166:     }
1.378     raeburn   167: 
                    168:     my %titles = &Apache::lonlocal::texthash (
                    169:                     portfolio => "Disk space allocated to user's portfolio files",
1.385     bisitz    170:                     author    => "Disk space allocated to user's Authoring Space (if role assigned)",
1.378     raeburn   171:                  );
                    172:     foreach my $name ('portfolio','author') {
                    173:         my ($currquota,$quotatype,$inststatus,$defquota) =
                    174:             &Apache::loncommon::get_user_quota($ccuname,$ccdomain,$name);
                    175:         if ($longinsttype eq '') { 
                    176:             if ($inststatus ne '') {
                    177:                 if ($usertypes->{$inststatus} ne '') {
                    178:                     $longinsttype = $usertypes->{$inststatus};
                    179:                 }
                    180:             }
                    181:         }
                    182:         my ($showquota,$custom_on,$custom_off,$defaultinfo);
                    183:         $custom_on = ' ';
                    184:         $custom_off = ' checked="checked" ';
                    185:         if ($quotatype eq 'custom') {
                    186:             $custom_on = $custom_off;
                    187:             $custom_off = ' ';
                    188:             $showquota = $currquota;
                    189:             if ($longinsttype eq '') {
                    190:                 $defaultinfo = &mt('For this user, the default quota would be [_1]'
1.383     raeburn   191:                               .' MB.',$defquota);
1.378     raeburn   192:             } else {
                    193:                 $defaultinfo = &mt("For this user, the default quota would be [_1]".
1.383     raeburn   194:                                    " MB, as determined by the user's institutional".
1.378     raeburn   195:                                    " affiliation ([_2]).",$defquota,$longinsttype);
                    196:             }
                    197:         } else {
                    198:             if ($longinsttype eq '') {
                    199:                 $defaultinfo = &mt('For this user, the default quota is [_1]'
1.383     raeburn   200:                               .' MB.',$defquota);
1.378     raeburn   201:             } else {
                    202:                 $defaultinfo = &mt("For this user, the default quota of [_1]".
1.383     raeburn   203:                                    " MB, is determined by the user's institutional".
1.378     raeburn   204:                                    " affiliation ([_2]).",$defquota,$longinsttype);
                    205:             }
                    206:         }
                    207: 
                    208:         if (&Apache::lonnet::allowed('mpq',$ccdomain)) {
                    209:             $output .= '<tr class="LC_info_row">'."\n".
                    210:                        '    <td>'.$titles{$name}.'</td>'."\n".
                    211:                        '  </tr>'."\n".
                    212:                        &Apache::loncommon::start_data_table_row()."\n".
1.390     bisitz    213:                        '  <td><span class="LC_nobreak">'.
                    214:                        &mt('Current quota: [_1] MB',$currquota).'</span>&nbsp;&nbsp;'.
1.378     raeburn   215:                        $defaultinfo.'</td>'."\n".
                    216:                        &Apache::loncommon::end_data_table_row()."\n".
                    217:                        &Apache::loncommon::start_data_table_row()."\n".
                    218:                        '  <td><span class="LC_nobreak">'.$lt{'chqu'}.
                    219:                        ': <label>'.
                    220:                        '<input type="radio" name="custom_'.$name.'quota" id="custom_'.$name.'quota_off" '.
1.379     raeburn   221:                        'value="0" '.$custom_off.' onchange="javascript:quota_changes('."'custom','$name'".');"'.
1.390     bisitz    222:                        ' /><span class="LC_nobreak">'.
                    223:                        &mt('Default ([_1] MB)',$defquota).'</span></label>&nbsp;'.
1.378     raeburn   224:                        '&nbsp;<label><input type="radio" name="custom_'.$name.'quota" id="custom_'.$name.'quota_on" '.
1.379     raeburn   225:                        'value="1" '.$custom_on.'  onchange="javascript:quota_changes('."'custom','$name'".');"'.
1.378     raeburn   226:                        ' />'.$lt{'cust'}.':</label>&nbsp;'.
1.379     raeburn   227:                        '<input type="text" name="'.$name.'quota" id="'.$name.'quota" size ="5" '.
                    228:                        'value="'.$showquota.'" onfocus="javascript:quota_changes('."'quota','$name'".');"'.
1.390     bisitz    229:                        ' />&nbsp;'.&mt('MB').'</span></td>'."\n".
1.378     raeburn   230:                        &Apache::loncommon::end_data_table_row()."\n";
                    231:         }
                    232:     }
1.267     raeburn   233:     $output .= &Apache::loncommon::end_data_table();
1.134     raeburn   234:     return $output;
                    235: }
                    236: 
1.275     raeburn   237: sub build_tools_display {
                    238:     my ($ccuname,$ccdomain,$context) = @_;
1.306     raeburn   239:     my (@usertools,%userenv,$output,@options,%validations,%reqtitles,%reqdisplay,
1.332     raeburn   240:         $colspan,$isadv,%domconfig);
1.275     raeburn   241:     my %lt = &Apache::lonlocal::texthash (
                    242:                    'blog'       => "Personal User Blog",
                    243:                    'aboutme'    => "Personal Information Page",
1.385     bisitz    244:                    'webdav'     => "WebDAV access to Authoring Spaces (if SSL and author/co-author)",
1.275     raeburn   245:                    'portfolio'  => "Personal User Portfolio",
                    246:                    'avai'       => "Available",
                    247:                    'cusa'       => "availability",
                    248:                    'chse'       => "Change setting",
                    249:                    'usde'       => "Use default",
                    250:                    'uscu'       => "Use custom",
                    251:                    'official'   => 'Can request creation of official courses',
1.299     raeburn   252:                    'unofficial' => 'Can request creation of unofficial courses',
                    253:                    'community'  => 'Can request creation of communities',
1.384     raeburn   254:                    'textbook'   => 'Can request creation of textbook courses',
1.411     raeburn   255:                    'placement'  => 'Can request creation of placement tests',
1.362     raeburn   256:                    'requestauthor'  => 'Can request author space',
1.275     raeburn   257:     );
1.279     raeburn   258:     if ($context eq 'requestcourses') {
1.275     raeburn   259:         %userenv = &Apache::lonnet::userenvironment($ccdomain,$ccuname,
1.299     raeburn   260:                       'requestcourses.official','requestcourses.unofficial',
1.411     raeburn   261:                       'requestcourses.community','requestcourses.textbook',
                    262:                       'requestcourses.placement');
                    263:         @usertools = ('official','unofficial','community','textbook','placement');
1.309     raeburn   264:         @options =('norequest','approval','autolimit','validate');
1.306     raeburn   265:         %validations = &Apache::lonnet::auto_courserequest_checks($ccdomain);
                    266:         %reqtitles = &courserequest_titles();
                    267:         %reqdisplay = &courserequest_display();
                    268:         $colspan = ' colspan="2"';
1.332     raeburn   269:         %domconfig =
                    270:             &Apache::lonnet::get_dom('configuration',['requestcourses'],$ccdomain);
1.418     raeburn   271:         $isadv = &Apache::lonnet::is_advanced_user($ccdomain,$ccuname);
1.362     raeburn   272:     } elsif ($context eq 'requestauthor') {
                    273:         %userenv = &Apache::lonnet::userenvironment($ccdomain,$ccuname,
                    274:                                                     'requestauthor');
                    275:         @usertools = ('requestauthor');
                    276:         @options =('norequest','approval','automatic');
                    277:         %reqtitles = &requestauthor_titles();
                    278:         %reqdisplay = &requestauthor_display();
                    279:         $colspan = ' colspan="2"';
                    280:         %domconfig =
                    281:             &Apache::lonnet::get_dom('configuration',['requestauthor'],$ccdomain);
1.275     raeburn   282:     } else {
                    283:         %userenv = &Apache::lonnet::userenvironment($ccdomain,$ccuname,
1.361     raeburn   284:                           'tools.aboutme','tools.portfolio','tools.blog',
                    285:                           'tools.webdav');
                    286:         @usertools = ('aboutme','blog','webdav','portfolio');
1.275     raeburn   287:     }
                    288:     foreach my $item (@usertools) {
1.306     raeburn   289:         my ($custom_access,$curr_access,$cust_on,$cust_off,$tool_on,$tool_off,
                    290:             $currdisp,$custdisp,$custradio);
1.275     raeburn   291:         $cust_off = 'checked="checked" ';
                    292:         $tool_on = 'checked="checked" ';
                    293:         $curr_access =  
                    294:             &Apache::lonnet::usertools_access($ccuname,$ccdomain,$item,undef,
                    295:                                               $context);
1.362     raeburn   296:         if ($context eq 'requestauthor') {
                    297:             if ($userenv{$context} ne '') {
                    298:                 $cust_on = ' checked="checked" ';
                    299:                 $cust_off = '';
                    300:             }  
                    301:         } elsif ($userenv{$context.'.'.$item} ne '') {
1.306     raeburn   302:             $cust_on = ' checked="checked" ';
                    303:             $cust_off = '';
                    304:         }
                    305:         if ($context eq 'requestcourses') {
                    306:             if ($userenv{$context.'.'.$item} eq '') {
1.314     raeburn   307:                 $custom_access = &mt('Currently from default setting.');
1.306     raeburn   308:             } else {
                    309:                 $custom_access = &mt('Currently from custom setting.');
1.275     raeburn   310:             }
1.362     raeburn   311:         } elsif ($context eq 'requestauthor') {
                    312:             if ($userenv{$context} eq '') {
                    313:                 $custom_access = &mt('Currently from default setting.');
                    314:             } else {
                    315:                 $custom_access = &mt('Currently from custom setting.');
                    316:             }
1.275     raeburn   317:         } else {
1.306     raeburn   318:             if ($userenv{$context.'.'.$item} eq '') {
1.314     raeburn   319:                 $custom_access =
1.306     raeburn   320:                     &mt('Availability determined currently from default setting.');
                    321:                 if (!$curr_access) {
                    322:                     $tool_off = 'checked="checked" ';
                    323:                     $tool_on = '';
                    324:                 }
                    325:             } else {
1.314     raeburn   326:                 $custom_access =
1.306     raeburn   327:                     &mt('Availability determined currently from custom setting.');
                    328:                 if ($userenv{$context.'.'.$item} == 0) {
                    329:                     $tool_off = 'checked="checked" ';
                    330:                     $tool_on = '';
                    331:                 }
1.275     raeburn   332:             }
                    333:         }
                    334:         $output .= '  <tr class="LC_info_row">'."\n".
1.306     raeburn   335:                    '   <td'.$colspan.'>'.$lt{$item}.'</td>'."\n".
1.275     raeburn   336:                    '  </tr>'."\n".
1.306     raeburn   337:                    &Apache::loncommon::start_data_table_row()."\n";
1.418     raeburn   338:   
1.362     raeburn   339:         if (($context eq 'requestcourses') || ($context eq 'requestauthor')) {
1.306     raeburn   340:             my ($curroption,$currlimit);
1.362     raeburn   341:             my $envkey = $context.'.'.$item;
                    342:             if ($context eq 'requestauthor') {
                    343:                 $envkey = $context;
                    344:             }
                    345:             if ($userenv{$envkey} ne '') {
                    346:                 $curroption = $userenv{$envkey};
1.332     raeburn   347:             } else {
                    348:                 my (@inststatuses);
1.362     raeburn   349:                 if ($context eq 'requestcourses') {
                    350:                     $curroption =
                    351:                         &Apache::loncoursequeueadmin::get_processtype('course',$ccuname,$ccdomain,
                    352:                                                                       $isadv,$ccdomain,$item,
                    353:                                                                       \@inststatuses,\%domconfig);
                    354:                 } else {
                    355:                      $curroption = 
                    356:                          &Apache::loncoursequeueadmin::get_processtype('requestauthor',$ccuname,$ccdomain,
                    357:                                                                        $isadv,$ccdomain,undef,
                    358:                                                                        \@inststatuses,\%domconfig);
                    359:                 }
1.332     raeburn   360:             }
1.306     raeburn   361:             if (!$curroption) {
                    362:                 $curroption = 'norequest';
                    363:             }
                    364:             if ($curroption =~ /^autolimit=(\d*)$/) {
                    365:                 $currlimit = $1;
1.314     raeburn   366:                 if ($currlimit eq '') {
                    367:                     $currdisp = &mt('Yes, automatic creation');
                    368:                 } else {
                    369:                     $currdisp = &mt('Yes, up to [quant,_1,request]/user',$currlimit);
                    370:                 }
1.306     raeburn   371:             } else {
                    372:                 $currdisp = $reqdisplay{$curroption};
                    373:             }
                    374:             $custdisp = '<table>';
                    375:             foreach my $option (@options) {
                    376:                 my $val = $option;
                    377:                 if ($option eq 'norequest') {
                    378:                     $val = 0;
                    379:                 }
                    380:                 if ($option eq 'validate') {
                    381:                     my $canvalidate = 0;
                    382:                     if (ref($validations{$item}) eq 'HASH') {
                    383:                         if ($validations{$item}{'_custom_'}) {
                    384:                             $canvalidate = 1;
                    385:                         }
                    386:                     }
                    387:                     next if (!$canvalidate);
                    388:                 }
                    389:                 my $checked = '';
                    390:                 if ($option eq $curroption) {
                    391:                     $checked = ' checked="checked"';
                    392:                 } elsif ($option eq 'autolimit') {
                    393:                     if ($curroption =~ /^autolimit/) {
                    394:                         $checked = ' checked="checked"';
                    395:                     }
                    396:                 }
1.362     raeburn   397:                 my $name = 'crsreq_'.$item;
                    398:                 if ($context eq 'requestauthor') {
                    399:                     $name = $item;
                    400:                 }
1.306     raeburn   401:                 $custdisp .= '<tr><td><span class="LC_nobreak"><label>'.
1.362     raeburn   402:                              '<input type="radio" name="'.$name.'" '.
                    403:                              'value="'.$val.'"'.$checked.' />'.
1.306     raeburn   404:                              $reqtitles{$option}.'</label>&nbsp;';
                    405:                 if ($option eq 'autolimit') {
1.362     raeburn   406:                     $custdisp .= '<input type="text" name="'.$name.
                    407:                                  '_limit" size="1" '.
1.314     raeburn   408:                                  'value="'.$currlimit.'" /></span><br />'.
                    409:                                  $reqtitles{'unlimited'};
1.362     raeburn   410:                 } else {
                    411:                     $custdisp .= '</span>';
                    412:                 }
                    413:                 $custdisp .= '</td></tr>';
1.306     raeburn   414:             }
                    415:             $custdisp .= '</table>';
                    416:             $custradio = '</span></td><td>'.&mt('Custom setting').'<br />'.$custdisp;
                    417:         } else {
                    418:             $currdisp = ($curr_access?&mt('Yes'):&mt('No'));
1.362     raeburn   419:             my $name = $context.'_'.$item;
                    420:             if ($context eq 'requestauthor') {
                    421:                 $name = $context;
                    422:             }
1.306     raeburn   423:             $custdisp = '<span class="LC_nobreak"><label>'.
1.362     raeburn   424:                         '<input type="radio" name="'.$name.'"'.
1.361     raeburn   425:                         ' value="1" '.$tool_on.'/>'.&mt('On').'</label>&nbsp;<label>'.
1.362     raeburn   426:                         '<input type="radio" name="'.$name.'" value="0" '.
1.306     raeburn   427:                         $tool_off.'/>'.&mt('Off').'</label></span>';
                    428:             $custradio = ('&nbsp;'x2).'--'.$lt{'cusa'}.':&nbsp;'.$custdisp.
                    429:                           '</span>';
                    430:         }
                    431:         $output .= '  <td'.$colspan.'>'.$custom_access.('&nbsp;'x4).
1.419     raeburn   432:                    $lt{'avai'}.': '.$currdisp.'</td>'."\n".
1.418     raeburn   433:                    &Apache::loncommon::end_data_table_row()."\n";
                    434:         unless (&Apache::lonnet::allowed('udp',$ccdomain)) {
                    435:             $output .=
1.275     raeburn   436:                    &Apache::loncommon::start_data_table_row()."\n".
1.306     raeburn   437:                    '  <td style="vertical-align:top;"><span class="LC_nobreak">'.
                    438:                    $lt{'chse'}.': <label>'.
1.275     raeburn   439:                    '<input type="radio" name="custom'.$item.'" value="0" '.
1.306     raeburn   440:                    $cust_off.'/>'.$lt{'usde'}.'</label>'.('&nbsp;' x3).
                    441:                    '<label><input type="radio" name="custom'.$item.'" value="1" '.
                    442:                    $cust_on.'/>'.$lt{'uscu'}.'</label>'.$custradio.'</td>'.
1.275     raeburn   443:                    &Apache::loncommon::end_data_table_row()."\n";
1.418     raeburn   444:         }
1.275     raeburn   445:     }
                    446:     return $output;
                    447: }
                    448: 
1.300     raeburn   449: sub coursereq_externaluser {
                    450:     my ($ccuname,$ccdomain,$cdom) = @_;
1.306     raeburn   451:     my (@usertools,@options,%validations,%userenv,$output);
1.300     raeburn   452:     my %lt = &Apache::lonlocal::texthash (
                    453:                    'official'   => 'Can request creation of official courses',
                    454:                    'unofficial' => 'Can request creation of unofficial courses',
                    455:                    'community'  => 'Can request creation of communities',
1.384     raeburn   456:                    'textbook'   => 'Can request creation of textbook courses',
1.411     raeburn   457:                    'placement'  => 'Can request creation of placement tests',
1.300     raeburn   458:     );
                    459: 
                    460:     %userenv = &Apache::lonnet::userenvironment($ccdomain,$ccuname,
                    461:                       'reqcrsotherdom.official','reqcrsotherdom.unofficial',
1.411     raeburn   462:                       'reqcrsotherdom.community','reqcrsotherdom.textbook',
                    463:                       'reqcrsotherdom.placement');
                    464:     @usertools = ('official','unofficial','community','textbook','placement');
1.309     raeburn   465:     @options = ('approval','validate','autolimit');
1.306     raeburn   466:     %validations = &Apache::lonnet::auto_courserequest_checks($cdom);
                    467:     my $optregex = join('|',@options);
                    468:     my %reqtitles = &courserequest_titles();
1.300     raeburn   469:     foreach my $item (@usertools) {
1.306     raeburn   470:         my ($curroption,$currlimit,$tooloff);
1.300     raeburn   471:         if ($userenv{'reqcrsotherdom.'.$item} ne '') {
                    472:             my @curr = split(',',$userenv{'reqcrsotherdom.'.$item});
1.314     raeburn   473:             foreach my $req (@curr) {
                    474:                 if ($req =~ /^\Q$cdom\E\:($optregex)=?(\d*)$/) {
                    475:                     $curroption = $1;
                    476:                     $currlimit = $2;
                    477:                     last;
1.306     raeburn   478:                 }
                    479:             }
1.314     raeburn   480:             if (!$curroption) {
                    481:                 $curroption = 'norequest';
                    482:                 $tooloff = ' checked="checked"';
                    483:             }
1.306     raeburn   484:         } else {
                    485:             $curroption = 'norequest';
                    486:             $tooloff = ' checked="checked"';
                    487:         }
                    488:         $output.= &Apache::loncommon::start_data_table_row()."\n".
1.314     raeburn   489:                   '  <td><span class="LC_nobreak">'.$lt{$item}.': </span></td><td>'.
                    490:                   '<table><tr><td valign="top">'."\n".
1.306     raeburn   491:                   '<label><input type="radio" name="reqcrsotherdom_'.$item.
1.314     raeburn   492:                   '" value=""'.$tooloff.' />'.$reqtitles{'norequest'}.
                    493:                   '</label></td>';
1.306     raeburn   494:         foreach my $option (@options) {
                    495:             if ($option eq 'validate') {
                    496:                 my $canvalidate = 0;
                    497:                 if (ref($validations{$item}) eq 'HASH') {
                    498:                     if ($validations{$item}{'_external_'}) {
                    499:                         $canvalidate = 1;
                    500:                     }
                    501:                 }
                    502:                 next if (!$canvalidate);
                    503:             }
                    504:             my $checked = '';
                    505:             if ($option eq $curroption) {
                    506:                 $checked = ' checked="checked"';
                    507:             }
1.314     raeburn   508:             $output .= '<td valign="top"><span class="LC_nobreak"><label>'.
1.306     raeburn   509:                        '<input type="radio" name="reqcrsotherdom_'.$item.
                    510:                        '" value="'.$option.'"'.$checked.' />'.
1.314     raeburn   511:                        $reqtitles{$option}.'</label>';
1.306     raeburn   512:             if ($option eq 'autolimit') {
1.314     raeburn   513:                 $output .= '&nbsp;<input type="text" name="reqcrsotherdom_'.
1.306     raeburn   514:                            $item.'_limit" size="1" '.
1.314     raeburn   515:                            'value="'.$currlimit.'" /></span>'.
                    516:                            '<br />'.$reqtitles{'unlimited'};
                    517:             } else {
                    518:                 $output .= '</span>';
1.300     raeburn   519:             }
1.314     raeburn   520:             $output .= '</td>';
1.300     raeburn   521:         }
1.314     raeburn   522:         $output .= '</td></tr></table></td>'."\n".
1.300     raeburn   523:                    &Apache::loncommon::end_data_table_row()."\n";
                    524:     }
                    525:     return $output;
                    526: }
                    527: 
1.362     raeburn   528: sub domainrole_req {
                    529:     my ($ccuname,$ccdomain) = @_;
                    530:     return '<br /><h3>'.
                    531:            &mt('User Can Request Assignment of Domain Roles?').
                    532:            '</h3>'."\n".
                    533:            &Apache::loncommon::start_data_table().
                    534:            &build_tools_display($ccuname,$ccdomain,
                    535:                                 'requestauthor').
                    536:            &Apache::loncommon::end_data_table();
                    537: }
                    538: 
1.306     raeburn   539: sub courserequest_titles {
                    540:     my %titles = &Apache::lonlocal::texthash (
                    541:                                    official   => 'Official',
                    542:                                    unofficial => 'Unofficial',
                    543:                                    community  => 'Communities',
1.384     raeburn   544:                                    textbook   => 'Textbook',
1.411     raeburn   545:                                    placement  => 'Placement Tests',
1.306     raeburn   546:                                    norequest  => 'Not allowed',
1.309     raeburn   547:                                    approval   => 'Approval by Dom. Coord.',
1.306     raeburn   548:                                    validate   => 'With validation',
                    549:                                    autolimit  => 'Numerical limit',
1.314     raeburn   550:                                    unlimited  => '(blank for unlimited)',
1.306     raeburn   551:                  );
                    552:     return %titles;
                    553: }
                    554: 
                    555: sub courserequest_display {
                    556:     my %titles = &Apache::lonlocal::texthash (
1.309     raeburn   557:                                    approval   => 'Yes, need approval',
1.306     raeburn   558:                                    validate   => 'Yes, with validation',
                    559:                                    norequest  => 'No',
                    560:    );
                    561:    return %titles;
                    562: }
                    563: 
1.362     raeburn   564: sub requestauthor_titles {
                    565:     my %titles = &Apache::lonlocal::texthash (
                    566:                                    norequest  => 'Not allowed',
                    567:                                    approval   => 'Approval by Dom. Coord.',
                    568:                                    automatic  => 'Automatic approval',
                    569:                  );
                    570:     return %titles;
                    571: 
                    572: }
                    573: 
                    574: sub requestauthor_display {
                    575:     my %titles = &Apache::lonlocal::texthash (
                    576:                                    approval   => 'Yes, need approval',
                    577:                                    automatic  => 'Yes, automatic approval',
                    578:                                    norequest  => 'No',
                    579:    );
                    580:    return %titles;
                    581: }
                    582: 
1.383     raeburn   583: sub requestchange_display {
                    584:     my %titles = &Apache::lonlocal::texthash (
                    585:                                    approval   => "availability set to 'on' (approval required)", 
                    586:                                    automatic  => "availability set to 'on' (automatic approval)",
                    587:                                    norequest  => "availability set to 'off'",
                    588:    );
                    589:    return %titles;
                    590: }
                    591: 
1.362     raeburn   592: sub curr_requestauthor {
                    593:     my ($uname,$udom,$isadv,$inststatuses,$domconfig) = @_;
                    594:     return unless ((ref($inststatuses) eq 'ARRAY') && (ref($domconfig) eq 'HASH'));
                    595:     if ($uname eq '' || $udom eq '') {
                    596:         $uname = $env{'user.name'};
                    597:         $udom = $env{'user.domain'};
                    598:         $isadv = $env{'user.adv'};
                    599:     }
                    600:     my (%userenv,%settings,$val);
                    601:     my @options = ('automatic','approval');
                    602:     %userenv =
                    603:         &Apache::lonnet::userenvironment($udom,$uname,'requestauthor','inststatus');
                    604:     if ($userenv{'requestauthor'}) {
                    605:         $val = $userenv{'requestauthor'};
                    606:         @{$inststatuses} = ('_custom_');
                    607:     } else {
                    608:         my %alltasks;
                    609:         if (ref($domconfig->{'requestauthor'}) eq 'HASH') {
                    610:             %settings = %{$domconfig->{'requestauthor'}};
                    611:             if (($isadv) && ($settings{'_LC_adv'} ne '')) {
                    612:                 $val = $settings{'_LC_adv'};
                    613:                 @{$inststatuses} = ('_LC_adv_');
                    614:             } else {
                    615:                 if ($userenv{'inststatus'} ne '') {
                    616:                     @{$inststatuses} = split(',',$userenv{'inststatus'});
                    617:                 } else {
                    618:                     @{$inststatuses} = ('default');
                    619:                 }
                    620:                 foreach my $status (@{$inststatuses}) {
                    621:                     if (exists($settings{$status})) {
                    622:                         my $value = $settings{$status};
                    623:                         next unless ($value);
                    624:                         unless (exists($alltasks{$value})) {
                    625:                             if (ref($alltasks{$value}) eq 'ARRAY') {
                    626:                                 unless(grep(/^\Q$status\E$/,@{$alltasks{$value}})) {
                    627:                                     push(@{$alltasks{$value}},$status);
                    628:                                 }
                    629:                             } else {
                    630:                                 @{$alltasks{$value}} = ($status);
                    631:                             }
                    632:                         }
                    633:                     }
                    634:                 }
                    635:                 foreach my $option (@options) {
                    636:                     if ($alltasks{$option}) {
                    637:                         $val = $option;
                    638:                         last;
                    639:                     }
                    640:                 }
                    641:             }
                    642:         }
                    643:     }
                    644:     return $val;
                    645: }
                    646: 
1.2       www       647: # =================================================================== Phase one
1.1       www       648: 
1.42      matthew   649: sub print_username_entry_form {
1.351     raeburn   650:     my ($r,$context,$response,$srch,$forcenewuser,$crstype,$brcrum) = @_;
1.101     albertel  651:     my $defdom=$env{'request.role.domain'};
1.160     raeburn   652:     my $formtoset = 'crtuser';
                    653:     if (exists($env{'form.startrolename'})) {
                    654:         $formtoset = 'docustom';
                    655:         $env{'form.rolename'} = $env{'form.startrolename'};
1.207     raeburn   656:     } elsif ($env{'form.origform'} eq 'crtusername') {
                    657:         $formtoset =  $env{'form.origform'};
1.160     raeburn   658:     }
                    659: 
                    660:     my ($jsback,$elements) = &crumb_utilities();
                    661: 
                    662:     my $jscript = &Apache::loncommon::studentbrowser_javascript()."\n".
1.165     albertel  663:         '<script type="text/javascript">'."\n".
1.301     bisitz    664:         '// <![CDATA['."\n".
                    665:         &Apache::lonhtmlcommon::set_form_elements($elements->{$formtoset})."\n".
                    666:         '// ]]>'."\n".
1.162     raeburn   667:         '</script>'."\n";
1.160     raeburn   668: 
1.324     raeburn   669:     my %existingroles=&Apache::lonuserutils::my_custom_roles($crstype);
                    670:     if (($env{'form.action'} eq 'custom') && (keys(%existingroles) > 0)
                    671:         && (&Apache::lonnet::allowed('mcr','/'))) {
                    672:         $jscript .= &customrole_javascript();
                    673:     }
1.224     raeburn   674:     my $helpitem = 'Course_Change_Privileges';
                    675:     if ($env{'form.action'} eq 'custom') {
                    676:         $helpitem = 'Course_Editing_Custom_Roles';
                    677:     } elsif ($env{'form.action'} eq 'singlestudent') {
                    678:         $helpitem = 'Course_Add_Student';
1.416     raeburn   679:     } elsif ($env{'form.action'} eq 'accesslogs') {
                    680:         $helpitem = 'Domain_User_Access_Logs';
1.224     raeburn   681:     }
1.422     raeburn   682:     my %breadcrumb_text = &singleuser_breadcrumb($crstype,$context,$defdom);
1.351     raeburn   683:     if ($env{'form.action'} eq 'custom') {
                    684:         push(@{$brcrum},
                    685:                  {href=>"javascript:backPage(document.crtuser)",       
                    686:                   text=>"Pick custom role",
                    687:                   help => $helpitem,}
                    688:                  );
                    689:     } else {
                    690:         push (@{$brcrum},
                    691:                   {href => "javascript:backPage(document.crtuser)",
                    692:                    text => $breadcrumb_text{'search'},
                    693:                    help => $helpitem,
                    694:                    faq  => 282,
                    695:                    bug  => 'Instructor Interface',}
                    696:                   );
                    697:     }
                    698:     my %loaditems = (
                    699:                 'onload' => "javascript:setFormElements(document.$formtoset)",
                    700:                     );
                    701:     my $args = {bread_crumbs           => $brcrum,
                    702:                 bread_crumbs_component => 'User Management',
                    703:                 add_entries            => \%loaditems,};
                    704:     $r->print(&Apache::loncommon::start_page('User Management',$jscript,$args));
                    705: 
1.71      sakharuk  706:     my %lt=&Apache::lonlocal::texthash(
1.229     raeburn   707:                     'srst' => 'Search for a user and enroll as a student',
1.318     raeburn   708:                     'srme' => 'Search for a user and enroll as a member',
1.229     raeburn   709:                     'srad' => 'Search for a user and modify/add user information or roles',
1.422     raeburn   710:                     'srvu' => 'Search for a user and view user information and roles',
1.416     raeburn   711:                     'srva' => 'Search for a user and view access log information',
1.71      sakharuk  712: 		    'usr'  => "Username",
                    713:                     'dom'  => "Domain",
1.324     raeburn   714:                     'ecrp' => "Define or Edit Custom Role",
                    715:                     'nr'   => "role name",
1.282     schafran  716:                     'cre'  => "Next",
1.71      sakharuk  717: 				       );
1.351     raeburn   718: 
1.214     raeburn   719:     if ($env{'form.action'} eq 'custom') {
1.190     raeburn   720:         if (&Apache::lonnet::allowed('mcr','/')) {
1.324     raeburn   721:             my $newroletext = &mt('Define new custom role:');
                    722:             $r->print('<form action="/adm/createuser" method="post" name="docustom">'.
                    723:                       '<input type="hidden" name="action" value="'.$env{'form.action'}.'" />'.
                    724:                       '<input type="hidden" name="phase" value="selected_custom_edit" />'.
                    725:                       '<h3>'.$lt{'ecrp'}.'</h3>'.
                    726:                       &Apache::loncommon::start_data_table().
                    727:                       &Apache::loncommon::start_data_table_row().
                    728:                       '<td>');
                    729:             if (keys(%existingroles) > 0) {
                    730:                 $r->print('<br /><label><input type="radio" name="customroleaction" value="new" checked="checked" onclick="setCustomFields();" /><b>'.$newroletext.'</b></label>');
                    731:             } else {
                    732:                 $r->print('<br /><input type="hidden" name="customroleaction" value="new" /><b>'.$newroletext.'</b>');
                    733:             }
                    734:             $r->print('</td><td align="center">'.$lt{'nr'}.'<br /><input type="text" size="15" name="newrolename" onfocus="setCustomAction('."'new'".');" /></td>'.
                    735:                       &Apache::loncommon::end_data_table_row());
                    736:             if (keys(%existingroles) > 0) {
                    737:                 $r->print(&Apache::loncommon::start_data_table_row().'<td><br />'.
                    738:                           '<label><input type="radio" name="customroleaction" value="edit" onclick="setCustomFields();"/><b>'.
                    739:                           &mt('View/Modify existing role:').'</b></label></td>'.
                    740:                           '<td align="center"><br />'.
                    741:                           '<select name="rolename" onchange="setCustomAction('."'edit'".');">'.
1.326     raeburn   742:                           '<option value="" selected="selected">'.
1.324     raeburn   743:                           &mt('Select'));
                    744:                 foreach my $role (sort(keys(%existingroles))) {
1.326     raeburn   745:                     $r->print('<option value="'.$role.'">'.$role.'</option>');
1.324     raeburn   746:                 }
                    747:                 $r->print('</select>'.
                    748:                           '</td>'.
                    749:                           &Apache::loncommon::end_data_table_row());
                    750:             }
                    751:             $r->print(&Apache::loncommon::end_data_table().'<p>'.
                    752:                       '<input name="customeditor" type="submit" value="'.
                    753:                       $lt{'cre'}.'" /></p>'.
                    754:                       '</form>');
1.190     raeburn   755:         }
1.213     raeburn   756:     } else {
1.229     raeburn   757:         my $actiontext = $lt{'srad'};
1.436     raeburn   758:         my $fixeddom;
1.213     raeburn   759:         if ($env{'form.action'} eq 'singlestudent') {
1.318     raeburn   760:             if ($crstype eq 'Community') {
                    761:                 $actiontext = $lt{'srme'};
                    762:             } else {
                    763:                 $actiontext = $lt{'srst'};
                    764:             }
1.416     raeburn   765:         } elsif ($env{'form.action'} eq 'accesslogs') {
1.417     raeburn   766:             $actiontext = $lt{'srva'};
1.436     raeburn   767:             $fixeddom = 1;
1.422     raeburn   768:         } elsif (($env{'form.action'} eq 'singleuser') &&
                    769:                  ($context eq 'domain') && (!&Apache::lonnet::allowed('mau',$defdom))) {
                    770:             $actiontext = $lt{'srvu'};
1.213     raeburn   771:         }
1.324     raeburn   772:         $r->print("<h3>$actiontext</h3>");
1.213     raeburn   773:         if ($env{'form.origform'} ne 'crtusername') {
1.415     raeburn   774:             if ($response) {
                    775:                $r->print("\n<div>$response</div>".
                    776:                          '<br clear="all" />');
                    777:             }
1.213     raeburn   778:         }
1.436     raeburn   779:         $r->print(&entry_form($defdom,$srch,$forcenewuser,$context,$response,$crstype,$fixeddom));
1.107     www       780:     }
1.110     albertel  781: }
                    782: 
1.324     raeburn   783: sub customrole_javascript {
                    784:     my $js = <<"END";
                    785: <script type="text/javascript">
                    786: // <![CDATA[
                    787: 
                    788: function setCustomFields() {
                    789:     if (document.docustom.customroleaction.length > 0) {
                    790:         for (var i=0; i<document.docustom.customroleaction.length; i++) {
                    791:             if (document.docustom.customroleaction[i].checked) {
                    792:                 if (document.docustom.customroleaction[i].value == 'new') {
                    793:                     document.docustom.rolename.selectedIndex = 0;
                    794:                 } else {
                    795:                     document.docustom.newrolename.value = '';
                    796:                 }
                    797:             }
                    798:         }
                    799:     }
                    800:     return;
                    801: }
                    802: 
                    803: function setCustomAction(caller) {
                    804:     if (document.docustom.customroleaction.length > 0) {
                    805:         for (var i=0; i<document.docustom.customroleaction.length; i++) {
                    806:             if (document.docustom.customroleaction[i].value == caller) {
                    807:                 document.docustom.customroleaction[i].checked = true;
                    808:             }
                    809:         }
                    810:     }
                    811:     setCustomFields();
                    812:     return;
                    813: }
                    814: 
                    815: // ]]>
                    816: </script>
                    817: END
                    818:     return $js;
                    819: }
                    820: 
1.160     raeburn   821: sub entry_form {
1.416     raeburn   822:     my ($dom,$srch,$forcenewuser,$context,$responsemsg,$crstype,$fixeddom) = @_;
1.229     raeburn   823:     my ($usertype,$inexact);
1.214     raeburn   824:     if (ref($srch) eq 'HASH') {
                    825:         if (($srch->{'srchin'} eq 'dom') &&
                    826:             ($srch->{'srchby'} eq 'uname') &&
                    827:             ($srch->{'srchtype'} eq 'exact') &&
                    828:             ($srch->{'srchdomain'} ne '') &&
                    829:             ($srch->{'srchterm'} ne '')) {
1.353     raeburn   830:             my (%curr_rules,%got_rules);
1.214     raeburn   831:             my ($rules,$ruleorder) =
                    832:                 &Apache::lonnet::inst_userrules($srch->{'srchdomain'},'username');
1.353     raeburn   833:             $usertype = &Apache::lonuserutils::check_usertype($srch->{'srchdomain'},$srch->{'srchterm'},$rules,\%curr_rules,\%got_rules);
1.229     raeburn   834:         } else {
                    835:             $inexact = 1;
1.214     raeburn   836:         }
1.207     raeburn   837:     }
1.214     raeburn   838:     my $cancreate =
                    839:         &Apache::lonuserutils::can_create_user($dom,$context,$usertype);
1.412     raeburn   840:     my ($userpicker,$cansearch) = 
1.179     raeburn   841:        &Apache::loncommon::user_picker($dom,$srch,$forcenewuser,
1.416     raeburn   842:                                        'document.crtuser',$cancreate,$usertype,$context,$fixeddom);
1.160     raeburn   843:     my $srchbutton = &mt('Search');
1.229     raeburn   844:     if ($env{'form.action'} eq 'singlestudent') {
                    845:         $srchbutton = &mt('Search and Enroll');
1.416     raeburn   846:     } elsif ($env{'form.action'} eq 'accesslogs') {
                    847:         $srchbutton = &mt('Search');
1.229     raeburn   848:     } elsif ($cancreate && $responsemsg ne '' && $inexact) {
                    849:         $srchbutton = &mt('Search or Add New User');
                    850:     }
1.412     raeburn   851:     my $output;
                    852:     if ($cansearch) {
                    853:         $output = <<"ENDBLOCK";
1.160     raeburn   854: <form action="/adm/createuser" method="post" name="crtuser">
1.190     raeburn   855: <input type="hidden" name="action" value="$env{'form.action'}" />
1.160     raeburn   856: <input type="hidden" name="phase" value="get_user_info" />
                    857: $userpicker
1.179     raeburn   858: <input name="userrole" type="button" value="$srchbutton" onclick="javascript:validateEntry(document.crtuser)" />
1.160     raeburn   859: </form>
1.207     raeburn   860: ENDBLOCK
1.412     raeburn   861:     } else {
                    862:         $output = '<p>'.$userpicker.'</p>';
                    863:     }
1.422     raeburn   864:     if (($env{'form.phase'} eq '') && ($env{'form.action'} ne 'accesslogs') &&
1.430     raeburn   865:         (!(($env{'form.action'} eq 'singleuser') && ($context eq 'domain') &&
1.422     raeburn   866:         (!&Apache::lonnet::allowed('mau',$env{'request.role.domain'}))))) {
1.207     raeburn   867:         my $defdom=$env{'request.role.domain'};
                    868:         my $domform = &Apache::loncommon::select_dom_form($defdom,'srchdomain');
                    869:         my %lt=&Apache::lonlocal::texthash(
1.229     raeburn   870:                   'enro' => 'Enroll one student',
1.318     raeburn   871:                   'enrm' => 'Enroll one member',
1.229     raeburn   872:                   'admo' => 'Add/modify a single user',
                    873:                   'crea' => 'create new user if required',
                    874:                   'uskn' => "username is known",
1.207     raeburn   875:                   'crnu' => 'Create a new user',
                    876:                   'usr'  => 'Username',
                    877:                   'dom'  => 'in domain',
1.229     raeburn   878:                   'enrl' => 'Enroll',
                    879:                   'cram'  => 'Create/Modify user',
1.207     raeburn   880:         );
1.229     raeburn   881:         my $sellink=&Apache::loncommon::selectstudent_link('crtusername','srchterm','srchdomain');
                    882:         my ($title,$buttontext,$showresponse);
1.318     raeburn   883:         if ($env{'form.action'} eq 'singlestudent') {
                    884:             if ($crstype eq 'Community') {
                    885:                 $title = $lt{'enrm'};
                    886:             } else {
                    887:                 $title = $lt{'enro'};
                    888:             }
1.229     raeburn   889:             $buttontext = $lt{'enrl'};
                    890:         } else {
                    891:             $title = $lt{'admo'};
                    892:             $buttontext = $lt{'cram'};
                    893:         }
                    894:         if ($cancreate) {
                    895:             $title .= ' <span class="LC_cusr_subheading">('.$lt{'crea'}.')</span>';
                    896:         } else {
                    897:             $title .= ' <span class="LC_cusr_subheading">('.$lt{'uskn'}.')</span>';
                    898:         }
                    899:         if ($env{'form.origform'} eq 'crtusername') {
                    900:             $showresponse = $responsemsg;
                    901:         }
1.207     raeburn   902:         $output .= <<"ENDDOCUMENT";
1.229     raeburn   903: <br />
1.207     raeburn   904: <form action="/adm/createuser" method="post" name="crtusername">
                    905: <input type="hidden" name="action" value="$env{'form.action'}" />
                    906: <input type="hidden" name="phase" value="createnewuser" />
                    907: <input type="hidden" name="srchtype" value="exact" />
1.233     raeburn   908: <input type="hidden" name="srchby" value="uname" />
1.207     raeburn   909: <input type="hidden" name="srchin" value="dom" />
                    910: <input type="hidden" name="forcenewuser" value="1" />
                    911: <input type="hidden" name="origform" value="crtusername" />
1.229     raeburn   912: <h3>$title</h3>
                    913: $showresponse
1.207     raeburn   914: <table>
                    915:  <tr>
                    916:   <td>$lt{'usr'}:</td>
                    917:   <td><input type="text" size="15" name="srchterm" /></td>
                    918:   <td>&nbsp;$lt{'dom'}:</td><td>$domform</td>
1.229     raeburn   919:   <td>&nbsp;$sellink&nbsp;</td>
                    920:   <td>&nbsp;<input name="userrole" type="submit" value="$buttontext" /></td>
1.207     raeburn   921:  </tr>
                    922: </table>
                    923: </form>
1.160     raeburn   924: ENDDOCUMENT
1.207     raeburn   925:     }
1.160     raeburn   926:     return $output;
                    927: }
1.110     albertel  928: 
                    929: sub user_modification_js {
1.113     raeburn   930:     my ($pjump_def,$dc_setcourse_code,$nondc_setsection_code,$groupslist)=@_;
                    931:     
1.110     albertel  932:     return <<END;
                    933: <script type="text/javascript" language="Javascript">
1.301     bisitz    934: // <![CDATA[
1.314     raeburn   935: 
1.110     albertel  936:     $pjump_def
                    937:     $dc_setcourse_code
                    938: 
                    939:     function dateset() {
                    940:         eval("document.cu."+document.cu.pres_marker.value+
                    941:             ".value=document.cu.pres_value.value");
1.359     www       942:         modalWindow.close();
1.110     albertel  943:     }
                    944: 
1.113     raeburn   945:     $nondc_setsection_code
1.301     bisitz    946: // ]]>
1.110     albertel  947: </script>
                    948: END
1.2       www       949: }
                    950: 
                    951: # =================================================================== Phase two
1.160     raeburn   952: sub print_user_selection_page {
1.351     raeburn   953:     my ($r,$response,$srch,$srch_results,$srcharray,$context,$opener_elements,$crstype,$brcrum) = @_;
1.160     raeburn   954:     my @fields = ('username','domain','lastname','firstname','permanentemail');
                    955:     my $sortby = $env{'form.sortby'};
                    956: 
                    957:     if (!grep(/^\Q$sortby\E$/,@fields)) {
                    958:         $sortby = 'lastname';
                    959:     }
                    960: 
                    961:     my ($jsback,$elements) = &crumb_utilities();
                    962: 
                    963:     my $jscript = (<<ENDSCRIPT);
                    964: <script type="text/javascript">
1.301     bisitz    965: // <![CDATA[
1.160     raeburn   966: function pickuser(uname,udom) {
                    967:     document.usersrchform.seluname.value=uname;
                    968:     document.usersrchform.seludom.value=udom;
                    969:     document.usersrchform.phase.value="userpicked";
                    970:     document.usersrchform.submit();
                    971: }
                    972: 
                    973: $jsback
1.301     bisitz    974: // ]]>
1.160     raeburn   975: </script>
                    976: ENDSCRIPT
                    977: 
                    978:     my %lt=&Apache::lonlocal::texthash(
1.179     raeburn   979:                                        'usrch'          => "User Search to add/modify roles",
                    980:                                        'stusrch'        => "User Search to enroll student",
1.318     raeburn   981:                                        'memsrch'        => "User Search to enroll member",
1.416     raeburn   982:                                        'srcva'          => "Search for a user and view access log information",
1.422     raeburn   983:                                        'usrvu'          => "User Search to view user roles",
1.179     raeburn   984:                                        'usel'           => "Select a user to add/modify roles",
1.422     raeburn   985:                                        'suvr'           => "Select a user to view roles",
1.318     raeburn   986:                                        'stusel'         => "Select a user to enroll as a student",
                    987:                                        'memsel'         => "Select a user to enroll as a member",
1.416     raeburn   988:                                        'vacsel'         => "Select a user to view access log",
1.160     raeburn   989:                                        'username'       => "username",
                    990:                                        'domain'         => "domain",
                    991:                                        'lastname'       => "last name",
                    992:                                        'firstname'      => "first name",
                    993:                                        'permanentemail' => "permanent e-mail",
                    994:                                       );
1.302     raeburn   995:     if ($context eq 'requestcrs') {
                    996:         $r->print('<div>');
                    997:     } else {
1.422     raeburn   998:         my %breadcrumb_text = &singleuser_breadcrumb($crstype,$context,$srch->{'srchdomain'});
1.351     raeburn   999:         my $helpitem;
                   1000:         if ($env{'form.action'} eq 'singleuser') {
                   1001:             $helpitem = 'Course_Change_Privileges';
                   1002:         } elsif ($env{'form.action'} eq 'singlestudent') {
                   1003:             $helpitem = 'Course_Add_Student';
                   1004:         }
                   1005:         push (@{$brcrum},
                   1006:                   {href => "javascript:backPage(document.usersrchform,'','')",
                   1007:                    text => $breadcrumb_text{'search'},
                   1008:                    faq  => 282,
                   1009:                    bug  => 'Instructor Interface',},
                   1010:                   {href => "javascript:backPage(document.usersrchform,'get_user_info','select')",
                   1011:                    text => $breadcrumb_text{'userpicked'},
                   1012:                    faq  => 282,
                   1013:                    bug  => 'Instructor Interface',
                   1014:                    help => $helpitem}
                   1015:                   );
                   1016:         $r->print(&Apache::loncommon::start_page('User Management',$jscript,{bread_crumbs => $brcrum}));
1.302     raeburn  1017:         if ($env{'form.action'} eq 'singleuser') {
1.422     raeburn  1018:             my $readonly;
                   1019:             if (($context eq 'domain') && (!&Apache::lonnet::allowed('mau',$srch->{'srchdomain'}))) {
                   1020:                 $readonly = 1;
                   1021:                 $r->print("<b>$lt{'usrvu'}</b><br />");
                   1022:             } else {
                   1023:                 $r->print("<b>$lt{'usrch'}</b><br />");
                   1024:             }
1.318     raeburn  1025:             $r->print(&entry_form($srch->{'srchdomain'},$srch,undef,$context,undef,$crstype));
1.422     raeburn  1026:             if ($readonly) {
                   1027:                 $r->print('<h3>'.$lt{'suvr'}.'</h3>');
                   1028:             } else {
                   1029:                 $r->print('<h3>'.$lt{'usel'}.'</h3>');
                   1030:             }
1.302     raeburn  1031:         } elsif ($env{'form.action'} eq 'singlestudent') {
1.318     raeburn  1032:             $r->print($jscript."<b>");
                   1033:             if ($crstype eq 'Community') {
                   1034:                 $r->print($lt{'memsrch'});
                   1035:             } else {
                   1036:                 $r->print($lt{'stusrch'});
                   1037:             }
                   1038:             $r->print("</b><br />");
                   1039:             $r->print(&entry_form($srch->{'srchdomain'},$srch,undef,$context,undef,$crstype));
                   1040:             $r->print('</form><h3>');
                   1041:             if ($crstype eq 'Community') {
                   1042:                 $r->print($lt{'memsel'});
                   1043:             } else {
                   1044:                 $r->print($lt{'stusel'});
                   1045:             }
                   1046:             $r->print('</h3>');
1.416     raeburn  1047:         } elsif ($env{'form.action'} eq 'accesslogs') {
                   1048:             $r->print("<b>$lt{'srcva'}</b><br />");
                   1049:             $r->print(&entry_form($srch->{'srchdomain'},$srch,undef,'accesslogs',undef,undef,1));
                   1050:             $r->print('<h3>'.$lt{'vacsel'}.'</h3>');
1.302     raeburn  1051:         }
1.179     raeburn  1052:     }
1.380     bisitz   1053:     $r->print('<form name="usersrchform" method="post" action="">'.
1.160     raeburn  1054:               &Apache::loncommon::start_data_table()."\n".
                   1055:               &Apache::loncommon::start_data_table_header_row()."\n".
                   1056:               ' <th> </th>'."\n");
                   1057:     foreach my $field (@fields) {
                   1058:         $r->print(' <th><a href="javascript:document.usersrchform.sortby.value='.
                   1059:                   "'".$field."'".';document.usersrchform.submit();">'.
                   1060:                   $lt{$field}.'</a></th>'."\n");
                   1061:     }
                   1062:     $r->print(&Apache::loncommon::end_data_table_header_row());
                   1063: 
                   1064:     my @sorted_users = sort {
1.167     albertel 1065:         lc($srch_results->{$a}->{$sortby})   cmp lc($srch_results->{$b}->{$sortby})
1.160     raeburn  1066:             ||
1.167     albertel 1067:         lc($srch_results->{$a}->{lastname})  cmp lc($srch_results->{$b}->{lastname})
1.160     raeburn  1068:             ||
                   1069:         lc($srch_results->{$a}->{firstname}) cmp lc($srch_results->{$b}->{firstname})
1.167     albertel 1070: 	    ||
                   1071: 	lc($a) cmp lc($b)
1.160     raeburn  1072:         } (keys(%$srch_results));
                   1073: 
                   1074:     foreach my $user (@sorted_users) {
                   1075:         my ($uname,$udom) = split(/:/,$user);
1.302     raeburn  1076:         my $onclick;
                   1077:         if ($context eq 'requestcrs') {
1.314     raeburn  1078:             $onclick =
1.302     raeburn  1079:                 'onclick="javascript:gochoose('."'$uname','$udom',".
                   1080:                                                "'$srch_results->{$user}->{firstname}',".
                   1081:                                                "'$srch_results->{$user}->{lastname}',".
                   1082:                                                "'$srch_results->{$user}->{permanentemail}'".');"';
                   1083:         } else {
1.314     raeburn  1084:             $onclick =
1.302     raeburn  1085:                 ' onclick="javascript:pickuser('."'".$uname."'".','."'".$udom."'".');"';
                   1086:         }
1.160     raeburn  1087:         $r->print(&Apache::loncommon::start_data_table_row().
1.302     raeburn  1088:                   '<td><input type="button" name="seluser" value="'.&mt('Select').'" '.
                   1089:                   $onclick.' /></td>'.
1.160     raeburn  1090:                   '<td><tt>'.$uname.'</tt></td>'.
                   1091:                   '<td><tt>'.$udom.'</tt></td>');
                   1092:         foreach my $field ('lastname','firstname','permanentemail') {
                   1093:             $r->print('<td>'.$srch_results->{$user}->{$field}.'</td>');
                   1094:         }
                   1095:         $r->print(&Apache::loncommon::end_data_table_row());
                   1096:     }
                   1097:     $r->print(&Apache::loncommon::end_data_table().'<br /><br />');
1.179     raeburn  1098:     if (ref($srcharray) eq 'ARRAY') {
                   1099:         foreach my $item (@{$srcharray}) {
                   1100:             $r->print('<input type="hidden" name="'.$item.'" value="'.$env{'form.'.$item}.'" />'."\n");
                   1101:         }
                   1102:     }
1.160     raeburn  1103:     $r->print(' <input type="hidden" name="sortby" value="'.$sortby.'" />'."\n".
                   1104:               ' <input type="hidden" name="seluname" value="" />'."\n".
                   1105:               ' <input type="hidden" name="seludom" value="" />'."\n".
1.179     raeburn  1106:               ' <input type="hidden" name="currstate" value="select" />'."\n".
1.190     raeburn  1107:               ' <input type="hidden" name="phase" value="get_user_info" />'."\n".
1.214     raeburn  1108:               ' <input type="hidden" name="action" value="'.$env{'form.action'}.'" />'."\n");
1.302     raeburn  1109:     if ($context eq 'requestcrs') {
                   1110:         $r->print($opener_elements.'</form></div>');
                   1111:     } else {
1.351     raeburn  1112:         $r->print($response.'</form>');
1.302     raeburn  1113:     }
1.160     raeburn  1114: }
                   1115: 
                   1116: sub print_user_query_page {
1.351     raeburn  1117:     my ($r,$caller,$brcrum) = @_;
1.160     raeburn  1118: # FIXME - this is for a network-wide name search (similar to catalog search)
                   1119: # To use frames with similar behavior to catalog/portfolio search.
                   1120: # To be implemented. 
                   1121:     return;
                   1122: }
                   1123: 
1.42      matthew  1124: sub print_user_modification_page {
1.375     raeburn  1125:     my ($r,$ccuname,$ccdomain,$srch,$response,$context,$permission,$crstype,
                   1126:         $brcrum,$showcredits) = @_;
1.185     raeburn  1127:     if (($ccuname eq '') || ($ccdomain eq '')) {
1.215     raeburn  1128:         my $usermsg = &mt('No username and/or domain provided.');
                   1129:         $env{'form.phase'} = '';
1.351     raeburn  1130: 	&print_username_entry_form($r,$context,$usermsg,'','',$crstype,$brcrum);
1.58      www      1131:         return;
                   1132:     }
1.213     raeburn  1133:     my ($form,$formname);
                   1134:     if ($env{'form.action'} eq 'singlestudent') {
                   1135:         $form = 'document.enrollstudent';
                   1136:         $formname = 'enrollstudent';
                   1137:     } else {
                   1138:         $form = 'document.cu';
                   1139:         $formname = 'cu';
                   1140:     }
1.188     raeburn  1141:     my %abv_auth = &auth_abbrev();
1.227     raeburn  1142:     my (%rulematch,%inst_results,$newuser,%alerts,%curr_rules,%got_rules);
1.185     raeburn  1143:     my $uhome=&Apache::lonnet::homeserver($ccuname,$ccdomain);
                   1144:     if ($uhome eq 'no_host') {
1.215     raeburn  1145:         my $usertype;
                   1146:         my ($rules,$ruleorder) =
                   1147:             &Apache::lonnet::inst_userrules($ccdomain,'username');
                   1148:             $usertype =
1.353     raeburn  1149:                 &Apache::lonuserutils::check_usertype($ccdomain,$ccuname,$rules,
1.362     raeburn  1150:                                                       \%curr_rules,\%got_rules);
1.215     raeburn  1151:         my $cancreate =
                   1152:             &Apache::lonuserutils::can_create_user($ccdomain,$context,
                   1153:                                                    $usertype);
                   1154:         if (!$cancreate) {
1.292     bisitz   1155:             my $helplink = 'javascript:helpMenu('."'display'".')';
1.215     raeburn  1156:             my %usertypetext = (
                   1157:                 official   => 'institutional',
                   1158:                 unofficial => 'non-institutional',
                   1159:             );
                   1160:             my $response;
                   1161:             if ($env{'form.origform'} eq 'crtusername') {
1.362     raeburn  1162:                 $response = '<span class="LC_warning">'.
                   1163:                             &mt('No match found for the username [_1] in LON-CAPA domain: [_2]',
                   1164:                                 '<b>'.$ccuname.'</b>',$ccdomain).
1.215     raeburn  1165:                             '</span><br />';
                   1166:             }
1.292     bisitz   1167:             $response .= '<p class="LC_warning">'
                   1168:                         .&mt("You are not authorized to create new $usertypetext{$usertype} users in this domain.")
1.418     raeburn  1169:                         .' ';
                   1170:             if ($context eq 'domain') {
                   1171:                 $response .= &mt('Please contact a [_1] for assistance.',
                   1172:                                  &Apache::lonnet::plaintext('dc'));
                   1173:             } else {
                   1174:                 $response .= &mt('Please contact the [_1]helpdesk[_2] for assistance.'
                   1175:                                 ,'<a href="'.$helplink.'">','</a>');
                   1176:             }
                   1177:             $response .= '</p><br />';
1.215     raeburn  1178:             $env{'form.phase'} = '';
1.351     raeburn  1179:             &print_username_entry_form($r,$context,$response,undef,undef,$crstype,$brcrum);
1.215     raeburn  1180:             return;
                   1181:         }
1.188     raeburn  1182:         $newuser = 1;
1.193     raeburn  1183:         my $checkhash;
                   1184:         my $checks = { 'username' => 1 };
1.196     raeburn  1185:         $checkhash->{$ccuname.':'.$ccdomain} = { 'newuser' => $newuser };
1.193     raeburn  1186:         &Apache::loncommon::user_rule_check($checkhash,$checks,
1.196     raeburn  1187:             \%alerts,\%rulematch,\%inst_results,\%curr_rules,\%got_rules);
                   1188:         if (ref($alerts{'username'}) eq 'HASH') {
                   1189:             if (ref($alerts{'username'}{$ccdomain}) eq 'HASH') {
                   1190:                 my $domdesc =
1.193     raeburn  1191:                     &Apache::lonnet::domain($ccdomain,'description');
1.196     raeburn  1192:                 if ($alerts{'username'}{$ccdomain}{$ccuname}) {
                   1193:                     my $userchkmsg;
                   1194:                     if (ref($curr_rules{$ccdomain}) eq 'HASH') {  
                   1195:                         $userchkmsg = 
                   1196:                             &Apache::loncommon::instrule_disallow_msg('username',
1.193     raeburn  1197:                                                                  $domdesc,1).
                   1198:                         &Apache::loncommon::user_rule_formats($ccdomain,
                   1199:                             $domdesc,$curr_rules{$ccdomain}{'username'},
                   1200:                             'username');
1.196     raeburn  1201:                     }
1.215     raeburn  1202:                     $env{'form.phase'} = '';
1.351     raeburn  1203:                     &print_username_entry_form($r,$context,$userchkmsg,undef,undef,$crstype,$brcrum);
1.196     raeburn  1204:                     return;
1.215     raeburn  1205:                 }
1.193     raeburn  1206:             }
1.185     raeburn  1207:         }
1.187     raeburn  1208:     } else {
1.188     raeburn  1209:         $newuser = 0;
1.185     raeburn  1210:     }
1.160     raeburn  1211:     if ($response) {
1.215     raeburn  1212:         $response = '<br />'.$response;
1.160     raeburn  1213:     }
1.149     raeburn  1214: 
1.52      matthew  1215:     my $pjump_def = &Apache::lonhtmlcommon::pjump_javascript_definition();
1.88      raeburn  1216:     my $dc_setcourse_code = '';
1.119     raeburn  1217:     my $nondc_setsection_code = '';                                        
1.112     albertel 1218:     my %loaditem;
1.114     albertel 1219: 
1.216     raeburn  1220:     my $groupslist = &Apache::lonuserutils::get_groupslist();
1.88      raeburn  1221: 
1.375     raeburn  1222:     my $js = &validation_javascript($context,$ccdomain,$pjump_def,$crstype,
1.216     raeburn  1223:                                $groupslist,$newuser,$formname,\%loaditem);
1.422     raeburn  1224:     my %breadcrumb_text = &singleuser_breadcrumb($crstype,$context,$ccdomain);
1.224     raeburn  1225:     my $helpitem = 'Course_Change_Privileges';
                   1226:     if ($env{'form.action'} eq 'singlestudent') {
                   1227:         $helpitem = 'Course_Add_Student';
                   1228:     }
1.351     raeburn  1229:     push (@{$brcrum},
                   1230:         {href => "javascript:backPage($form)",
                   1231:          text => $breadcrumb_text{'search'},
                   1232:          faq  => 282,
                   1233:          bug  => 'Instructor Interface',});
                   1234:     if ($env{'form.phase'} eq 'userpicked') {
                   1235:        push(@{$brcrum},
                   1236:               {href => "javascript:backPage($form,'get_user_info','select')",
                   1237:                text => $breadcrumb_text{'userpicked'},
                   1238:                faq  => 282,
                   1239:                bug  => 'Instructor Interface',});
                   1240:     }
                   1241:     push(@{$brcrum},
                   1242:             {href => "javascript:backPage($form,'$env{'form.phase'}','modify')",
                   1243:              text => $breadcrumb_text{'modify'},
                   1244:              faq  => 282,
                   1245:              bug  => 'Instructor Interface',
                   1246:              help => $helpitem});
                   1247:     my $args = {'add_entries'           => \%loaditem,
                   1248:                 'bread_crumbs'          => $brcrum,
                   1249:                 'bread_crumbs_component' => 'User Management'};
                   1250:     if ($env{'form.popup'}) {
                   1251:         $args->{'no_nav_bar'} = 1;
                   1252:     }
                   1253:     my $start_page =
                   1254:         &Apache::loncommon::start_page('User Management',$js,$args);
1.3       www      1255: 
1.25      matthew  1256:     my $forminfo =<<"ENDFORMINFO";
1.216     raeburn  1257: <form action="/adm/createuser" method="post" name="$formname">
1.190     raeburn  1258: <input type="hidden" name="phase" value="update_user_data" />
1.188     raeburn  1259: <input type="hidden" name="ccuname" value="$ccuname" />
                   1260: <input type="hidden" name="ccdomain" value="$ccdomain" />
1.157     albertel 1261: <input type="hidden" name="pres_value"  value="" />
                   1262: <input type="hidden" name="pres_type"   value="" />
                   1263: <input type="hidden" name="pres_marker" value="" />
1.25      matthew  1264: ENDFORMINFO
1.375     raeburn  1265:     my (%inccourses,$roledom,$defaultcredits);
1.329     raeburn  1266:     if ($context eq 'course') {
                   1267:         $inccourses{$env{'request.course.id'}}=1;
                   1268:         $roledom = $env{'course.'.$env{'request.course.id'}.'.domain'};
1.375     raeburn  1269:         if ($showcredits) {
                   1270:             $defaultcredits = &Apache::lonuserutils::get_defaultcredits();
                   1271:         }
1.329     raeburn  1272:     } elsif ($context eq 'author') {
                   1273:         $roledom = $env{'request.role.domain'};
                   1274:     } elsif ($context eq 'domain') {
                   1275:         foreach my $key (keys(%env)) {
                   1276:             $roledom = $env{'request.role.domain'};
                   1277:             if ($key=~/^user\.priv\.cm\.\/($roledom)\/($match_username)/) {
                   1278:                 $inccourses{$1.'_'.$2}=1;
                   1279:             }
                   1280:         }
                   1281:     } else {
                   1282:         foreach my $key (keys(%env)) {
                   1283: 	    if ($key=~/^user\.priv\.cm\.\/($match_domain)\/($match_username)/) {
                   1284: 	        $inccourses{$1.'_'.$2}=1;
                   1285:             }
1.2       www      1286:         }
1.24      matthew  1287:     }
1.389     bisitz   1288:     my $title = '';
1.216     raeburn  1289:     if ($newuser) {
1.427     raeburn  1290:         my ($portfolioform,$domroleform);
1.267     raeburn  1291:         if ((&Apache::lonnet::allowed('mpq',$env{'request.role.domain'})) ||
                   1292:             (&Apache::lonnet::allowed('mut',$env{'request.role.domain'}))) {
                   1293:             # Current user has quota or user tools modification privileges
1.378     raeburn  1294:             $portfolioform = '<br />'.&user_quotas($ccuname,$ccdomain);
1.134     raeburn  1295:         }
1.383     raeburn  1296:         if ((&Apache::lonnet::allowed('cau',$env{'request.role.domain'})) &&
                   1297:             ($ccdomain eq $env{'request.role.domain'})) {
1.362     raeburn  1298:             $domroleform = '<br />'.&domainrole_req($ccuname,$ccdomain);
                   1299:         }
1.227     raeburn  1300:         &initialize_authen_forms($ccdomain,$formname);
1.188     raeburn  1301:         my %lt=&Apache::lonlocal::texthash(
                   1302:                 'lg'             => 'Login Data',
1.190     raeburn  1303:                 'hs'             => "Home Server",
1.188     raeburn  1304:         );
1.185     raeburn  1305: 	$r->print(<<ENDTITLE);
1.110     albertel 1306: $start_page
1.160     raeburn  1307: $response
1.25      matthew  1308: $forminfo
1.31      matthew  1309: <script type="text/javascript" language="Javascript">
1.301     bisitz   1310: // <![CDATA[
1.20      harris41 1311: $loginscript
1.301     bisitz   1312: // ]]>
1.31      matthew  1313: </script>
1.20      harris41 1314: <input type='hidden' name='makeuser' value='1' />
1.185     raeburn  1315: ENDTITLE
1.213     raeburn  1316:         if ($env{'form.action'} eq 'singlestudent') {
1.318     raeburn  1317:             if ($crstype eq 'Community') {
1.389     bisitz   1318:                 $title = &mt('Create New User [_1] in domain [_2] as a member',
                   1319:                                  '"'.$ccuname.'"','"'.$ccdomain.'"');
1.318     raeburn  1320:             } else {
1.389     bisitz   1321:                 $title = &mt('Create New User [_1] in domain [_2] as a student',
                   1322:                                  '"'.$ccuname.'"','"'.$ccdomain.'"');
1.318     raeburn  1323:             }
1.389     bisitz   1324:         } else {
                   1325:                 $title = &mt('Create New User [_1] in domain [_2]',
                   1326:                                  '"'.$ccuname.'"','"'.$ccdomain.'"');
1.213     raeburn  1327:         }
1.389     bisitz   1328:         $r->print('<h2>'.$title.'</h2>'."\n");
                   1329:         $r->print('<div class="LC_left_float">');
1.393     raeburn  1330:         $r->print(&personal_data_display($ccuname,$ccdomain,$newuser,$context,
                   1331:                                          $inst_results{$ccuname.':'.$ccdomain}));
                   1332:         # Option to disable student/employee ID conflict checking not offerred for new users.
1.187     raeburn  1333:         my ($home_server_pick,$numlib) = 
                   1334:             &Apache::loncommon::home_server_form_item($ccdomain,'hserver',
                   1335:                                                       'default','hide');
                   1336:         if ($numlib > 1) {
                   1337:             $r->print("
1.185     raeburn  1338: <br />
1.187     raeburn  1339: $lt{'hs'}: $home_server_pick
                   1340: <br />");
                   1341:         } else {
                   1342:             $r->print($home_server_pick);
                   1343:         }
1.304     raeburn  1344:         if (&Apache::lonnet::allowed('ccc',$env{'request.role.domain'})) {
1.362     raeburn  1345:             $r->print('<br /><h3>'.
                   1346:                       &mt('User Can Request Creation of Courses/Communities in this Domain?').'</h3>'.
1.304     raeburn  1347:                       &Apache::loncommon::start_data_table().
                   1348:                       &build_tools_display($ccuname,$ccdomain,
                   1349:                                            'requestcourses').
                   1350:                       &Apache::loncommon::end_data_table());
                   1351:         }
1.188     raeburn  1352:         $r->print('</div>'."\n".'<div class="LC_left_float"><h3>'.
                   1353:                   $lt{'lg'}.'</h3>');
1.185     raeburn  1354:         my ($fixedauth,$varauth,$authmsg); 
1.193     raeburn  1355:         if (ref($rulematch{$ccuname.':'.$ccdomain}) eq 'HASH') {
                   1356:             my $matchedrule = $rulematch{$ccuname.':'.$ccdomain}{'username'};
                   1357:             my ($rules,$ruleorder) = 
                   1358:                 &Apache::lonnet::inst_userrules($ccdomain,'username');
1.185     raeburn  1359:             if (ref($rules) eq 'HASH') {
1.193     raeburn  1360:                 if (ref($rules->{$matchedrule}) eq 'HASH') {
                   1361:                     my $authtype = $rules->{$matchedrule}{'authtype'};
1.185     raeburn  1362:                     if ($authtype !~ /^(krb4|krb5|int|fsys|loc)$/) {
1.190     raeburn  1363:                         $r->print(&Apache::lonuserutils::set_login($ccdomain,$authformkrb,$authformint,$authformloc));
1.275     raeburn  1364:                     } else { 
1.193     raeburn  1365:                         my $authparm = $rules->{$matchedrule}{'authparm'};
1.273     raeburn  1366:                         $authmsg = $rules->{$matchedrule}{'authmsg'};
1.185     raeburn  1367:                         if ($authtype =~ /^krb(4|5)$/) {
                   1368:                             my $ver = $1;
                   1369:                             if ($authparm ne '') {
                   1370:                                 $fixedauth = <<"KERB"; 
                   1371: <input type="hidden" name="login" value="krb" />
                   1372: <input type="hidden" name="krbver" value="$ver" />
                   1373: <input type="hidden" name="krbarg" value="$authparm" />
                   1374: KERB
                   1375:                             }
                   1376:                         } else {
                   1377:                             $fixedauth = 
                   1378: '<input type="hidden" name="login" value="'.$authtype.'" />'."\n";
1.193     raeburn  1379:                             if ($rules->{$matchedrule}{'authparmfixed'}) {
1.185     raeburn  1380:                                 $fixedauth .=    
                   1381: '<input type="hidden" name="'.$authtype.'arg" value="'.$authparm.'" />'."\n";
                   1382:                             } else {
1.273     raeburn  1383:                                 if ($authtype eq 'int') {
                   1384:                                     $varauth = '<br />'.
1.301     bisitz   1385: &mt('[_1] Internally authenticated (with initial password [_2])','','<input type="password" size="10" name="intarg" value="" />')."<label><input type=\"checkbox\" name=\"visible\" onclick='if (this.checked) { this.form.intarg.type=\"text\" } else { this.form.intarg.type=\"password\" }' />".&mt('Visible input').'</label>';
1.273     raeburn  1386:                                 } elsif ($authtype eq 'loc') {
                   1387:                                     $varauth = '<br />'.
                   1388: &mt('[_1] Local Authentication with argument [_2]','','<input type="text" name="'.$authtype.'arg" value="" />')."\n";
                   1389:                                 } else {
                   1390:                                     $varauth =
1.185     raeburn  1391: '<input type="text" name="'.$authtype.'arg" value="" />'."\n";
1.273     raeburn  1392:                                 }
1.185     raeburn  1393:                             }
                   1394:                         }
                   1395:                     }
                   1396:                 } else {
1.190     raeburn  1397:                     $r->print(&Apache::lonuserutils::set_login($ccdomain,$authformkrb,$authformint,$authformloc));
1.185     raeburn  1398:                 }
                   1399:             }
                   1400:             if ($authmsg) {
                   1401:                 $r->print(<<ENDAUTH);
                   1402: $fixedauth
                   1403: $authmsg
                   1404: $varauth
                   1405: ENDAUTH
                   1406:             }
                   1407:         } else {
1.190     raeburn  1408:             $r->print(&Apache::lonuserutils::set_login($ccdomain,$authformkrb,$authformint,$authformloc)); 
1.187     raeburn  1409:         }
1.427     raeburn  1410:         $r->print($portfolioform.$domroleform);
1.215     raeburn  1411:         if ($env{'form.action'} eq 'singlestudent') {
                   1412:             $r->print(&date_sections_select($context,$newuser,$formname,
1.375     raeburn  1413:                                             $permission,$crstype,$ccuname,
                   1414:                                             $ccdomain,$showcredits));
1.215     raeburn  1415:         }
                   1416:         $r->print('</div><div class="LC_clear_float_footer"></div>');
1.216     raeburn  1417:     } else { # user already exists
1.389     bisitz   1418: 	$r->print($start_page.$forminfo);
1.213     raeburn  1419:         if ($env{'form.action'} eq 'singlestudent') {
1.318     raeburn  1420:             if ($crstype eq 'Community') {
1.389     bisitz   1421:                 $title = &mt('Enroll one member: [_1] in domain [_2]',
                   1422:                                  '"'.$ccuname.'"','"'.$ccdomain.'"');
1.318     raeburn  1423:             } else {
1.389     bisitz   1424:                 $title = &mt('Enroll one student: [_1] in domain [_2]',
                   1425:                                  '"'.$ccuname.'"','"'.$ccdomain.'"');
1.318     raeburn  1426:             }
1.213     raeburn  1427:         } else {
1.418     raeburn  1428:             if ($permission->{'cusr'}) {
                   1429:                 $title = &mt('Modify existing user: [_1] in domain [_2]',
                   1430:                              '"'.$ccuname.'"','"'.$ccdomain.'"');
                   1431:             } else {
                   1432:                 $title = &mt('Existing user: [_1] in domain [_2]',
1.389     bisitz   1433:                              '"'.$ccuname.'"','"'.$ccdomain.'"');
1.418     raeburn  1434:             }
1.213     raeburn  1435:         }
1.389     bisitz   1436:         $r->print('<h2>'.$title.'</h2>'."\n");
                   1437:         $r->print('<div class="LC_left_float">');
1.393     raeburn  1438:         $r->print(&personal_data_display($ccuname,$ccdomain,$newuser,$context,
                   1439:                                          $inst_results{$ccuname.':'.$ccdomain}));
1.430     raeburn  1440:         if ((&Apache::lonnet::allowed('ccc',$env{'request.role.domain'})) ||
1.418     raeburn  1441:             (&Apache::lonnet::allowed('udp',$env{'request.role.domain'}))) {
1.362     raeburn  1442:             $r->print('<br /><h3>'.&mt('User Can Request Creation of Courses/Communities in this Domain?').'</h3>'.
1.300     raeburn  1443:                       &Apache::loncommon::start_data_table());
1.314     raeburn  1444:             if ($env{'request.role.domain'} eq $ccdomain) {
1.300     raeburn  1445:                 $r->print(&build_tools_display($ccuname,$ccdomain,'requestcourses'));
                   1446:             } else {
                   1447:                 $r->print(&coursereq_externaluser($ccuname,$ccdomain,
                   1448:                                                   $env{'request.role.domain'}));
                   1449:             }
                   1450:             $r->print(&Apache::loncommon::end_data_table());
1.275     raeburn  1451:         }
1.199     raeburn  1452:         $r->print('</div>');
1.427     raeburn  1453:         my @order = ('auth','quota','tools','requestauthor');
1.362     raeburn  1454:         my %user_text;
                   1455:         my ($isadv,$isauthor) = 
1.418     raeburn  1456:             &Apache::lonnet::is_advanced_user($ccdomain,$ccuname);
1.362     raeburn  1457:         if ((!$isauthor) && 
1.418     raeburn  1458:             ((&Apache::lonnet::allowed('cau',$env{'request.role.domain'})) ||
                   1459:              (&Apache::lonnet::allowed('udp',$env{'request.role.domain'}))) &&
1.430     raeburn  1460:              ($env{'request.role.domain'} eq $ccdomain)) {
1.362     raeburn  1461:             $user_text{'requestauthor'} = &domainrole_req($ccuname,$ccdomain);
                   1462:         }
                   1463:         $user_text{'auth'} =  &user_authentication($ccuname,$ccdomain,$formname);
1.267     raeburn  1464:         if ((&Apache::lonnet::allowed('mpq',$ccdomain)) ||
1.418     raeburn  1465:             (&Apache::lonnet::allowed('mut',$ccdomain)) ||
                   1466:             (&Apache::lonnet::allowed('udp',$ccdomain))) {
1.188     raeburn  1467:             # Current user has quota modification privileges
1.378     raeburn  1468:             $user_text{'quota'} = &user_quotas($ccuname,$ccdomain);
1.267     raeburn  1469:         }
                   1470:         if (!&Apache::lonnet::allowed('mpq',$ccdomain)) {
                   1471:             if (&Apache::lonnet::allowed('mpq',$env{'request.role.domain'})) {
                   1472:                 my %lt=&Apache::lonlocal::texthash(
1.385     bisitz   1473:                     'dska'  => "Disk quotas for user's portfolio and Authoring Space",
                   1474:                     'youd'  => "You do not have privileges to modify the portfolio and/or Authoring Space quotas for this user.",
1.267     raeburn  1475:                     'ichr'  => "If a change is required, contact a domain coordinator for the domain",
                   1476:                 );
1.362     raeburn  1477:                 $user_text{'quota'} = <<ENDNOPORTPRIV;
1.188     raeburn  1478: <h3>$lt{'dska'}</h3>
                   1479: $lt{'youd'} $lt{'ichr'}: $ccdomain
                   1480: ENDNOPORTPRIV
1.267     raeburn  1481:             }
                   1482:         }
                   1483:         if (!&Apache::lonnet::allowed('mut',$ccdomain)) {
                   1484:             if (&Apache::lonnet::allowed('mut',$env{'request.role.domain'})) {
                   1485:                 my %lt=&Apache::lonlocal::texthash(
                   1486:                     'utav'  => "User Tools Availability",
1.361     raeburn  1487:                     'yodo'  => "You do not have privileges to modify Portfolio, Blog, WebDAV, or Personal Information Page settings for this user.",
1.267     raeburn  1488:                     'ifch'  => "If a change is required, contact a domain coordinator for the domain",
                   1489:                 );
1.362     raeburn  1490:                 $user_text{'tools'} = <<ENDNOTOOLSPRIV;
1.267     raeburn  1491: <h3>$lt{'utav'}</h3>
                   1492: $lt{'yodo'} $lt{'ifch'}: $ccdomain
                   1493: ENDNOTOOLSPRIV
                   1494:             }
1.188     raeburn  1495:         }
1.362     raeburn  1496:         my $gotdiv = 0; 
                   1497:         foreach my $item (@order) {
                   1498:             if ($user_text{$item} ne '') {
                   1499:                 unless ($gotdiv) {
                   1500:                     $r->print('<div class="LC_left_float">');
                   1501:                     $gotdiv = 1;
                   1502:                 }
                   1503:                 $r->print('<br />'.$user_text{$item});
                   1504:             }
                   1505:         }
                   1506:         if ($env{'form.action'} eq 'singlestudent') {
                   1507:             unless ($gotdiv) {
                   1508:                 $r->print('<div class="LC_left_float">');
1.213     raeburn  1509:             }
1.375     raeburn  1510:             my $credits;
                   1511:             if ($showcredits) {
                   1512:                 $credits = &get_user_credits($ccuname,$ccdomain,$defaultcredits);
                   1513:                 if ($credits eq '') {
                   1514:                     $credits = $defaultcredits;
                   1515:                 }
                   1516:             }
1.374     raeburn  1517:             $r->print(&date_sections_select($context,$newuser,$formname,
1.375     raeburn  1518:                                             $permission,$crstype,$ccuname,
                   1519:                                             $ccdomain,$showcredits));
1.374     raeburn  1520:         }
1.362     raeburn  1521:         if ($gotdiv) {
                   1522:             $r->print('</div><div class="LC_clear_float_footer"></div>');
1.188     raeburn  1523:         }
1.418     raeburn  1524:         my $statuses;
                   1525:         if (($context eq 'domain') && (&Apache::lonnet::allowed('udp',$ccdomain)) &&
                   1526:             (!&Apache::lonnet::allowed('mau',$ccdomain))) {
                   1527:             $statuses = ['active'];
                   1528:         } elsif (($context eq 'course') && ((&Apache::lonnet::allowed('vcl',$env{'request.course.id'})) ||
                   1529:                  ($env{'request.course.sec'} &&
                   1530:                   &Apache::lonnet::allowed('vcl',$env{'request.course.id'}.'/'.$env{'request.course.sec'})))) {
1.430     raeburn  1531:             $statuses = ['active'];
1.418     raeburn  1532:         }
1.217     raeburn  1533:         if ($env{'form.action'} ne 'singlestudent') {
1.329     raeburn  1534:             &display_existing_roles($r,$ccuname,$ccdomain,\%inccourses,$context,
1.418     raeburn  1535:                                     $roledom,$crstype,$showcredits,$statuses);
1.217     raeburn  1536:         }
1.25      matthew  1537:     } ## End of new user/old user logic
1.218     raeburn  1538:     if ($env{'form.action'} eq 'singlestudent') {
1.318     raeburn  1539:         my $btntxt;
                   1540:         if ($crstype eq 'Community') {
                   1541:             $btntxt = &mt('Enroll Member');
                   1542:         } else {
                   1543:             $btntxt = &mt('Enroll Student');
                   1544:         }
                   1545:         $r->print('<br /><input type="button" value="'.$btntxt.'" onclick="setSections(this.form)" />'."\n");
1.418     raeburn  1546:     } elsif ($permission->{'cusr'}) {
1.393     raeburn  1547:         $r->print('<div class="LC_left_float">'.
                   1548:                   '<fieldset><legend>'.&mt('Add Roles').'</legend>');
1.218     raeburn  1549:         my $addrolesdisplay = 0;
                   1550:         if ($context eq 'domain' || $context eq 'author') {
                   1551:             $addrolesdisplay = &new_coauthor_roles($r,$ccuname,$ccdomain);
                   1552:         }
                   1553:         if ($context eq 'domain') {
1.357     raeburn  1554:             my $add_domainroles = &new_domain_roles($r,$ccdomain);
1.218     raeburn  1555:             if (!$addrolesdisplay) {
                   1556:                 $addrolesdisplay = $add_domainroles;
1.2       www      1557:             }
1.375     raeburn  1558:             $r->print(&course_level_dc($env{'request.role.domain'},$showcredits));
1.393     raeburn  1559:             $r->print('</fieldset></div><div class="LC_clear_float_footer"></div>'.
                   1560:                       '<br /><input type="button" value="'.&mt('Save').'" onclick="setCourse()" />'."\n");
1.218     raeburn  1561:         } elsif ($context eq 'author') {
                   1562:             if ($addrolesdisplay) {
1.393     raeburn  1563:                 $r->print('</fieldset></div><div class="LC_clear_float_footer"></div>'.
                   1564:                           '<br /><input type="button" value="'.&mt('Save').'"');
1.218     raeburn  1565:                 if ($newuser) {
1.301     bisitz   1566:                     $r->print(' onclick="auth_check()" \>'."\n");
1.218     raeburn  1567:                 } else {
1.301     bisitz   1568:                     $r->print('onclick="this.form.submit()" \>'."\n");
1.218     raeburn  1569:                 }
1.188     raeburn  1570:             } else {
1.393     raeburn  1571:                 $r->print('</fieldset></div>'.
                   1572:                           '<div class="LC_clear_float_footer"></div>'.
                   1573:                           '<br /><a href="javascript:backPage(document.cu)">'.
1.218     raeburn  1574:                           &mt('Back to previous page').'</a>');
1.188     raeburn  1575:             }
                   1576:         } else {
1.375     raeburn  1577:             $r->print(&course_level_table(\%inccourses,$showcredits,$defaultcredits));
1.393     raeburn  1578:             $r->print('</fieldset></div><div class="LC_clear_float_footer"></div>'.
                   1579:                       '<br /><input type="button" value="'.&mt('Save').'" onclick="setSections(this.form)" />'."\n");
1.188     raeburn  1580:         }
1.88      raeburn  1581:     }
1.188     raeburn  1582:     $r->print(&Apache::lonhtmlcommon::echo_form_input(['phase','userrole','ccdomain','prevphase','currstate','ccuname','ccdomain']));
1.179     raeburn  1583:     $r->print('<input type="hidden" name="currstate" value="" />');
1.393     raeburn  1584:     $r->print('<input type="hidden" name="prevphase" value="'.$env{'form.phase'}.'" /></form><br /><br />');
1.218     raeburn  1585:     return;
1.2       www      1586: }
1.1       www      1587: 
1.213     raeburn  1588: sub singleuser_breadcrumb {
1.422     raeburn  1589:     my ($crstype,$context,$domain) = @_;
1.213     raeburn  1590:     my %breadcrumb_text;
                   1591:     if ($env{'form.action'} eq 'singlestudent') {
1.318     raeburn  1592:         if ($crstype eq 'Community') {
                   1593:             $breadcrumb_text{'search'} = 'Enroll a member';
                   1594:         } else {
                   1595:             $breadcrumb_text{'search'} = 'Enroll a student';
                   1596:         }
1.422     raeburn  1597:         $breadcrumb_text{'userpicked'} = 'Select a user';
                   1598:         $breadcrumb_text{'modify'} = 'Set section/dates';
1.416     raeburn  1599:     } elsif ($env{'form.action'} eq 'accesslogs') {
                   1600:         $breadcrumb_text{'search'} = 'View access logs for a user';
1.422     raeburn  1601:         $breadcrumb_text{'userpicked'} = 'Select a user';
                   1602:         $breadcrumb_text{'activity'} = 'Activity';
                   1603:     } elsif (($env{'form.action'} eq 'singleuser') && ($context eq 'domain') &&
                   1604:              (!&Apache::lonnet::allowed('mau',$domain))) {
                   1605:         $breadcrumb_text{'search'} = "View user's roles";
                   1606:         $breadcrumb_text{'userpicked'} = 'Select a user';
                   1607:         $breadcrumb_text{'modify'} = 'User roles';
1.213     raeburn  1608:     } else {
1.229     raeburn  1609:         $breadcrumb_text{'search'} = 'Create/modify a user';
1.422     raeburn  1610:         $breadcrumb_text{'userpicked'} = 'Select a user';
                   1611:         $breadcrumb_text{'modify'} = 'Set user role';
1.213     raeburn  1612:     }
                   1613:     return %breadcrumb_text;
                   1614: }
                   1615: 
                   1616: sub date_sections_select {
1.375     raeburn  1617:     my ($context,$newuser,$formname,$permission,$crstype,$ccuname,$ccdomain,
                   1618:         $showcredits) = @_;
                   1619:     my $credits;
                   1620:     if ($showcredits) {
                   1621:         my $defaultcredits = &Apache::lonuserutils::get_defaultcredits();
                   1622:         $credits = &get_user_credits($ccuname,$ccdomain,$defaultcredits);
                   1623:         if ($credits eq '') {
                   1624:             $credits = $defaultcredits;
                   1625:         }
                   1626:     }
1.213     raeburn  1627:     my $cid = $env{'request.course.id'};
                   1628:     my ($cnum,$cdom) = &Apache::lonuserutils::get_course_identity($cid);
                   1629:     my $date_table = '<h3>'.&mt('Starting and Ending Dates').'</h3>'."\n".
                   1630:         &Apache::lonuserutils::date_setting_table(undef,undef,$context,
                   1631:                                                   undef,$formname,$permission);
                   1632:     my $rowtitle = 'Section';
1.375     raeburn  1633:     my $secbox = '<h3>'.&mt('Section and Credits').'</h3>'."\n".
1.213     raeburn  1634:         &Apache::lonuserutils::section_picker($cdom,$cnum,'st',$rowtitle,
1.375     raeburn  1635:                                               $permission,$context,'',$crstype,
                   1636:                                               $showcredits,$credits);
1.213     raeburn  1637:     my $output = $date_table.$secbox;
                   1638:     return $output;
                   1639: }
                   1640: 
1.216     raeburn  1641: sub validation_javascript {
1.375     raeburn  1642:     my ($context,$ccdomain,$pjump_def,$crstype,$groupslist,$newuser,$formname,
1.216     raeburn  1643:         $loaditem) = @_;
                   1644:     my $dc_setcourse_code = '';
                   1645:     my $nondc_setsection_code = '';
                   1646:     if ($context eq 'domain') {
                   1647:         my $dcdom = $env{'request.role.domain'};
                   1648:         $loaditem->{'onload'} = "document.cu.coursedesc.value='';";
1.227     raeburn  1649:         $dc_setcourse_code = 
                   1650:             &Apache::lonuserutils::dc_setcourse_js('cu','singleuser',$context);
1.216     raeburn  1651:     } else {
1.227     raeburn  1652:         my $checkauth; 
                   1653:         if (($newuser) || (&Apache::lonnet::allowed('mau',$ccdomain))) {
                   1654:             $checkauth = 1;
                   1655:         }
                   1656:         if ($context eq 'course') {
                   1657:             $nondc_setsection_code =
                   1658:                 &Apache::lonuserutils::setsections_javascript($formname,$groupslist,
1.375     raeburn  1659:                                                               undef,$checkauth,
                   1660:                                                               $crstype);
1.227     raeburn  1661:         }
                   1662:         if ($checkauth) {
                   1663:             $nondc_setsection_code .= 
                   1664:                 &Apache::lonuserutils::verify_authen($formname,$context);
                   1665:         }
1.216     raeburn  1666:     }
                   1667:     my $js = &user_modification_js($pjump_def,$dc_setcourse_code,
                   1668:                                    $nondc_setsection_code,$groupslist);
                   1669:     my ($jsback,$elements) = &crumb_utilities();
                   1670:     $js .= "\n".
1.301     bisitz   1671:            '<script type="text/javascript">'."\n".
                   1672:            '// <![CDATA['."\n".
                   1673:            $jsback."\n".
                   1674:            '// ]]>'."\n".
                   1675:            '</script>'."\n";
1.216     raeburn  1676:     return $js;
                   1677: }
                   1678: 
1.217     raeburn  1679: sub display_existing_roles {
1.375     raeburn  1680:     my ($r,$ccuname,$ccdomain,$inccourses,$context,$roledom,$crstype,
1.418     raeburn  1681:         $showcredits,$statuses) = @_;
1.329     raeburn  1682:     my $now=time;
1.418     raeburn  1683:     my $showall = 1;
                   1684:     my ($showexpired,$showactive);
                   1685:     if ((ref($statuses) eq 'ARRAY') && (@{$statuses} > 0)) {
                   1686:         $showall = 0;
                   1687:         if (grep(/^expired$/,@{$statuses})) {
                   1688:             $showexpired = 1;
                   1689:         }
                   1690:         if (grep(/^active$/,@{$statuses})) {
                   1691:             $showactive = 1;
                   1692:         }
                   1693:         if ($showexpired && $showactive) {
                   1694:             $showall = 1;
                   1695:         }
                   1696:     }
1.329     raeburn  1697:     my %lt=&Apache::lonlocal::texthash(
1.217     raeburn  1698:                     'rer'  => "Existing Roles",
                   1699:                     'rev'  => "Revoke",
                   1700:                     'del'  => "Delete",
                   1701:                     'ren'  => "Re-Enable",
                   1702:                     'rol'  => "Role",
                   1703:                     'ext'  => "Extent",
1.375     raeburn  1704:                     'crd'  => "Credits",
1.217     raeburn  1705:                     'sta'  => "Start",
                   1706:                     'end'  => "End",
                   1707:                                        );
1.329     raeburn  1708:     my (%rolesdump,%roletext,%sortrole,%roleclass,%rolepriv);
                   1709:     if ($context eq 'course' || $context eq 'author') {
                   1710:         my @roles = &Apache::lonuserutils::roles_by_context($context,1,$crstype);
                   1711:         my %roleshash = 
                   1712:             &Apache::lonnet::get_my_roles($ccuname,$ccdomain,'userroles',
                   1713:                               ['active','previous','future'],\@roles,$roledom,1);
                   1714:         foreach my $key (keys(%roleshash)) {
                   1715:             my ($start,$end) = split(':',$roleshash{$key});
                   1716:             next if ($start eq '-1' || $end eq '-1');
                   1717:             my ($rnum,$rdom,$role,$sec) = split(':',$key);
                   1718:             if ($context eq 'course') {
                   1719:                 next unless (($rnum eq $env{'course.'.$env{'request.course.id'}.'.num'})
                   1720:                              && ($rdom eq $env{'course.'.$env{'request.course.id'}.'.domain'}));
                   1721:             } elsif ($context eq 'author') {
                   1722:                 next unless (($rnum eq $env{'user.name'}) && ($rdom eq $env{'request.role.domain'}));
                   1723:             }
                   1724:             my ($newkey,$newvalue,$newrole);
                   1725:             $newkey = '/'.$rdom.'/'.$rnum;
                   1726:             if ($sec ne '') {
                   1727:                 $newkey .= '/'.$sec;
                   1728:             }
                   1729:             $newvalue = $role;
                   1730:             if ($role =~ /^cr/) {
                   1731:                 $newrole = 'cr';
                   1732:             } else {
                   1733:                 $newrole = $role;
                   1734:             }
                   1735:             $newkey .= '_'.$newrole;
                   1736:             if ($start ne '' && $end ne '') {
                   1737:                 $newvalue .= '_'.$end.'_'.$start;
1.335     raeburn  1738:             } elsif ($end ne '') {
                   1739:                 $newvalue .= '_'.$end;
1.329     raeburn  1740:             }
                   1741:             $rolesdump{$newkey} = $newvalue;
                   1742:         }
                   1743:     } else {
1.360     raeburn  1744:         %rolesdump=&Apache::lonnet::dump('roles',$ccdomain,$ccuname);
1.329     raeburn  1745:     }
                   1746:     # Build up table of user roles to allow revocation and re-enabling of roles.
                   1747:     my ($tmp) = keys(%rolesdump);
                   1748:     return if ($tmp =~ /^(con_lost|error)/i);
                   1749:     foreach my $area (sort { my $a1=join('_',(split('_',$a))[1,0]);
                   1750:                                 my $b1=join('_',(split('_',$b))[1,0]);
                   1751:                                 return $a1 cmp $b1;
                   1752:                             } keys(%rolesdump)) {
                   1753:         next if ($area =~ /^rolesdef/);
                   1754:         my $envkey=$area;
                   1755:         my $role = $rolesdump{$area};
                   1756:         my $thisrole=$area;
                   1757:         $area =~ s/\_\w\w$//;
                   1758:         my ($role_code,$role_end_time,$role_start_time) =
                   1759:             split(/_/,$role);
1.418     raeburn  1760:         my $active=1;
                   1761:         $active=0 if (($role_end_time) && ($now>$role_end_time));
                   1762:         if ($active) {
                   1763:             next unless($showall || $showactive);
                   1764:         } else {
1.430     raeburn  1765:             next unless($showall || $showexpired);
1.418     raeburn  1766:         }
1.217     raeburn  1767: # Is this a custom role? Get role owner and title.
1.329     raeburn  1768:         my ($croleudom,$croleuname,$croletitle)=
                   1769:             ($role_code=~m{^cr/($match_domain)/($match_username)/(\w+)$});
                   1770:         my $allowed=0;
                   1771:         my $delallowed=0;
                   1772:         my $sortkey=$role_code;
                   1773:         my $class='Unknown';
1.375     raeburn  1774:         my $credits='';
1.418     raeburn  1775:         my $csec;
1.421     raeburn  1776:         if ($area =~ m{^/($match_domain)/($match_courseid)}) {
1.329     raeburn  1777:             $class='Course';
                   1778:             my ($coursedom,$coursedir) = ($1,$2);
                   1779:             my $cid = $1.'_'.$2;
                   1780:             # $1.'_'.$2 is the course id (eg. 103_12345abcef103l3).
1.421     raeburn  1781:             next if ($envkey =~ m{^/$match_domain/$match_courseid/[A-Za-z0-9]+_gr$});
1.329     raeburn  1782:             my %coursedata=
                   1783:                 &Apache::lonnet::coursedescription($cid);
                   1784:             if ($coursedir =~ /^$match_community$/) {
                   1785:                 $class='Community';
                   1786:             }
                   1787:             $sortkey.="\0$coursedom";
                   1788:             my $carea;
                   1789:             if (defined($coursedata{'description'})) {
                   1790:                 $carea=$coursedata{'description'}.
                   1791:                     '<br />'.&mt('Domain').': '.$coursedom.('&nbsp;'x8).
                   1792:     &Apache::loncommon::syllabuswrapper(&mt('Syllabus'),$coursedir,$coursedom);
                   1793:                 $sortkey.="\0".$coursedata{'description'};
                   1794:             } else {
                   1795:                 if ($class eq 'Community') {
                   1796:                     $carea=&mt('Unavailable community').': '.$area;
                   1797:                     $sortkey.="\0".&mt('Unavailable community').': '.$area;
1.217     raeburn  1798:                 } else {
                   1799:                     $carea=&mt('Unavailable course').': '.$area;
                   1800:                     $sortkey.="\0".&mt('Unavailable course').': '.$area;
                   1801:                 }
1.329     raeburn  1802:             }
                   1803:             $sortkey.="\0$coursedir";
                   1804:             $inccourses->{$cid}=1;
1.375     raeburn  1805:             if (($showcredits) && ($class eq 'Course') && ($role_code eq 'st')) {
                   1806:                 my $defaultcredits = $coursedata{'internal.defaultcredits'};
                   1807:                 $credits =
                   1808:                     &get_user_credits($ccuname,$ccdomain,$defaultcredits,
                   1809:                                       $coursedom,$coursedir);
                   1810:                 if ($credits eq '') {
                   1811:                     $credits = $defaultcredits;
                   1812:                 }
                   1813:             }
1.329     raeburn  1814:             if ((&Apache::lonnet::allowed('c'.$role_code,$coursedom.'/'.$coursedir)) ||
                   1815:                 (&Apache::lonnet::allowed('c'.$role_code,$ccdomain))) {
                   1816:                 $allowed=1;
                   1817:             }
                   1818:             unless ($allowed) {
1.365     raeburn  1819:                 my $isowner = &Apache::lonuserutils::is_courseowner($cid,$coursedata{'internal.courseowner'});
1.329     raeburn  1820:                 if ($isowner) {
                   1821:                     if (($role_code eq 'co') && ($class eq 'Community')) {
                   1822:                         $allowed = 1;
                   1823:                     } elsif (($role_code eq 'cc') && ($class eq 'Course')) {
                   1824:                         $allowed = 1;
                   1825:                     }
1.217     raeburn  1826:                 }
1.329     raeburn  1827:             } 
                   1828:             if ((&Apache::lonnet::allowed('dro',$coursedom)) ||
                   1829:                 (&Apache::lonnet::allowed('dro',$ccdomain))) {
                   1830:                 $delallowed=1;
                   1831:             }
1.217     raeburn  1832: # - custom role. Needs more info, too
1.329     raeburn  1833:             if ($croletitle) {
                   1834:                 if (&Apache::lonnet::allowed('ccr',$coursedom.'/'.$coursedir)) {
                   1835:                     $allowed=1;
                   1836:                     $thisrole.='.'.$role_code;
1.217     raeburn  1837:                 }
1.329     raeburn  1838:             }
1.418     raeburn  1839:             if ($area=~m{^/($match_domain/$match_courseid/(\w+))}) {
                   1840:                 $csec = $2;
                   1841:                 $carea.='<br />'.&mt('Section: [_1]',$csec);
                   1842:                 $sortkey.="\0$csec";
1.329     raeburn  1843:                 if (!$allowed) {
1.418     raeburn  1844:                     if ($env{'request.course.sec'} eq $csec) {
                   1845:                         if (&Apache::lonnet::allowed('c'.$role_code,$1)) {
1.329     raeburn  1846:                             $allowed = 1;
1.217     raeburn  1847:                         }
                   1848:                     }
                   1849:                 }
1.329     raeburn  1850:             }
                   1851:             $area=$carea;
                   1852:         } else {
                   1853:             $sortkey.="\0".$area;
                   1854:             # Determine if current user is able to revoke privileges
                   1855:             if ($area=~m{^/($match_domain)/}) {
                   1856:                 if ((&Apache::lonnet::allowed('c'.$role_code,$1)) ||
                   1857:                    (&Apache::lonnet::allowed('c'.$role_code,$ccdomain))) {
                   1858:                    $allowed=1;
1.217     raeburn  1859:                 }
1.329     raeburn  1860:                 if (((&Apache::lonnet::allowed('dro',$1))  ||
                   1861:                     (&Apache::lonnet::allowed('dro',$ccdomain))) &&
                   1862:                     ($role_code ne 'dc')) {
                   1863:                     $delallowed=1;
1.217     raeburn  1864:                 }
1.329     raeburn  1865:             } else {
                   1866:                 if (&Apache::lonnet::allowed('c'.$role_code,'/')) {
1.217     raeburn  1867:                     $allowed=1;
                   1868:                 }
                   1869:             }
1.363     raeburn  1870:             if ($role_code eq 'ca' || $role_code eq 'au' || $role_code eq 'aa') {
1.377     raeburn  1871:                 $class='Authoring Space';
1.329     raeburn  1872:             } elsif ($role_code eq 'su') {
                   1873:                 $class='System';
1.217     raeburn  1874:             } else {
1.329     raeburn  1875:                 $class='Domain';
1.217     raeburn  1876:             }
1.329     raeburn  1877:         }
                   1878:         if (($role_code eq 'ca') || ($role_code eq 'aa')) {
                   1879:             $area=~m{/($match_domain)/($match_username)};
                   1880:             if (&Apache::lonuserutils::authorpriv($2,$1)) {
                   1881:                 $allowed=1;
1.217     raeburn  1882:             } else {
1.329     raeburn  1883:                 $allowed=0;
1.217     raeburn  1884:             }
1.329     raeburn  1885:         }
                   1886:         my $row = '';
1.418     raeburn  1887:         if ($showall) {
                   1888:             $row.= '<td>';
                   1889:             if (($active) && ($allowed)) {
                   1890:                 $row.= '<input type="checkbox" name="rev:'.$thisrole.'" />';
                   1891:             } else {
                   1892:                 if ($active) {
                   1893:                     $row.='&nbsp;';
                   1894:                 } else {
                   1895:                     $row.=&mt('expired or revoked');
                   1896:                 }
                   1897:             }
                   1898:             $row.='</td><td>';
                   1899:             if ($allowed && !$active) {
                   1900:                 $row.= '<input type="checkbox" name="ren:'.$thisrole.'" />';
                   1901:             } else {
                   1902:                 $row.='&nbsp;';
                   1903:             }
                   1904:             $row.='</td><td>';
                   1905:             if ($delallowed) {
                   1906:                 $row.= '<input type="checkbox" name="del:'.$thisrole.'" />';
1.217     raeburn  1907:             } else {
1.418     raeburn  1908:                 $row.='&nbsp;';
1.217     raeburn  1909:             }
1.430     raeburn  1910:             $row.= '</td>';
1.329     raeburn  1911:         }
                   1912:         my $plaintext='';
                   1913:         if (!$croletitle) {
1.375     raeburn  1914:             $plaintext=&Apache::lonnet::plaintext($role_code,$class);
                   1915:             if (($showcredits) && ($credits ne '')) {
                   1916:                 $plaintext .= '<br/ ><span class="LC_nobreak">'.
                   1917:                               '<span class="LC_fontsize_small">'.
                   1918:                               &mt('Credits: [_1]',$credits).
                   1919:                               '</span></span>';
                   1920:             }
1.329     raeburn  1921:         } else {
                   1922:             $plaintext=
1.395     bisitz   1923:                 &mt('Custom role [_1][_2]defined by [_3]',
1.346     bisitz   1924:                         '"'.$croletitle.'"',
                   1925:                         '<br />',
                   1926:                         $croleuname.':'.$croleudom);
1.329     raeburn  1927:         }
1.418     raeburn  1928:         $row.= '<td>'.$plaintext.'</td>'.
                   1929:                '<td>'.$area.'</td>'.
                   1930:                '<td>'.($role_start_time?&Apache::lonlocal::locallocaltime($role_start_time)
                   1931:                                             : '&nbsp;' ).'</td>'.
                   1932:                '<td>'.($role_end_time  ?&Apache::lonlocal::locallocaltime($role_end_time)
                   1933:                                             : '&nbsp;' ).'</td>';
1.329     raeburn  1934:         $sortrole{$sortkey}=$envkey;
                   1935:         $roletext{$envkey}=$row;
                   1936:         $roleclass{$envkey}=$class;
1.418     raeburn  1937:         if ($allowed) {
                   1938:             $rolepriv{$envkey}='edit';
                   1939:         } else {
                   1940:             if ($context eq 'domain') {
1.420     raeburn  1941:                 if ((&Apache::lonnet::allowed('vur',$ccdomain)) &&
1.421     raeburn  1942:                     ($envkey=~m{^/$ccdomain/})) {
1.418     raeburn  1943:                     $rolepriv{$envkey}='view';
                   1944:                 }
                   1945:             } elsif ($context eq 'course') {
                   1946:                 if ((&Apache::lonnet::allowed('vcl',$env{'request.course.id'})) ||
                   1947:                     ($env{'request.course.sec'} && ($env{'request.course.sec'} eq $csec) &&
                   1948:                      &Apache::lonnet::allowed('vcl',$env{'request.course.id'}.'/'.$env{'request.course.sec'}))) {
                   1949:                     $rolepriv{$envkey}='view';
                   1950:                 }
                   1951:             }
                   1952:         }
1.329     raeburn  1953:     } # end of foreach        (table building loop)
                   1954: 
                   1955:     my $rolesdisplay = 0;
                   1956:     my %output = ();
1.377     raeburn  1957:     foreach my $type ('Authoring Space','Course','Community','Domain','System','Unknown') {
1.329     raeburn  1958:         $output{$type} = '';
                   1959:         foreach my $which (sort {uc($a) cmp uc($b)} (keys(%sortrole))) {
                   1960:             if ( ($roleclass{$sortrole{$which}} =~ /^\Q$type\E/ ) && ($rolepriv{$sortrole{$which}}) ) {
                   1961:                  $output{$type}.=
                   1962:                       &Apache::loncommon::start_data_table_row().
                   1963:                       $roletext{$sortrole{$which}}.
                   1964:                       &Apache::loncommon::end_data_table_row();
1.217     raeburn  1965:             }
1.329     raeburn  1966:         }
                   1967:         unless($output{$type} eq '') {
                   1968:             $output{$type} = '<tr class="LC_info_row">'.
                   1969:                       "<td align='center' colspan='7'>".&mt($type)."</td></tr>".
                   1970:                       $output{$type};
                   1971:             $rolesdisplay = 1;
                   1972:         }
                   1973:     }
                   1974:     if ($rolesdisplay == 1) {
                   1975:         my $contextrole='';
                   1976:         if ($env{'request.course.id'}) {
                   1977:             if (&Apache::loncommon::course_type() eq 'Community') {
                   1978:                 $contextrole = &mt('Existing Roles in this Community');
1.290     bisitz   1979:             } else {
1.329     raeburn  1980:                 $contextrole = &mt('Existing Roles in this Course');
1.290     bisitz   1981:             }
1.329     raeburn  1982:         } elsif ($env{'request.role'} =~ /^au\./) {
1.377     raeburn  1983:             $contextrole = &mt('Existing Co-Author Roles in your Authoring Space');
1.329     raeburn  1984:         } else {
1.418     raeburn  1985:             if ($showall) {
                   1986:                 $contextrole = &mt('Existing Roles in this Domain');
                   1987:             } elsif ($showactive) {
                   1988:                 $contextrole = &mt('Unexpired Roles in this Domain');
                   1989:             } elsif ($showexpired) {
                   1990:                 $contextrole = &mt('Expired or Revoked Roles in this Domain');
                   1991:             }
1.329     raeburn  1992:         }
1.393     raeburn  1993:         $r->print('<div class="LC_left_float">'.
1.375     raeburn  1994: '<fieldset><legend>'.$contextrole.'</legend>'.
1.217     raeburn  1995: &Apache::loncommon::start_data_table("LC_createuser").
1.418     raeburn  1996: &Apache::loncommon::start_data_table_header_row());
                   1997:         if ($showall) {
                   1998:             $r->print(
1.419     raeburn  1999: '<th>'.$lt{'rev'}.'</th><th>'.$lt{'ren'}.'</th><th>'.$lt{'del'}.'</th>'
1.418     raeburn  2000:             );
                   2001:         } elsif ($showexpired) {
                   2002:             $r->print('<th>'.$lt{'rev'}.'</th>');
                   2003:         }
                   2004:         $r->print(
1.419     raeburn  2005: '<th>'.$lt{'rol'}.'</th><th>'.$lt{'ext'}.'</th>'.
                   2006: '<th>'.$lt{'sta'}.'</th><th>'.$lt{'end'}.'</th>'.
1.217     raeburn  2007: &Apache::loncommon::end_data_table_header_row());
1.377     raeburn  2008:         foreach my $type ('Authoring Space','Course','Community','Domain','System','Unknown') {
1.329     raeburn  2009:             if ($output{$type}) {
                   2010:                 $r->print($output{$type}."\n");
1.217     raeburn  2011:             }
                   2012:         }
1.375     raeburn  2013:         $r->print(&Apache::loncommon::end_data_table().
                   2014:                   '</fieldset></div>');
1.329     raeburn  2015:     }
1.217     raeburn  2016:     return;
                   2017: }
                   2018: 
1.218     raeburn  2019: sub new_coauthor_roles {
                   2020:     my ($r,$ccuname,$ccdomain) = @_;
                   2021:     my $addrolesdisplay = 0;
                   2022:     #
                   2023:     # Co-Author
                   2024:     #
                   2025:     if (&Apache::lonuserutils::authorpriv($env{'user.name'},
                   2026:                                           $env{'request.role.domain'}) &&
                   2027:         ($env{'user.name'} ne $ccuname || $env{'user.domain'} ne $ccdomain)) {
                   2028:         # No sense in assigning co-author role to yourself
                   2029:         $addrolesdisplay = 1;
                   2030:         my $cuname=$env{'user.name'};
                   2031:         my $cudom=$env{'request.role.domain'};
                   2032:         my %lt=&Apache::lonlocal::texthash(
1.377     raeburn  2033:                     'cs'   => "Authoring Space",
1.218     raeburn  2034:                     'act'  => "Activate",
                   2035:                     'rol'  => "Role",
                   2036:                     'ext'  => "Extent",
                   2037:                     'sta'  => "Start",
                   2038:                     'end'  => "End",
                   2039:                     'cau'  => "Co-Author",
                   2040:                     'caa'  => "Assistant Co-Author",
                   2041:                     'ssd'  => "Set Start Date",
                   2042:                     'sed'  => "Set End Date"
                   2043:                                        );
                   2044:         $r->print('<h4>'.$lt{'cs'}.'</h4>'."\n".
                   2045:                   &Apache::loncommon::start_data_table()."\n".
                   2046:                   &Apache::loncommon::start_data_table_header_row()."\n".
                   2047:                   '<th>'.$lt{'act'}.'</th><th>'.$lt{'rol'}.'</th>'.
                   2048:                   '<th>'.$lt{'ext'}.'</th><th>'.$lt{'sta'}.'</th>'.
                   2049:                   '<th>'.$lt{'end'}.'</th>'."\n".
                   2050:                   &Apache::loncommon::end_data_table_header_row()."\n".
                   2051:                   &Apache::loncommon::start_data_table_row().'
                   2052:            <td>
1.291     bisitz   2053:             <input type="checkbox" name="act_'.$cudom.'_'.$cuname.'_ca" />
1.218     raeburn  2054:            </td>
                   2055:            <td>'.$lt{'cau'}.'</td>
                   2056:            <td>'.$cudom.'_'.$cuname.'</td>
                   2057:            <td><input type="hidden" name="start_'.$cudom.'_'.$cuname.'_ca" value="" />
                   2058:              <a href=
                   2059: "javascript:pjump('."'date_start','Start Date Co-Author',document.cu.start_$cudom\_$cuname\_ca.value,'start_$cudom\_$cuname\_ca','cu.pres','dateset'".')">'.$lt{'ssd'}.'</a></td>
                   2060: <td><input type="hidden" name="end_'.$cudom.'_'.$cuname.'_ca" value="" />
                   2061: <a href=
                   2062: "javascript:pjump('."'date_end','End Date Co-Author',document.cu.end_$cudom\_$cuname\_ca.value,'end_$cudom\_$cuname\_ca','cu.pres','dateset'".')">'.$lt{'sed'}.'</a></td>'."\n".
                   2063:               &Apache::loncommon::end_data_table_row()."\n".
                   2064:               &Apache::loncommon::start_data_table_row()."\n".
1.291     bisitz   2065: '<td><input type="checkbox" name="act_'.$cudom.'_'.$cuname.'_aa" /></td>
1.218     raeburn  2066: <td>'.$lt{'caa'}.'</td>
                   2067: <td>'.$cudom.'_'.$cuname.'</td>
                   2068: <td><input type="hidden" name="start_'.$cudom.'_'.$cuname.'_aa" value="" />
                   2069: <a href=
                   2070: "javascript:pjump('."'date_start','Start Date Assistant Co-Author',document.cu.start_$cudom\_$cuname\_aa.value,'start_$cudom\_$cuname\_aa','cu.pres','dateset'".')">'.$lt{'ssd'}.'</a></td>
                   2071: <td><input type="hidden" name="end_'.$cudom.'_'.$cuname.'_aa" value="" />
                   2072: <a href=
                   2073: "javascript:pjump('."'date_end','End Date Assistant Co-Author',document.cu.end_$cudom\_$cuname\_aa.value,'end_$cudom\_$cuname\_aa','cu.pres','dateset'".')">'.$lt{'sed'}.'</a></td>'."\n".
                   2074:              &Apache::loncommon::end_data_table_row()."\n".
                   2075:              &Apache::loncommon::end_data_table());
                   2076:     } elsif ($env{'request.role'} =~ /^au\./) {
                   2077:         if (!(&Apache::lonuserutils::authorpriv($env{'user.name'},
                   2078:                                                 $env{'request.role.domain'}))) {
                   2079:             $r->print('<span class="LC_error">'.
                   2080:                       &mt('You do not have privileges to assign co-author roles.').
                   2081:                       '</span>');
                   2082:         } elsif (($env{'user.name'} eq $ccuname) &&
                   2083:              ($env{'user.domain'} eq $ccdomain)) {
1.377     raeburn  2084:             $r->print(&mt('Assigning yourself a co-author or assistant co-author role in your own author area in Authoring Space is not permitted'));
1.218     raeburn  2085:         }
                   2086:     }
                   2087:     return $addrolesdisplay;;
                   2088: }
                   2089: 
                   2090: sub new_domain_roles {
1.357     raeburn  2091:     my ($r,$ccdomain) = @_;
1.218     raeburn  2092:     my $addrolesdisplay = 0;
                   2093:     #
                   2094:     # Domain level
                   2095:     #
                   2096:     my $num_domain_level = 0;
                   2097:     my $domaintext =
                   2098:     '<h4>'.&mt('Domain Level').'</h4>'.
                   2099:     &Apache::loncommon::start_data_table().
                   2100:     &Apache::loncommon::start_data_table_header_row().
                   2101:     '<th>'.&mt('Activate').'</th><th>'.&mt('Role').'</th><th>'.
                   2102:     &mt('Extent').'</th>'.
                   2103:     '<th>'.&mt('Start').'</th><th>'.&mt('End').'</th>'.
                   2104:     &Apache::loncommon::end_data_table_header_row();
1.312     raeburn  2105:     my @allroles = &Apache::lonuserutils::roles_by_context('domain');
1.218     raeburn  2106:     foreach my $thisdomain (sort(&Apache::lonnet::all_domains())) {
1.312     raeburn  2107:         foreach my $role (@allroles) {
                   2108:             next if ($role eq 'ad');
1.357     raeburn  2109:             next if (($role eq 'au') && ($ccdomain ne $thisdomain));
1.218     raeburn  2110:             if (&Apache::lonnet::allowed('c'.$role,$thisdomain)) {
                   2111:                my $plrole=&Apache::lonnet::plaintext($role);
                   2112:                my %lt=&Apache::lonlocal::texthash(
                   2113:                     'ssd'  => "Set Start Date",
                   2114:                     'sed'  => "Set End Date"
                   2115:                                        );
                   2116:                $num_domain_level ++;
                   2117:                $domaintext .=
                   2118: &Apache::loncommon::start_data_table_row().
1.291     bisitz   2119: '<td><input type="checkbox" name="act_'.$thisdomain.'_'.$role.'" /></td>
1.218     raeburn  2120: <td>'.$plrole.'</td>
                   2121: <td>'.$thisdomain.'</td>
                   2122: <td><input type="hidden" name="start_'.$thisdomain.'_'.$role.'" value="" />
                   2123: <a href=
                   2124: "javascript:pjump('."'date_start','Start Date $plrole',document.cu.start_$thisdomain\_$role.value,'start_$thisdomain\_$role','cu.pres','dateset'".')">'.$lt{'ssd'}.'</a></td>
                   2125: <td><input type="hidden" name="end_'.$thisdomain.'_'.$role.'" value="" />
                   2126: <a href=
                   2127: "javascript:pjump('."'date_end','End Date $plrole',document.cu.end_$thisdomain\_$role.value,'end_$thisdomain\_$role','cu.pres','dateset'".')">'.$lt{'sed'}.'</a></td>'.
                   2128: &Apache::loncommon::end_data_table_row();
                   2129:             }
                   2130:         }
                   2131:     }
                   2132:     $domaintext.= &Apache::loncommon::end_data_table();
                   2133:     if ($num_domain_level > 0) {
                   2134:         $r->print($domaintext);
                   2135:         $addrolesdisplay = 1;
                   2136:     }
                   2137:     return $addrolesdisplay;
                   2138: }
                   2139: 
1.188     raeburn  2140: sub user_authentication {
1.227     raeburn  2141:     my ($ccuname,$ccdomain,$formname) = @_;
1.188     raeburn  2142:     my $currentauth=&Apache::lonnet::queryauthenticate($ccuname,$ccdomain);
1.227     raeburn  2143:     my $outcome;
1.418     raeburn  2144:     my %lt=&Apache::lonlocal::texthash(
                   2145:                    'err'   => "ERROR",
                   2146:                    'uuas'  => "This user has an unrecognized authentication scheme",
                   2147:                    'adcs'  => "Please alert a domain coordinator of this situation",
                   2148:                    'sldb'  => "Please specify login data below",
                   2149:                    'ld'    => "Login Data"
                   2150:     );
1.188     raeburn  2151:     # Check for a bad authentication type
                   2152:     if ($currentauth !~ /^(krb4|krb5|unix|internal|localauth):/) {
                   2153:         # bad authentication scheme
                   2154:         if (&Apache::lonnet::allowed('mau',$ccdomain)) {
1.227     raeburn  2155:             &initialize_authen_forms($ccdomain,$formname);
                   2156: 
1.190     raeburn  2157:             my $choices = &Apache::lonuserutils::set_login($ccdomain,$authformkrb,$authformint,$authformloc);
1.188     raeburn  2158:             $outcome = <<ENDBADAUTH;
                   2159: <script type="text/javascript" language="Javascript">
1.301     bisitz   2160: // <![CDATA[
1.188     raeburn  2161: $loginscript
1.301     bisitz   2162: // ]]>
1.188     raeburn  2163: </script>
                   2164: <span class="LC_error">$lt{'err'}:
                   2165: $lt{'uuas'} ($currentauth). $lt{'sldb'}.</span>
                   2166: <h3>$lt{'ld'}</h3>
                   2167: $choices
                   2168: ENDBADAUTH
                   2169:         } else {
                   2170:             # This user is not allowed to modify the user's
                   2171:             # authentication scheme, so just notify them of the problem
                   2172:             $outcome = <<ENDBADAUTH;
                   2173: <span class="LC_error"> $lt{'err'}: 
                   2174: $lt{'uuas'} ($currentauth). $lt{'adcs'}.
                   2175: </span>
                   2176: ENDBADAUTH
                   2177:         }
                   2178:     } else { # Authentication type is valid
1.418     raeburn  2179:         
1.227     raeburn  2180:         &initialize_authen_forms($ccdomain,$formname,$currentauth,'modifyuser');
1.205     raeburn  2181:         my ($authformcurrent,$can_modify,@authform_others) =
1.188     raeburn  2182:             &modify_login_block($ccdomain,$currentauth);
                   2183:         if (&Apache::lonnet::allowed('mau',$ccdomain)) {
                   2184:             # Current user has login modification privileges
                   2185:             $outcome =
                   2186:                        '<script type="text/javascript" language="Javascript">'."\n".
1.301     bisitz   2187:                        '// <![CDATA['."\n".
1.188     raeburn  2188:                        $loginscript."\n".
1.301     bisitz   2189:                        '// ]]>'."\n".
1.188     raeburn  2190:                        '</script>'."\n".
                   2191:                        '<h3>'.$lt{'ld'}.'</h3>'.
                   2192:                        &Apache::loncommon::start_data_table().
1.205     raeburn  2193:                        &Apache::loncommon::start_data_table_row().
1.188     raeburn  2194:                        '<td>'.$authformnop;
1.418     raeburn  2195:             if (($can_modify) && (&Apache::lonnet::allowed('mau',$ccdomain))) {
1.188     raeburn  2196:                 $outcome .= '</td>'."\n".
                   2197:                             &Apache::loncommon::end_data_table_row().
                   2198:                             &Apache::loncommon::start_data_table_row().
                   2199:                             '<td>'.$authformcurrent.'</td>'.
                   2200:                             &Apache::loncommon::end_data_table_row()."\n";
                   2201:             } else {
1.200     raeburn  2202:                 $outcome .= '&nbsp;('.$authformcurrent.')</td>'.
                   2203:                             &Apache::loncommon::end_data_table_row()."\n";
1.188     raeburn  2204:             }
1.418     raeburn  2205:             if (&Apache::lonnet::allowed('mau',$ccdomain)) {
                   2206:                 foreach my $item (@authform_others) { 
                   2207:                     $outcome .= &Apache::loncommon::start_data_table_row().
                   2208:                                 '<td>'.$item.'</td>'.
                   2209:                                 &Apache::loncommon::end_data_table_row()."\n";
                   2210:                 }
1.188     raeburn  2211:             }
1.205     raeburn  2212:             $outcome .= &Apache::loncommon::end_data_table();
1.188     raeburn  2213:         } else {
1.418     raeburn  2214:             if (&Apache::lonnet::allowed('udp',$ccdomain)) {
                   2215:                 # Current user has rights to view domain preferences for user's domain
                   2216:                 my $result;
                   2217:                 if ($currentauth =~ /^krb(4|5):([^:]*)$/) {
                   2218:                     my ($krbver,$krbrealm) = ($1,$2);
                   2219:                     if ($krbrealm eq '') {
                   2220:                         $result = &mt('Currently Kerberos authenticated, Version [_1].',$krbver);
                   2221:                     } else {
                   2222:                         $result = &mt('Currently Kerberos authenticated with domain [_1] Version [_2].',
1.426     raeburn  2223:                                       $krbrealm,$krbver);
1.418     raeburn  2224:                     }
                   2225:                 } elsif ($currentauth =~ /^internal:/) {
                   2226:                     $result = &mt('Currently internally authenticated.');
                   2227:                 } elsif ($currentauth =~ /^localauth:/) {
                   2228:                     $result = &mt('Currently using local (institutional) authentication.');
                   2229:                 } elsif ($currentauth =~ /^unix:/) {
                   2230:                     $result = &mt('Currently Filesystem Authenticated.');
                   2231:                 }
                   2232:                 $outcome = '<h3>'.$lt{'ld'}.'</h3>'.
                   2233:                            &Apache::loncommon::start_data_table().
                   2234:                            &Apache::loncommon::start_data_table_row().
                   2235:                            '<td>'.$result.'</td>'.
                   2236:                            &Apache::loncommon::end_data_table_row()."\n".
                   2237:                            &Apache::loncommon::end_data_table();
                   2238:             } elsif (&Apache::lonnet::allowed('mau',$env{'request.role.domain'})) {
1.188     raeburn  2239:                 my %lt=&Apache::lonlocal::texthash(
                   2240:                            'ccld'  => "Change Current Login Data",
                   2241:                            'yodo'  => "You do not have privileges to modify the authentication configuration for this user.",
                   2242:                            'ifch'  => "If a change is required, contact a domain coordinator for the domain",
                   2243:                 );
                   2244:                 $outcome .= <<ENDNOPRIV;
                   2245: <h3>$lt{'ccld'}</h3>
                   2246: $lt{'yodo'} $lt{'ifch'}: $ccdomain
1.235     raeburn  2247: <input type="hidden" name="login" value="nochange" />
1.188     raeburn  2248: ENDNOPRIV
                   2249:             }
                   2250:         }
                   2251:     }  ## End of "check for bad authentication type" logic
                   2252:     return $outcome;
                   2253: }
                   2254: 
1.187     raeburn  2255: sub modify_login_block {
                   2256:     my ($dom,$currentauth) = @_;
                   2257:     my %domconfig = &Apache::lonnet::get_dom('configuration',['usercreation'],$dom);
                   2258:     my ($authnum,%can_assign) =
                   2259:         &Apache::loncommon::get_assignable_auth($dom);
1.205     raeburn  2260:     my ($authformcurrent,@authform_others,$show_override_msg);
1.187     raeburn  2261:     if ($currentauth=~/^krb(4|5):/) {
                   2262:         $authformcurrent=$authformkrb;
                   2263:         if ($can_assign{'int'}) {
1.205     raeburn  2264:             push(@authform_others,$authformint);
1.187     raeburn  2265:         }
                   2266:         if ($can_assign{'loc'}) {
1.205     raeburn  2267:             push(@authform_others,$authformloc);
1.187     raeburn  2268:         }
                   2269:         if (($can_assign{'krb4'}) || ($can_assign{'krb5'})) {
                   2270:             $show_override_msg = 1;
                   2271:         }
                   2272:     } elsif ($currentauth=~/^internal:/) {
                   2273:         $authformcurrent=$authformint;
                   2274:         if (($can_assign{'krb4'}) || ($can_assign{'krb5'})) {
1.205     raeburn  2275:             push(@authform_others,$authformkrb);
1.187     raeburn  2276:         }
                   2277:         if ($can_assign{'loc'}) {
1.205     raeburn  2278:             push(@authform_others,$authformloc);
1.187     raeburn  2279:         }
                   2280:         if ($can_assign{'int'}) {
                   2281:             $show_override_msg = 1;
                   2282:         }
                   2283:     } elsif ($currentauth=~/^unix:/) {
                   2284:         $authformcurrent=$authformfsys;
                   2285:         if (($can_assign{'krb4'}) || ($can_assign{'krb5'})) {
1.205     raeburn  2286:             push(@authform_others,$authformkrb);
1.187     raeburn  2287:         }
                   2288:         if ($can_assign{'int'}) {
1.205     raeburn  2289:             push(@authform_others,$authformint);
1.187     raeburn  2290:         }
                   2291:         if ($can_assign{'loc'}) {
1.205     raeburn  2292:             push(@authform_others,$authformloc);
1.187     raeburn  2293:         }
                   2294:         if ($can_assign{'fsys'}) {
                   2295:             $show_override_msg = 1;
                   2296:         }
                   2297:     } elsif ($currentauth=~/^localauth:/) {
                   2298:         $authformcurrent=$authformloc;
                   2299:         if (($can_assign{'krb4'}) || ($can_assign{'krb5'})) {
1.205     raeburn  2300:             push(@authform_others,$authformkrb);
1.187     raeburn  2301:         }
                   2302:         if ($can_assign{'int'}) {
1.205     raeburn  2303:             push(@authform_others,$authformint);
1.187     raeburn  2304:         }
                   2305:         if ($can_assign{'loc'}) {
                   2306:             $show_override_msg = 1;
                   2307:         }
                   2308:     }
                   2309:     if ($show_override_msg) {
1.205     raeburn  2310:         $authformcurrent = '<table><tr><td colspan="3">'.$authformcurrent.
                   2311:                            '</td></tr>'."\n".
                   2312:                            '<tr><td>&nbsp;&nbsp;&nbsp;</td>'.
                   2313:                            '<td><b>'.&mt('Currently in use').'</b></td>'.
                   2314:                            '<td align="right"><span class="LC_cusr_emph">'.
1.187     raeburn  2315:                             &mt('will override current values').
1.205     raeburn  2316:                             '</span></td></tr></table>';
1.187     raeburn  2317:     }
1.205     raeburn  2318:     return ($authformcurrent,$show_override_msg,@authform_others); 
1.187     raeburn  2319: }
                   2320: 
1.188     raeburn  2321: sub personal_data_display {
1.391     raeburn  2322:     my ($ccuname,$ccdomain,$newuser,$context,$inst_results,$rolesarray,
1.410     raeburn  2323:         $now,$captchaform,$emailusername,$usertype) = @_;
1.388     bisitz   2324:     my ($output,%userenv,%canmodify,%canmodify_status);
1.219     raeburn  2325:     my @userinfo = ('firstname','middlename','lastname','generation',
                   2326:                     'permanentemail','id');
1.252     raeburn  2327:     my $rowcount = 0;
                   2328:     my $editable = 0;
1.391     raeburn  2329:     my %textboxsize = (
                   2330:                        firstname      => '15',
                   2331:                        middlename     => '15',
                   2332:                        lastname       => '15',
                   2333:                        generation     => '5',
                   2334:                        permanentemail => '25',
                   2335:                        id             => '15',
                   2336:                       );
                   2337: 
                   2338:     my %lt=&Apache::lonlocal::texthash(
                   2339:                 'pd'             => "Personal Data",
                   2340:                 'firstname'      => "First Name",
                   2341:                 'middlename'     => "Middle Name",
                   2342:                 'lastname'       => "Last Name",
                   2343:                 'generation'     => "Generation",
                   2344:                 'permanentemail' => "Permanent e-mail address",
                   2345:                 'id'             => "Student/Employee ID",
                   2346:                 'lg'             => "Login Data",
                   2347:                 'inststatus'     => "Affiliation",
                   2348:                 'email'          => 'E-mail address',
                   2349:                 'valid'          => 'Validation',
                   2350:     );
                   2351: 
                   2352:     %canmodify_status =
1.286     raeburn  2353:         &Apache::lonuserutils::can_modify_userinfo($context,$ccdomain,
                   2354:                                                    ['inststatus'],$rolesarray);
1.253     raeburn  2355:     if (!$newuser) {
1.188     raeburn  2356:         # Get the users information
                   2357:         %userenv = &Apache::lonnet::get('environment',
                   2358:                    ['firstname','middlename','lastname','generation',
1.286     raeburn  2359:                     'permanentemail','id','inststatus'],$ccdomain,$ccuname);
1.219     raeburn  2360:         %canmodify =
                   2361:             &Apache::lonuserutils::can_modify_userinfo($context,$ccdomain,
1.252     raeburn  2362:                                                        \@userinfo,$rolesarray);
1.257     raeburn  2363:     } elsif ($context eq 'selfcreate') {
1.391     raeburn  2364:         if ($newuser eq 'email') {
1.396     raeburn  2365:             if (ref($emailusername) eq 'HASH') {
                   2366:                 if (ref($emailusername->{$usertype}) eq 'HASH') {
                   2367:                     my ($infofields,$infotitles) = &Apache::loncommon::emailusername_info();
                   2368:                     @userinfo = ();          
                   2369:                     if ((ref($infofields) eq 'ARRAY') && (ref($infotitles) eq 'HASH')) {
                   2370:                         foreach my $field (@{$infofields}) { 
                   2371:                             if ($emailusername->{$usertype}->{$field}) {
                   2372:                                 push(@userinfo,$field);
                   2373:                                 $canmodify{$field} = 1;
                   2374:                                 unless ($textboxsize{$field}) {
                   2375:                                     $textboxsize{$field} = 25;
                   2376:                                 }
                   2377:                                 unless ($lt{$field}) {
                   2378:                                     $lt{$field} = $infotitles->{$field};
                   2379:                                 }
                   2380:                                 if ($emailusername->{$usertype}->{$field} eq 'required') {
                   2381:                                     $lt{$field} .= '<b>*</b>';
                   2382:                                 }
1.391     raeburn  2383:                             }
                   2384:                         }
                   2385:                     }
                   2386:                 }
                   2387:             }
                   2388:         } else {
                   2389:             %canmodify = &selfcreate_canmodify($context,$ccdomain,\@userinfo,
                   2390:                                                $inst_results,$rolesarray);
                   2391:         }
1.188     raeburn  2392:     }
1.391     raeburn  2393: 
1.188     raeburn  2394:     my $genhelp=&Apache::loncommon::help_open_topic('Generation');
                   2395:     $output = '<h3>'.$lt{'pd'}.'</h3>'.
                   2396:               &Apache::lonhtmlcommon::start_pick_box();
1.391     raeburn  2397:     if (($context eq 'selfcreate') && ($newuser eq 'email')) {
1.396     raeburn  2398:         $output .= &Apache::lonhtmlcommon::row_title($lt{'email'}.'<b>*</b>',undef,
1.391     raeburn  2399:                                                      'LC_oddrow_value')."\n".
1.394     raeburn  2400:                    '<input type="text" name="uname" size="25" value="" autocomplete="off" />';
1.391     raeburn  2401:         $rowcount ++;
                   2402:         $output .= &Apache::lonhtmlcommon::row_closure(1);
1.408     raeburn  2403:         my $upassone = '<input type="password" name="upass'.$now.'" size="20" autocomplete="off" />';
                   2404:         my $upasstwo = '<input type="password" name="upasscheck'.$now.'" size="20" autocomplete="off" />';
1.396     raeburn  2405:         $output .= &Apache::lonhtmlcommon::row_title(&mt('Password').'<b>*</b>',
1.391     raeburn  2406:                                                     'LC_pick_box_title',
                   2407:                                                     'LC_oddrow_value')."\n".
                   2408:                    $upassone."\n".
                   2409:                    &Apache::lonhtmlcommon::row_closure(1)."\n".
1.396     raeburn  2410:                    &Apache::lonhtmlcommon::row_title(&mt('Confirm password').'<b>*</b>',
1.391     raeburn  2411:                                                      'LC_pick_box_title',
                   2412:                                                      'LC_oddrow_value')."\n".
                   2413:                    $upasstwo.
                   2414:                    &Apache::lonhtmlcommon::row_closure()."\n";
                   2415:     }
1.188     raeburn  2416:     foreach my $item (@userinfo) {
                   2417:         my $rowtitle = $lt{$item};
1.252     raeburn  2418:         my $hiderow = 0;
1.188     raeburn  2419:         if ($item eq 'generation') {
                   2420:             $rowtitle = $genhelp.$rowtitle;
                   2421:         }
1.252     raeburn  2422:         my $row = &Apache::lonhtmlcommon::row_title($rowtitle,undef,'LC_oddrow_value')."\n";
1.188     raeburn  2423:         if ($newuser) {
1.210     raeburn  2424:             if (ref($inst_results) eq 'HASH') {
                   2425:                 if ($inst_results->{$item} ne '') {
1.252     raeburn  2426:                     $row .= '<input type="hidden" name="c'.$item.'" value="'.$inst_results->{$item}.'" />'.$inst_results->{$item};
1.210     raeburn  2427:                 } else {
1.252     raeburn  2428:                     if ($context eq 'selfcreate') {
1.391     raeburn  2429:                         if ($canmodify{$item}) {
1.394     raeburn  2430:                             $row .= '<input type="text" name="c'.$item.'" size="'.$textboxsize{$item}.'" value="" autocomplete="off" />';
1.252     raeburn  2431:                             $editable ++;
                   2432:                         } else {
                   2433:                             $hiderow = 1;
                   2434:                         }
1.253     raeburn  2435:                     } else {
                   2436:                         $row .= '<input type="text" name="c'.$item.'" size="'.$textboxsize{$item}.'" value="" />';
1.252     raeburn  2437:                     }
1.210     raeburn  2438:                 }
1.188     raeburn  2439:             } else {
1.252     raeburn  2440:                 if ($context eq 'selfcreate') {
1.401     raeburn  2441:                     if ($canmodify{$item}) {
                   2442:                         if ($newuser eq 'email') {
                   2443:                             $row .= '<input type="text" name="'.$item.'" size="'.$textboxsize{$item}.'" value="" autocomplete="off" />';
1.287     raeburn  2444:                         } else {
1.401     raeburn  2445:                             $row .= '<input type="text" name="c'.$item.'" size="'.$textboxsize{$item}.'" value="" autocomplete="off" />';
1.287     raeburn  2446:                         }
1.401     raeburn  2447:                         $editable ++;
                   2448:                     } else {
                   2449:                         $hiderow = 1;
1.252     raeburn  2450:                     }
1.253     raeburn  2451:                 } else {
                   2452:                     $row .= '<input type="text" name="c'.$item.'" size="'.$textboxsize{$item}.'" value="" />';
1.252     raeburn  2453:                 }
1.188     raeburn  2454:             }
                   2455:         } else {
1.219     raeburn  2456:             if ($canmodify{$item}) {
1.252     raeburn  2457:                 $row .= '<input type="text" name="c'.$item.'" size="'.$textboxsize{$item}.'" value="'.$userenv{$item}.'" />';
1.393     raeburn  2458:                 if (($item eq 'id') && (!$newuser)) {
                   2459:                     $row .= '<br />'.&Apache::lonuserutils::forceid_change($context);
                   2460:                 }
1.188     raeburn  2461:             } else {
1.252     raeburn  2462:                 $row .= $userenv{$item};
1.188     raeburn  2463:             }
                   2464:         }
1.252     raeburn  2465:         $row .= &Apache::lonhtmlcommon::row_closure(1);
                   2466:         if (!$hiderow) {
                   2467:             $output .= $row;
                   2468:             $rowcount ++;
                   2469:         }
1.188     raeburn  2470:     }
1.286     raeburn  2471:     if (($canmodify_status{'inststatus'}) || ($context ne 'selfcreate')) {
                   2472:         my ($othertitle,$usertypes,$types) = &Apache::loncommon::sorted_inst_types($ccdomain);
                   2473:         if (ref($types) eq 'ARRAY') {
                   2474:             if (@{$types} > 0) {
                   2475:                 my ($hiderow,$shown);
                   2476:                 if ($canmodify_status{'inststatus'}) {
                   2477:                     $shown = &pick_inst_statuses($userenv{'inststatus'},$usertypes,$types);
                   2478:                 } else {
                   2479:                     if ($userenv{'inststatus'} eq '') {
                   2480:                         $hiderow = 1;
1.334     raeburn  2481:                     } else {
                   2482:                         my @showitems;
                   2483:                         foreach my $item ( map { &unescape($_); } split(':',$userenv{'inststatus'})) {
                   2484:                             if (exists($usertypes->{$item})) {
                   2485:                                 push(@showitems,$usertypes->{$item});
                   2486:                             } else {
                   2487:                                 push(@showitems,$item);
                   2488:                             }
                   2489:                         }
                   2490:                         if (@showitems) {
                   2491:                             $shown = join(', ',@showitems);
                   2492:                         } else {
                   2493:                             $hiderow = 1;
                   2494:                         }
1.286     raeburn  2495:                     }
                   2496:                 }
                   2497:                 if (!$hiderow) {
1.389     bisitz   2498:                     my $row = &Apache::lonhtmlcommon::row_title(&mt('Affiliations'),undef,'LC_oddrow_value')."\n".
1.286     raeburn  2499:                               $shown.&Apache::lonhtmlcommon::row_closure(1); 
                   2500:                     if ($context eq 'selfcreate') {
                   2501:                         $rowcount ++;
                   2502:                     }
                   2503:                     $output .= $row;
                   2504:                 }
                   2505:             }
                   2506:         }
                   2507:     }
1.391     raeburn  2508:     if (($context eq 'selfcreate') && ($newuser eq 'email')) {
                   2509:         if ($captchaform) {
1.410     raeburn  2510:             $output .= &Apache::lonhtmlcommon::row_title($lt{'valid'}.'*',
                   2511:                                                          'LC_pick_box_title')."\n".
                   2512:                        $captchaform."\n".'<br /><br />'.
1.391     raeburn  2513:                        &Apache::lonhtmlcommon::row_closure(1); 
                   2514:             $rowcount ++;
                   2515:         }
                   2516:         my $submit_text = &mt('Create account');
                   2517:         $output .= &Apache::lonhtmlcommon::row_title()."\n".
                   2518:                    '<br /><input type="submit" name="createaccount" value="'.
                   2519:                    $submit_text.'" />'.
1.396     raeburn  2520:                    '<input type="hidden" name="type" value="'.$usertype.'" />'.
1.391     raeburn  2521:                    &Apache::lonhtmlcommon::row_closure(1);
                   2522:     }
1.188     raeburn  2523:     $output .= &Apache::lonhtmlcommon::end_pick_box();
1.206     raeburn  2524:     if (wantarray) {
1.252     raeburn  2525:         if ($context eq 'selfcreate') {
                   2526:             return($output,$rowcount,$editable);
                   2527:         } else {
1.388     bisitz   2528:             return $output;
1.252     raeburn  2529:         }
1.206     raeburn  2530:     } else {
                   2531:         return $output;
                   2532:     }
1.188     raeburn  2533: }
                   2534: 
1.286     raeburn  2535: sub pick_inst_statuses {
                   2536:     my ($curr,$usertypes,$types) = @_;
                   2537:     my ($output,$rem,@currtypes);
                   2538:     if ($curr ne '') {
                   2539:         @currtypes = map { &unescape($_); } split(/:/,$curr);
                   2540:     }
                   2541:     my $numinrow = 2;
                   2542:     if (ref($types) eq 'ARRAY') {
                   2543:         $output = '<table>';
                   2544:         my $lastcolspan; 
                   2545:         for (my $i=0; $i<@{$types}; $i++) {
                   2546:             if (defined($usertypes->{$types->[$i]})) {
                   2547:                 my $rem = $i%($numinrow);
                   2548:                 if ($rem == 0) {
                   2549:                     if ($i<@{$types}-1) {
                   2550:                         if ($i > 0) { 
                   2551:                             $output .= '</tr>';
                   2552:                         }
                   2553:                         $output .= '<tr>';
                   2554:                     }
                   2555:                 } elsif ($i==@{$types}-1) {
                   2556:                     my $colsleft = $numinrow - $rem;
                   2557:                     if ($colsleft > 1) {
                   2558:                         $lastcolspan = ' colspan="'.$colsleft.'"';
                   2559:                     }
                   2560:                 }
                   2561:                 my $check = ' ';
                   2562:                 if (grep(/^\Q$types->[$i]\E$/,@currtypes)) {
                   2563:                     $check = ' checked="checked" ';
                   2564:                 }
                   2565:                 $output .= '<td class="LC_left_item"'.$lastcolspan.'>'.
                   2566:                            '<span class="LC_nobreak"><label>'.
                   2567:                            '<input type="checkbox" name="inststatus" '.
                   2568:                            'value="'.$types->[$i].'"'.$check.'/>'.
                   2569:                            $usertypes->{$types->[$i]}.'</label></span></td>';
                   2570:             }
                   2571:         }
                   2572:         $output .= '</tr></table>';
                   2573:     }
                   2574:     return $output;
                   2575: }
                   2576: 
1.257     raeburn  2577: sub selfcreate_canmodify {
                   2578:     my ($context,$dom,$userinfo,$inst_results,$rolesarray) = @_;
                   2579:     if (ref($inst_results) eq 'HASH') {
                   2580:         my @inststatuses = &get_inststatuses($inst_results);
                   2581:         if (@inststatuses == 0) {
                   2582:             @inststatuses = ('default');
                   2583:         }
                   2584:         $rolesarray = \@inststatuses;
                   2585:     }
                   2586:     my %canmodify =
                   2587:         &Apache::lonuserutils::can_modify_userinfo($context,$dom,$userinfo,
                   2588:                                                    $rolesarray);
                   2589:     return %canmodify;
                   2590: }
                   2591: 
1.252     raeburn  2592: sub get_inststatuses {
                   2593:     my ($insthashref) = @_;
                   2594:     my @inststatuses = ();
                   2595:     if (ref($insthashref) eq 'HASH') {
                   2596:         if (ref($insthashref->{'inststatus'}) eq 'ARRAY') {
                   2597:             @inststatuses = @{$insthashref->{'inststatus'}};
                   2598:         }
                   2599:     }
                   2600:     return @inststatuses;
                   2601: }
                   2602: 
1.4       www      2603: # ================================================================= Phase Three
1.42      matthew  2604: sub update_user_data {
1.375     raeburn  2605:     my ($r,$context,$crstype,$brcrum,$showcredits) = @_; 
1.101     albertel 2606:     my $uhome=&Apache::lonnet::homeserver($env{'form.ccuname'},
                   2607:                                           $env{'form.ccdomain'});
1.27      matthew  2608:     # Error messages
1.188     raeburn  2609:     my $error     = '<span class="LC_error">'.&mt('Error').': ';
1.193     raeburn  2610:     my $end       = '</span><br /><br />';
                   2611:     my $rtnlink   = '<a href="javascript:backPage(document.userupdate,'.
1.188     raeburn  2612:                     "'$env{'form.prevphase'}','modify')".'" />'.
1.219     raeburn  2613:                     &mt('Return to previous page').'</a>'.
                   2614:                     &Apache::loncommon::end_page();
                   2615:     my $now = time;
1.40      www      2616:     my $title;
1.101     albertel 2617:     if (exists($env{'form.makeuser'})) {
1.40      www      2618: 	$title='Set Privileges for New User';
                   2619:     } else {
                   2620:         $title='Modify User Privileges';
                   2621:     }
1.213     raeburn  2622:     my $newuser = 0;
1.160     raeburn  2623:     my ($jsback,$elements) = &crumb_utilities();
                   2624:     my $jscript = '<script type="text/javascript">'."\n".
1.301     bisitz   2625:                   '// <![CDATA['."\n".
                   2626:                   $jsback."\n".
                   2627:                   '// ]]>'."\n".
                   2628:                   '</script>'."\n";
1.422     raeburn  2629:     my %breadcrumb_text = &singleuser_breadcrumb($crstype,$context,$env{'form.ccdomain'});
1.351     raeburn  2630:     push (@{$brcrum},
                   2631:              {href => "javascript:backPage(document.userupdate)",
                   2632:               text => $breadcrumb_text{'search'},
                   2633:               faq  => 282,
                   2634:               bug  => 'Instructor Interface',}
                   2635:              );
                   2636:     if ($env{'form.prevphase'} eq 'userpicked') {
                   2637:         push(@{$brcrum},
                   2638:                {href => "javascript:backPage(document.userupdate,'get_user_info','select')",
                   2639:                 text => $breadcrumb_text{'userpicked'},
                   2640:                 faq  => 282,
                   2641:                 bug  => 'Instructor Interface',});
1.233     raeburn  2642:     }
1.224     raeburn  2643:     my $helpitem = 'Course_Change_Privileges';
                   2644:     if ($env{'form.action'} eq 'singlestudent') {
                   2645:         $helpitem = 'Course_Add_Student';
                   2646:     }
1.351     raeburn  2647:     push(@{$brcrum}, 
                   2648:             {href => "javascript:backPage(document.userupdate,'$env{'form.prevphase'}','modify')",
                   2649:              text => $breadcrumb_text{'modify'},
                   2650:              faq  => 282,
                   2651:              bug  => 'Instructor Interface',},
                   2652:             {href => "/adm/createuser",
                   2653:              text => "Result",
                   2654:              faq  => 282,
                   2655:              bug  => 'Instructor Interface',
                   2656:              help => $helpitem});
                   2657:     my $args = {bread_crumbs          => $brcrum,
                   2658:                 bread_crumbs_component => 'User Management'};
                   2659:     if ($env{'form.popup'}) {
                   2660:         $args->{'no_nav_bar'} = 1;
                   2661:     }
                   2662:     $r->print(&Apache::loncommon::start_page($title,$jscript,$args));
1.188     raeburn  2663:     $r->print(&update_result_form($uhome));
1.27      matthew  2664:     # Check Inputs
1.101     albertel 2665:     if (! $env{'form.ccuname'} ) {
1.193     raeburn  2666: 	$r->print($error.&mt('No login name specified').'.'.$end.$rtnlink);
1.27      matthew  2667: 	return;
                   2668:     }
1.138     albertel 2669:     if (  $env{'form.ccuname'} ne 
                   2670: 	  &LONCAPA::clean_username($env{'form.ccuname'}) ) {
1.281     bisitz   2671: 	$r->print($error.&mt('Invalid login name.').'  '.
                   2672: 		  &mt('Only letters, numbers, periods, dashes, @, and underscores are valid.').
1.193     raeburn  2673: 		  $end.$rtnlink);
1.27      matthew  2674: 	return;
                   2675:     }
1.101     albertel 2676:     if (! $env{'form.ccdomain'}       ) {
1.193     raeburn  2677: 	$r->print($error.&mt('No domain specified').'.'.$end.$rtnlink);
1.27      matthew  2678: 	return;
                   2679:     }
1.138     albertel 2680:     if (  $env{'form.ccdomain'} ne
                   2681: 	  &LONCAPA::clean_domain($env{'form.ccdomain'}) ) {
1.281     bisitz   2682: 	$r->print($error.&mt('Invalid domain name.').'  '.
                   2683: 		  &mt('Only letters, numbers, periods, dashes, and underscores are valid.').
1.193     raeburn  2684: 		  $end.$rtnlink);
1.27      matthew  2685: 	return;
                   2686:     }
1.219     raeburn  2687:     if ($uhome eq 'no_host') {
                   2688:         $newuser = 1;
                   2689:     }
1.101     albertel 2690:     if (! exists($env{'form.makeuser'})) {
1.29      matthew  2691:         # Modifying an existing user, so check the validity of the name
                   2692:         if ($uhome eq 'no_host') {
1.389     bisitz   2693:             $r->print(
                   2694:                 $error
                   2695:                .'<p class="LC_error">'
                   2696:                .&mt('Unable to determine home server for [_1] in domain [_2].',
                   2697:                         '"'.$env{'form.ccuname'}.'"','"'.$env{'form.ccdomain'}.'"')
                   2698:                .'</p>');
1.29      matthew  2699:             return;
                   2700:         }
                   2701:     }
1.27      matthew  2702:     # Determine authentication method and password for the user being modified
                   2703:     my $amode='';
                   2704:     my $genpwd='';
1.101     albertel 2705:     if ($env{'form.login'} eq 'krb') {
1.41      albertel 2706: 	$amode='krb';
1.101     albertel 2707: 	$amode.=$env{'form.krbver'};
                   2708: 	$genpwd=$env{'form.krbarg'};
                   2709:     } elsif ($env{'form.login'} eq 'int') {
1.27      matthew  2710: 	$amode='internal';
1.101     albertel 2711: 	$genpwd=$env{'form.intarg'};
                   2712:     } elsif ($env{'form.login'} eq 'fsys') {
1.27      matthew  2713: 	$amode='unix';
1.101     albertel 2714: 	$genpwd=$env{'form.fsysarg'};
                   2715:     } elsif ($env{'form.login'} eq 'loc') {
1.27      matthew  2716: 	$amode='localauth';
1.101     albertel 2717: 	$genpwd=$env{'form.locarg'};
1.27      matthew  2718: 	$genpwd=" " if (!$genpwd);
1.101     albertel 2719:     } elsif (($env{'form.login'} eq 'nochange') ||
                   2720:              ($env{'form.login'} eq ''        )) { 
1.34      matthew  2721:         # There is no need to tell the user we did not change what they
                   2722:         # did not ask us to change.
1.35      matthew  2723:         # If they are creating a new user but have not specified login
                   2724:         # information this will be caught below.
1.30      matthew  2725:     } else {
1.367     golterma 2726:             $r->print($error.&mt('Invalid login mode or password').$end.$rtnlink);
                   2727:             return;
1.27      matthew  2728:     }
1.164     albertel 2729: 
1.188     raeburn  2730:     $r->print('<h3>'.&mt('User [_1] in domain [_2]',
1.367     golterma 2731:                         $env{'form.ccuname'}.' ('.&Apache::loncommon::plainname($env{'form.ccuname'},
                   2732:                         $env{'form.ccdomain'}).')', $env{'form.ccdomain'}).'</h3>');
                   2733:     my %prog_state = &Apache::lonhtmlcommon::Create_PrgWin($r,2);
1.344     bisitz   2734: 
1.193     raeburn  2735:     my (%alerts,%rulematch,%inst_results,%curr_rules);
1.334     raeburn  2736:     my @userinfo = ('firstname','middlename','lastname','generation','permanentemail','id');
1.361     raeburn  2737:     my @usertools = ('aboutme','blog','webdav','portfolio');
1.411     raeburn  2738:     my @requestcourses = ('official','unofficial','community','textbook','placement');
1.362     raeburn  2739:     my @requestauthor = ('requestauthor');
1.286     raeburn  2740:     my ($othertitle,$usertypes,$types) = 
                   2741:         &Apache::loncommon::sorted_inst_types($env{'form.ccdomain'});
1.334     raeburn  2742:     my %canmodify_status =
                   2743:         &Apache::lonuserutils::can_modify_userinfo($context,$env{'form.ccdomain'},
                   2744:                                                    ['inststatus']);
1.101     albertel 2745:     if ($env{'form.makeuser'}) {
1.164     albertel 2746: 	$r->print('<h3>'.&mt('Creating new account.').'</h3>');
1.27      matthew  2747:         # Check for the authentication mode and password
                   2748:         if (! $amode || ! $genpwd) {
1.193     raeburn  2749: 	    $r->print($error.&mt('Invalid login mode or password').$end.$rtnlink);    
1.27      matthew  2750: 	    return;
1.18      albertel 2751: 	}
1.29      matthew  2752:         # Determine desired host
1.101     albertel 2753:         my $desiredhost = $env{'form.hserver'};
1.29      matthew  2754:         if (lc($desiredhost) eq 'default') {
                   2755:             $desiredhost = undef;
                   2756:         } else {
1.147     albertel 2757:             my %home_servers = 
                   2758: 		&Apache::lonnet::get_servers($env{'form.ccdomain'},'library');
1.29      matthew  2759:             if (! exists($home_servers{$desiredhost})) {
1.193     raeburn  2760:                 $r->print($error.&mt('Invalid home server specified').$end.$rtnlink);
                   2761:                 return;
                   2762:             }
                   2763:         }
                   2764:         # Check ID format
                   2765:         my %checkhash;
                   2766:         my %checks = ('id' => 1);
                   2767:         %{$checkhash{$env{'form.ccuname'}.':'.$env{'form.ccdomain'}}} = (
1.219     raeburn  2768:             'newuser' => $newuser, 
1.196     raeburn  2769:             'id' => $env{'form.cid'},
1.193     raeburn  2770:         );
1.196     raeburn  2771:         if ($env{'form.cid'} ne '') {
                   2772:             &Apache::loncommon::user_rule_check(\%checkhash,\%checks,\%alerts,
                   2773:                                           \%rulematch,\%inst_results,\%curr_rules);
                   2774:             if (ref($alerts{'id'}) eq 'HASH') {
                   2775:                 if (ref($alerts{'id'}{$env{'form.ccdomain'}}) eq 'HASH') {
                   2776:                     my $domdesc =
                   2777:                         &Apache::lonnet::domain($env{'form.ccdomain'},'description');
                   2778:                     if ($alerts{'id'}{$env{'form.ccdomain'}}{$env{'form.cid'}}) {
                   2779:                         my $userchkmsg;
                   2780:                         if (ref($curr_rules{$env{'form.ccdomain'}}) eq 'HASH') {
                   2781:                             $userchkmsg  = 
                   2782:                                 &Apache::loncommon::instrule_disallow_msg('id',
                   2783:                                                                     $domdesc,1).
                   2784:                                 &Apache::loncommon::user_rule_formats($env{'form.ccdomain'},
                   2785:                                     $domdesc,$curr_rules{$env{'form.ccdomain'}}{'id'},'id');
                   2786:                         }
                   2787:                         $r->print($error.&mt('Invalid ID format').$end.
                   2788:                                   $userchkmsg.$rtnlink);
                   2789:                         return;
                   2790:                     }
                   2791:                 }
1.29      matthew  2792:             }
                   2793:         }
1.367     golterma 2794:         &Apache::lonhtmlcommon::Increment_PrgWin($r, \%prog_state);
1.27      matthew  2795: 	# Call modifyuser
                   2796: 	my $result = &Apache::lonnet::modifyuser
1.193     raeburn  2797: 	    ($env{'form.ccdomain'},$env{'form.ccuname'},$env{'form.cid'},
1.188     raeburn  2798:              $amode,$genpwd,$env{'form.cfirstname'},
                   2799:              $env{'form.cmiddlename'},$env{'form.clastname'},
                   2800:              $env{'form.cgeneration'},undef,$desiredhost,
                   2801:              $env{'form.cpermanentemail'});
1.77      www      2802: 	$r->print(&mt('Generating user').': '.$result);
1.219     raeburn  2803:         $uhome = &Apache::lonnet::homeserver($env{'form.ccuname'},
1.101     albertel 2804:                                                $env{'form.ccdomain'});
1.334     raeburn  2805:         my (%changeHash,%newcustom,%changed,%changedinfo);
1.267     raeburn  2806:         if ($uhome ne 'no_host') {
1.334     raeburn  2807:             if ($context eq 'domain') {
1.378     raeburn  2808:                 foreach my $name ('portfolio','author') {
                   2809:                     if ($env{'form.custom_'.$name.'quota'} == 1) {
                   2810:                         if ($env{'form.'.$name.'quota'} eq '') {
                   2811:                             $newcustom{$name.'quota'} = 0;
                   2812:                         } else {
                   2813:                             $newcustom{$name.'quota'} = $env{'form.'.$name.'quota'};
                   2814:                             $newcustom{$name.'quota'} =~ s/[^\d\.]//g;
                   2815:                         }
                   2816:                         if (&quota_admin($newcustom{$name.'quota'},\%changeHash,$name)) {
                   2817:                             $changed{$name.'quota'} = 1;
                   2818:                         }
1.334     raeburn  2819:                     }
                   2820:                 }
                   2821:                 foreach my $item (@usertools) {
                   2822:                     if ($env{'form.custom'.$item} == 1) {
                   2823:                         $newcustom{$item} = $env{'form.tools_'.$item};
                   2824:                         $changed{$item} = &tool_admin($item,$newcustom{$item},
                   2825:                                                      \%changeHash,'tools');
                   2826:                     }
1.267     raeburn  2827:                 }
1.334     raeburn  2828:                 foreach my $item (@requestcourses) {
1.341     raeburn  2829:                     if ($env{'form.custom'.$item} == 1) {
                   2830:                         $newcustom{$item} = $env{'form.crsreq_'.$item};
                   2831:                         if ($env{'form.crsreq_'.$item} eq 'autolimit') {
                   2832:                             $newcustom{$item} .= '=';
1.383     raeburn  2833:                             $env{'form.crsreq_'.$item.'_limit'} =~ s/\D+//g;
                   2834:                             if ($env{'form.crsreq_'.$item.'_limit'}) {
1.341     raeburn  2835:                                 $newcustom{$item} .= $env{'form.crsreq_'.$item.'_limit'};
                   2836:                             }
1.334     raeburn  2837:                         }
1.341     raeburn  2838:                         $changed{$item} = &tool_admin($item,$newcustom{$item},
                   2839:                                                       \%changeHash,'requestcourses');
1.334     raeburn  2840:                     }
1.275     raeburn  2841:                 }
1.362     raeburn  2842:                 if ($env{'form.customrequestauthor'} == 1) {
                   2843:                     $newcustom{'requestauthor'} = $env{'form.requestauthor'};
                   2844:                     $changed{'requestauthor'} = &tool_admin('requestauthor',
                   2845:                                                     $newcustom{'requestauthor'},
                   2846:                                                     \%changeHash,'requestauthor');
                   2847:                 }
1.275     raeburn  2848:             }
1.334     raeburn  2849:             if ($canmodify_status{'inststatus'}) {
                   2850:                 if (exists($env{'form.inststatus'})) {
                   2851:                     my @inststatuses = &Apache::loncommon::get_env_multiple('form.inststatus');
                   2852:                     if (@inststatuses > 0) {
                   2853:                         $changeHash{'inststatus'} = join(',',@inststatuses);
                   2854:                         $changed{'inststatus'} = $changeHash{'inststatus'};
1.306     raeburn  2855:                     }
                   2856:                 }
1.232     raeburn  2857:             }
1.334     raeburn  2858:             if (keys(%changed)) {
                   2859:                 foreach my $item (@userinfo) {
                   2860:                     $changeHash{$item}  = $env{'form.c'.$item};
1.286     raeburn  2861:                 }
1.267     raeburn  2862:                 my $chgresult =
                   2863:                      &Apache::lonnet::put('environment',\%changeHash,
                   2864:                                           $env{'form.ccdomain'},$env{'form.ccuname'});
                   2865:             } 
1.232     raeburn  2866:         }
1.219     raeburn  2867:         $r->print('<br />'.&mt('Home server').': '.$uhome.' '.
                   2868:                   &Apache::lonnet::hostname($uhome));
1.101     albertel 2869:     } elsif (($env{'form.login'} ne 'nochange') &&
                   2870:              ($env{'form.login'} ne ''        )) {
1.27      matthew  2871: 	# Modify user privileges
                   2872:         if (! $amode || ! $genpwd) {
1.193     raeburn  2873: 	    $r->print($error.'Invalid login mode or password'.$end.$rtnlink);    
1.27      matthew  2874: 	    return;
1.20      harris41 2875: 	}
1.395     bisitz   2876: 	# Only allow authentication modification if the person has authority
1.101     albertel 2877: 	if (&Apache::lonnet::allowed('mau',$env{'form.ccdomain'})) {
1.20      harris41 2878: 	    $r->print('Modifying authentication: '.
1.31      matthew  2879:                       &Apache::lonnet::modifyuserauth(
1.101     albertel 2880: 		       $env{'form.ccdomain'},$env{'form.ccuname'},
1.21      harris41 2881:                        $amode,$genpwd));
1.102     albertel 2882:             $r->print('<br />'.&mt('Home server').': '.&Apache::lonnet::homeserver
1.101     albertel 2883: 		  ($env{'form.ccuname'},$env{'form.ccdomain'}));
1.4       www      2884: 	} else {
1.27      matthew  2885: 	    # Okay, this is a non-fatal error.
1.395     bisitz   2886: 	    $r->print($error.&mt('You do not have the authority to modify this users authentication information.').$end);    
1.27      matthew  2887: 	}
1.28      matthew  2888:     }
1.344     bisitz   2889:     $r->rflush(); # Finish display of header before time consuming actions start
1.367     golterma 2890:     &Apache::lonhtmlcommon::Increment_PrgWin($r,\%prog_state);
1.28      matthew  2891:     ##
1.375     raeburn  2892:     my (@userroles,%userupdate,$cnum,$cdom,$defaultcredits,%namechanged);
1.213     raeburn  2893:     if ($context eq 'course') {
1.375     raeburn  2894:         ($cnum,$cdom) =
                   2895:             &Apache::lonuserutils::get_course_identity();
1.318     raeburn  2896:         $crstype = &Apache::loncommon::course_type($cdom.'_'.$cnum);
1.375     raeburn  2897:         if ($showcredits) {
                   2898:            $defaultcredits = &Apache::lonuserutils::get_defaultcredits($cdom,$cnum);
                   2899:         }
1.213     raeburn  2900:     }
1.101     albertel 2901:     if (! $env{'form.makeuser'} ) {
1.28      matthew  2902:         # Check for need to change
                   2903:         my %userenv = &Apache::lonnet::get
1.134     raeburn  2904:             ('environment',['firstname','middlename','lastname','generation',
1.378     raeburn  2905:              'id','permanentemail','portfolioquota','authorquota','inststatus',
                   2906:              'tools.aboutme','tools.blog','tools.webdav','tools.portfolio',
1.361     raeburn  2907:              'requestcourses.official','requestcourses.unofficial',
1.384     raeburn  2908:              'requestcourses.community','requestcourses.textbook',
                   2909:              'reqcrsotherdom.official','reqcrsotherdom.unofficial',
                   2910:              'reqcrsotherdom.community','reqcrsotherdom.textbook',
1.427     raeburn  2911:              'reqcrsotherdom.placement','requestauthor'],
1.160     raeburn  2912:               $env{'form.ccdomain'},$env{'form.ccuname'});
1.28      matthew  2913:         my ($tmp) = keys(%userenv);
                   2914:         if ($tmp =~ /^(con_lost|error)/i) { 
                   2915:             %userenv = ();
                   2916:         }
1.206     raeburn  2917:         my $no_forceid_alert;
                   2918:         # Check to see if user information can be changed
                   2919:         my %domconfig =
                   2920:             &Apache::lonnet::get_dom('configuration',['usermodification'],
                   2921:                                      $env{'form.ccdomain'});
1.213     raeburn  2922:         my @statuses = ('active','future');
                   2923:         my %roles = &Apache::lonnet::get_my_roles($env{'form.ccuname'},$env{'form.ccdomain'},'userroles',\@statuses,undef,$env{'request.role.domain'});
                   2924:         my ($auname,$audom);
1.220     raeburn  2925:         if ($context eq 'author') {
1.206     raeburn  2926:             $auname = $env{'user.name'};
                   2927:             $audom = $env{'user.domain'};     
                   2928:         }
                   2929:         foreach my $item (keys(%roles)) {
1.220     raeburn  2930:             my ($rolenum,$roledom,$role) = split(/:/,$item,-1);
1.206     raeburn  2931:             if ($context eq 'course') {
                   2932:                 if ($cnum ne '' && $cdom ne '') {
                   2933:                     if ($rolenum eq $cnum && $roledom eq $cdom) {
                   2934:                         if (!grep(/^\Q$role\E$/,@userroles)) {
                   2935:                             push(@userroles,$role);
                   2936:                         }
                   2937:                     }
                   2938:                 }
                   2939:             } elsif ($context eq 'author') {
                   2940:                 if ($rolenum eq $auname && $roledom eq $audom) {
                   2941:                     if (!grep(/^\Q$role\E$/,@userroles)) { 
                   2942:                         push(@userroles,$role);
                   2943:                     }
                   2944:                 }
                   2945:             }
                   2946:         }
1.220     raeburn  2947:         if ($env{'form.action'} eq 'singlestudent') {
                   2948:             if (!grep(/^st$/,@userroles)) {
                   2949:                 push(@userroles,'st');
                   2950:             }
                   2951:         } else {
                   2952:             # Check for course or co-author roles being activated or re-enabled
                   2953:             if ($context eq 'author' || $context eq 'course') {
                   2954:                 foreach my $key (keys(%env)) {
                   2955:                     if ($context eq 'author') {
                   2956:                         if ($key=~/^form\.act_\Q$audom\E_\Q$auname\E_([^_]+)/) {
                   2957:                             if (!grep(/^\Q$1\E$/,@userroles)) {
                   2958:                                 push(@userroles,$1);
                   2959:                             }
                   2960:                         } elsif ($key =~/^form\.ren\:\Q$audom\E\/\Q$auname\E_([^_]+)/) {
                   2961:                             if (!grep(/^\Q$1\E$/,@userroles)) {
                   2962:                                 push(@userroles,$1);
                   2963:                             }
1.206     raeburn  2964:                         }
1.220     raeburn  2965:                     } elsif ($context eq 'course') {
                   2966:                         if ($key=~/^form\.act_\Q$cdom\E_\Q$cnum\E_([^_]+)/) {
                   2967:                             if (!grep(/^\Q$1\E$/,@userroles)) {
                   2968:                                 push(@userroles,$1);
                   2969:                             }
                   2970:                         } elsif ($key =~/^form\.ren\:\Q$cdom\E\/\Q$cnum\E(\/?\w*)_([^_]+)/) {
                   2971:                             if (!grep(/^\Q$1\E$/,@userroles)) {
                   2972:                                 push(@userroles,$1);
                   2973:                             }
1.206     raeburn  2974:                         }
                   2975:                     }
                   2976:                 }
                   2977:             }
                   2978:         }
                   2979:         #Check to see if we can change personal data for the user 
                   2980:         my (@mod_disallowed,@longroles);
                   2981:         foreach my $role (@userroles) {
                   2982:             if ($role eq 'cr') {
                   2983:                 push(@longroles,'Custom');
                   2984:             } else {
1.318     raeburn  2985:                 push(@longroles,&Apache::lonnet::plaintext($role,$crstype)); 
1.206     raeburn  2986:             }
                   2987:         }
1.219     raeburn  2988:         my %canmodify = &Apache::lonuserutils::can_modify_userinfo($context,$env{'form.ccdomain'},\@userinfo,\@userroles);
                   2989:         foreach my $item (@userinfo) {
1.28      matthew  2990:             # Strip leading and trailing whitespace
1.203     raeburn  2991:             $env{'form.c'.$item} =~ s/(\s+$|^\s+)//g;
1.219     raeburn  2992:             if (!$canmodify{$item}) {
1.207     raeburn  2993:                 if (defined($env{'form.c'.$item})) {
                   2994:                     if ($env{'form.c'.$item} ne $userenv{$item}) {
                   2995:                         push(@mod_disallowed,$item);
                   2996:                     }
1.206     raeburn  2997:                 }
                   2998:                 $env{'form.c'.$item} = $userenv{$item};
                   2999:             }
1.28      matthew  3000:         }
1.259     bisitz   3001:         # Check to see if we can change the Student/Employee ID
1.196     raeburn  3002:         my $forceid = $env{'form.forceid'};
                   3003:         my $recurseid = $env{'form.recurseid'};
                   3004:         my (%alerts,%rulematch,%idinst_results,%curr_rules,%got_rules);
1.203     raeburn  3005:         my %uidhash = &Apache::lonnet::idrget($env{'form.ccdomain'},
                   3006:                                             $env{'form.ccuname'});
                   3007:         if (($uidhash{$env{'form.ccuname'}}) && 
                   3008:             ($uidhash{$env{'form.ccuname'}}!~/error\:/) && 
                   3009:             (!$forceid)) {
                   3010:             if ($env{'form.cid'} ne $uidhash{$env{'form.ccuname'}}) {
                   3011:                 $env{'form.cid'} = $userenv{'id'};
1.293     bisitz   3012:                 $no_forceid_alert = &mt('New student/employee ID does not match existing ID for this user.')
1.259     bisitz   3013:                                    .'<br />'
                   3014:                                    .&mt("Change is not permitted without checking the 'Force ID change' checkbox on the previous page.")
                   3015:                                    .'<br />'."\n";
1.203     raeburn  3016:             }
                   3017:         }
                   3018:         if ($env{'form.cid'} ne $userenv{'id'}) {
1.196     raeburn  3019:             my $checkhash;
                   3020:             my $checks = { 'id' => 1 };
                   3021:             $checkhash->{$env{'form.ccuname'}.':'.$env{'form.ccdomain'}} = 
                   3022:                    { 'newuser' => $newuser,
                   3023:                      'id'  => $env{'form.cid'}, 
                   3024:                    };
                   3025:             &Apache::loncommon::user_rule_check($checkhash,$checks,
                   3026:                 \%alerts,\%rulematch,\%idinst_results,\%curr_rules,\%got_rules);
                   3027:             if (ref($alerts{'id'}) eq 'HASH') {
                   3028:                 if (ref($alerts{'id'}{$env{'form.ccdomain'}}) eq 'HASH') {
1.203     raeburn  3029:                    $env{'form.cid'} = $userenv{'id'};
1.196     raeburn  3030:                 }
                   3031:             }
                   3032:         }
1.378     raeburn  3033:         my (%quotachanged,%oldquota,%newquota,%olddefquota,%newdefquota, 
                   3034:             $oldinststatus,$newinststatus,%oldisdefault,%newisdefault,%oldsettings,
1.339     raeburn  3035:             %oldsettingstext,%newsettings,%newsettingstext,@disporder,
1.378     raeburn  3036:             %oldsettingstatus,%newsettingstatus);
1.334     raeburn  3037:         @disporder = ('inststatus');
                   3038:         if ($env{'request.role.domain'} eq $env{'form.ccdomain'}) {
1.362     raeburn  3039:             push(@disporder,'requestcourses','requestauthor');
1.334     raeburn  3040:         } else {
                   3041:             push(@disporder,'reqcrsotherdom');
                   3042:         }
                   3043:         push(@disporder,('quota','tools'));
1.338     raeburn  3044:         $oldinststatus = $userenv{'inststatus'};
1.378     raeburn  3045:         foreach my $name ('portfolio','author') {
                   3046:             ($olddefquota{$name},$oldsettingstatus{$name}) = 
                   3047:                 &Apache::loncommon::default_quota($env{'form.ccdomain'},$oldinststatus,$name);
                   3048:             ($newdefquota{$name},$newsettingstatus{$name}) = ($olddefquota{$name},$oldsettingstatus{$name});
                   3049:         }
1.334     raeburn  3050:         my %canshow;
1.220     raeburn  3051:         if (&Apache::lonnet::allowed('mpq',$env{'form.ccdomain'})) {
1.334     raeburn  3052:             $canshow{'quota'} = 1;
1.220     raeburn  3053:         }
1.267     raeburn  3054:         if (&Apache::lonnet::allowed('mut',$env{'form.ccdomain'})) {
1.334     raeburn  3055:             $canshow{'tools'} = 1;
1.267     raeburn  3056:         }
1.275     raeburn  3057:         if (&Apache::lonnet::allowed('ccc',$env{'form.ccdomain'})) {
1.334     raeburn  3058:             $canshow{'requestcourses'} = 1;
1.300     raeburn  3059:         } elsif (&Apache::lonnet::allowed('ccc',$env{'request.role.domain'})) {
1.334     raeburn  3060:             $canshow{'reqcrsotherdom'} = 1;
1.275     raeburn  3061:         }
1.286     raeburn  3062:         if (&Apache::lonnet::allowed('mau',$env{'form.ccdomain'})) {
1.334     raeburn  3063:             $canshow{'inststatus'} = 1;
1.286     raeburn  3064:         }
1.362     raeburn  3065:         if (&Apache::lonnet::allowed('cau',$env{'form.ccdomain'})) {
                   3066:             $canshow{'requestauthor'} = 1;
                   3067:         }
1.267     raeburn  3068:         my (%changeHash,%changed);
1.286     raeburn  3069:         if ($oldinststatus eq '') {
1.334     raeburn  3070:             $oldsettings{'inststatus'} = $othertitle; 
1.286     raeburn  3071:         } else {
                   3072:             if (ref($usertypes) eq 'HASH') {
1.334     raeburn  3073:                 $oldsettings{'inststatus'} = join(', ',map{ $usertypes->{ &unescape($_) }; } (split(/:/,$userenv{'inststatus'})));
1.286     raeburn  3074:             } else {
1.334     raeburn  3075:                 $oldsettings{'inststatus'} = join(', ',map{ &unescape($_); } (split(/:/,$userenv{'inststatus'})));
1.286     raeburn  3076:             }
                   3077:         }
                   3078:         $changeHash{'inststatus'} = $userenv{'inststatus'};
1.334     raeburn  3079:         if ($canmodify_status{'inststatus'}) {
                   3080:             $canshow{'inststatus'} = 1;
1.286     raeburn  3081:             if (exists($env{'form.inststatus'})) {
                   3082:                 my @inststatuses = &Apache::loncommon::get_env_multiple('form.inststatus');
                   3083:                 if (@inststatuses > 0) {
                   3084:                     $newinststatus = join(':',map { &escape($_); } @inststatuses);
                   3085:                     $changeHash{'inststatus'} = $newinststatus;
                   3086:                     if ($newinststatus ne $oldinststatus) {
                   3087:                         $changed{'inststatus'} = $newinststatus;
1.378     raeburn  3088:                         foreach my $name ('portfolio','author') {
                   3089:                             ($newdefquota{$name},$newsettingstatus{$name}) =
                   3090:                                 &Apache::loncommon::default_quota($env{'form.ccdomain'},$newinststatus,$name);
                   3091:                         }
1.286     raeburn  3092:                     }
                   3093:                     if (ref($usertypes) eq 'HASH') {
1.334     raeburn  3094:                         $newsettings{'inststatus'} = join(', ',map{ $usertypes->{$_}; } (@inststatuses)); 
1.286     raeburn  3095:                     } else {
1.337     raeburn  3096:                         $newsettings{'inststatus'} = join(', ',@inststatuses);
1.286     raeburn  3097:                     }
1.334     raeburn  3098:                 }
                   3099:             } else {
                   3100:                 $newinststatus = '';
                   3101:                 $changeHash{'inststatus'} = $newinststatus;
                   3102:                 $newsettings{'inststatus'} = $othertitle;
                   3103:                 if ($newinststatus ne $oldinststatus) {
                   3104:                     $changed{'inststatus'} = $changeHash{'inststatus'};
1.378     raeburn  3105:                     foreach my $name ('portfolio','author') {
                   3106:                         ($newdefquota{$name},$newsettingstatus{$name}) =
                   3107:                             &Apache::loncommon::default_quota($env{'form.ccdomain'},$newinststatus,$name);
                   3108:                     }
1.286     raeburn  3109:                 }
                   3110:             }
1.334     raeburn  3111:         } elsif ($context ne 'selfcreate') {
                   3112:             $canshow{'inststatus'} = 1;
1.337     raeburn  3113:             $newsettings{'inststatus'} = $oldsettings{'inststatus'};
1.286     raeburn  3114:         }
1.378     raeburn  3115:         foreach my $name ('portfolio','author') {
                   3116:             $changeHash{$name.'quota'} = $userenv{$name.'quota'};
                   3117:         }
1.334     raeburn  3118:         if ($context eq 'domain') {
1.378     raeburn  3119:             foreach my $name ('portfolio','author') {
                   3120:                 if ($userenv{$name.'quota'} ne '') {
                   3121:                     $oldquota{$name} = $userenv{$name.'quota'};
                   3122:                     if ($env{'form.custom_'.$name.'quota'} == 1) {
                   3123:                         if ($env{'form.'.$name.'quota'} eq '') {
                   3124:                             $newquota{$name} = 0;
                   3125:                         } else {
                   3126:                             $newquota{$name} = $env{'form.'.$name.'quota'};
                   3127:                             $newquota{$name} =~ s/[^\d\.]//g;
                   3128:                         }
                   3129:                         if ($newquota{$name} != $oldquota{$name}) {
                   3130:                             if (&quota_admin($newquota{$name},\%changeHash,$name)) {
                   3131:                                 $changed{$name.'quota'} = 1;
                   3132:                             }
                   3133:                         }
1.334     raeburn  3134:                     } else {
1.378     raeburn  3135:                         if (&quota_admin('',\%changeHash,$name)) {
                   3136:                             $changed{$name.'quota'} = 1;
                   3137:                             $newquota{$name} = $newdefquota{$name};
                   3138:                             $newisdefault{$name} = 1;
                   3139:                         }
1.334     raeburn  3140:                     }
1.149     raeburn  3141:                 } else {
1.378     raeburn  3142:                     $oldisdefault{$name} = 1;
                   3143:                     $oldquota{$name} = $olddefquota{$name};
                   3144:                     if ($env{'form.custom_'.$name.'quota'} == 1) {
                   3145:                         if ($env{'form.'.$name.'quota'} eq '') {
                   3146:                             $newquota{$name} = 0;
                   3147:                         } else {
                   3148:                             $newquota{$name} = $env{'form.'.$name.'quota'};
                   3149:                             $newquota{$name} =~ s/[^\d\.]//g;
                   3150:                         }
                   3151:                         if (&quota_admin($newquota{$name},\%changeHash,$name)) {
                   3152:                             $changed{$name.'quota'} = 1;
                   3153:                         }
1.334     raeburn  3154:                     } else {
1.378     raeburn  3155:                         $newquota{$name} = $newdefquota{$name};
                   3156:                         $newisdefault{$name} = 1;
1.334     raeburn  3157:                     }
1.378     raeburn  3158:                 }
                   3159:                 if ($oldisdefault{$name}) {
                   3160:                     $oldsettingstext{'quota'}{$name} = &get_defaultquota_text($oldsettingstatus{$name});
1.383     raeburn  3161:                 }  else {
                   3162:                     $oldsettingstext{'quota'}{$name} = &mt('custom quota: [_1] MB',$oldquota{$name});
1.378     raeburn  3163:                 }
                   3164:                 if ($newisdefault{$name}) {
                   3165:                     $newsettingstext{'quota'}{$name} = &get_defaultquota_text($newsettingstatus{$name});
1.383     raeburn  3166:                 } else {
                   3167:                     $newsettingstext{'quota'}{$name} = &mt('custom quota: [_1] MB',$newquota{$name});
1.134     raeburn  3168:                 }
                   3169:             }
1.334     raeburn  3170:             &tool_changes('tools',\@usertools,\%oldsettings,\%oldsettingstext,\%userenv,
                   3171:                           \%changeHash,\%changed,\%newsettings,\%newsettingstext);
                   3172:             if ($env{'form.ccdomain'} eq $env{'request.role.domain'}) {
                   3173:                 &tool_changes('requestcourses',\@requestcourses,\%oldsettings,\%oldsettingstext,
                   3174:                               \%userenv,\%changeHash,\%changed,\%newsettings,\%newsettingstext);
1.384     raeburn  3175:                 &tool_changes('requestauthor',\@requestauthor,\%oldsettings,\%oldsettingstext,
                   3176:                               \%userenv,\%changeHash,\%changed,\%newsettings,\%newsettingstext);
1.149     raeburn  3177:             } else {
1.334     raeburn  3178:                 &tool_changes('reqcrsotherdom',\@requestcourses,\%oldsettings,\%oldsettingstext,
                   3179:                               \%userenv,\%changeHash,\%changed,\%newsettings,\%newsettingstext);
1.149     raeburn  3180:             }
                   3181:         }
1.334     raeburn  3182:         foreach my $item (@userinfo) {
                   3183:             if ($env{'form.c'.$item} ne $userenv{$item}) {
                   3184:                 $namechanged{$item} = 1;
                   3185:             }
1.204     raeburn  3186:         }
1.378     raeburn  3187:         foreach my $name ('portfolio','author') {
1.390     bisitz   3188:             $oldsettings{'quota'}{$name} = &mt('[_1] MB',$oldquota{$name});
                   3189:             $newsettings{'quota'}{$name} = &mt('[_1] MB',$newquota{$name});
1.378     raeburn  3190:         }
1.334     raeburn  3191:         if ((keys(%namechanged) > 0) || (keys(%changed) > 0)) {
1.267     raeburn  3192:             my ($chgresult,$namechgresult);
                   3193:             if (keys(%changed) > 0) {
                   3194:                 $chgresult = 
1.204     raeburn  3195:                     &Apache::lonnet::put('environment',\%changeHash,
                   3196:                                   $env{'form.ccdomain'},$env{'form.ccuname'});
1.267     raeburn  3197:                 if ($chgresult eq 'ok') {
                   3198:                     if (($env{'user.name'} eq $env{'form.ccuname'}) &&
                   3199:                         ($env{'user.domain'} eq $env{'form.ccdomain'})) {
1.270     raeburn  3200:                         my %newenvhash;
                   3201:                         foreach my $key (keys(%changed)) {
1.411     raeburn  3202:                             if (($key eq 'official') || ($key eq 'unofficial') ||
                   3203:                                 ($key eq 'community') || ($key eq 'textbook') ||
                   3204:                                 ($key eq 'placement')) {
1.279     raeburn  3205:                                 $newenvhash{'environment.requestcourses.'.$key} =
                   3206:                                     $changeHash{'requestcourses.'.$key};
1.362     raeburn  3207:                                 if ($changeHash{'requestcourses.'.$key}) {
1.332     raeburn  3208:                                     $newenvhash{'environment.canrequest.'.$key} = 1;
1.279     raeburn  3209:                                 } else {
                   3210:                                     $newenvhash{'environment.canrequest.'.$key} =
                   3211:           &Apache::lonnet::usertools_access($env{'user.name'},$env{'user.domain'},
                   3212:                                             $key,'reload','requestcourses');
                   3213:                                 }
1.362     raeburn  3214:                             } elsif ($key eq 'requestauthor') {
                   3215:                                 $newenvhash{'environment.'.$key} = $changeHash{$key};
                   3216:                                 if ($changeHash{$key}) {
                   3217:                                     $newenvhash{'environment.canrequest.author'} = 1;
                   3218:                                 } else {
                   3219:                                     $newenvhash{'environment.canrequest.author'} =
                   3220:           &Apache::lonnet::usertools_access($env{'user.name'},$env{'user.domain'},
                   3221:                                             $key,'reload','requestauthor');
                   3222:                                 }
1.275     raeburn  3223:                             } elsif ($key ne 'quota') {
1.270     raeburn  3224:                                 $newenvhash{'environment.tools.'.$key} = 
                   3225:                                     $changeHash{'tools.'.$key};
1.279     raeburn  3226:                                 if ($changeHash{'tools.'.$key} ne '') {
                   3227:                                     $newenvhash{'environment.availabletools.'.$key} =
                   3228:                                         $changeHash{'tools.'.$key};
                   3229:                                 } else {
                   3230:                                     $newenvhash{'environment.availabletools.'.$key} =
1.367     golterma 3231:           &Apache::lonnet::usertools_access($env{'user.name'},$env{'user.domain'},
                   3232:           $key,'reload','tools');
1.279     raeburn  3233:                                 }
1.270     raeburn  3234:                             }
                   3235:                         }
1.271     raeburn  3236:                         if (keys(%newenvhash)) {
                   3237:                             &Apache::lonnet::appenv(\%newenvhash);
                   3238:                         }
1.267     raeburn  3239:                     }
                   3240:                 }
1.204     raeburn  3241:             }
1.334     raeburn  3242:             if (keys(%namechanged) > 0) {
1.337     raeburn  3243:                 foreach my $field (@userinfo) {
                   3244:                     $changeHash{$field}  = $env{'form.c'.$field};
                   3245:                 }
                   3246: # Make the change
1.204     raeburn  3247:                 $namechgresult =
                   3248:                     &Apache::lonnet::modifyuser($env{'form.ccdomain'},
                   3249:                         $env{'form.ccuname'},$changeHash{'id'},undef,undef,
                   3250:                         $changeHash{'firstname'},$changeHash{'middlename'},
                   3251:                         $changeHash{'lastname'},$changeHash{'generation'},
1.337     raeburn  3252:                         $changeHash{'id'},undef,$changeHash{'permanentemail'},undef,\@userinfo);
1.220     raeburn  3253:                 %userupdate = (
                   3254:                                lastname   => $env{'form.clastname'},
                   3255:                                middlename => $env{'form.cmiddlename'},
                   3256:                                firstname  => $env{'form.cfirstname'},
                   3257:                                generation => $env{'form.cgeneration'},
                   3258:                                id         => $env{'form.cid'},
                   3259:                              );
1.204     raeburn  3260:             }
1.334     raeburn  3261:             if (((keys(%namechanged) > 0) && $namechgresult eq 'ok') || 
1.267     raeburn  3262:                 ((keys(%changed) > 0) && $chgresult eq 'ok')) {
1.28      matthew  3263:             # Tell the user we changed the name
1.334     raeburn  3264:                 &display_userinfo($r,1,\@disporder,\%canshow,\@requestcourses,
1.362     raeburn  3265:                                   \@usertools,\@requestauthor,\%userenv,\%changed,\%namechanged,
1.334     raeburn  3266:                                   \%oldsettings, \%oldsettingstext,\%newsettings,
                   3267:                                   \%newsettingstext);
1.203     raeburn  3268:                 if ($env{'form.cid'} ne $userenv{'id'}) {
                   3269:                     &Apache::lonnet::idput($env{'form.ccdomain'},
1.407     raeburn  3270:                          {$env{'form.ccuname'} => $env{'form.cid'}},$uhome,'ids');
1.203     raeburn  3271:                     if (($recurseid) &&
                   3272:                         (&Apache::lonnet::allowed('mau',$env{'form.ccdomain'}))) {
                   3273:                         my $idresult = 
                   3274:                             &Apache::lonuserutils::propagate_id_change(
                   3275:                                 $env{'form.ccuname'},$env{'form.ccdomain'},
                   3276:                                 \%userupdate);
                   3277:                         $r->print('<br />'.$idresult.'<br />');
                   3278:                     }
1.196     raeburn  3279:                 }
1.149     raeburn  3280:                 if (($env{'form.ccdomain'} eq $env{'user.domain'}) && 
                   3281:                     ($env{'form.ccuname'} eq $env{'user.name'})) {
                   3282:                     my %newenvhash;
                   3283:                     foreach my $key (keys(%changeHash)) {
                   3284:                         $newenvhash{'environment.'.$key} = $changeHash{$key};
                   3285:                     }
1.238     raeburn  3286:                     &Apache::lonnet::appenv(\%newenvhash);
1.149     raeburn  3287:                 }
1.28      matthew  3288:             } else { # error occurred
1.389     bisitz   3289:                 $r->print(
                   3290:                     '<p class="LC_error">'
                   3291:                    .&mt('Unable to successfully change environment for [_1] in domain [_2].',
                   3292:                             '"'.$env{'form.ccuname'}.'"',
                   3293:                             '"'.$env{'form.ccdomain'}.'"')
                   3294:                    .'</p>');
1.28      matthew  3295:             }
1.334     raeburn  3296:         } else { # End of if ($env ... ) logic
1.275     raeburn  3297:             # They did not want to change the users name, quota, tool availability,
                   3298:             # or ability to request creation of courses, 
1.267     raeburn  3299:             # but we can still tell them what the name and quota and availabilities are  
1.334     raeburn  3300:             &display_userinfo($r,undef,\@disporder,\%canshow,\@requestcourses,
1.362     raeburn  3301:                               \@usertools,\@requestauthor,\%userenv,\%changed,\%namechanged,\%oldsettings,
1.334     raeburn  3302:                               \%oldsettingstext,\%newsettings,\%newsettingstext);
1.28      matthew  3303:         }
1.206     raeburn  3304:         if (@mod_disallowed) {
                   3305:             my ($rolestr,$contextname);
                   3306:             if (@longroles > 0) {
                   3307:                 $rolestr = join(', ',@longroles);
                   3308:             } else {
                   3309:                 $rolestr = &mt('No roles');
                   3310:             }
                   3311:             if ($context eq 'course') {
1.399     bisitz   3312:                 $contextname = 'course';
1.206     raeburn  3313:             } elsif ($context eq 'author') {
1.399     bisitz   3314:                 $contextname = 'co-author';
1.206     raeburn  3315:             }
                   3316:             $r->print(&mt('The following fields were not updated: ').'<ul>');
                   3317:             my %fieldtitles = &Apache::loncommon::personal_data_fieldtitles();
                   3318:             foreach my $field (@mod_disallowed) {
                   3319:                 $r->print('<li>'.$fieldtitles{$field}.'</li>'."\n"); 
                   3320:             }
1.207     raeburn  3321:             $r->print('</ul>');
                   3322:             if (@mod_disallowed == 1) {
1.399     bisitz   3323:                 $r->print(&mt("You do not have the authority to change this field given the user's current set of active/future $contextname roles:"));
1.207     raeburn  3324:             } else {
1.399     bisitz   3325:                 $r->print(&mt("You do not have the authority to change these fields given the user's current set of active/future $contextname roles:"));
1.207     raeburn  3326:             }
1.292     bisitz   3327:             my $helplink = 'javascript:helpMenu('."'display'".')';
                   3328:             $r->print('<span class="LC_cusr_emph">'.$rolestr.'</span><br />'
                   3329:                      .&mt('Please contact your [_1]helpdesk[_2] for more information.'
                   3330:                          ,'<a href="'.$helplink.'">','</a>')
                   3331:                       .'<br />');
1.206     raeburn  3332:         }
1.259     bisitz   3333:         $r->print('<span class="LC_warning">'
                   3334:                   .$no_forceid_alert
                   3335:                   .&Apache::lonuserutils::print_namespacing_alerts($env{'form.ccdomain'},\%alerts,\%curr_rules)
                   3336:                   .'</span>');
1.4       www      3337:     }
1.367     golterma 3338:     &Apache::lonhtmlcommon::Close_PrgWin($r,\%prog_state);
1.220     raeburn  3339:     if ($env{'form.action'} eq 'singlestudent') {
1.375     raeburn  3340:         &enroll_single_student($r,$uhome,$amode,$genpwd,$now,$newuser,$context,
                   3341:                                $crstype,$showcredits,$defaultcredits);
1.386     bisitz   3342:         my $linktext = ($crstype eq 'Community' ?
                   3343:             &mt('Enroll Another Member') : &mt('Enroll Another Student'));
                   3344:         $r->print(
                   3345:             &Apache::lonhtmlcommon::actionbox([
                   3346:                 '<a href="javascript:backPage(document.userupdate)">'
                   3347:                .($crstype eq 'Community' ? 
                   3348:                     &mt('Enroll Another Member') : &mt('Enroll Another Student'))
                   3349:                .'</a>']));
1.220     raeburn  3350:     } else {
1.375     raeburn  3351:         my @rolechanges = &update_roles($r,$context,$showcredits);
1.334     raeburn  3352:         if (keys(%namechanged) > 0) {
1.220     raeburn  3353:             if ($context eq 'course') {
                   3354:                 if (@userroles > 0) {
1.225     raeburn  3355:                     if ((@rolechanges == 0) || 
                   3356:                         (!(grep(/^st$/,@rolechanges)))) {
                   3357:                         if (grep(/^st$/,@userroles)) {
                   3358:                             my $classlistupdated =
                   3359:                                 &Apache::lonuserutils::update_classlist($cdom,
1.220     raeburn  3360:                                               $cnum,$env{'form.ccdomain'},
                   3361:                                        $env{'form.ccuname'},\%userupdate);
1.225     raeburn  3362:                         }
1.220     raeburn  3363:                     }
                   3364:                 }
                   3365:             }
                   3366:         }
1.226     raeburn  3367:         my $userinfo = &Apache::loncommon::plainname($env{'form.ccuname'},
1.233     raeburn  3368:                                                      $env{'form.ccdomain'});
                   3369:         if ($env{'form.popup'}) {
                   3370:             $r->print('<p><a href="javascript:window.close()">'.&mt('Close window').'</a></p>');
                   3371:         } else {
1.367     golterma 3372:             $r->print('<br />'.&Apache::lonhtmlcommon::actionbox(['<a href="javascript:backPage(document.userupdate,'."'$env{'form.prevphase'}','modify'".')">'
                   3373:                      .&mt('Modify this user: [_1]','<span class="LC_cusr_emph">'.$env{'form.ccuname'}.':'.$env{'form.ccdomain'}.' ('.$userinfo.')</span>').'</a>',
                   3374:                      '<a href="javascript:backPage(document.userupdate)">'.&mt('Create/Modify Another User').'</a>']));
1.233     raeburn  3375:         }
1.220     raeburn  3376:     }
                   3377: }
                   3378: 
1.334     raeburn  3379: sub display_userinfo {
1.362     raeburn  3380:     my ($r,$changed,$order,$canshow,$requestcourses,$usertools,$requestauthor,
                   3381:         $userenv,$changedhash,$namechangedhash,$oldsetting,$oldsettingtext,
1.334     raeburn  3382:         $newsetting,$newsettingtext) = @_;
                   3383:     return unless (ref($order) eq 'ARRAY' &&
                   3384:                    ref($canshow) eq 'HASH' && 
                   3385:                    ref($requestcourses) eq 'ARRAY' && 
1.362     raeburn  3386:                    ref($requestauthor) eq 'ARRAY' &&
1.334     raeburn  3387:                    ref($usertools) eq 'ARRAY' && 
                   3388:                    ref($userenv) eq 'HASH' &&
                   3389:                    ref($changedhash) eq 'HASH' &&
                   3390:                    ref($oldsetting) eq 'HASH' &&
                   3391:                    ref($oldsettingtext) eq 'HASH' &&
                   3392:                    ref($newsetting) eq 'HASH' &&
                   3393:                    ref($newsettingtext) eq 'HASH');
                   3394:     my %lt=&Apache::lonlocal::texthash(
1.372     raeburn  3395:          'ui'             => 'User Information',
1.334     raeburn  3396:          'uic'            => 'User Information Changed',
                   3397:          'firstname'      => 'First Name',
                   3398:          'middlename'     => 'Middle Name',
                   3399:          'lastname'       => 'Last Name',
                   3400:          'generation'     => 'Generation',
                   3401:          'id'             => 'Student/Employee ID',
                   3402:          'permanentemail' => 'Permanent e-mail address',
1.378     raeburn  3403:          'portfolioquota' => 'Disk space allocated to portfolio files',
1.385     bisitz   3404:          'authorquota'    => 'Disk space allocated to Authoring Space',
1.334     raeburn  3405:          'blog'           => 'Blog Availability',
1.361     raeburn  3406:          'webdav'         => 'WebDAV Availability',
1.334     raeburn  3407:          'aboutme'        => 'Personal Information Page Availability',
                   3408:          'portfolio'      => 'Portfolio Availability',
                   3409:          'official'       => 'Can Request Official Courses',
                   3410:          'unofficial'     => 'Can Request Unofficial Courses',
                   3411:          'community'      => 'Can Request Communities',
1.384     raeburn  3412:          'textbook'       => 'Can Request Textbook Courses',
1.411     raeburn  3413:          'placement'      => 'Can Request Placement Tests',
1.362     raeburn  3414:          'requestauthor'  => 'Can Request Author Role',
1.334     raeburn  3415:          'inststatus'     => "Affiliation",
                   3416:          'prvs'           => 'Previous Value:',
                   3417:          'chto'           => 'Changed To:'
                   3418:     );
                   3419:     if ($changed) {
1.372     raeburn  3420:         $r->print('<h3>'.$lt{'uic'}.'</h3>'.
1.367     golterma 3421:                 &Apache::loncommon::start_data_table().
                   3422:                 &Apache::loncommon::start_data_table_header_row());
1.334     raeburn  3423:         $r->print("<th>&nbsp;</th>\n");
1.367     golterma 3424:         $r->print('<th><b>'.$lt{'prvs'}.'</b></th>');
                   3425:         $r->print('<th><span class="LC_nobreak"><b>'.$lt{'chto'}.'</b></span></th>');
                   3426:         $r->print(&Apache::loncommon::end_data_table_header_row());
                   3427:         my @userinfo = ('firstname','middlename','lastname','generation','permanentemail','id');
                   3428: 
1.334     raeburn  3429:         foreach my $item (@userinfo) {
                   3430:             my $value = $env{'form.c'.$item};
1.367     golterma 3431:             #show changes only:
1.383     raeburn  3432:             unless ($value eq $userenv->{$item}){
1.367     golterma 3433:                 $r->print(&Apache::loncommon::start_data_table_row());
                   3434:                 $r->print("<td>$lt{$item}</td>\n");
1.383     raeburn  3435:                 $r->print("<td>".$userenv->{$item}."</td>\n");
1.367     golterma 3436:                 $r->print("<td>$value </td>\n");
                   3437:                 $r->print(&Apache::loncommon::end_data_table_row());
1.334     raeburn  3438:             }
                   3439:         }
                   3440:         foreach my $entry (@{$order}) {
1.383     raeburn  3441:             if ($canshow->{$entry}) {
                   3442:                 if (($entry eq 'requestcourses') || ($entry eq 'reqcrsotherdom') || ($entry eq 'requestauthor')) {
                   3443:                     my @items;
                   3444:                     if ($entry eq 'requestauthor') {
                   3445:                         @items = ($entry);
                   3446:                     } else {
                   3447:                         @items = @{$requestcourses};
1.384     raeburn  3448:                     }
1.383     raeburn  3449:                     foreach my $item (@items) {
                   3450:                         if (($newsetting->{$item} ne $oldsetting->{$item}) || 
                   3451:                             ($newsettingtext->{$item} ne $oldsettingtext->{$item})) {
                   3452:                             $r->print(&Apache::loncommon::start_data_table_row()."\n");  
                   3453:                             $r->print("<td>$lt{$item}</td>\n");
                   3454:                             $r->print("<td>".$oldsetting->{$item});
                   3455:                             if ($oldsettingtext->{$item}) {
                   3456:                                 if ($oldsetting->{$item}) {
                   3457:                                     $r->print(' -- ');
                   3458:                                 }
                   3459:                                 $r->print($oldsettingtext->{$item});
                   3460:                             }
                   3461:                             $r->print("</td>\n");
                   3462:                             $r->print("<td>".$newsetting->{$item});
                   3463:                             if ($newsettingtext->{$item}) {
                   3464:                                 if ($newsetting->{$item}) {
                   3465:                                     $r->print(' -- ');
                   3466:                                 }
                   3467:                                 $r->print($newsettingtext->{$item});
                   3468:                             }
                   3469:                             $r->print("</td>\n");
                   3470:                             $r->print(&Apache::loncommon::end_data_table_row()."\n");
1.334     raeburn  3471:                         }
                   3472:                     }
                   3473:                 } elsif ($entry eq 'tools') {
                   3474:                     foreach my $item (@{$usertools}) {
1.383     raeburn  3475:                         if ($newsetting->{$item} ne $oldsetting->{$item}) {
                   3476:                             $r->print(&Apache::loncommon::start_data_table_row()."\n");
                   3477:                             $r->print("<td>$lt{$item}</td>\n");
                   3478:                             $r->print("<td>".$oldsetting->{$item}.' '.$oldsettingtext->{$item}."</td>\n");
                   3479:                             $r->print("<td>".$newsetting->{$item}.' '.$newsettingtext->{$item}."</td>\n");
                   3480:                             $r->print(&Apache::loncommon::end_data_table_row()."\n");
1.334     raeburn  3481:                         }
                   3482:                     }
1.378     raeburn  3483:                 } elsif ($entry eq 'quota') {
                   3484:                     if ((ref($oldsetting->{$entry}) eq 'HASH') && (ref($oldsettingtext->{$entry}) eq 'HASH') &&
                   3485:                         (ref($newsetting->{$entry}) eq 'HASH') && (ref($newsettingtext->{$entry}) eq 'HASH')) {
                   3486:                         foreach my $name ('portfolio','author') {
1.383     raeburn  3487:                             if ($newsetting->{$entry}->{$name} ne $oldsetting->{$entry}->{$name}) {
                   3488:                                 $r->print(&Apache::loncommon::start_data_table_row()."\n");
                   3489:                                 $r->print("<td>$lt{$name.$entry}</td>\n");
                   3490:                                 $r->print("<td>".$oldsettingtext->{$entry}->{$name}."</td>\n");
                   3491:                                 $r->print("<td>".$newsettingtext->{$entry}->{$name}."</td>\n");
                   3492:                                 $r->print(&Apache::loncommon::end_data_table_row()."\n");
1.378     raeburn  3493:                             }
                   3494:                         }
                   3495:                     }
1.334     raeburn  3496:                 } else {
1.383     raeburn  3497:                     if ($newsetting->{$entry} ne $oldsetting->{$entry}) {
                   3498:                         $r->print(&Apache::loncommon::start_data_table_row()."\n");
                   3499:                         $r->print("<td>$lt{$entry}</td>\n");
                   3500:                         $r->print("<td>".$oldsetting->{$entry}.' '.$oldsettingtext->{$entry}."</td>\n");
                   3501:                         $r->print("<td>".$newsetting->{$entry}.' '.$newsettingtext->{$entry}."</td>\n");
                   3502:                         $r->print(&Apache::loncommon::end_data_table_row()."\n");
1.334     raeburn  3503:                     }
                   3504:                 }
                   3505:             }
                   3506:         }
1.367     golterma 3507:         $r->print(&Apache::loncommon::end_data_table().'<br />');
1.372     raeburn  3508:     } else {
                   3509:         $r->print('<h3>'.$lt{'ui'}.'</h3>'.
                   3510:                   '<p>'.&mt('No changes made to user information').'</p>');
1.334     raeburn  3511:     }
                   3512:     return;
                   3513: }
                   3514: 
1.275     raeburn  3515: sub tool_changes {
                   3516:     my ($context,$usertools,$oldaccess,$oldaccesstext,$userenv,$changeHash,
                   3517:         $changed,$newaccess,$newaccesstext) = @_;
                   3518:     if (!((ref($usertools) eq 'ARRAY') && (ref($oldaccess) eq 'HASH') &&
                   3519:           (ref($oldaccesstext) eq 'HASH') && (ref($userenv) eq 'HASH') &&
                   3520:           (ref($changeHash) eq 'HASH') && (ref($changed) eq 'HASH') &&
                   3521:           (ref($newaccess) eq 'HASH') && (ref($newaccesstext) eq 'HASH'))) {
                   3522:         return;
                   3523:     }
1.383     raeburn  3524:     my %reqdisplay = &requestchange_display();
1.300     raeburn  3525:     if ($context eq 'reqcrsotherdom') {
1.309     raeburn  3526:         my @options = ('approval','validate','autolimit');
1.306     raeburn  3527:         my $optregex = join('|',@options);
1.300     raeburn  3528:         my $cdom = $env{'request.role.domain'};
                   3529:         foreach my $tool (@{$usertools}) {
1.383     raeburn  3530:             $oldaccesstext->{$tool} = &mt("availability set to 'off'");
1.314     raeburn  3531:             $newaccesstext->{$tool} = $oldaccesstext->{$tool};
1.300     raeburn  3532:             $changeHash->{$context.'.'.$tool} = $userenv->{$context.'.'.$tool};
1.383     raeburn  3533:             my ($newop,$limit);
1.314     raeburn  3534:             if ($env{'form.'.$context.'_'.$tool}) {
                   3535:                 $newop = $env{'form.'.$context.'_'.$tool};
                   3536:                 if ($newop eq 'autolimit') {
1.383     raeburn  3537:                     $limit = $env{'form.'.$context.'_'.$tool.'_limit'};
1.314     raeburn  3538:                     $limit =~ s/\D+//g;
                   3539:                     $newop .= '='.$limit;
                   3540:                 }
                   3541:             }
1.300     raeburn  3542:             if ($userenv->{$context.'.'.$tool} eq '') {
1.314     raeburn  3543:                 if ($newop) {
                   3544:                     $changed->{$tool}=&tool_admin($tool,$cdom.':'.$newop,
1.300     raeburn  3545:                                                   $changeHash,$context);
                   3546:                     if ($changed->{$tool}) {
1.383     raeburn  3547:                         if ($newop =~ /^autolimit/) {
                   3548:                             if ($limit) {
                   3549:                                 $newaccesstext->{$tool} = &mt('available with automatic approval, up to limit of [quant,_1,request] per user',$limit);
                   3550:                             } else {
                   3551:                                 $newaccesstext->{$tool} = &mt('available with automatic approval (unlimited)');
                   3552:                             }
                   3553:                         } else {
                   3554:                             $newaccesstext->{$tool} = $reqdisplay{$newop};
                   3555:                         }
1.300     raeburn  3556:                     } else {
                   3557:                         $newaccesstext->{$tool} = $oldaccesstext->{$tool};
                   3558:                     }
                   3559:                 }
                   3560:             } else {
                   3561:                 my @curr = split(',',$userenv->{$context.'.'.$tool});
                   3562:                 my @new;
                   3563:                 my $changedoms;
1.314     raeburn  3564:                 foreach my $req (@curr) {
                   3565:                     if ($req =~ /^\Q$cdom\E\:($optregex\=?\d*)$/) {
                   3566:                         my $oldop = $1;
1.383     raeburn  3567:                         if ($oldop =~ /^autolimit=(\d*)/) {
                   3568:                             my $limit = $1;
                   3569:                             if ($limit) {
                   3570:                                 $oldaccesstext->{$tool} = &mt('available with automatic approval, up to limit of [quant,_1,request] per user',$limit);
                   3571:                             } else {
                   3572:                                 $oldaccesstext->{$tool} = &mt('available with automatic approval (unlimited)');
                   3573:                             }
                   3574:                         } else {
                   3575:                             $oldaccesstext->{$tool} = $reqdisplay{$oldop};
                   3576:                         }
1.314     raeburn  3577:                         if ($oldop ne $newop) {
                   3578:                             $changedoms = 1;
                   3579:                             foreach my $item (@curr) {
                   3580:                                 my ($reqdom,$option) = split(':',$item);
                   3581:                                 unless ($reqdom eq $cdom) {
                   3582:                                     push(@new,$item);
                   3583:                                 }
                   3584:                             }
                   3585:                             if ($newop) {
                   3586:                                 push(@new,$cdom.':'.$newop);
1.300     raeburn  3587:                             }
1.314     raeburn  3588:                             @new = sort(@new);
1.300     raeburn  3589:                         }
1.314     raeburn  3590:                         last;
1.300     raeburn  3591:                     }
1.314     raeburn  3592:                 }
                   3593:                 if ((!$changedoms) && ($newop)) {
1.300     raeburn  3594:                     $changedoms = 1;
1.306     raeburn  3595:                     @new = sort(@curr,$cdom.':'.$newop);
1.300     raeburn  3596:                 }
                   3597:                 if ($changedoms) {
1.314     raeburn  3598:                     my $newdomstr;
1.300     raeburn  3599:                     if (@new) {
                   3600:                         $newdomstr = join(',',@new);
                   3601:                     }
                   3602:                     $changed->{$tool}=&tool_admin($tool,$newdomstr,$changeHash,
                   3603:                                                   $context);
                   3604:                     if ($changed->{$tool}) {
                   3605:                         if ($env{'form.'.$context.'_'.$tool}) {
1.306     raeburn  3606:                             if ($env{'form.'.$context.'_'.$tool} eq 'autolimit') {
1.314     raeburn  3607:                                 my $limit = $env{'form.'.$context.'_'.$tool.'_limit'};
                   3608:                                 $limit =~ s/\D+//g;
                   3609:                                 if ($limit) {
1.383     raeburn  3610:                                     $newaccesstext->{$tool} = &mt('available with automatic approval, up to limit of [quant,_1,request] per user',$limit);
1.314     raeburn  3611:                                 } else {
1.383     raeburn  3612:                                     $newaccesstext->{$tool} = &mt('available with automatic approval (unlimited)');
1.306     raeburn  3613:                                 }
1.314     raeburn  3614:                             } else {
1.306     raeburn  3615:                                 $newaccesstext->{$tool} = $reqdisplay{$env{'form.'.$context.'_'.$tool}};
                   3616:                             }
1.300     raeburn  3617:                         } else {
1.383     raeburn  3618:                             $newaccesstext->{$tool} = &mt("availability set to 'off'");
1.300     raeburn  3619:                         }
                   3620:                     }
                   3621:                 }
                   3622:             }
                   3623:         }
                   3624:         return;
                   3625:     }
1.275     raeburn  3626:     foreach my $tool (@{$usertools}) {
1.383     raeburn  3627:         my ($newval,$limit,$envkey);
1.362     raeburn  3628:         $envkey = $context.'.'.$tool;
1.306     raeburn  3629:         if ($context eq 'requestcourses') {
                   3630:             $newval = $env{'form.crsreq_'.$tool};
                   3631:             if ($newval eq 'autolimit') {
1.383     raeburn  3632:                 $limit = $env{'form.crsreq_'.$tool.'_limit'};
                   3633:                 $limit =~ s/\D+//g;
                   3634:                 $newval .= '='.$limit;
1.306     raeburn  3635:             }
1.362     raeburn  3636:         } elsif ($context eq 'requestauthor') {
                   3637:             $newval = $env{'form.'.$context};
                   3638:             $envkey = $context;
1.314     raeburn  3639:         } else {
1.306     raeburn  3640:             $newval = $env{'form.'.$context.'_'.$tool};
                   3641:         }
1.362     raeburn  3642:         if ($userenv->{$envkey} ne '') {
1.275     raeburn  3643:             $oldaccess->{$tool} = &mt('custom');
1.383     raeburn  3644:             if (($context eq 'requestcourses') || ($context eq 'requestauthor')) {
                   3645:                 if ($userenv->{$envkey} =~ /^autolimit=(\d*)$/) {
                   3646:                     my $currlimit = $1;
                   3647:                     if ($currlimit eq '') {
                   3648:                         $oldaccesstext->{$tool} = &mt('available with automatic approval (unlimited)');
                   3649:                     } else {
                   3650:                         $oldaccesstext->{$tool} = &mt('available with automatic approval, up to limit of [quant,_1,request] per user',$currlimit);
                   3651:                     }
                   3652:                 } elsif ($userenv->{$envkey}) {
                   3653:                     $oldaccesstext->{$tool} = $reqdisplay{$userenv->{$envkey}};
                   3654:                 } else {
                   3655:                     $oldaccesstext->{$tool} = &mt("availability set to 'off'");
                   3656:                 }
1.275     raeburn  3657:             } else {
1.383     raeburn  3658:                 if ($userenv->{$envkey}) {
                   3659:                     $oldaccesstext->{$tool} = &mt("availability set to 'on'");
                   3660:                 } else {
                   3661:                     $oldaccesstext->{$tool} = &mt("availability set to 'off'");
                   3662:                 }
1.275     raeburn  3663:             }
1.362     raeburn  3664:             $changeHash->{$envkey} = $userenv->{$envkey};
1.275     raeburn  3665:             if ($env{'form.custom'.$tool} == 1) {
1.362     raeburn  3666:                 if ($newval ne $userenv->{$envkey}) {
1.306     raeburn  3667:                     $changed->{$tool} = &tool_admin($tool,$newval,$changeHash,
                   3668:                                                     $context);
1.275     raeburn  3669:                     if ($changed->{$tool}) {
                   3670:                         $newaccess->{$tool} = &mt('custom');
1.383     raeburn  3671:                         if (($context eq 'requestcourses') || ($context eq 'requestauthor')) {
                   3672:                             if ($newval =~ /^autolimit/) {
                   3673:                                 if ($limit) {
                   3674:                                     $newaccesstext->{$tool} = &mt('available with automatic approval, up to limit of [quant,_1,request] per user',$limit);
                   3675:                                 } else {
                   3676:                                     $newaccesstext->{$tool} = &mt('available with automatic approval (unlimited)');
                   3677:                                 }
                   3678:                             } elsif ($newval) {
                   3679:                                 $newaccesstext->{$tool} = $reqdisplay{$newval};
                   3680:                             } else {
                   3681:                                 $newaccesstext->{$tool} = &mt("availability set to 'off'");
                   3682:                             }
1.275     raeburn  3683:                         } else {
1.383     raeburn  3684:                             if ($newval) {
                   3685:                                 $newaccesstext->{$tool} = &mt("availability set to 'on'");
                   3686:                             } else {
                   3687:                                 $newaccesstext->{$tool} = &mt("availability set to 'off'");
                   3688:                             }
1.275     raeburn  3689:                         }
                   3690:                     } else {
                   3691:                         $newaccess->{$tool} = $oldaccess->{$tool};
1.383     raeburn  3692:                         if (($context eq 'requestcourses') || ($context eq 'requestauthor')) {
                   3693:                             if ($newval =~ /^autolimit/) {
                   3694:                                 if ($limit) {
                   3695:                                     $newaccesstext->{$tool} = &mt('available with automatic approval, up to limit of [quant,_1,request] per user',$limit);
                   3696:                                 } else {
                   3697:                                     $newaccesstext->{$tool} = &mt('available with automatic approval (unlimited)');
                   3698:                                 }
                   3699:                             } elsif ($newval) {
                   3700:                                 $newaccesstext->{$tool} = $reqdisplay{$newval};
                   3701:                             } else {
                   3702:                                 $newaccesstext->{$tool} = &mt("availability set to 'off'");
                   3703:                             }
1.275     raeburn  3704:                         } else {
1.383     raeburn  3705:                             if ($userenv->{$context.'.'.$tool}) {
                   3706:                                 $newaccesstext->{$tool} = &mt("availability set to 'on'");
                   3707:                             } else {
                   3708:                                 $newaccesstext->{$tool} = &mt("availability set to 'off'");
                   3709:                             }
1.275     raeburn  3710:                         }
                   3711:                     }
                   3712:                 } else {
                   3713:                     $newaccess->{$tool} = $oldaccess->{$tool};
                   3714:                     $newaccesstext->{$tool} = $oldaccesstext->{$tool};
                   3715:                 }
                   3716:             } else {
                   3717:                 $changed->{$tool} = &tool_admin($tool,'',$changeHash,$context);
                   3718:                 if ($changed->{$tool}) {
                   3719:                     $newaccess->{$tool} = &mt('default');
                   3720:                 } else {
                   3721:                     $newaccess->{$tool} = $oldaccess->{$tool};
1.383     raeburn  3722:                     if (($context eq 'requestcourses') || ($context eq 'requestauthor')) {
                   3723:                         if ($newval =~ /^autolimit/) {
                   3724:                             if ($limit) {
                   3725:                                 $newaccesstext->{$tool} = &mt('available with automatic approval, up to limit of [quant,_1,request] per user',$limit);
                   3726:                             } else {
                   3727:                                 $newaccesstext->{$tool} = &mt('available with automatic approval (unlimited)');
                   3728:                             }
                   3729:                         } elsif ($newval) {
                   3730:                             $newaccesstext->{$tool} = $reqdisplay{$newval};
                   3731:                         } else {
                   3732:                             $newaccesstext->{$tool} = &mt("availability set to 'off'");
                   3733:                         }
1.275     raeburn  3734:                     } else {
1.383     raeburn  3735:                         if ($userenv->{$context.'.'.$tool}) {
                   3736:                             $newaccesstext->{$tool} = &mt("availability set to 'on'");
                   3737:                         } else {
                   3738:                             $newaccesstext->{$tool} = &mt("availability set to 'off'");
                   3739:                         }
1.275     raeburn  3740:                     }
                   3741:                 }
                   3742:             }
                   3743:         } else {
                   3744:             $oldaccess->{$tool} = &mt('default');
                   3745:             if ($env{'form.custom'.$tool} == 1) {
1.306     raeburn  3746:                 $changed->{$tool} = &tool_admin($tool,$newval,$changeHash,
                   3747:                                                 $context);
1.275     raeburn  3748:                 if ($changed->{$tool}) {
                   3749:                     $newaccess->{$tool} = &mt('custom');
1.383     raeburn  3750:                     if (($context eq 'requestcourses') || ($context eq 'requestauthor')) {
                   3751:                         if ($newval =~ /^autolimit/) {
                   3752:                             if ($limit) {
                   3753:                                 $newaccesstext->{$tool} = &mt('available with automatic approval, up to limit of [quant,_1,request] per user',$limit);
                   3754:                             } else {
                   3755:                                 $newaccesstext->{$tool} = &mt('available with automatic approval (unlimited)');
                   3756:                             }
                   3757:                         } elsif ($newval) {
                   3758:                             $newaccesstext->{$tool} = $reqdisplay{$newval};
                   3759:                         } else {
                   3760:                             $newaccesstext->{$tool} = &mt("availability set to 'off'");
                   3761:                         }
1.275     raeburn  3762:                     } else {
1.383     raeburn  3763:                         if ($newval) {
                   3764:                             $newaccesstext->{$tool} = &mt("availability set to 'on'");
                   3765:                         } else {
                   3766:                             $newaccesstext->{$tool} = &mt("availability set to 'off'");
                   3767:                         }
1.275     raeburn  3768:                     }
                   3769:                 } else {
                   3770:                     $newaccess->{$tool} = $oldaccess->{$tool};
                   3771:                 }
                   3772:             } else {
                   3773:                 $newaccess->{$tool} = $oldaccess->{$tool};
                   3774:             }
                   3775:         }
                   3776:     }
                   3777:     return;
                   3778: }
                   3779: 
1.220     raeburn  3780: sub update_roles {
1.375     raeburn  3781:     my ($r,$context,$showcredits) = @_;
1.4       www      3782:     my $now=time;
1.225     raeburn  3783:     my @rolechanges;
1.220     raeburn  3784:     my %disallowed;
1.73      sakharuk 3785:     $r->print('<h3>'.&mt('Modifying Roles').'</h3>');
1.404     raeburn  3786:     foreach my $key (keys(%env)) {
1.135     raeburn  3787: 	next if (! $env{$key});
1.190     raeburn  3788:         next if ($key eq 'form.action');
1.27      matthew  3789: 	# Revoke roles
1.135     raeburn  3790: 	if ($key=~/^form\.rev/) {
                   3791: 	    if ($key=~/^form\.rev\:([^\_]+)\_([^\_\.]+)$/) {
1.64      www      3792: # Revoke standard role
1.170     albertel 3793: 		my ($scope,$role) = ($1,$2);
                   3794: 		my $result =
                   3795: 		    &Apache::lonnet::revokerole($env{'form.ccdomain'},
                   3796: 						$env{'form.ccuname'},
1.239     raeburn  3797: 						$scope,$role,'','',$context);
1.367     golterma 3798:                 $r->print(&Apache::lonhtmlcommon::confirm_success(
1.369     bisitz   3799:                             &mt('Revoking [_1] in [_2]',
                   3800:                                 &Apache::lonnet::plaintext($role),
1.372     raeburn  3801:                                 &Apache::loncommon::show_role_extent($scope,$context,$role)),
1.369     bisitz   3802:                                 $result ne "ok").'<br />');
                   3803:                 if ($result ne "ok") {
                   3804:                     $r->print(&mt('Error: [_1]',$result).'<br />');
                   3805:                 }
1.170     albertel 3806: 		if ($role eq 'st') {
1.202     raeburn  3807: 		    my $result = 
1.198     raeburn  3808:                         &Apache::lonuserutils::classlist_drop($scope,
                   3809:                             $env{'form.ccuname'},$env{'form.ccdomain'},
1.202     raeburn  3810: 			    $now);
1.367     golterma 3811:                     $r->print(&Apache::lonhtmlcommon::confirm_success($result));
1.53      www      3812: 		}
1.225     raeburn  3813:                 if (!grep(/^\Q$role\E$/,@rolechanges)) {
                   3814:                     push(@rolechanges,$role);
                   3815:                 }
1.196     raeburn  3816: 	    }
1.195     raeburn  3817: 	    if ($key=~m{^form\.rev\:([^_]+)_cr\.cr/($match_domain)/($match_username)/(\w+)$}s) {
1.64      www      3818: # Revoke custom role
1.369     bisitz   3819:                 my $result = &Apache::lonnet::revokecustomrole(
                   3820:                     $env{'form.ccdomain'},$env{'form.ccuname'},$1,$2,$3,$4,'','',$context);
1.367     golterma 3821:                 $r->print(&Apache::lonhtmlcommon::confirm_success(
1.369     bisitz   3822:                             &mt('Revoking custom role [_1] by [_2] in [_3]',
1.372     raeburn  3823:                                 $4,$3.':'.$2,&Apache::loncommon::show_role_extent($1,$context,'cr')),
1.369     bisitz   3824:                             $result ne 'ok').'<br />');
                   3825:                 if ($result ne "ok") {
                   3826:                     $r->print(&mt('Error: [_1]',$result).'<br />');
                   3827:                 }
1.225     raeburn  3828:                 if (!grep(/^cr$/,@rolechanges)) {
                   3829:                     push(@rolechanges,'cr');
                   3830:                 }
1.64      www      3831: 	    }
1.135     raeburn  3832: 	} elsif ($key=~/^form\.del/) {
                   3833: 	    if ($key=~/^form\.del\:([^\_]+)\_([^\_\.]+)$/) {
1.116     raeburn  3834: # Delete standard role
1.170     albertel 3835: 		my ($scope,$role) = ($1,$2);
                   3836: 		my $result =
                   3837: 		    &Apache::lonnet::assignrole($env{'form.ccdomain'},
                   3838: 						$env{'form.ccuname'},
1.239     raeburn  3839: 						$scope,$role,$now,0,1,'',
                   3840:                                                 $context);
1.367     golterma 3841:                 $r->print(&Apache::lonhtmlcommon::confirm_success(
                   3842:                             &mt('Deleting [_1] in [_2]',
1.369     bisitz   3843:                                 &Apache::lonnet::plaintext($role),
1.372     raeburn  3844:                                 &Apache::loncommon::show_role_extent($scope,$context,$role)),
1.369     bisitz   3845:                             $result ne 'ok').'<br />');
                   3846:                 if ($result ne "ok") {
                   3847:                     $r->print(&mt('Error: [_1]',$result).'<br />');
                   3848:                 }
1.367     golterma 3849: 
1.170     albertel 3850: 		if ($role eq 'st') {
1.202     raeburn  3851: 		    my $result = 
1.198     raeburn  3852:                         &Apache::lonuserutils::classlist_drop($scope,
                   3853:                             $env{'form.ccuname'},$env{'form.ccdomain'},
1.202     raeburn  3854: 			    $now);
1.369     bisitz   3855: 		    $r->print(&Apache::lonhtmlcommon::confirm_success($result));
1.81      albertel 3856: 		}
1.225     raeburn  3857:                 if (!grep(/^\Q$role\E$/,@rolechanges)) {
                   3858:                     push(@rolechanges,$role);
                   3859:                 }
1.116     raeburn  3860:             }
1.139     albertel 3861: 	    if ($key=~m{^form\.del\:([^_]+)_cr\.cr/($match_domain)/($match_username)/(\w+)$}) {
1.116     raeburn  3862:                 my ($url,$rdom,$rnam,$rolename) = ($1,$2,$3,$4);
                   3863: # Delete custom role
1.369     bisitz   3864:                 my $result =
                   3865:                     &Apache::lonnet::assigncustomrole($env{'form.ccdomain'},
                   3866:                         $env{'form.ccuname'},$url,$rdom,$rnam,$rolename,$now,
                   3867:                         0,1,$context);
                   3868:                 $r->print(&Apache::lonhtmlcommon::confirm_success(&mt('Deleting custom role [_1] by [_2] in [_3]',
1.372     raeburn  3869:                       $rolename,$rnam.':'.$rdom,&Apache::loncommon::show_role_extent($1,$context,'cr')),
1.369     bisitz   3870:                       $result ne "ok").'<br />');
                   3871:                 if ($result ne "ok") {
                   3872:                     $r->print(&mt('Error: [_1]',$result).'<br />');
                   3873:                 }
1.367     golterma 3874: 
1.225     raeburn  3875:                 if (!grep(/^cr$/,@rolechanges)) {
                   3876:                     push(@rolechanges,'cr');
                   3877:                 }
1.116     raeburn  3878:             }
1.135     raeburn  3879: 	} elsif ($key=~/^form\.ren/) {
1.101     albertel 3880:             my $udom = $env{'form.ccdomain'};
                   3881:             my $uname = $env{'form.ccuname'};
1.116     raeburn  3882: # Re-enable standard role
1.135     raeburn  3883: 	    if ($key=~/^form\.ren\:([^\_]+)\_([^\_\.]+)$/) {
1.89      raeburn  3884:                 my $url = $1;
                   3885:                 my $role = $2;
                   3886:                 my $logmsg;
                   3887:                 my $output;
                   3888:                 if ($role eq 'st') {
1.141     albertel 3889:                     if ($url =~ m-^/($match_domain)/($match_courseid)/?(\w*)$-) {
1.374     raeburn  3890:                         my ($cdom,$cnum,$csec) = ($1,$2,$3);
1.375     raeburn  3891:                         my $credits;
                   3892:                         if ($showcredits) {
                   3893:                             my $defaultcredits = 
                   3894:                                 &Apache::lonuserutils::get_defaultcredits($cdom,$cnum);
                   3895:                             $credits = &get_user_credits($defaultcredits,$cdom,$cnum);
                   3896:                         }
                   3897:                         my $result = &Apache::loncommon::commit_studentrole(\$logmsg,$udom,$uname,$url,$role,$now,0,$cdom,$cnum,$csec,$context,$credits);
1.220     raeburn  3898:                         if (($result =~ /^error/) || ($result eq 'not_in_class') || ($result eq 'unknown_course') || ($result eq 'refused')) {
1.223     raeburn  3899:                             if ($result eq 'refused' && $logmsg) {
                   3900:                                 $output = $logmsg;
                   3901:                             } else { 
1.369     bisitz   3902:                                 $output = &mt('Error: [_1]',$result)."\n";
1.223     raeburn  3903:                             }
1.89      raeburn  3904:                         } else {
1.372     raeburn  3905:                             $output = &Apache::lonhtmlcommon::confirm_success(&mt('Assigning [_1] in [_2] starting [_3]',
                   3906:                                         &Apache::lonnet::plaintext($role),
                   3907:                                         &Apache::loncommon::show_role_extent($url,$context,'st'),
                   3908:                                         &Apache::lonlocal::locallocaltime($now))).'<br />'.$logmsg.'<br />';
1.89      raeburn  3909:                         }
                   3910:                     }
                   3911:                 } else {
1.101     albertel 3912: 		    my $result=&Apache::lonnet::assignrole($env{'form.ccdomain'},
1.239     raeburn  3913:                                $env{'form.ccuname'},$url,$role,0,$now,'','',
                   3914:                                $context);
1.367     golterma 3915:                         $output = &Apache::lonhtmlcommon::confirm_success(&mt('Re-enabling [_1] in [_2]',
1.372     raeburn  3916:                                         &Apache::lonnet::plaintext($role),
                   3917:                                         &Apache::loncommon::show_role_extent($url,$context,$role)),$result ne "ok").'<br />';
1.369     bisitz   3918:                     if ($result ne "ok") {
                   3919:                         $output .= &mt('Error: [_1]',$result).'<br />';
                   3920:                     }
                   3921:                 }
1.89      raeburn  3922:                 $r->print($output);
1.225     raeburn  3923:                 if (!grep(/^\Q$role\E$/,@rolechanges)) {
                   3924:                     push(@rolechanges,$role);
                   3925:                 }
1.113     raeburn  3926: 	    }
1.116     raeburn  3927: # Re-enable custom role
1.139     albertel 3928: 	    if ($key=~m{^form\.ren\:([^_]+)_cr\.cr/($match_domain)/($match_username)/(\w+)$}) {
1.116     raeburn  3929:                 my ($url,$rdom,$rnam,$rolename) = ($1,$2,$3,$4);
                   3930:                 my $result = &Apache::lonnet::assigncustomrole(
                   3931:                                $env{'form.ccdomain'}, $env{'form.ccuname'},
1.240     raeburn  3932:                                $url,$rdom,$rnam,$rolename,0,$now,undef,$context);
1.369     bisitz   3933:                 $r->print(&Apache::lonhtmlcommon::confirm_success(
                   3934:                     &mt('Re-enabling custom role [_1] by [_2] in [_3]',
1.372     raeburn  3935:                         $rolename,$rnam.':'.$rdom,&Apache::loncommon::show_role_extent($1,$context,'cr')),
1.369     bisitz   3936:                     $result ne "ok").'<br />');
                   3937:                 if ($result ne "ok") {
                   3938:                     $r->print(&mt('Error: [_1]',$result).'<br />');
                   3939:                 }
1.225     raeburn  3940:                 if (!grep(/^cr$/,@rolechanges)) {
                   3941:                     push(@rolechanges,'cr');
                   3942:                 }
1.116     raeburn  3943:             }
1.135     raeburn  3944: 	} elsif ($key=~/^form\.act/) {
1.101     albertel 3945:             my $udom = $env{'form.ccdomain'};
                   3946:             my $uname = $env{'form.ccuname'};
1.141     albertel 3947: 	    if ($key=~/^form\.act\_($match_domain)\_($match_courseid)\_cr_cr_($match_domain)_($match_username)_([^\_]+)$/) {
1.65      www      3948:                 # Activate a custom role
1.83      albertel 3949: 		my ($one,$two,$three,$four,$five)=($1,$2,$3,$4,$5);
                   3950: 		my $url='/'.$one.'/'.$two;
                   3951: 		my $full=$one.'_'.$two.'_cr_cr_'.$three.'_'.$four.'_'.$five;
1.65      www      3952: 
1.101     albertel 3953:                 my $start = ( $env{'form.start_'.$full} ?
                   3954:                               $env{'form.start_'.$full} :
1.88      raeburn  3955:                               $now );
1.101     albertel 3956:                 my $end   = ( $env{'form.end_'.$full} ?
                   3957:                               $env{'form.end_'.$full} :
1.88      raeburn  3958:                               0 );
                   3959:                                                                                      
                   3960:                 # split multiple sections
                   3961:                 my %sections = ();
1.101     albertel 3962:                 my $num_sections = &build_roles($env{'form.sec_'.$full},\%sections,$5);
1.88      raeburn  3963:                 if ($num_sections == 0) {
1.240     raeburn  3964:                     $r->print(&Apache::loncommon::commit_customrole($udom,$uname,$url,$three,$four,$five,$start,$end,$context));
1.88      raeburn  3965:                 } else {
1.114     albertel 3966: 		    my %curr_groups =
1.117     raeburn  3967: 			&Apache::longroup::coursegroups($one,$two);
1.404     raeburn  3968:                     foreach my $sec (sort {$a cmp $b} keys(%sections)) {
1.113     raeburn  3969:                         if (($sec eq 'none') || ($sec eq 'all') || 
                   3970:                             exists($curr_groups{$sec})) {
                   3971:                             $disallowed{$sec} = $url;
                   3972:                             next;
                   3973:                         }
                   3974:                         my $securl = $url.'/'.$sec;
1.240     raeburn  3975: 		        $r->print(&Apache::loncommon::commit_customrole($udom,$uname,$securl,$three,$four,$five,$start,$end,$context));
1.88      raeburn  3976:                     }
                   3977:                 }
1.225     raeburn  3978:                 if (!grep(/^cr$/,@rolechanges)) {
                   3979:                     push(@rolechanges,'cr');
                   3980:                 }
1.142     raeburn  3981: 	    } elsif ($key=~/^form\.act\_($match_domain)\_($match_name)\_([^\_]+)$/) {
1.27      matthew  3982: 		# Activate roles for sections with 3 id numbers
                   3983: 		# set start, end times, and the url for the class
1.83      albertel 3984: 		my ($one,$two,$three)=($1,$2,$3);
1.101     albertel 3985: 		my $start = ( $env{'form.start_'.$one.'_'.$two.'_'.$three} ? 
                   3986: 			      $env{'form.start_'.$one.'_'.$two.'_'.$three} : 
1.27      matthew  3987: 			      $now );
1.101     albertel 3988: 		my $end   = ( $env{'form.end_'.$one.'_'.$two.'_'.$three} ? 
                   3989: 			      $env{'form.end_'.$one.'_'.$two.'_'.$three} :
1.27      matthew  3990: 			      0 );
1.83      albertel 3991: 		my $url='/'.$one.'/'.$two;
1.88      raeburn  3992:                 my $type = 'three';
                   3993:                 # split multiple sections
                   3994:                 my %sections = ();
1.101     albertel 3995:                 my $num_sections = &build_roles($env{'form.sec_'.$one.'_'.$two.'_'.$three},\%sections,$three);
1.375     raeburn  3996:                 my $credits;
                   3997:                 if ($three eq 'st') {
                   3998:                     if ($showcredits) { 
                   3999:                         my $defaultcredits = 
                   4000:                             &Apache::lonuserutils::get_defaultcredits($one,$two);
                   4001:                         $credits = $env{'form.credits_'.$one.'_'.$two.'_'.$three};
                   4002:                         $credits =~ s/[^\d\.]//g;
                   4003:                         if ($credits eq $defaultcredits) {
                   4004:                             undef($credits);
                   4005:                         }
                   4006:                     }
                   4007:                 }
1.88      raeburn  4008:                 if ($num_sections == 0) {
1.375     raeburn  4009:                     $r->print(&Apache::loncommon::commit_standardrole($udom,$uname,$url,$three,$start,$end,$one,$two,'',$context,$credits));
1.88      raeburn  4010:                 } else {
1.114     albertel 4011:                     my %curr_groups = 
1.117     raeburn  4012: 			&Apache::longroup::coursegroups($one,$two);
1.88      raeburn  4013:                     my $emptysec = 0;
1.404     raeburn  4014:                     foreach my $sec (sort {$a cmp $b} keys(%sections)) {
1.88      raeburn  4015:                         $sec =~ s/\W//g;
1.113     raeburn  4016:                         if ($sec ne '') {
                   4017:                             if (($sec eq 'none') || ($sec eq 'all') || 
                   4018:                                 exists($curr_groups{$sec})) {
                   4019:                                 $disallowed{$sec} = $url;
                   4020:                                 next;
                   4021:                             }
1.88      raeburn  4022:                             my $securl = $url.'/'.$sec;
1.375     raeburn  4023:                             $r->print(&Apache::loncommon::commit_standardrole($udom,$uname,$securl,$three,$start,$end,$one,$two,$sec,$context,$credits));
1.88      raeburn  4024:                         } else {
                   4025:                             $emptysec = 1;
                   4026:                         }
                   4027:                     }
                   4028:                     if ($emptysec) {
1.375     raeburn  4029:                         $r->print(&Apache::loncommon::commit_standardrole($udom,$uname,$url,$three,$start,$end,$one,$two,'',$context,$credits));
1.88      raeburn  4030:                     }
1.225     raeburn  4031:                 }
                   4032:                 if (!grep(/^\Q$three\E$/,@rolechanges)) {
                   4033:                     push(@rolechanges,$three);
                   4034:                 }
1.135     raeburn  4035: 	    } elsif ($key=~/^form\.act\_([^\_]+)\_([^\_]+)$/) {
1.27      matthew  4036: 		# Activate roles for sections with two id numbers
                   4037: 		# set start, end times, and the url for the class
1.101     albertel 4038: 		my $start = ( $env{'form.start_'.$1.'_'.$2} ? 
                   4039: 			      $env{'form.start_'.$1.'_'.$2} : 
1.27      matthew  4040: 			      $now );
1.101     albertel 4041: 		my $end   = ( $env{'form.end_'.$1.'_'.$2} ? 
                   4042: 			      $env{'form.end_'.$1.'_'.$2} :
1.27      matthew  4043: 			      0 );
1.225     raeburn  4044:                 my $one = $1;
                   4045:                 my $two = $2;
                   4046: 		my $url='/'.$one.'/';
1.88      raeburn  4047:                 # split multiple sections
                   4048:                 my %sections = ();
1.225     raeburn  4049:                 my $num_sections = &build_roles($env{'form.sec_'.$one.'_'.$two},\%sections,$two);
1.88      raeburn  4050:                 if ($num_sections == 0) {
1.240     raeburn  4051:                     $r->print(&Apache::loncommon::commit_standardrole($udom,$uname,$url,$two,$start,$end,$one,undef,'',$context));
1.88      raeburn  4052:                 } else {
                   4053:                     my $emptysec = 0;
1.404     raeburn  4054:                     foreach my $sec (sort {$a cmp $b} keys(%sections)) {
1.88      raeburn  4055:                         if ($sec ne '') {
                   4056:                             my $securl = $url.'/'.$sec;
1.240     raeburn  4057:                             $r->print(&Apache::loncommon::commit_standardrole($udom,$uname,$securl,$two,$start,$end,$one,undef,$sec,$context));
1.88      raeburn  4058:                         } else {
                   4059:                             $emptysec = 1;
                   4060:                         }
                   4061:                     }
                   4062:                     if ($emptysec) {
1.240     raeburn  4063:                         $r->print(&Apache::loncommon::commit_standardrole($udom,$uname,$url,$two,$start,$end,$one,undef,'',$context));
1.88      raeburn  4064:                     }
                   4065:                 }
1.225     raeburn  4066:                 if (!grep(/^\Q$two\E$/,@rolechanges)) {
                   4067:                     push(@rolechanges,$two);
                   4068:                 }
1.64      www      4069: 	    } else {
1.190     raeburn  4070: 		$r->print('<p><span class="LC_error">'.&mt('ERROR').': '.&mt('Unknown command').' <tt>'.$key.'</tt></span></p><br />');
1.64      www      4071:             }
1.113     raeburn  4072:             foreach my $key (sort(keys(%disallowed))) {
1.274     bisitz   4073:                 $r->print('<p class="LC_warning">');
1.113     raeburn  4074:                 if (($key eq 'none') || ($key eq 'all')) {  
1.274     bisitz   4075:                     $r->print(&mt('[_1] may not be used as the name for a section, as it is a reserved word.','<tt>'.$key.'</tt>'));
1.113     raeburn  4076:                 } else {
1.274     bisitz   4077:                     $r->print(&mt('[_1] may not be used as the name for a section, as it is the name of a course group.','<tt>'.$key.'</tt>'));
1.113     raeburn  4078:                 }
1.274     bisitz   4079:                 $r->print('</p><p>'
                   4080:                          .&mt('Please [_1]go back[_2] and choose a different section name.'
                   4081:                              ,'<a href="javascript:history.go(-1)'
                   4082:                              ,'</a>')
                   4083:                          .'</p><br />'
                   4084:                 );
1.113     raeburn  4085:             }
                   4086: 	}
1.101     albertel 4087:     } # End of foreach (keys(%env))
1.75      www      4088: # Flush the course logs so reverse user roles immediately updated
1.349     raeburn  4089:     $r->register_cleanup(\&Apache::lonnet::flushcourselogs);
1.225     raeburn  4090:     if (@rolechanges == 0) {
1.372     raeburn  4091:         $r->print('<p>'.&mt('No roles to modify').'</p>');
1.193     raeburn  4092:     }
1.225     raeburn  4093:     return @rolechanges;
1.220     raeburn  4094: }
                   4095: 
1.375     raeburn  4096: sub get_user_credits {
                   4097:     my ($uname,$udom,$defaultcredits,$cdom,$cnum) = @_;
                   4098:     if ($cdom eq '' || $cnum eq '') {
                   4099:         return unless ($env{'request.course.id'});
                   4100:         $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
                   4101:         $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
                   4102:     }
                   4103:     my $credits;
                   4104:     my %currhash =
                   4105:         &Apache::lonnet::get('classlist',[$uname.':'.$udom],$cdom,$cnum);
                   4106:     if (keys(%currhash) > 0) {
                   4107:         my @items = split(/:/,$currhash{$uname.':'.$udom});
                   4108:         my $crdidx = &Apache::loncoursedata::CL_CREDITS() - 3;
                   4109:         $credits = $items[$crdidx];
                   4110:         $credits =~ s/[^\d\.]//g;
                   4111:     }
                   4112:     if ($credits eq $defaultcredits) {
                   4113:         undef($credits);
                   4114:     }
                   4115:     return $credits;
                   4116: }
                   4117: 
1.220     raeburn  4118: sub enroll_single_student {
1.375     raeburn  4119:     my ($r,$uhome,$amode,$genpwd,$now,$newuser,$context,$crstype,
                   4120:         $showcredits,$defaultcredits) = @_;
1.318     raeburn  4121:     $r->print('<h3>');
                   4122:     if ($crstype eq 'Community') {
                   4123:         $r->print(&mt('Enrolling Member'));
                   4124:     } else {
                   4125:         $r->print(&mt('Enrolling Student'));
                   4126:     }
                   4127:     $r->print('</h3>');
1.220     raeburn  4128: 
                   4129:     # Remove non alphanumeric values from section
                   4130:     $env{'form.sections'}=~s/\W//g;
                   4131: 
1.375     raeburn  4132:     my $credits;
                   4133:     if (($showcredits) && ($env{'form.credits'} ne '')) {
                   4134:         $credits = $env{'form.credits'};
                   4135:         $credits =~ s/[^\d\.]//g;
                   4136:         if ($credits ne '') {
                   4137:             if ($credits eq $defaultcredits) {
                   4138:                 undef($credits);
                   4139:             }
                   4140:         }
                   4141:     }
                   4142: 
1.220     raeburn  4143:     # Clean out any old student roles the user has in this class.
                   4144:     &Apache::lonuserutils::modifystudent($env{'form.ccdomain'},
                   4145:          $env{'form.ccuname'},$env{'request.course.id'},undef,$uhome);
                   4146:     my ($startdate,$enddate) = &Apache::lonuserutils::get_dates_from_form();
                   4147:     my $enroll_result =
                   4148:         &Apache::lonnet::modify_student_enrollment($env{'form.ccdomain'},
                   4149:             $env{'form.ccuname'},$env{'form.cid'},$env{'form.cfirstname'},
                   4150:             $env{'form.cmiddlename'},$env{'form.clastname'},
                   4151:             $env{'form.generation'},$env{'form.sections'},$enddate,
1.375     raeburn  4152:             $startdate,'manual',undef,$env{'request.course.id'},'',$context,
                   4153:             $credits);
1.220     raeburn  4154:     if ($enroll_result =~ /^ok/) {
1.381     bisitz   4155:         $r->print(&mt('[_1] enrolled','<b>'.$env{'form.ccuname'}.':'.$env{'form.ccdomain'}.'</b>'));
1.220     raeburn  4156:         if ($env{'form.sections'} ne '') {
                   4157:             $r->print(' '.&mt('in section [_1]',$env{'form.sections'}));
                   4158:         }
                   4159:         my ($showstart,$showend);
                   4160:         if ($startdate <= $now) {
                   4161:             $showstart = &mt('Access starts immediately');
                   4162:         } else {
                   4163:             $showstart = &mt('Access starts: ').&Apache::lonlocal::locallocaltime($startdate);
                   4164:         }
                   4165:         if ($enddate == 0) {
                   4166:             $showend = &mt('ends: no ending date');
                   4167:         } else {
                   4168:             $showend = &mt('ends: ').&Apache::lonlocal::locallocaltime($enddate);
                   4169:         }
                   4170:         $r->print('.<br />'.$showstart.'; '.$showend);
                   4171:         if ($startdate <= $now && !$newuser) {
1.386     bisitz   4172:             $r->print('<p class="LC_info">');
1.318     raeburn  4173:             if ($crstype eq 'Community') {
1.392     raeburn  4174:                 $r->print(&mt('If the member is currently logged-in to LON-CAPA, the new role can be displayed by using the "Check for changes" link on the Roles/Courses page.'));
1.318     raeburn  4175:             } else {
1.392     raeburn  4176:                 $r->print(&mt('If the student is currently logged-in to LON-CAPA, the new role can be displayed by using the "Check for changes" link on the Roles/Courses page.'));
1.318     raeburn  4177:            }
                   4178:            $r->print('</p>');
1.220     raeburn  4179:         }
                   4180:     } else {
                   4181:         $r->print(&mt('unable to enroll').": ".$enroll_result);
                   4182:     }
                   4183:     return;
1.188     raeburn  4184: }
                   4185: 
1.204     raeburn  4186: sub get_defaultquota_text {
                   4187:     my ($settingstatus) = @_;
                   4188:     my $defquotatext; 
                   4189:     if ($settingstatus eq '') {
1.383     raeburn  4190:         $defquotatext = &mt('default');
1.204     raeburn  4191:     } else {
                   4192:         my ($usertypes,$order) =
                   4193:             &Apache::lonnet::retrieve_inst_usertypes($env{'form.ccdomain'});
                   4194:         if ($usertypes->{$settingstatus} eq '') {
1.383     raeburn  4195:             $defquotatext = &mt('default');
1.204     raeburn  4196:         } else {
1.383     raeburn  4197:             $defquotatext = &mt('default for [_1]',$usertypes->{$settingstatus});
1.204     raeburn  4198:         }
                   4199:     }
                   4200:     return $defquotatext;
                   4201: }
                   4202: 
1.188     raeburn  4203: sub update_result_form {
                   4204:     my ($uhome) = @_;
                   4205:     my $outcome = 
1.367     golterma 4206:     '<form name="userupdate" method="post" action="">'."\n";
1.160     raeburn  4207:     foreach my $item ('srchby','srchin','srchtype','srchterm','srchdomain','ccuname','ccdomain') {
1.188     raeburn  4208:         $outcome .= '<input type="hidden" name="'.$item.'" value="'.$env{'form.'.$item}.'" />'."\n";
1.160     raeburn  4209:     }
1.207     raeburn  4210:     if ($env{'form.origname'} ne '') {
                   4211:         $outcome .= '<input type="hidden" name="origname" value="'.$env{'form.origname'}.'" />'."\n";
                   4212:     }
1.160     raeburn  4213:     foreach my $item ('sortby','seluname','seludom') {
                   4214:         if (exists($env{'form.'.$item})) {
1.188     raeburn  4215:             $outcome .= '<input type="hidden" name="'.$item.'" value="'.$env{'form.'.$item}.'" />'."\n";
1.160     raeburn  4216:         }
                   4217:     }
1.188     raeburn  4218:     if ($uhome eq 'no_host') {
                   4219:         $outcome .= '<input type="hidden" name="forcenewuser" value="1" />'."\n";
                   4220:     }
                   4221:     $outcome .= '<input type="hidden" name="phase" value="" />'."\n".
1.383     raeburn  4222:                 '<input type="hidden" name="currstate" value="" />'."\n".
                   4223:                 '<input type="hidden" name="action" value="'.$env{'form.action'}.'" />'."\n".
1.188     raeburn  4224:                 '</form>';
                   4225:     return $outcome;
1.4       www      4226: }
                   4227: 
1.149     raeburn  4228: sub quota_admin {
1.378     raeburn  4229:     my ($setquota,$changeHash,$name) = @_;
1.149     raeburn  4230:     my $quotachanged;
                   4231:     if (&Apache::lonnet::allowed('mpq',$env{'form.ccdomain'})) {
                   4232:         # Current user has quota modification privileges
1.267     raeburn  4233:         if (ref($changeHash) eq 'HASH') {
                   4234:             $quotachanged = 1;
1.378     raeburn  4235:             $changeHash->{$name.'quota'} = $setquota;
1.267     raeburn  4236:         }
1.149     raeburn  4237:     }
                   4238:     return $quotachanged;
                   4239: }
                   4240: 
1.267     raeburn  4241: sub tool_admin {
1.275     raeburn  4242:     my ($tool,$settool,$changeHash,$context) = @_;
                   4243:     my $canchange = 0; 
1.279     raeburn  4244:     if ($context eq 'requestcourses') {
1.275     raeburn  4245:         if (&Apache::lonnet::allowed('ccc',$env{'form.ccdomain'})) {
                   4246:             $canchange = 1;
                   4247:         }
1.300     raeburn  4248:     } elsif ($context eq 'reqcrsotherdom') {
                   4249:         if (&Apache::lonnet::allowed('ccc',$env{'request.role.domain'})) {
                   4250:             $canchange = 1;
                   4251:         }
1.362     raeburn  4252:     } elsif ($context eq 'requestauthor') {
                   4253:         if (&Apache::lonnet::allowed('cau',$env{'request.role.domain'})) {
                   4254:             $canchange = 1;
                   4255:         }
1.275     raeburn  4256:     } elsif (&Apache::lonnet::allowed('mut',$env{'form.ccdomain'})) {
                   4257:         # Current user has quota modification privileges
                   4258:         $canchange = 1;
                   4259:     }
1.267     raeburn  4260:     my $toolchanged;
1.275     raeburn  4261:     if ($canchange) {
1.267     raeburn  4262:         if (ref($changeHash) eq 'HASH') {
                   4263:             $toolchanged = 1;
1.362     raeburn  4264:             if ($tool eq 'requestauthor') {
                   4265:                 $changeHash->{$context} = $settool;
                   4266:             } else {
                   4267:                 $changeHash->{$context.'.'.$tool} = $settool;
                   4268:             }
1.267     raeburn  4269:         }
                   4270:     }
                   4271:     return $toolchanged;
                   4272: }
                   4273: 
1.88      raeburn  4274: sub build_roles {
1.89      raeburn  4275:     my ($sectionstr,$sections,$role) = @_;
1.88      raeburn  4276:     my $num_sections = 0;
                   4277:     if ($sectionstr=~ /,/) {
                   4278:         my @secnums = split/,/,$sectionstr;
1.89      raeburn  4279:         if ($role eq 'st') {
                   4280:             $secnums[0] =~ s/\W//g;
                   4281:             $$sections{$secnums[0]} = 1;
                   4282:             $num_sections = 1;
                   4283:         } else {
                   4284:             foreach my $sec (@secnums) {
                   4285:                 $sec =~ ~s/\W//g;
1.150     banghart 4286:                 if (!($sec eq "")) {
1.89      raeburn  4287:                     if (exists($$sections{$sec})) {
                   4288:                         $$sections{$sec} ++;
                   4289:                     } else {
                   4290:                         $$sections{$sec} = 1;
                   4291:                         $num_sections ++;
                   4292:                     }
1.88      raeburn  4293:                 }
                   4294:             }
                   4295:         }
                   4296:     } else {
                   4297:         $sectionstr=~s/\W//g;
                   4298:         unless ($sectionstr eq '') {
                   4299:             $$sections{$sectionstr} = 1;
                   4300:             $num_sections ++;
                   4301:         }
                   4302:     }
1.129     albertel 4303: 
1.88      raeburn  4304:     return $num_sections;
                   4305: }
                   4306: 
1.58      www      4307: # ========================================================== Custom Role Editor
                   4308: 
                   4309: sub custom_role_editor {
1.414     raeburn  4310:     my ($r,$brcrum,$prefix) = @_;
1.324     raeburn  4311:     my $action = $env{'form.customroleaction'};
                   4312:     my $rolename; 
                   4313:     if ($action eq 'new') {
                   4314:         $rolename=$env{'form.newrolename'};
                   4315:     } else {
                   4316:         $rolename=$env{'form.rolename'};
1.59      www      4317:     }
                   4318: 
1.324     raeburn  4319:     my ($crstype,$context);
                   4320:     if ($env{'request.course.id'}) {
                   4321:         $crstype = &Apache::loncommon::course_type();
                   4322:         $context = 'course';
                   4323:     } else {
                   4324:         $context = 'domain';
1.414     raeburn  4325:         $crstype = 'course';
1.324     raeburn  4326:     }
1.351     raeburn  4327: 
                   4328:     $rolename=~s/[^A-Za-z0-9]//gs;
                   4329:     if (!$rolename || $env{'form.phase'} eq 'pickrole') {
                   4330: 	&print_username_entry_form($r,undef,undef,undef,undef,$crstype,$brcrum);
                   4331:         return;
                   4332:     }
                   4333: 
1.414     raeburn  4334:     my $formname = 'form1';
                   4335:     my %privs=();
                   4336:     my $body_top = '<h2>';
                   4337: # ------------------------------------------------------- Does this role exist?
1.59      www      4338:     my ($rdummy,$roledef)=
                   4339: 			 &Apache::lonnet::get('roles',["rolesdef_$rolename"]);
                   4340:     if (($rdummy ne 'con_lost') && ($roledef ne '')) {
1.414     raeburn  4341:         $body_top .= &mt('Existing Role').' "';
1.61      www      4342: # ------------------------------------------------- Get current role privileges
1.414     raeburn  4343:         ($privs{'system'},$privs{'domain'},$privs{'course'})=split(/\_/,$roledef);
                   4344:         if ($privs{'system'} =~ /bre\&S/) {
                   4345:             if ($context eq 'domain') {
1.417     raeburn  4346:                 $crstype = 'Course';
1.414     raeburn  4347:             } elsif ($crstype eq 'Community') {
                   4348:                 $privs{'system'} =~ s/bre\&S//;
                   4349:             }
                   4350:         } elsif ($context eq 'domain') {
                   4351:             $crstype = 'Course';
1.324     raeburn  4352:         }
1.59      www      4353:     } else {
1.414     raeburn  4354:         $body_top .= &mt('New Role').' "';
                   4355:         $roledef='';
1.59      www      4356:     }
1.153     banghart 4357:     $body_top .= $rolename.'"</h2>';
1.414     raeburn  4358: 
                   4359: # ------------------------------------------------------- What can be assigned?
                   4360:     my %full=();
1.417     raeburn  4361:     my %levels=(
1.414     raeburn  4362:                  course => {},
                   4363:                  domain => {},
                   4364:                  system => {},
                   4365:                );
                   4366:     my %levelscurrent=(
                   4367:                         course => {},
                   4368:                         domain => {},
                   4369:                         system => {},
                   4370:                       );
                   4371:     &Apache::lonuserutils::custom_role_privs(\%privs,\%full,\%levels,\%levelscurrent);
1.160     raeburn  4372:     my ($jsback,$elements) = &crumb_utilities();
1.414     raeburn  4373:     my @templateroles = &Apache::lonuserutils::custom_template_roles($context,$crstype);
1.417     raeburn  4374:     my $head_script =
1.414     raeburn  4375:         &Apache::lonuserutils::custom_roledefs_js($context,$crstype,$formname,
                   4376:                                                   \%full,\@templateroles,$jsback);
1.351     raeburn  4377:     push (@{$brcrum},
1.414     raeburn  4378:               {href => "javascript:backPage(document.$formname,'pickrole','')",
1.351     raeburn  4379:                text => "Pick custom role",
                   4380:                faq  => 282,bug=>'Instructor Interface',},
1.414     raeburn  4381:               {href => "javascript:backPage(document.$formname,'','')",
1.351     raeburn  4382:                text => "Edit custom role",
                   4383:                faq  => 282,
                   4384:                bug  => 'Instructor Interface',
                   4385:                help => 'Course_Editing_Custom_Roles'}
                   4386:               );
                   4387:     my $args = { bread_crumbs          => $brcrum,
                   4388:                  bread_crumbs_component => 'User Management'};
                   4389:     $r->print(&Apache::loncommon::start_page('Custom Role Editor',
                   4390:                                              $head_script,$args).
                   4391:               $body_top);
1.414     raeburn  4392:     $r->print('<form name="'.$formname.'" method="post" action="">'."\n".
                   4393:               &Apache::lonuserutils::custom_role_header($context,$crstype,
                   4394:                                                         \@templateroles,$prefix));
1.264     bisitz   4395: 
1.61      www      4396:     $r->print(<<ENDCCF);
                   4397: <input type="hidden" name="phase" value="set_custom_roles" />
                   4398: <input type="hidden" name="rolename" value="$rolename" />
                   4399: ENDCCF
1.414     raeburn  4400:     $r->print(&Apache::lonuserutils::custom_role_table($crstype,\%full,\%levels,
                   4401:                                                        \%levelscurrent,$prefix));
1.135     raeburn  4402:     $r->print(&Apache::loncommon::end_data_table().
1.190     raeburn  4403:    '<input type="hidden" name="action" value="'.$env{'form.action'}.'" />'.
1.160     raeburn  4404:    '<input type="hidden" name="startrolename" value="'.$env{'form.rolename'}.
1.417     raeburn  4405:    '" />'."\n".'<input type="hidden" name="currstate" value="" />'."\n".
1.160     raeburn  4406:    '<input type="reset" value="'.&mt("Reset").'" />'."\n".
1.351     raeburn  4407:    '<input type="submit" value="'.&mt('Save').'" /></form>');
1.61      www      4408: }
1.414     raeburn  4409: 
1.61      www      4410: # ---------------------------------------------------------- Call to definerole
                   4411: sub set_custom_role {
1.414     raeburn  4412:     my ($r,$context,$brcrum,$prefix) = @_;
1.101     albertel 4413:     my $rolename=$env{'form.rolename'};
1.63      www      4414:     $rolename=~s/[^A-Za-z0-9]//gs;
1.150     banghart 4415:     if (!$rolename) {
1.414     raeburn  4416: 	&custom_role_editor($r,$brcrum,$prefix);
1.61      www      4417:         return;
                   4418:     }
1.160     raeburn  4419:     my ($jsback,$elements) = &crumb_utilities();
1.301     bisitz   4420:     my $jscript = '<script type="text/javascript">'
                   4421:                  .'// <![CDATA['."\n"
                   4422:                  .$jsback."\n"
                   4423:                  .'// ]]>'."\n"
                   4424:                  .'</script>'."\n";
1.352     raeburn  4425:     push(@{$brcrum},
                   4426:         {href => "javascript:backPage(document.customresult,'pickrole','')",
                   4427:          text => "Pick custom role",
                   4428:          faq  => 282,
                   4429:          bug  => 'Instructor Interface',},
                   4430:         {href => "javascript:backPage(document.customresult,'selected_custom_edit','')",
                   4431:          text => "Edit custom role",
                   4432:          faq  => 282,
                   4433:          bug  => 'Instructor Interface',},
                   4434:         {href => "javascript:backPage(document.customresult,'set_custom_roles','')",
                   4435:          text => "Result",
                   4436:          faq  => 282,
                   4437:          bug  => 'Instructor Interface',
                   4438:          help => 'Course_Editing_Custom_Roles'},
                   4439:         );
                   4440:     my $args = { bread_crumbs           => $brcrum,
1.414     raeburn  4441:                  bread_crumbs_component => 'User Management'};
1.351     raeburn  4442:     $r->print(&Apache::loncommon::start_page('Save Custom Role',$jscript,$args));
1.160     raeburn  4443: 
1.393     raeburn  4444:     my $newrole;
1.61      www      4445:     my ($rdummy,$roledef)=
1.110     albertel 4446: 	&Apache::lonnet::get('roles',["rolesdef_$rolename"]);
                   4447: 
1.61      www      4448: # ------------------------------------------------------- Does this role exist?
1.188     raeburn  4449:     $r->print('<h3>');
1.61      www      4450:     if (($rdummy ne 'con_lost') && ($roledef ne '')) {
1.73      sakharuk 4451: 	$r->print(&mt('Existing Role').' "');
1.61      www      4452:     } else {
1.73      sakharuk 4453: 	$r->print(&mt('New Role').' "');
1.61      www      4454: 	$roledef='';
1.393     raeburn  4455:         $newrole = 1;
1.61      www      4456:     }
1.188     raeburn  4457:     $r->print($rolename.'"</h3>');
1.414     raeburn  4458: # ------------------------------------------------- Assign role and show result
1.61      www      4459: 
1.387     bisitz   4460:     my $errmsg;
1.414     raeburn  4461:     my %newprivs = &Apache::lonuserutils::custom_role_update($rolename,$prefix);
                   4462:     # Assign role and return result
                   4463:     my $result = &Apache::lonnet::definerole($rolename,$newprivs{'s'},$newprivs{'d'},
                   4464:                                              $newprivs{'c'});
1.387     bisitz   4465:     if ($result ne 'ok') {
                   4466:         $errmsg = ': '.$result;
                   4467:     }
                   4468:     my $message =
                   4469:         &Apache::lonhtmlcommon::confirm_success(
                   4470:             &mt('Defining Role').$errmsg, ($result eq 'ok' ? 0 : 1));
1.101     albertel 4471:     if ($env{'request.course.id'}) {
                   4472:         my $url='/'.$env{'request.course.id'};
1.63      www      4473:         $url=~s/\_/\//g;
1.387     bisitz   4474:         $result =
                   4475:             &Apache::lonnet::assigncustomrole(
                   4476:                 $env{'user.domain'},$env{'user.name'},
                   4477:                 $url,
                   4478:                 $env{'user.domain'},$env{'user.name'},
                   4479:                 $rolename,undef,undef,undef,$context);
                   4480:         if ($result ne 'ok') {
                   4481:             $errmsg = ': '.$result;
                   4482:         }
                   4483:         $message .=
                   4484:             '<br />'
                   4485:            .&Apache::lonhtmlcommon::confirm_success(
                   4486:                 &mt('Assigning Role to Self').$errmsg, ($result eq 'ok' ? 0 : 1));
1.63      www      4487:     }
1.380     bisitz   4488:     $r->print(
1.387     bisitz   4489:         &Apache::loncommon::confirmwrapper($message)
                   4490:        .'<br />'
                   4491:        .&Apache::lonhtmlcommon::actionbox([
                   4492:             '<a href="javascript:backPage(document.customresult,'."'pickrole'".')">'
                   4493:            .&mt('Create or edit another custom role')
                   4494:            .'</a>'])
1.380     bisitz   4495:        .'<form name="customresult" method="post" action="">'
1.387     bisitz   4496:        .&Apache::lonhtmlcommon::echo_form_input([])
                   4497:        .'</form>'
1.380     bisitz   4498:     );
1.58      www      4499: }
                   4500: 
1.2       www      4501: # ================================================================ Main Handler
                   4502: sub handler {
                   4503:     my $r = shift;
                   4504:     if ($r->header_only) {
1.68      www      4505:        &Apache::loncommon::content_type($r,'text/html');
1.2       www      4506:        $r->send_http_header;
                   4507:        return OK;
                   4508:     }
1.318     raeburn  4509:     my ($context,$crstype);
1.190     raeburn  4510:     if ($env{'request.course.id'}) {
                   4511:         $context = 'course';
1.318     raeburn  4512:         $crstype = &Apache::loncommon::course_type();
1.190     raeburn  4513:     } elsif ($env{'request.role'} =~ /^au\./) {
1.206     raeburn  4514:         $context = 'author';
1.190     raeburn  4515:     } else {
                   4516:         $context = 'domain';
                   4517:     }
1.375     raeburn  4518: 
1.190     raeburn  4519:     &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},
1.233     raeburn  4520:         ['action','state','callingform','roletype','showrole','bulkaction','popup','phase',
1.391     raeburn  4521:          'username','domain','srchterm','srchdomain','srchin','srchby','srchtype','queue']);
1.190     raeburn  4522:     &Apache::lonhtmlcommon::clear_breadcrumbs();
1.351     raeburn  4523:     my $args;
                   4524:     my $brcrum = [];
                   4525:     my $bread_crumbs_component = 'User Management';
1.391     raeburn  4526:     if (($env{'form.action'} ne 'dateselect') && ($env{'form.action'} ne 'displayuserreq')) {
1.351     raeburn  4527:         $brcrum = [{href=>"/adm/createuser",
                   4528:                     text=>"User Management",
                   4529:                     help=>'Course_Create_Class_List,Course_Change_Privileges,Course_View_Class_List,Course_Editing_Custom_Roles,Course_Add_Student,Course_Drop_Student,Course_Automated_Enrollment,Course_Self_Enrollment,Course_Manage_Group'}
                   4530:                   ];
1.202     raeburn  4531:     }
1.289     droeschl 4532:     #SD Following files not added to help, because the corresponding .tex-files seem to
                   4533:     #be missing: Course_Approve_Selfenroll,Course_User_Logs,
1.209     raeburn  4534:     my ($permission,$allowed) = 
1.318     raeburn  4535:         &Apache::lonuserutils::get_permission($context,$crstype);
1.190     raeburn  4536:     if (!$allowed) {
1.358     raeburn  4537:         if ($context eq 'course') {
                   4538:             $r->internal_redirect('/adm/viewclasslist');
                   4539:             return OK;
                   4540:         }
1.190     raeburn  4541:         $env{'user.error.msg'}=
                   4542:             "/adm/createuser:cst:0:0:Cannot create/modify user data ".
                   4543:                                  "or view user status.";
                   4544:         return HTTP_NOT_ACCEPTABLE;
                   4545:     }
                   4546: 
                   4547:     &Apache::loncommon::content_type($r,'text/html');
                   4548:     $r->send_http_header;
                   4549: 
1.375     raeburn  4550:     my $showcredits;
                   4551:     if ((($context eq 'course') && ($crstype eq 'Course')) || 
                   4552:          ($context eq 'domain')) {
                   4553:         my %domdefaults = 
                   4554:             &Apache::lonnet::get_domain_defaults($env{'request.role.domain'});
                   4555:         if ($domdefaults{'officialcredits'} || $domdefaults{'unofficialcredits'}) {
                   4556:             $showcredits = 1;
                   4557:         }
                   4558:     }
                   4559: 
1.190     raeburn  4560:     # Main switch on form.action and form.state, as appropriate
                   4561:     if (! exists($env{'form.action'})) {
1.351     raeburn  4562:         $args = {bread_crumbs => $brcrum,
                   4563:                  bread_crumbs_component => $bread_crumbs_component}; 
                   4564:         $r->print(&header(undef,$args));
1.318     raeburn  4565:         $r->print(&print_main_menu($permission,$context,$crstype));
1.190     raeburn  4566:     } elsif ($env{'form.action'} eq 'upload' && $permission->{'cusr'}) {
1.351     raeburn  4567:         push(@{$brcrum},
                   4568:               { href => '/adm/createuser?action=upload&state=',
                   4569:                 text => 'Upload Users List',
                   4570:                 help => 'Course_Create_Class_List',
                   4571:               });
                   4572:         $bread_crumbs_component = 'Upload Users List';
                   4573:         $args = {bread_crumbs           => $brcrum,
                   4574:                  bread_crumbs_component => $bread_crumbs_component};
                   4575:         $r->print(&header(undef,$args));
1.190     raeburn  4576:         $r->print('<form name="studentform" method="post" '.
                   4577:                   'enctype="multipart/form-data" '.
                   4578:                   ' action="/adm/createuser">'."\n");
                   4579:         if (! exists($env{'form.state'})) {
                   4580:             &Apache::lonuserutils::print_first_users_upload_form($r,$context);
                   4581:         } elsif ($env{'form.state'} eq 'got_file') {
1.375     raeburn  4582:             &Apache::lonuserutils::print_upload_manager_form($r,$context,$permission,
                   4583:                                                              $crstype,$showcredits);
1.190     raeburn  4584:         } elsif ($env{'form.state'} eq 'enrolling') {
                   4585:             if ($env{'form.datatoken'}) {
1.375     raeburn  4586:                 &Apache::lonuserutils::upfile_drop_add($r,$context,$permission,
                   4587:                                                        $showcredits);
1.190     raeburn  4588:             }
                   4589:         } else {
                   4590:             &Apache::lonuserutils::print_first_users_upload_form($r,$context);
                   4591:         }
1.416     raeburn  4592:     } elsif (((($env{'form.action'} eq 'singleuser') || ($env{'form.action'}
                   4593:               eq 'singlestudent')) && ($permission->{'cusr'})) ||
1.418     raeburn  4594:              (($env{'form.action'} eq 'singleuser') && ($permission->{'view'})) ||
1.416     raeburn  4595:              (($env{'form.action'} eq 'accesslogs') && ($permission->{'activity'}))) {
1.190     raeburn  4596:         my $phase = $env{'form.phase'};
                   4597:         my @search = ('srchterm','srchby','srchin','srchtype','srchdomain');
1.192     albertel 4598: 	&Apache::loncreateuser::restore_prev_selections();
                   4599: 	my $srch;
                   4600: 	foreach my $item (@search) {
                   4601: 	    $srch->{$item} = $env{'form.'.$item};
                   4602: 	}
1.207     raeburn  4603:         if (($phase eq 'get_user_info') || ($phase eq 'userpicked') ||
1.416     raeburn  4604:             ($phase eq 'createnewuser') || ($phase eq 'activity')) {
1.207     raeburn  4605:             if ($env{'form.phase'} eq 'createnewuser') {
                   4606:                 my $response;
                   4607:                 if ($env{'form.srchterm'} !~ /^$match_username$/) {
1.366     bisitz   4608:                     my $response =
                   4609:                         '<span class="LC_warning">'
                   4610:                        .&mt('You must specify a valid username. Only the following are allowed:'
                   4611:                            .' letters numbers - . @')
                   4612:                        .'</span>';
1.221     raeburn  4613:                     $env{'form.phase'} = '';
1.375     raeburn  4614:                     &print_username_entry_form($r,$context,$response,$srch,undef,
                   4615:                                                $crstype,$brcrum,$showcredits);
1.207     raeburn  4616:                 } else {
                   4617:                     my $ccuname =&LONCAPA::clean_username($srch->{'srchterm'});
                   4618:                     my $ccdomain=&LONCAPA::clean_domain($srch->{'srchdomain'});
                   4619:                     &print_user_modification_page($r,$ccuname,$ccdomain,
1.221     raeburn  4620:                                                   $srch,$response,$context,
1.375     raeburn  4621:                                                   $permission,$crstype,$brcrum,
                   4622:                                                   $showcredits);
1.207     raeburn  4623:                 }
                   4624:             } elsif ($env{'form.phase'} eq 'get_user_info') {
1.190     raeburn  4625:                 my ($currstate,$response,$forcenewuser,$results) = 
1.221     raeburn  4626:                     &user_search_result($context,$srch);
1.190     raeburn  4627:                 if ($env{'form.currstate'} eq 'modify') {
                   4628:                     $currstate = $env{'form.currstate'};
                   4629:                 }
                   4630:                 if ($currstate eq 'select') {
                   4631:                     &print_user_selection_page($r,$response,$srch,$results,
1.351     raeburn  4632:                                                \@search,$context,undef,$crstype,
                   4633:                                                $brcrum);
1.416     raeburn  4634:                 } elsif (($currstate eq 'modify') || ($env{'form.action'} eq 'accesslogs')) {
                   4635:                     my ($ccuname,$ccdomain,$uhome);
1.190     raeburn  4636:                     if (($srch->{'srchby'} eq 'uname') && 
                   4637:                         ($srch->{'srchtype'} eq 'exact')) {
                   4638:                         $ccuname = $srch->{'srchterm'};
                   4639:                         $ccdomain= $srch->{'srchdomain'};
                   4640:                     } else {
                   4641:                         my @matchedunames = keys(%{$results});
                   4642:                         ($ccuname,$ccdomain) = split(/:/,$matchedunames[0]);
                   4643:                     }
                   4644:                     $ccuname =&LONCAPA::clean_username($ccuname);
                   4645:                     $ccdomain=&LONCAPA::clean_domain($ccdomain);
1.416     raeburn  4646:                     if ($env{'form.action'} eq 'accesslogs') {
                   4647:                         my $uhome;
                   4648:                         if (($ccuname ne '') && ($ccdomain ne '')) {
                   4649:                            $uhome = &Apache::lonnet::homeserver($ccuname,$ccdomain);
                   4650:                         }
                   4651:                         if (($uhome eq '') || ($uhome eq 'no_host')) {
                   4652:                             $env{'form.phase'} = '';
                   4653:                             undef($forcenewuser);
                   4654:                             #if ($response) {
                   4655:                             #    unless ($response =~ m{\Q<br /><br />\E$}) {
                   4656:                             #        $response .= '<br /><br />';
                   4657:                             #    }
                   4658:                             #}
                   4659:                             &print_username_entry_form($r,$context,$response,$srch,
                   4660:                                                        $forcenewuser,$crstype,$brcrum);
                   4661:                         } else {
                   4662:                             &print_useraccesslogs_display($r,$ccuname,$ccdomain,$permission,$brcrum);
                   4663:                         }
                   4664:                     } else {
                   4665:                         if ($env{'form.forcenewuser'}) {
                   4666:                             $response = '';
                   4667:                         }
                   4668:                         &print_user_modification_page($r,$ccuname,$ccdomain,
                   4669:                                                       $srch,$response,$context,
                   4670:                                                       $permission,$crstype,$brcrum);
1.190     raeburn  4671:                     }
                   4672:                 } elsif ($currstate eq 'query') {
1.351     raeburn  4673:                     &print_user_query_page($r,'createuser',$brcrum);
1.190     raeburn  4674:                 } else {
1.229     raeburn  4675:                     $env{'form.phase'} = '';
1.207     raeburn  4676:                     &print_username_entry_form($r,$context,$response,$srch,
1.351     raeburn  4677:                                                $forcenewuser,$crstype,$brcrum);
1.190     raeburn  4678:                 }
                   4679:             } elsif ($env{'form.phase'} eq 'userpicked') {
                   4680:                 my $ccuname = &LONCAPA::clean_username($env{'form.seluname'});
                   4681:                 my $ccdomain = &LONCAPA::clean_domain($env{'form.seludom'});
1.416     raeburn  4682:                 if ($env{'form.action'} eq 'accesslogs') {
                   4683:                     &print_useraccesslogs_display($r,$ccuname,$ccdomain,$permission,$brcrum);
                   4684:                 } else {
                   4685:                     &print_user_modification_page($r,$ccuname,$ccdomain,$srch,'',
                   4686:                                                   $context,$permission,$crstype,
                   4687:                                                   $brcrum);
                   4688:                 }
                   4689:             } elsif ($env{'form.action'} eq 'accesslogs') {
                   4690:                 my $ccuname = &LONCAPA::clean_username($env{'form.accessuname'});
                   4691:                 my $ccdomain = &LONCAPA::clean_domain($env{'form.accessudom'});
                   4692:                 &print_useraccesslogs_display($r,$ccuname,$ccdomain,$permission,$brcrum);
1.190     raeburn  4693:             }
                   4694:         } elsif ($env{'form.phase'} eq 'update_user_data') {
1.375     raeburn  4695:             &update_user_data($r,$context,$crstype,$brcrum,$showcredits);
1.190     raeburn  4696:         } else {
1.351     raeburn  4697:             &print_username_entry_form($r,$context,undef,$srch,undef,$crstype,
                   4698:                                        $brcrum);
1.190     raeburn  4699:         }
                   4700:     } elsif ($env{'form.action'} eq 'custom' && $permission->{'custom'}) {
1.414     raeburn  4701:         my $prefix;
1.190     raeburn  4702:         if ($env{'form.phase'} eq 'set_custom_roles') {
1.414     raeburn  4703:             &set_custom_role($r,$context,$brcrum,$prefix);
1.190     raeburn  4704:         } else {
1.414     raeburn  4705:             &custom_role_editor($r,$brcrum,$prefix);
1.190     raeburn  4706:         }
1.362     raeburn  4707:     } elsif (($env{'form.action'} eq 'processauthorreq') &&
                   4708:              ($permission->{'cusr'}) && 
                   4709:              (&Apache::lonnet::allowed('cau',$env{'request.role.domain'}))) {
                   4710:         push(@{$brcrum},
                   4711:                  {href => '/adm/createuser?action=processauthorreq',
1.385     bisitz   4712:                   text => 'Authoring Space requests',
1.362     raeburn  4713:                   help => 'Domain_Role_Approvals'});
                   4714:         $bread_crumbs_component = 'Authoring requests';
                   4715:         if ($env{'form.state'} eq 'done') {
                   4716:             push(@{$brcrum},
                   4717:                      {href => '/adm/createuser?action=authorreqqueue',
                   4718:                       text => 'Result',
                   4719:                       help => 'Domain_Role_Approvals'});
                   4720:             $bread_crumbs_component = 'Authoring request result';
                   4721:         }
                   4722:         $args = { bread_crumbs           => $brcrum,
                   4723:                   bread_crumbs_component => $bread_crumbs_component};
1.391     raeburn  4724:         my $js = &usernamerequest_javascript();
                   4725:         $r->print(&header(&add_script($js),$args));
1.362     raeburn  4726:         if (!exists($env{'form.state'})) {
                   4727:             $r->print(&Apache::loncoursequeueadmin::display_queued_requests('requestauthor',
                   4728:                                                                             $env{'request.role.domain'}));
                   4729:         } elsif ($env{'form.state'} eq 'done') {
                   4730:             $r->print('<h3>'.&mt('Authoring request processing').'</h3>'."\n");
                   4731:             $r->print(&Apache::loncoursequeueadmin::update_request_queue('requestauthor',
                   4732:                                                                          $env{'request.role.domain'}));
                   4733:         }
1.391     raeburn  4734:     } elsif (($env{'form.action'} eq 'processusernamereq') &&
                   4735:              ($permission->{'cusr'}) &&
                   4736:              (&Apache::lonnet::allowed('cau',$env{'request.role.domain'}))) {
                   4737:         push(@{$brcrum},
                   4738:                  {href => '/adm/createuser?action=processusernamereq',
                   4739:                   text => 'LON-CAPA account requests',
                   4740:                   help => 'Domain_Username_Approvals'});
                   4741:         $bread_crumbs_component = 'Account requests';
                   4742:         if ($env{'form.state'} eq 'done') {
                   4743:             push(@{$brcrum},
                   4744:                      {href => '/adm/createuser?action=usernamereqqueue',
                   4745:                       text => 'Result',
                   4746:                       help => 'Domain_Username_Approvals'});
                   4747:             $bread_crumbs_component = 'LON-CAPA account request result';
                   4748:         }
                   4749:         $args = { bread_crumbs           => $brcrum,
                   4750:                   bread_crumbs_component => $bread_crumbs_component};
                   4751:         my $js = &usernamerequest_javascript();
                   4752:         $r->print(&header(&add_script($js),$args));
                   4753:         if (!exists($env{'form.state'})) {
                   4754:             $r->print(&Apache::loncoursequeueadmin::display_queued_requests('requestusername',
                   4755:                                                                             $env{'request.role.domain'}));
                   4756:         } elsif ($env{'form.state'} eq 'done') {
                   4757:             $r->print('<h3>'.&mt('LON-CAPA account request processing').'</h3>'."\n");
                   4758:             $r->print(&Apache::loncoursequeueadmin::update_request_queue('requestusername',
                   4759:                                                                          $env{'request.role.domain'}));
                   4760:         }
                   4761:     } elsif (($env{'form.action'} eq 'displayuserreq') &&
                   4762:              ($permission->{'cusr'})) {
                   4763:         my $dom = $env{'form.domain'};
                   4764:         my $uname = $env{'form.username'};
                   4765:         my $warning;
                   4766:         if (($dom =~ /^$match_domain$/) && (&Apache::lonnet::domain($dom) ne '')) {
                   4767:             if (($dom eq $env{'request.role.domain'}) && (&Apache::lonnet::allowed('ccc',$dom))) {
                   4768:                 if (($uname =~ /^$match_username$/) && ($env{'form.queue'} eq 'approval')) {
                   4769:                     my $uhome = &Apache::lonnet::homeserver($uname,$dom);
                   4770:                     if ($uhome eq 'no_host') {
                   4771:                         my $queue = $env{'form.queue'};
                   4772:                         my $reqkey = &escape($uname).'_'.$queue; 
                   4773:                         my $namespace = 'usernamequeue';
                   4774:                         my $domconfig = &Apache::lonnet::get_domainconfiguser($dom);
                   4775:                         my %queued =
                   4776:                             &Apache::lonnet::get($namespace,[$reqkey],$dom,$domconfig);
                   4777:                         unless ($queued{$reqkey}) {
                   4778:                             $warning = &mt('No information was found for this LON-CAPA account request.');
                   4779:                         }
                   4780:                     } else {
                   4781:                         $warning = &mt('A LON-CAPA account already exists for the requested username and domain.');
                   4782:                     }
                   4783:                 } else {
                   4784:                     $warning = &mt('LON-CAPA account request status check is for an invalid username.');
                   4785:                 }
                   4786:             } else {
                   4787:                 $warning = &mt('You do not have rights to view LON-CAPA account requests in the domain specified.');
                   4788:             }
                   4789:         } else {
                   4790:             $warning = &mt('LON-CAPA account request status check is for an invalid domain.');
                   4791:         }
                   4792:         my $args = { only_body => 1 };
                   4793:         $r->print(&header(undef,$args).
                   4794:                   '<h3>'.&mt('LON-CAPA Account Request Details').'</h3>');
                   4795:         if ($warning ne '') {
                   4796:             $r->print('<div class="LC_warning">'.$warning.'</div>');
                   4797:         } else {
                   4798:             my ($infofields,$infotitles) = &Apache::loncommon::emailusername_info();
                   4799:             my $domconfiguser = &Apache::lonnet::get_domainconfiguser($dom);
                   4800:             my %domconfig = &Apache::lonnet::get_dom('configuration',['usercreation'],$dom);
                   4801:             if (ref($domconfig{'usercreation'}) eq 'HASH') {
                   4802:                 if (ref($domconfig{'usercreation'}{'cancreate'}) eq 'HASH') {
                   4803:                     if (ref($domconfig{'usercreation'}{'cancreate'}{'emailusername'}) eq 'HASH') {
                   4804:                         my %info =
                   4805:                             &Apache::lonnet::get('nohist_requestedusernames',[$uname],$dom,$domconfiguser);
                   4806:                         if (ref($info{$uname}) eq 'HASH') {
1.396     raeburn  4807:                             my $usertype = $info{$uname}{'inststatus'};
                   4808:                             unless ($usertype) {
                   4809:                                 $usertype = 'default';
                   4810:                             }
                   4811:                             if (ref($domconfig{'usercreation'}{'cancreate'}{'emailusername'}{$usertype}) eq 'HASH') {
                   4812:                                 if ((ref($infofields) eq 'ARRAY') && (ref($infotitles) eq 'HASH')) {
                   4813:                                     $r->print('<div>'.&Apache::lonhtmlcommon::start_pick_box());
                   4814:                                     my ($num,$count,$showstatus);
                   4815:                                     $count = scalar(keys(%{$domconfig{'usercreation'}{'cancreate'}{'emailusername'}{$usertype}}));
                   4816:                                     unless ($usertype eq 'default') {
                   4817:                                         my ($othertitle,$usertypes,$types) = 
                   4818:                                             &Apache::loncommon::sorted_inst_types($dom);
                   4819:                                         if (ref($usertypes) eq 'HASH') {
                   4820:                                             if ($usertypes->{$usertype}) {
                   4821:                                                 $showstatus = $usertypes->{$usertype};
                   4822:                                                 $count ++;
                   4823:                                             }
                   4824:                                         }
                   4825:                                     }
                   4826:                                     foreach my $field (@{$infofields}) {
                   4827:                                         next unless ($domconfig{'usercreation'}{'cancreate'}{'emailusername'}{$usertype}{$field});
                   4828:                                         next unless ($infotitles->{$field});
                   4829:                                         $r->print(&Apache::lonhtmlcommon::row_title($infotitles->{$field}).
                   4830:                                                   $info{$uname}{$field});
                   4831:                                         $num ++;
                   4832:                                         if ($count == $num) {
                   4833:                                             $r->print(&Apache::lonhtmlcommon::row_closure(1));
                   4834:                                         } else {
                   4835:                                             $r->print(&Apache::lonhtmlcommon::row_closure());
                   4836:                                         }
                   4837:                                     }
                   4838:                                     if ($showstatus) {
                   4839:                                         $r->print(&Apache::lonhtmlcommon::row_title(&mt('Status type (self-reported)')).
                   4840:                                                   $showstatus.
                   4841:                                                   &Apache::lonhtmlcommon::row_closure(1));
1.391     raeburn  4842:                                     }
1.396     raeburn  4843:                                     $r->print(&Apache::lonhtmlcommon::end_pick_box().'</div>');
1.391     raeburn  4844:                                 }
                   4845:                             }
                   4846:                         }
                   4847:                     }
                   4848:                 }
                   4849:             }
                   4850:             $r->print(&close_popup_form());
                   4851:         }
1.207     raeburn  4852:     } elsif (($env{'form.action'} eq 'listusers') && 
                   4853:              ($permission->{'view'} || $permission->{'cusr'})) {
1.202     raeburn  4854:         if ($env{'form.phase'} eq 'bulkchange') {
1.351     raeburn  4855:             push(@{$brcrum},
                   4856:                     {href => '/adm/createuser?action=listusers',
                   4857:                      text => "List Users"},
                   4858:                     {href => "/adm/createuser",
                   4859:                      text => "Result",
                   4860:                      help => 'Course_View_Class_List'});
                   4861:             $bread_crumbs_component = 'Update Users';
                   4862:             $args = {bread_crumbs           => $brcrum,
                   4863:                      bread_crumbs_component => $bread_crumbs_component};
                   4864:             $r->print(&header(undef,$args));
1.202     raeburn  4865:             my $setting = $env{'form.roletype'};
                   4866:             my $choice = $env{'form.bulkaction'};
                   4867:             if ($permission->{'cusr'}) {
1.336     raeburn  4868:                 &Apache::lonuserutils::update_user_list($r,$context,$setting,$choice,$crstype);
1.221     raeburn  4869:             } else {
                   4870:                 $r->print(&mt('You are not authorized to make bulk changes to user roles'));
1.223     raeburn  4871:                 $r->print('<p><a href="/adm/createuser?action=listusers">'.&mt('Display User Lists').'</a>');
1.202     raeburn  4872:             }
                   4873:         } else {
1.351     raeburn  4874:             push(@{$brcrum},
                   4875:                     {href => '/adm/createuser?action=listusers',
                   4876:                      text => "List Users",
                   4877:                      help => 'Course_View_Class_List'});
                   4878:             $bread_crumbs_component = 'List Users';
                   4879:             $args = {bread_crumbs           => $brcrum,
                   4880:                      bread_crumbs_component => $bread_crumbs_component};
1.202     raeburn  4881:             my ($cb_jscript,$jscript,$totcodes,$codetitles,$idlist,$idlist_titles);
                   4882:             my $formname = 'studentform';
1.364     raeburn  4883:             my $hidecall = "hide_searching();";
1.321     raeburn  4884:             if (($context eq 'domain') && (($env{'form.roletype'} eq 'course') ||
                   4885:                 ($env{'form.roletype'} eq 'community'))) {
                   4886:                 if ($env{'form.roletype'} eq 'course') {
                   4887:                     ($cb_jscript,$jscript,$totcodes,$codetitles,$idlist,$idlist_titles) = 
                   4888:                         &Apache::lonuserutils::courses_selector($env{'request.role.domain'},
                   4889:                                                                 $formname);
                   4890:                 } elsif ($env{'form.roletype'} eq 'community') {
                   4891:                     $cb_jscript = 
                   4892:                         &Apache::loncommon::coursebrowser_javascript($env{'request.role.domain'});
                   4893:                     my %elements = (
                   4894:                                       coursepick => 'radio',
                   4895:                                       coursetotal => 'text',
                   4896:                                       courselist => 'text',
                   4897:                                    );
                   4898:                     $jscript = &Apache::lonhtmlcommon::set_form_elements(\%elements);
                   4899:                 }
1.364     raeburn  4900:                 $jscript .= &verify_user_display($context)."\n".
                   4901:                             &Apache::loncommon::check_uncheck_jscript();
1.202     raeburn  4902:                 my $js = &add_script($jscript).$cb_jscript;
                   4903:                 my $loadcode = 
                   4904:                     &Apache::lonuserutils::course_selector_loadcode($formname);
                   4905:                 if ($loadcode ne '') {
1.364     raeburn  4906:                     $args->{add_entries} = {onload => "$loadcode;$hidecall"};
                   4907:                 } else {
                   4908:                     $args->{add_entries} = {onload => $hidecall};
1.202     raeburn  4909:                 }
1.351     raeburn  4910:                 $r->print(&header($js,$args));
1.191     raeburn  4911:             } else {
1.364     raeburn  4912:                 $args->{add_entries} = {onload => $hidecall};
                   4913:                 $jscript = &verify_user_display($context).
                   4914:                            &Apache::loncommon::check_uncheck_jscript(); 
                   4915:                 $r->print(&header(&add_script($jscript),$args));
1.191     raeburn  4916:             }
1.202     raeburn  4917:             &Apache::lonuserutils::print_userlist($r,undef,$permission,$context,
1.375     raeburn  4918:                          $formname,$totcodes,$codetitles,$idlist,$idlist_titles,
                   4919:                          $showcredits);
1.191     raeburn  4920:         }
1.213     raeburn  4921:     } elsif ($env{'form.action'} eq 'drop' && $permission->{'cusr'}) {
1.318     raeburn  4922:         my $brtext;
                   4923:         if ($crstype eq 'Community') {
                   4924:             $brtext = 'Drop Members';
                   4925:         } else {
                   4926:             $brtext = 'Drop Students';
                   4927:         }
1.351     raeburn  4928:         push(@{$brcrum},
                   4929:                 {href => '/adm/createuser?action=drop',
                   4930:                  text => $brtext,
                   4931:                  help => 'Course_Drop_Student'});
                   4932:         if ($env{'form.state'} eq 'done') {
                   4933:             push(@{$brcrum},
                   4934:                      {href=>'/adm/createuser?action=drop',
                   4935:                       text=>"Result"});
                   4936:         }
                   4937:         $bread_crumbs_component = $brtext;
                   4938:         $args = {bread_crumbs           => $brcrum,
                   4939:                  bread_crumbs_component => $bread_crumbs_component}; 
                   4940:         $r->print(&header(undef,$args));
1.213     raeburn  4941:         if (!exists($env{'form.state'})) {
1.318     raeburn  4942:             &Apache::lonuserutils::print_drop_menu($r,$context,$permission,$crstype);
1.213     raeburn  4943:         } elsif ($env{'form.state'} eq 'done') {
                   4944:             &Apache::lonuserutils::update_user_list($r,$context,undef,
                   4945:                                                     $env{'form.action'});
                   4946:         }
1.202     raeburn  4947:     } elsif ($env{'form.action'} eq 'dateselect') {
                   4948:         if ($permission->{'cusr'}) {
1.351     raeburn  4949:             $r->print(&header(undef,{'no_nav_bar' => 1}).
1.375     raeburn  4950:                       &Apache::lonuserutils::date_section_selector($context,$permission,
                   4951:                                                                    $crstype,$showcredits));
1.202     raeburn  4952:         } else {
1.351     raeburn  4953:             $r->print(&header(undef,{'no_nav_bar' => 1}).
                   4954:                      '<span class="LC_error">'.&mt('You do not have permission to modify dates or sections for users').'</span>'); 
1.202     raeburn  4955:         }
1.237     raeburn  4956:     } elsif ($env{'form.action'} eq 'selfenroll') {
1.398     raeburn  4957:         if ($permission->{selfenrolladmin}) {
                   4958:             my $cid = $env{'request.course.id'};
                   4959:             my $cdom = $env{'course.'.$cid.'.domain'};
                   4960:             my $cnum = $env{'course.'.$cid.'.num'};
                   4961:             my %currsettings = (
                   4962:                 selfenroll_types              => $env{'course.'.$cid.'.internal.selfenroll_types'},
                   4963:                 selfenroll_registered         => $env{'course.'.$cid.'.internal.selfenroll_registered'},
                   4964:                 selfenroll_section            => $env{'course.'.$cid.'.internal.selfenroll_section'},
                   4965:                 selfenroll_notifylist         => $env{'course.'.$cid.'.internal.selfenroll_notifylist'},
                   4966:                 selfenroll_approval           => $env{'course.'.$cid.'.internal.selfenroll_approval'},
                   4967:                 selfenroll_limit              => $env{'course.'.$cid.'.internal.selfenroll_limit'},
                   4968:                 selfenroll_cap                => $env{'course.'.$cid.'.internal.selfenroll_cap'},
                   4969:                 selfenroll_start_date         => $env{'course.'.$cid.'.internal.selfenroll_start_date'},
                   4970:                 selfenroll_end_date           => $env{'course.'.$cid.'.internal.selfenroll_end_date'},
                   4971:                 selfenroll_start_access       => $env{'course.'.$cid.'.internal.selfenroll_start_access'},
                   4972:                 selfenroll_end_access         => $env{'course.'.$cid.'.internal.selfenroll_end_access'},
                   4973:                 default_enrollment_start_date => $env{'course.'.$cid.'.default_enrollment_start_date'},
                   4974:                 default_enrollment_end_date   => $env{'course.'.$cid.'.default_enrollment_end_date'},
1.400     raeburn  4975:                 uniquecode                    => $env{'course.'.$cid.'.internal.uniquecode'},
1.398     raeburn  4976:             );
                   4977:             push(@{$brcrum},
                   4978:                     {href => '/adm/createuser?action=selfenroll',
                   4979:                      text => "Configure Self-enrollment",
                   4980:                      help => 'Course_Self_Enrollment'});
                   4981:             if (!exists($env{'form.state'})) {
                   4982:                 $args = { bread_crumbs           => $brcrum,
                   4983:                           bread_crumbs_component => 'Configure Self-enrollment'};
                   4984:                 $r->print(&header(undef,$args));
                   4985:                 $r->print('<h3>'.&mt('Self-enrollment with a student role').'</h3>'."\n");
                   4986:                 &print_selfenroll_menu($r,'course',$cid,$cdom,$cnum,\%currsettings);
                   4987:             } elsif ($env{'form.state'} eq 'done') {
                   4988:                 push (@{$brcrum},
                   4989:                           {href=>'/adm/createuser?action=selfenroll',
                   4990:                            text=>"Result"});
                   4991:                 $args = { bread_crumbs           => $brcrum,
                   4992:                           bread_crumbs_component => 'Self-enrollment result'};
                   4993:                 $r->print(&header(undef,$args));
                   4994:                 $r->print('<h3>'.&mt('Self-enrollment with a student role').'</h3>'."\n");
1.400     raeburn  4995:                 &update_selfenroll_config($r,$cid,$cdom,$cnum,$context,$crstype,\%currsettings);
1.398     raeburn  4996:             }
                   4997:         } else {
                   4998:             $r->print(&header(undef,{'no_nav_bar' => 1}).
                   4999:                      '<span class="LC_error">'.&mt('You do not have permission to configure self-enrollment').'</span>');
1.237     raeburn  5000:         }
1.277     raeburn  5001:     } elsif ($env{'form.action'} eq 'selfenrollqueue') {
1.418     raeburn  5002:         if ($permission->{selfenrolladmin}) {
1.351     raeburn  5003:             push(@{$brcrum},
                   5004:                      {href => '/adm/createuser?action=selfenrollqueue',
1.418     raeburn  5005:                       text => 'Enrollment requests',
1.351     raeburn  5006:                       help => 'Course_Self_Enrollment'});
1.418     raeburn  5007:             $bread_crumbs_component = 'Enrollment requests';
                   5008:             if ($env{'form.state'} eq 'done') {
                   5009:                 push(@{$brcrum},
                   5010:                          {href => '/adm/createuser?action=selfenrollqueue',
                   5011:                           text => 'Result',
                   5012:                           help => 'Course_Self_Enrollment'});
                   5013:                 $bread_crumbs_component = 'Enrollment result';
                   5014:             }
                   5015:             $args = { bread_crumbs           => $brcrum,
                   5016:                       bread_crumbs_component => $bread_crumbs_component};
                   5017:             $r->print(&header(undef,$args));
                   5018:             my $cid = $env{'request.course.id'};
                   5019:             my $cdom = $env{'course.'.$cid.'.domain'};
                   5020:             my $cnum = $env{'course.'.$cid.'.num'};
                   5021:             my $coursedesc = $env{'course.'.$cid.'.description'};
                   5022:             if (!exists($env{'form.state'})) {
                   5023:                 $r->print('<h3>'.&mt('Pending enrollment requests').'</h3>'."\n");
                   5024:                 $r->print(&Apache::loncoursequeueadmin::display_queued_requests($context,
                   5025:                                                                                 $cdom,$cnum));
                   5026:             } elsif ($env{'form.state'} eq 'done') {
                   5027:                 $r->print('<h3>'.&mt('Enrollment request processing').'</h3>'."\n");
                   5028:                 $r->print(&Apache::loncoursequeueadmin::update_request_queue($context,
1.430     raeburn  5029:                               $cdom,$cnum,$coursedesc));
1.418     raeburn  5030:             }
                   5031:         } else {
                   5032:             $r->print(&header(undef,{'no_nav_bar' => 1}).
                   5033:                      '<span class="LC_error">'.&mt('You do not have permission to manage self-enrollment').'</span>');
1.351     raeburn  5034:         }
1.418     raeburn  5035:     } elsif ($env{'form.action'} eq 'changelogs') {
                   5036:         if ($permission->{cusr} || $permission->{view}) {
                   5037:             &print_userchangelogs_display($r,$context,$permission,$brcrum);
                   5038:         } else {
                   5039:             $r->print(&header(undef,{'no_nav_bar' => 1}).
                   5040:                      '<span class="LC_error">'.&mt('You do not have permission to view change logs').'</span>');
1.277     raeburn  5041:         }
1.428     raeburn  5042:     } elsif ($env{'form.action'} eq 'helpdesk') {
                   5043:         if (($permission->{'owner'}) || ($permission->{'co-owner'})) {
                   5044:             if ($env{'form.state'} eq 'process') {
                   5045:                 if ($permission->{'owner'}) {
                   5046:                     &update_helpdeskaccess($r,$permission,$brcrum);
                   5047:                 } else {
                   5048:                     &print_helpdeskaccess_display($r,$permission,$brcrum);
1.430     raeburn  5049:                 }
1.428     raeburn  5050:             } else {
                   5051:                 &print_helpdeskaccess_display($r,$permission,$brcrum);
                   5052:             }
                   5053:         } else {
                   5054:             $r->print(&header(undef,{'no_nav_bar' => 1}).
                   5055:                       '<span class="LC_error">'.&mt('You do not have permission to view helpdesk access').'</span>');
                   5056:         }
1.190     raeburn  5057:     } else {
1.351     raeburn  5058:         $bread_crumbs_component = 'User Management';
                   5059:         $args = { bread_crumbs           => $brcrum,
                   5060:                   bread_crumbs_component => $bread_crumbs_component};
                   5061:         $r->print(&header(undef,$args));
1.318     raeburn  5062:         $r->print(&print_main_menu($permission,$context,$crstype));
1.190     raeburn  5063:     }
1.351     raeburn  5064:     $r->print(&Apache::loncommon::end_page());
1.190     raeburn  5065:     return OK;
                   5066: }
                   5067: 
                   5068: sub header {
1.351     raeburn  5069:     my ($jscript,$args) = @_;
1.190     raeburn  5070:     my $start_page;
1.351     raeburn  5071:     if (ref($args) eq 'HASH') {
                   5072:         $start_page=&Apache::loncommon::start_page('User Management',$jscript,$args);
1.190     raeburn  5073:     } else {
1.351     raeburn  5074:         $start_page=&Apache::loncommon::start_page('User Management',$jscript);
1.190     raeburn  5075:     }
                   5076:     return $start_page;
                   5077: }
1.2       www      5078: 
1.191     raeburn  5079: sub add_script {
                   5080:     my ($js) = @_;
1.301     bisitz   5081:     return '<script type="text/javascript">'."\n"
                   5082:           .'// <![CDATA['."\n"
                   5083:           .$js."\n"
                   5084:           .'// ]]>'."\n"
                   5085:           .'</script>'."\n";
1.191     raeburn  5086: }
                   5087: 
1.391     raeburn  5088: sub usernamerequest_javascript {
                   5089:     my $js = <<ENDJS;
                   5090: 
                   5091: function openusernamereqdisplay(dom,uname,queue) {
                   5092:     var url = '/adm/createuser?action=displayuserreq';
                   5093:     url += '&domain='+dom+'&username='+uname+'&queue='+queue;
                   5094:     var title = 'Account_Request_Browser';
                   5095:     var options = 'scrollbars=1,resizable=1,menubar=0';
                   5096:     options += ',width=700,height=600';
                   5097:     var stdeditbrowser = open(url,title,options,'1');
                   5098:     stdeditbrowser.focus();
                   5099:     return;
                   5100: }
                   5101:  
                   5102: ENDJS
                   5103: }
                   5104: 
                   5105: sub close_popup_form {
                   5106:     my $close= &mt('Close Window');
                   5107:     return << "END";
                   5108: <p><form name="displayreq" action="" method="post">
                   5109: <input type="button" name="closeme" value="$close" onclick="javascript:self.close();" />
                   5110: </form></p>
                   5111: END
                   5112: }
                   5113: 
1.202     raeburn  5114: sub verify_user_display {
1.364     raeburn  5115:     my ($context) = @_;
1.374     raeburn  5116:     my %lt = &Apache::lonlocal::texthash (
                   5117:         course    => 'course(s): description, section(s), status',
                   5118:         community => 'community(s): description, section(s), status',
                   5119:         author    => 'author',
                   5120:     );
1.364     raeburn  5121:     my $photos;
                   5122:     if (($context eq 'course') && $env{'request.course.id'}) {
                   5123:         $photos = $env{'course.'.$env{'request.course.id'}.'.internal.showphoto'};
                   5124:     }
1.202     raeburn  5125:     my $output = <<"END";
                   5126: 
1.364     raeburn  5127: function hide_searching() {
                   5128:     if (document.getElementById('searching')) {
                   5129:         document.getElementById('searching').style.display = 'none';
                   5130:     }
                   5131:     return;
                   5132: }
                   5133: 
1.202     raeburn  5134: function display_update() {
                   5135:     document.studentform.action.value = 'listusers';
                   5136:     document.studentform.phase.value = 'display';
                   5137:     document.studentform.submit();
                   5138: }
                   5139: 
1.364     raeburn  5140: function updateCols(caller) {
                   5141:     var context = '$context';
                   5142:     var photos = '$photos';
                   5143:     if (caller == 'Status') {
1.374     raeburn  5144:         if ((context == 'domain') && 
                   5145:             ((document.studentform.roletype.options[document.studentform.roletype.selectedIndex].value == 'course') ||
                   5146:              (document.studentform.roletype.options[document.studentform.roletype.selectedIndex].value == 'community'))) {
1.364     raeburn  5147:             document.getElementById('showcolstatus').checked = false;
                   5148:             document.getElementById('showcolstatus').disabled = 'disabled';
                   5149:             document.getElementById('showcolstart').checked = false;
                   5150:             document.getElementById('showcolend').checked = false;
1.374     raeburn  5151:         } else {
                   5152:             if (document.studentform.Status.options[document.studentform.Status.selectedIndex].value == 'Any') {
                   5153:                 document.getElementById('showcolstatus').checked = true;
                   5154:                 document.getElementById('showcolstatus').disabled = '';
                   5155:                 document.getElementById('showcolstart').checked = true;
                   5156:                 document.getElementById('showcolend').checked = true;
                   5157:             } else {
                   5158:                 document.getElementById('showcolstatus').checked = false;
                   5159:                 document.getElementById('showcolstatus').disabled = 'disabled';
                   5160:                 document.getElementById('showcolstart').checked = false;
                   5161:                 document.getElementById('showcolend').checked = false;
                   5162:             }
1.364     raeburn  5163:         }
                   5164:     }
                   5165:     if (caller == 'output') {
                   5166:         if (photos == 1) {
                   5167:             if (document.getElementById('showcolphoto')) {
                   5168:                 var photoitem = document.getElementById('showcolphoto');
                   5169:                 if (document.studentform.output.options[document.studentform.output.selectedIndex].value == 'html') {
                   5170:                     photoitem.checked = true;
                   5171:                     photoitem.disabled = '';
                   5172:                 } else {
                   5173:                     photoitem.checked = false;
                   5174:                     photoitem.disabled = 'disabled';
                   5175:                 }
                   5176:             }
                   5177:         }
                   5178:     }
                   5179:     if (caller == 'showrole') {
1.371     raeburn  5180:         if ((document.studentform.showrole.options[document.studentform.showrole.selectedIndex].value == 'Any') ||
                   5181:             (document.studentform.showrole.options[document.studentform.showrole.selectedIndex].value == 'cr')) {
1.364     raeburn  5182:             document.getElementById('showcolrole').checked = true;
                   5183:             document.getElementById('showcolrole').disabled = '';
                   5184:         } else {
                   5185:             document.getElementById('showcolrole').checked = false;
                   5186:             document.getElementById('showcolrole').disabled = 'disabled';
                   5187:         }
1.374     raeburn  5188:         if (context == 'domain') {
1.382     raeburn  5189:             var quotausageshow = 0;
1.374     raeburn  5190:             if ((document.studentform.roletype.options[document.studentform.roletype.selectedIndex].value == 'course') ||
                   5191:                 (document.studentform.roletype.options[document.studentform.roletype.selectedIndex].value == 'community')) {
                   5192:                 document.getElementById('showcolstatus').checked = false;
                   5193:                 document.getElementById('showcolstatus').disabled = 'disabled';
                   5194:                 document.getElementById('showcolstart').checked = false;
                   5195:                 document.getElementById('showcolend').checked = false;
                   5196:             } else {
                   5197:                 if (document.studentform.Status.options[document.studentform.Status.selectedIndex].value == 'Any') {
                   5198:                     document.getElementById('showcolstatus').checked = true;
                   5199:                     document.getElementById('showcolstatus').disabled = '';
                   5200:                     document.getElementById('showcolstart').checked = true;
                   5201:                     document.getElementById('showcolend').checked = true;
                   5202:                 }
                   5203:             }
                   5204:             if (document.studentform.roletype.options[document.studentform.roletype.selectedIndex].value == 'domain') {
                   5205:                 document.getElementById('showcolextent').disabled = 'disabled';
                   5206:                 document.getElementById('showcolextent').checked = 'false';
                   5207:                 document.getElementById('showextent').style.display='none';
                   5208:                 document.getElementById('showcoltextextent').innerHTML = '';
1.382     raeburn  5209:                 if ((document.studentform.showrole.options[document.studentform.showrole.selectedIndex].value == 'au') ||
                   5210:                     (document.studentform.showrole.options[document.studentform.showrole.selectedIndex].value == 'Any')) {
                   5211:                     if (document.getElementById('showcolauthorusage')) {
                   5212:                         document.getElementById('showcolauthorusage').disabled = '';
                   5213:                     }
                   5214:                     if (document.getElementById('showcolauthorquota')) {
                   5215:                         document.getElementById('showcolauthorquota').disabled = '';
                   5216:                     }
                   5217:                     quotausageshow = 1;
                   5218:                 }
1.374     raeburn  5219:             } else {
                   5220:                 document.getElementById('showextent').style.display='block';
                   5221:                 document.getElementById('showextent').style.textAlign='left';
                   5222:                 document.getElementById('showextent').style.textFace='normal';
                   5223:                 if (document.studentform.roletype.options[document.studentform.roletype.selectedIndex].value == 'author') {
                   5224:                     document.getElementById('showcolextent').disabled = '';
                   5225:                     document.getElementById('showcolextent').checked = 'true';
                   5226:                     document.getElementById('showcoltextextent').innerHTML="$lt{'author'}";
                   5227:                 } else {
                   5228:                     document.getElementById('showcolextent').disabled = '';
                   5229:                     document.getElementById('showcolextent').checked = 'true';
                   5230:                     if (document.studentform.roletype.options[document.studentform.roletype.selectedIndex].value == 'community') {
                   5231:                         document.getElementById('showcoltextextent').innerHTML="$lt{'community'}";
                   5232:                     } else {
                   5233:                         document.getElementById('showcoltextextent').innerHTML="$lt{'course'}";
                   5234:                     }
                   5235:                 }
                   5236:             }
1.382     raeburn  5237:             if (quotausageshow == 0)  {
                   5238:                 if (document.getElementById('showcolauthorusage')) {
                   5239:                     document.getElementById('showcolauthorusage').checked = false;
                   5240:                     document.getElementById('showcolauthorusage').disabled = 'disabled';
                   5241:                 }
                   5242:                 if (document.getElementById('showcolauthorquota')) {
                   5243:                     document.getElementById('showcolauthorquota').checked = false;
                   5244:                     document.getElementById('showcolauthorquota').disabled = 'disabled';
                   5245:                 }
                   5246:             }
1.374     raeburn  5247:         }
1.364     raeburn  5248:     }
                   5249:     return;
                   5250: }
                   5251: 
1.202     raeburn  5252: END
                   5253:     return $output;
                   5254: 
                   5255: }
                   5256: 
1.190     raeburn  5257: ###############################################################
                   5258: ###############################################################
                   5259: #  Menu Phase One
                   5260: sub print_main_menu {
1.318     raeburn  5261:     my ($permission,$context,$crstype) = @_;
                   5262:     my $linkcontext = $context;
                   5263:     my $stuterm = lc(&Apache::lonnet::plaintext('st',$crstype));
                   5264:     if (($context eq 'course') && ($crstype eq 'Community')) {
                   5265:         $linkcontext = lc($crstype);
                   5266:         $stuterm = 'Members';
                   5267:     }
1.208     raeburn  5268:     my %links = (
1.298     droeschl 5269:                 domain => {
                   5270:                             upload     => 'Upload a File of Users',
                   5271:                             singleuser => 'Add/Modify a User',
                   5272:                             listusers  => 'Manage Users',
                   5273:                             },
                   5274:                 author => {
                   5275:                             upload     => 'Upload a File of Co-authors',
                   5276:                             singleuser => 'Add/Modify a Co-author',
                   5277:                             listusers  => 'Manage Co-authors',
                   5278:                             },
                   5279:                 course => {
                   5280:                             upload     => 'Upload a File of Course Users',
                   5281:                             singleuser => 'Add/Modify a Course User',
1.354     www      5282:                             listusers  => 'List and Modify Multiple Course Users',
1.298     droeschl 5283:                             },
1.318     raeburn  5284:                 community => {
                   5285:                             upload     => 'Upload a File of Community Users',
                   5286:                             singleuser => 'Add/Modify a Community User',
1.354     www      5287:                             listusers  => 'List and Modify Multiple Community Users',
1.318     raeburn  5288:                            },
                   5289:                 );
                   5290:      my %linktitles = (
                   5291:                 domain => {
                   5292:                             singleuser => 'Add a user to the domain, and/or a course or community in the domain.',
                   5293:                             listusers  => 'Show and manage users in this domain.',
                   5294:                             },
                   5295:                 author => {
                   5296:                             singleuser => 'Add a user with a co- or assistant author role.',
                   5297:                             listusers  => 'Show and manage co- or assistant authors.',
                   5298:                             },
                   5299:                 course => {
                   5300:                             singleuser => 'Add a user with a certain role to this course.',
                   5301:                             listusers  => 'Show and manage users in this course.',
                   5302:                             },
                   5303:                 community => {
                   5304:                             singleuser => 'Add a user with a certain role to this community.',
                   5305:                             listusers  => 'Show and manage users in this community.',
                   5306:                            },
1.298     droeschl 5307:                 );
1.418     raeburn  5308:   if ($linkcontext eq 'domain') {
                   5309:       unless ($permission->{'cusr'}) {
1.430     raeburn  5310:           $links{'domain'}{'singleuser'} = 'View a User';
1.418     raeburn  5311:           $linktitles{'domain'}{'singleuser'} = 'View information about a user in the domain';
                   5312:       }
                   5313:   } elsif ($linkcontext eq 'course') {
                   5314:       unless ($permission->{'cusr'}) {
                   5315:           $links{'course'}{'singleuser'} = 'View a Course User';
                   5316:           $linktitles{'course'}{'singleuser'} = 'View information about a user in this course';
                   5317:           $links{'course'}{'listusers'} = 'List Course Users';
                   5318:           $linktitles{'course'}{'listusers'} = 'Show information about users in this course';
                   5319:       }
                   5320:   } elsif ($linkcontext eq 'community') {
                   5321:       unless ($permission->{'cusr'}) {
                   5322:           $links{'community'}{'singleuser'} = 'View a Community User';
                   5323:           $linktitles{'community'}{'singleuser'} = 'View information about a user in this community';
                   5324:           $links{'community'}{'listusers'} = 'List Community Users';
                   5325:           $linktitles{'community'}{'listusers'} = 'Show information about users in this community';
                   5326:       }
                   5327:   }
1.298     droeschl 5328:   my @menu = ( {categorytitle => 'Single Users', 
                   5329:          items =>
                   5330:          [
                   5331:             {
1.318     raeburn  5332:              linktext => $links{$linkcontext}{'singleuser'},
1.298     droeschl 5333:              icon => 'edit-redo.png',
                   5334:              #help => 'Course_Change_Privileges',
                   5335:              url => '/adm/createuser?action=singleuser',
1.418     raeburn  5336:              permission => ($permission->{'view'} || $permission->{'cusr'}),
1.318     raeburn  5337:              linktitle => $linktitles{$linkcontext}{'singleuser'},
1.298     droeschl 5338:             },
                   5339:          ]},
                   5340: 
                   5341:          {categorytitle => 'Multiple Users',
                   5342:          items => 
                   5343:          [
                   5344:             {
1.318     raeburn  5345:              linktext => $links{$linkcontext}{'upload'},
1.340     wenzelju 5346:              icon => 'uplusr.png',
1.298     droeschl 5347:              #help => 'Course_Create_Class_List',
                   5348:              url => '/adm/createuser?action=upload',
                   5349:              permission => $permission->{'cusr'},
                   5350:              linktitle => 'Upload a CSV or a text file containing users.',
                   5351:             },
                   5352:             {
1.318     raeburn  5353:              linktext => $links{$linkcontext}{'listusers'},
1.340     wenzelju 5354:              icon => 'mngcu.png',
1.298     droeschl 5355:              #help => 'Course_View_Class_List',
                   5356:              url => '/adm/createuser?action=listusers',
                   5357:              permission => ($permission->{'view'} || $permission->{'cusr'}),
1.318     raeburn  5358:              linktitle => $linktitles{$linkcontext}{'listusers'}, 
1.298     droeschl 5359:             },
                   5360: 
                   5361:          ]},
                   5362: 
                   5363:          {categorytitle => 'Administration',
                   5364:          items => [ ]},
                   5365:        );
1.415     raeburn  5366: 
1.265     mielkec  5367:     if ($context eq 'domain'){
1.416     raeburn  5368:         push(@{  $menu[0]->{items} }, # Single Users
                   5369:             {
                   5370:              linktext => 'User Access Log',
1.417     raeburn  5371:              icon => 'document-properties.png',
1.425     raeburn  5372:              #help => 'Domain_User_Access_Logs',
1.416     raeburn  5373:              url => '/adm/createuser?action=accesslogs',
                   5374:              permission => $permission->{'activity'},
                   5375:              linktitle => 'View user access log.',
                   5376:             }
                   5377:         );
1.298     droeschl 5378:         
                   5379:         push(@{ $menu[2]->{items} }, #Category: Administration
                   5380:             {
                   5381:              linktext => 'Custom Roles',
                   5382:              icon => 'emblem-photos.png',
                   5383:              #help => 'Course_Editing_Custom_Roles',
                   5384:              url => '/adm/createuser?action=custom',
                   5385:              permission => $permission->{'custom'},
                   5386:              linktitle => 'Configure a custom role.',
                   5387:             },
1.362     raeburn  5388:             {
                   5389:              linktext => 'Authoring Space Requests',
                   5390:              icon => 'selfenrl-queue.png',
                   5391:              #help => 'Domain_Role_Approvals',
                   5392:              url => '/adm/createuser?action=processauthorreq',
                   5393:              permission => $permission->{'cusr'},
                   5394:              linktitle => 'Approve or reject author role requests',
                   5395:             },
1.363     raeburn  5396:             {
1.391     raeburn  5397:              linktext => 'LON-CAPA Account Requests',
                   5398:              icon => 'list-add.png',
                   5399:              #help => 'Domain_Username_Approvals',
                   5400:              url => '/adm/createuser?action=processusernamereq',
                   5401:              permission => $permission->{'cusr'},
                   5402:              linktitle => 'Approve or reject LON-CAPA account requests',
                   5403:             },
                   5404:             {
1.363     raeburn  5405:              linktext => 'Change Log',
                   5406:              icon => 'document-properties.png',
                   5407:              #help => 'Course_User_Logs',
                   5408:              url => '/adm/createuser?action=changelogs',
1.418     raeburn  5409:              permission => ($permission->{'cusr'} || $permission->{'view'}),
1.363     raeburn  5410:              linktitle => 'View change log.',
                   5411:             },
1.298     droeschl 5412:         );
                   5413:         
1.265     mielkec  5414:     }elsif ($context eq 'course'){
1.298     droeschl 5415:         my ($cnum,$cdom) = &Apache::lonuserutils::get_course_identity();
1.318     raeburn  5416: 
                   5417:         my %linktext = (
                   5418:                          'Course'    => {
                   5419:                                           single => 'Add/Modify a Student', 
                   5420:                                           drop   => 'Drop Students',
                   5421:                                           groups => 'Course Groups',
                   5422:                                         },
                   5423:                          'Community' => {
                   5424:                                           single => 'Add/Modify a Member', 
                   5425:                                           drop   => 'Drop Members',
                   5426:                                           groups => 'Community Groups',
                   5427:                                         },
                   5428:                        );
1.411     raeburn  5429:         $linktext{'Placement'} = $linktext{'Course'};
1.318     raeburn  5430: 
                   5431:         my %linktitle = (
                   5432:             'Course' => {
                   5433:                   single => 'Add a user with the role of student to this course',
                   5434:                   drop   => 'Remove a student from this course.',
                   5435:                   groups => 'Manage course groups',
                   5436:                         },
                   5437:             'Community' => {
                   5438:                   single => 'Add a user with the role of member to this community',
                   5439:                   drop   => 'Remove a member from this community.',
                   5440:                   groups => 'Manage community groups',
                   5441:                            },
                   5442:         );
                   5443: 
1.411     raeburn  5444:         $linktitle{'Placement'} = $linktitle{'Course'};
                   5445: 
1.298     droeschl 5446:         push(@{ $menu[0]->{items} }, #Category: Single Users
                   5447:             {   
1.318     raeburn  5448:              linktext => $linktext{$crstype}{'single'},
1.298     droeschl 5449:              #help => 'Course_Add_Student',
                   5450:              icon => 'list-add.png',
                   5451:              url => '/adm/createuser?action=singlestudent',
                   5452:              permission => $permission->{'cusr'},
1.318     raeburn  5453:              linktitle => $linktitle{$crstype}{'single'},
1.298     droeschl 5454:             },
                   5455:         );
                   5456:         
                   5457:         push(@{ $menu[1]->{items} }, #Category: Multiple Users 
                   5458:             {
1.318     raeburn  5459:              linktext => $linktext{$crstype}{'drop'},
1.298     droeschl 5460:              icon => 'edit-undo.png',
                   5461:              #help => 'Course_Drop_Student',
                   5462:              url => '/adm/createuser?action=drop',
                   5463:              permission => $permission->{'cusr'},
1.318     raeburn  5464:              linktitle => $linktitle{$crstype}{'drop'},
1.298     droeschl 5465:             },
                   5466:         );
                   5467:         push(@{ $menu[2]->{items} }, #Category: Administration
1.428     raeburn  5468:             {
                   5469:              linktext => 'Helpdesk Access',
                   5470:              icon => 'helpdesk-access.png',
                   5471:              #help => 'Course_Helpdesk_Access',
                   5472:              url => '/adm/createuser?action=helpdesk',
                   5473:              permission => ($permission->{'owner'} || $permission->{'co-owner'}),
                   5474:              linktitle => 'Helpdesk access options',
                   5475:             },
                   5476:             {
1.298     droeschl 5477:              linktext => 'Custom Roles',
                   5478:              icon => 'emblem-photos.png',
                   5479:              #help => 'Course_Editing_Custom_Roles',
                   5480:              url => '/adm/createuser?action=custom',
                   5481:              permission => $permission->{'custom'},
                   5482:              linktitle => 'Configure a custom role.',
                   5483:             },
                   5484:             {
1.318     raeburn  5485:              linktext => $linktext{$crstype}{'groups'},
1.333     wenzelju 5486:              icon => 'grps.png',
1.298     droeschl 5487:              #help => 'Course_Manage_Group',
                   5488:              url => '/adm/coursegroups?refpage=cusr',
                   5489:              permission => $permission->{'grp_manage'},
1.318     raeburn  5490:              linktitle => $linktitle{$crstype}{'groups'},
1.298     droeschl 5491:             },
                   5492:             {
1.328     wenzelju 5493:              linktext => 'Change Log',
1.298     droeschl 5494:              icon => 'document-properties.png',
                   5495:              #help => 'Course_User_Logs',
                   5496:              url => '/adm/createuser?action=changelogs',
1.418     raeburn  5497:              permission => ($permission->{'view'} || $permission->{'cusr'}),
1.298     droeschl 5498:              linktitle => 'View change log.',
                   5499:             },
                   5500:         );
1.277     raeburn  5501:         if ($env{'course.'.$env{'request.course.id'}.'.internal.selfenroll_approval'}) {
1.298     droeschl 5502:             push(@{ $menu[2]->{items} },
1.398     raeburn  5503:                     {
1.298     droeschl 5504:                      linktext => 'Enrollment Requests',
                   5505:                      icon => 'selfenrl-queue.png',
                   5506:                      #help => 'Course_Approve_Selfenroll',
                   5507:                      url => '/adm/createuser?action=selfenrollqueue',
1.398     raeburn  5508:                      permission => $permission->{'selfenrolladmin'},
1.298     droeschl 5509:                      linktitle =>'Approve or reject enrollment requests.',
                   5510:                     },
                   5511:             );
1.277     raeburn  5512:         }
1.298     droeschl 5513:         
1.265     mielkec  5514:         if (!exists($permission->{'cusr_section'})){
1.320     raeburn  5515:             if ($crstype ne 'Community') {
                   5516:                 push(@{ $menu[2]->{items} },
                   5517:                     {
                   5518:                      linktext => 'Automated Enrollment',
                   5519:                      icon => 'roles.png',
                   5520:                      #help => 'Course_Automated_Enrollment',
                   5521:                      permission => (&Apache::lonnet::auto_run($cnum,$cdom)
1.418     raeburn  5522:                                          && (($permission->{'cusr'}) ||
                   5523:                                              ($permission->{'view'}))),
1.320     raeburn  5524:                      url  => '/adm/populate',
                   5525:                      linktitle => 'Automated enrollment manager.',
                   5526:                     }
                   5527:                 );
                   5528:             }
                   5529:             push(@{ $menu[2]->{items} }, 
1.298     droeschl 5530:                 {
                   5531:                  linktext => 'User Self-Enrollment',
1.342     wenzelju 5532:                  icon => 'self_enroll.png',
1.298     droeschl 5533:                  #help => 'Course_Self_Enrollment',
                   5534:                  url => '/adm/createuser?action=selfenroll',
1.398     raeburn  5535:                  permission => $permission->{'selfenrolladmin'},
1.317     bisitz   5536:                  linktitle => 'Configure user self-enrollment.',
1.298     droeschl 5537:                 },
                   5538:             );
                   5539:         }
1.363     raeburn  5540:     } elsif ($context eq 'author') {
1.370     raeburn  5541:         push(@{ $menu[2]->{items} }, #Category: Administration
1.363     raeburn  5542:             {
                   5543:              linktext => 'Change Log',
                   5544:              icon => 'document-properties.png',
                   5545:              #help => 'Course_User_Logs',
                   5546:              url => '/adm/createuser?action=changelogs',
                   5547:              permission => $permission->{'cusr'},
                   5548:              linktitle => 'View change log.',
                   5549:             },
1.370     raeburn  5550:         );
1.363     raeburn  5551:     }
                   5552:     return Apache::lonhtmlcommon::generate_menu(@menu);
1.250     raeburn  5553: #               { text => 'View Log-in History',
                   5554: #                 help => 'Course_User_Logins',
                   5555: #                 action => 'logins',
                   5556: #                 permission => $permission->{'cusr'},
                   5557: #               });
1.190     raeburn  5558: }
                   5559: 
1.189     albertel 5560: sub restore_prev_selections {
                   5561:     my %saveable_parameters = ('srchby'   => 'scalar',
                   5562: 			       'srchin'   => 'scalar',
                   5563: 			       'srchtype' => 'scalar',
                   5564: 			       );
                   5565:     &Apache::loncommon::store_settings('user','user_picker',
                   5566: 				       \%saveable_parameters);
                   5567:     &Apache::loncommon::restore_settings('user','user_picker',
                   5568: 					 \%saveable_parameters);
                   5569: }
                   5570: 
1.237     raeburn  5571: sub print_selfenroll_menu {
1.418     raeburn  5572:     my ($r,$context,$cid,$cdom,$cnum,$currsettings,$additional,$readonly) = @_;
1.322     raeburn  5573:     my $crstype = &Apache::loncommon::course_type();
1.398     raeburn  5574:     my $formname = 'selfenroll';
1.237     raeburn  5575:     my $nolink = 1;
1.398     raeburn  5576:     my ($row,$lt) = &Apache::lonuserutils::get_selfenroll_titles();
1.237     raeburn  5577:     my $groupslist = &Apache::lonuserutils::get_groupslist();
                   5578:     my $setsec_js = 
                   5579:         &Apache::lonuserutils::setsections_javascript($formname,$groupslist);
1.249     raeburn  5580:     my %alerts = &Apache::lonlocal::texthash(
                   5581:         acto => 'Activation of self-enrollment was selected for the following domain(s)',
                   5582:         butn => 'but no user types have been checked.',
                   5583:         wilf => "Please uncheck 'activate' or check at least one type.",
                   5584:     );
1.418     raeburn  5585:     my $disabled;
                   5586:     if ($readonly) {
                   5587:        $disabled = ' disabled="disabled"';
                   5588:     }
1.405     damieng  5589:     &js_escape(\%alerts);
1.249     raeburn  5590:     my $selfenroll_js = <<"ENDSCRIPT";
                   5591: function update_types(caller,num) {
                   5592:     var delidx = getIndexByName('selfenroll_delete');
                   5593:     var actidx = getIndexByName('selfenroll_activate');
                   5594:     if (caller == 'selfenroll_all') {
                   5595:         var selall;
                   5596:         for (var i=0; i<document.$formname.selfenroll_all.length; i++) {
                   5597:             if (document.$formname.selfenroll_all[i].checked) {
                   5598:                 selall = document.$formname.selfenroll_all[i].value;
                   5599:             }
                   5600:         }
                   5601:         if (selall == 1) {
                   5602:             if (delidx != -1) {
                   5603:                 if (document.$formname.selfenroll_delete.length) {
                   5604:                     for (var j=0; j<document.$formname.selfenroll_delete.length; j++) {
                   5605:                         document.$formname.selfenroll_delete[j].checked = true;
                   5606:                     }
                   5607:                 } else {
                   5608:                     document.$formname.elements[delidx].checked = true;
                   5609:                 }
                   5610:             }
                   5611:             if (actidx != -1) {
                   5612:                 if (document.$formname.selfenroll_activate.length) {
                   5613:                     for (var j=0; j<document.$formname.selfenroll_activate.length; j++) {
                   5614:                         document.$formname.selfenroll_activate[j].checked = false;
                   5615:                     }
                   5616:                 } else {
                   5617:                     document.$formname.elements[actidx].checked = false;
                   5618:                 }
                   5619:             }
                   5620:             document.$formname.selfenroll_newdom.selectedIndex = 0; 
                   5621:         }
                   5622:     }
                   5623:     if (caller == 'selfenroll_activate') {
                   5624:         if (document.$formname.selfenroll_activate.length) {
                   5625:             for (var j=0; j<document.$formname.selfenroll_activate.length; j++) {
                   5626:                 if (document.$formname.selfenroll_activate[j].value == num) {
                   5627:                     if (document.$formname.selfenroll_activate[j].checked) {
                   5628:                         for (var i=0; i<document.$formname.selfenroll_all.length; i++) {
                   5629:                             if (document.$formname.selfenroll_all[i].value == '1') {
                   5630:                                 document.$formname.selfenroll_all[i].checked = false;
                   5631:                             }
                   5632:                             if (document.$formname.selfenroll_all[i].value == '0') {
                   5633:                                 document.$formname.selfenroll_all[i].checked = true;
                   5634:                             }
                   5635:                         }
                   5636:                     }
                   5637:                 }
                   5638:             }
                   5639:         } else {
                   5640:             for (var i=0; i<document.$formname.selfenroll_all.length; i++) {
                   5641:                 if (document.$formname.selfenroll_all[i].value == '1') {
                   5642:                     document.$formname.selfenroll_all[i].checked = false;
                   5643:                 }
                   5644:                 if (document.$formname.selfenroll_all[i].value == '0') {
                   5645:                     document.$formname.selfenroll_all[i].checked = true;
                   5646:                 }
                   5647:             }
                   5648:         }
                   5649:     }
                   5650:     if (caller == 'selfenroll_delete') {
                   5651:         if (document.$formname.selfenroll_delete.length) {
                   5652:             for (var j=0; j<document.$formname.selfenroll_delete.length; j++) {
                   5653:                 if (document.$formname.selfenroll_delete[j].value == num) {
                   5654:                     if (document.$formname.selfenroll_delete[j].checked) {
                   5655:                         var delindex = getIndexByName('selfenroll_types_'+num);
                   5656:                         if (delindex != -1) { 
                   5657:                             if (document.$formname.elements[delindex].length) {
                   5658:                                 for (var k=0; k<document.$formname.elements[delindex].length; k++) {
                   5659:                                     document.$formname.elements[delindex][k].checked = false;
                   5660:                                 }
                   5661:                             } else {
                   5662:                                 document.$formname.elements[delindex].checked = false;
                   5663:                             }
                   5664:                         }
                   5665:                     }
                   5666:                 }
                   5667:             }
                   5668:         } else {
                   5669:             if (document.$formname.selfenroll_delete.checked) {
                   5670:                 var delindex = getIndexByName('selfenroll_types_'+num);
                   5671:                 if (delindex != -1) {
                   5672:                     if (document.$formname.elements[delindex].length) {
                   5673:                         for (var k=0; k<document.$formname.elements[delindex].length; k++) {
                   5674:                             document.$formname.elements[delindex][k].checked = false;
                   5675:                         }
                   5676:                     } else {
                   5677:                         document.$formname.elements[delindex].checked = false;
                   5678:                     }
                   5679:                 }
                   5680:             }
                   5681:         }
                   5682:     }
                   5683:     return;
                   5684: }
                   5685: 
                   5686: function validate_types(form) {
                   5687:     var needaction = new Array();
                   5688:     var countfail = 0;
                   5689:     var actidx = getIndexByName('selfenroll_activate');
                   5690:     if (actidx != -1) {
                   5691:         if (document.$formname.selfenroll_activate.length) {
                   5692:             for (var j=0; j<document.$formname.selfenroll_activate.length; j++) {
                   5693:                 var num = document.$formname.selfenroll_activate[j].value;
                   5694:                 if (document.$formname.selfenroll_activate[j].checked) {
                   5695:                     countfail = check_types(num,countfail,needaction)
                   5696:                 }
                   5697:             }
                   5698:         } else {
                   5699:             if (document.$formname.selfenroll_activate.checked) {
1.398     raeburn  5700:                 var num = document.$formname.selfenroll_activate.value;
1.249     raeburn  5701:                 countfail = check_types(num,countfail,needaction)
                   5702:             }
                   5703:         }
                   5704:     }
                   5705:     if (countfail > 0) {
                   5706:         var msg = "$alerts{'acto'}\\n";
                   5707:         var loopend = needaction.length -1;
                   5708:         if (loopend > 0) {
                   5709:             for (var m=0; m<loopend; m++) {
                   5710:                 msg += needaction[m]+", ";
                   5711:             }
                   5712:         }
                   5713:         msg += needaction[loopend]+"\\n$alerts{'butn'}\\n$alerts{'wilf'}";
                   5714:         alert(msg);
                   5715:         return; 
                   5716:     }
                   5717:     setSections(form);
                   5718: }
                   5719: 
                   5720: function check_types(num,countfail,needaction) {
                   5721:     var typeidx = getIndexByName('selfenroll_types_'+num);
                   5722:     var count = 0;
                   5723:     if (typeidx != -1) {
                   5724:         if (document.$formname.elements[typeidx].length) {
                   5725:             for (var k=0; k<document.$formname.elements[typeidx].length; k++) {
                   5726:                 if (document.$formname.elements[typeidx][k].checked) {
                   5727:                     count ++;
                   5728:                 }
                   5729:             }
                   5730:         } else {
                   5731:             if (document.$formname.elements[typeidx].checked) {
                   5732:                 count ++;
                   5733:             }
                   5734:         }
                   5735:         if (count == 0) {
                   5736:             var domidx = getIndexByName('selfenroll_dom_'+num);
                   5737:             if (domidx != -1) {
                   5738:                 var domname = document.$formname.elements[domidx].value;
                   5739:                 needaction[countfail] = domname;
                   5740:                 countfail ++;
                   5741:             }
                   5742:         }
                   5743:     }
                   5744:     return countfail;
                   5745: }
                   5746: 
1.398     raeburn  5747: function toggleNotify() {
                   5748:     var selfenrollApproval = 0;
                   5749:     if (document.$formname.selfenroll_approval.length) {
                   5750:         for (var i=0; i<document.$formname.selfenroll_approval.length; i++) {
                   5751:             if (document.$formname.selfenroll_approval[i].checked) {
                   5752:                 selfenrollApproval = document.$formname.selfenroll_approval[i].value;
                   5753:                 break;        
                   5754:             }
                   5755:         }
                   5756:     }
                   5757:     if (document.getElementById('notified')) {
                   5758:         if (selfenrollApproval == 0) {
                   5759:             document.getElementById('notified').style.display='none';
                   5760:         } else {
                   5761:             document.getElementById('notified').style.display='block';
                   5762:         }
                   5763:     }
                   5764:     return;
                   5765: }
                   5766: 
1.249     raeburn  5767: function getIndexByName(item) {
                   5768:     for (var i=0;i<document.$formname.elements.length;i++) {
                   5769:         if (document.$formname.elements[i].name == item) {
                   5770:             return i;
                   5771:         }
                   5772:     }
                   5773:     return -1;
                   5774: }
                   5775: ENDSCRIPT
1.256     raeburn  5776: 
1.237     raeburn  5777:     my $output = '<script type="text/javascript">'."\n".
1.301     bisitz   5778:                  '// <![CDATA['."\n".
1.249     raeburn  5779:                  $setsec_js."\n".$selfenroll_js."\n".
1.301     bisitz   5780:                  '// ]]>'."\n".
1.237     raeburn  5781:                  '</script>'."\n".
1.256     raeburn  5782:                  '<h3>'.$lt->{'selfenroll'}.'</h3>'."\n";
1.400     raeburn  5783:  
                   5784:     my $visactions = &cat_visibility();
                   5785:     my ($cathash,%cattype);
                   5786:     my %domconfig = &Apache::lonnet::get_dom('configuration',['coursecategories'],$cdom);
                   5787:     if (ref($domconfig{'coursecategories'}) eq 'HASH') {
                   5788:         $cathash = $domconfig{'coursecategories'}{'cats'};
                   5789:         $cattype{'auth'} = $domconfig{'coursecategories'}{'auth'};
                   5790:         $cattype{'unauth'} = $domconfig{'coursecategories'}{'unauth'};
1.406     raeburn  5791:         if ($cattype{'auth'} eq '') {
                   5792:             $cattype{'auth'} = 'std';
                   5793:         }
                   5794:         if ($cattype{'unauth'} eq '') {
                   5795:             $cattype{'unauth'} = 'std';
                   5796:         }
1.400     raeburn  5797:     } else {
                   5798:         $cathash = {};
                   5799:         $cattype{'auth'} = 'std';
                   5800:         $cattype{'unauth'} = 'std';
                   5801:     }
                   5802:     if (($cattype{'auth'} eq 'none') && ($cattype{'unauth'} eq 'none')) {
                   5803:         $r->print('<br /><span class="LC_warning">'.$visactions->{'miss'}.'</span><br />'.$visactions->{'yous'}.
                   5804:                   '<br />'.
                   5805:                   '<br />'.$visactions->{'take'}.'<ul>'.
                   5806:                   '<li>'.$visactions->{'dc_chgconf'}.'</li>'.
                   5807:                   '</ul>');
                   5808:     } elsif (($cattype{'auth'} !~ /^(std|domonly)$/) && ($cattype{'unauth'} !~ /^(std|domonly)$/)) {
                   5809:         if ($currsettings->{'uniquecode'}) {
                   5810:             $r->print('<span class="LC_info">'.$visactions->{'vis'}.'</span>');
                   5811:         } else {
                   5812:             $r->print('<br /><span class="LC_warning">'.$visactions->{'miss'}.'</span><br />'.$visactions->{'yous'}.
                   5813:                   '<br />'.
                   5814:                   '<br />'.$visactions->{'take'}.'<ul>'.
                   5815:                   '<li>'.$visactions->{'dc_setcode'}.'</li>'.
                   5816:                   '</ul><br />');
                   5817:         }
                   5818:     } else {
                   5819:         my ($visible,$cansetvis,$vismsgs) = &visible_in_stdcat($cdom,$cnum,\%domconfig);
                   5820:         if (ref($visactions) eq 'HASH') {
                   5821:             if ($visible) {
                   5822:                 $output .= '<p class="LC_info">'.$visactions->{'vis'}.'</p>';
                   5823:            } else {
                   5824:                 $output .= '<p class="LC_warning">'.$visactions->{'miss'}.'</p>'
                   5825:                           .$visactions->{'yous'}.
                   5826:                            '<p>'.$visactions->{'gen'}.'<br />'.$visactions->{'coca'};
                   5827:                 if (ref($vismsgs) eq 'ARRAY') {
                   5828:                     $output .= '<br />'.$visactions->{'make'}.'<ul>';
                   5829:                     foreach my $item (@{$vismsgs}) {
                   5830:                         $output .= '<li>'.$visactions->{$item}.'</li>';
                   5831:                     }
                   5832:                     $output .= '</ul>';
1.256     raeburn  5833:                 }
1.400     raeburn  5834:                 $output .= '</p>';
1.256     raeburn  5835:             }
                   5836:         }
                   5837:     }
1.398     raeburn  5838:     my $actionhref = '/adm/createuser';
                   5839:     if ($context eq 'domain') {
                   5840:         $actionhref = '/adm/modifycourse';
                   5841:     }
1.400     raeburn  5842: 
                   5843:     my %noedit;
                   5844:     unless ($context eq 'domain') {
                   5845:         %noedit = &get_noedit_fields($cdom,$cnum,$crstype,$row);
                   5846:     }
1.398     raeburn  5847:     $output .= '<form name="'.$formname.'" method="post" action="'.$actionhref.'">'."\n".
1.256     raeburn  5848:                &Apache::lonhtmlcommon::start_pick_box();
1.237     raeburn  5849:     if (ref($row) eq 'ARRAY') {
                   5850:         foreach my $item (@{$row}) {
                   5851:             my $title = $item; 
                   5852:             if (ref($lt) eq 'HASH') {
                   5853:                 $title = $lt->{$item};
                   5854:             }
1.297     bisitz   5855:             $output .= &Apache::lonhtmlcommon::row_title($title);
1.237     raeburn  5856:             if ($item eq 'types') {
1.398     raeburn  5857:                 my $curr_types;
                   5858:                 if (ref($currsettings) eq 'HASH') {
                   5859:                     $curr_types = $currsettings->{'selfenroll_types'};
                   5860:                 }
1.400     raeburn  5861:                 if ($noedit{$item}) {
                   5862:                     if ($curr_types eq '*') {
                   5863:                         $output .= &mt('Any user in any domain');   
                   5864:                     } else {
                   5865:                         my @entries = split(/;/,$curr_types);
                   5866:                         if (@entries > 0) {
                   5867:                             $output .= '<ul>'; 
                   5868:                             foreach my $entry (@entries) {
                   5869:                                 my ($currdom,$typestr) = split(/:/,$entry);
                   5870:                                 next if ($typestr eq '');
                   5871:                                 my $domdesc = &Apache::lonnet::domain($currdom);
                   5872:                                 my @currinsttypes = split(',',$typestr);
                   5873:                                 my ($othertitle,$usertypes,$types) = 
                   5874:                                     &Apache::loncommon::sorted_inst_types($currdom);
                   5875:                                 if ((ref($types) eq 'ARRAY') && (ref($usertypes) eq 'HASH')) {
                   5876:                                     $usertypes->{'any'} = &mt('any user'); 
                   5877:                                     if (keys(%{$usertypes}) > 0) {
                   5878:                                         $usertypes->{'other'} = &mt('other users');
                   5879:                                     }
                   5880:                                     my @longinsttypes = map { $usertypes->{$_}; } @currinsttypes;
                   5881:                                     $output .= '<li>'.$domdesc.':'.join(', ',@longinsttypes).'</li>';
                   5882:                                  }
                   5883:                             }
                   5884:                             $output .= '</ul>';
                   5885:                         } else {
                   5886:                             $output .= &mt('None');
                   5887:                         }
                   5888:                     }
                   5889:                     $output .= '<br />'.&mt('(Set by Domain Coordinator)');
                   5890:                     next;
                   5891:                 }
1.241     raeburn  5892:                 my $showdomdesc = 1;
                   5893:                 my $includeempty = 1;
                   5894:                 my $num = 0;
                   5895:                 $output .= &Apache::loncommon::start_data_table().
                   5896:                            &Apache::loncommon::start_data_table_row()
                   5897:                            .'<td colspan="2"><span class="LC_nobreak"><label>'
                   5898:                            .&mt('Any user in any domain:')
                   5899:                            .'&nbsp;<input type="radio" name="selfenroll_all" value="1" ';
                   5900:                 if ($curr_types eq '*') {
                   5901:                     $output .= ' checked="checked" '; 
                   5902:                 }
1.249     raeburn  5903:                 $output .= 'onchange="javascript:update_types('.
1.418     raeburn  5904:                            "'selfenroll_all'".');"'.$disabled.' />'.&mt('Yes').'</label>'.
1.249     raeburn  5905:                            '&nbsp;&nbsp;<input type="radio" name="selfenroll_all" value="0" ';
1.241     raeburn  5906:                 if ($curr_types ne '*') {
                   5907:                     $output .= ' checked="checked" ';
                   5908:                 }
1.249     raeburn  5909:                 $output .= ' onchange="javascript:update_types('.
1.418     raeburn  5910:                            "'selfenroll_all'".');"'.$disabled.' />'.&mt('No').'</label></td>'.
1.249     raeburn  5911:                            &Apache::loncommon::end_data_table_row().
                   5912:                            &Apache::loncommon::end_data_table().
                   5913:                            &mt('Or').'<br />'.
                   5914:                            &Apache::loncommon::start_data_table();
1.241     raeburn  5915:                 my %currdoms;
1.249     raeburn  5916:                 if ($curr_types eq '') {
1.241     raeburn  5917:                     $output .= &new_selfenroll_dom_row($cdom,'0');
                   5918:                 } elsif ($curr_types ne '*') {
                   5919:                     my @entries = split(/;/,$curr_types);
                   5920:                     if (@entries > 0) {
                   5921:                         foreach my $entry (@entries) {
                   5922:                             my ($currdom,$typestr) = split(/:/,$entry);
                   5923:                             $currdoms{$currdom} = 1;
                   5924:                             my $domdesc = &Apache::lonnet::domain($currdom);
1.249     raeburn  5925:                             my @currinsttypes = split(',',$typestr);
1.241     raeburn  5926:                             $output .= &Apache::loncommon::start_data_table_row()
                   5927:                                        .'<td valign="top"><span class="LC_nobreak">'.&mt('Domain:').'<b>'
                   5928:                                        .'&nbsp;'.$domdesc.' ('.$currdom.')'
                   5929:                                        .'</b><input type="hidden" name="selfenroll_dom_'.$num
                   5930:                                        .'" value="'.$currdom.'" /></span><br />'
                   5931:                                        .'<span class="LC_nobreak"><label><input type="checkbox" '
1.418     raeburn  5932:                                        .'name="selfenroll_delete" value="'.$num.'" onchange="javascript:update_types('."'selfenroll_delete','$num'".');"'.$disabled.' />'
1.241     raeburn  5933:                                        .&mt('Delete').'</label></span></td>';
1.249     raeburn  5934:                             $output .= '<td valign="top">&nbsp;&nbsp;'.&mt('User types:').'<br />'
1.418     raeburn  5935:                                        .&selfenroll_inst_types($num,$currdom,\@currinsttypes,$readonly).'</td>'
1.241     raeburn  5936:                                        .&Apache::loncommon::end_data_table_row();
                   5937:                             $num ++;
                   5938:                         }
                   5939:                     }
                   5940:                 }
1.249     raeburn  5941:                 my $add_domtitle = &mt('Users in additional domain:');
1.241     raeburn  5942:                 if ($curr_types eq '*') { 
1.249     raeburn  5943:                     $add_domtitle = &mt('Users in specific domain:');
1.241     raeburn  5944:                 } elsif ($curr_types eq '') {
1.249     raeburn  5945:                     $add_domtitle = &mt('Users in other domain:');
1.241     raeburn  5946:                 }
                   5947:                 $output .= &Apache::loncommon::start_data_table_row()
                   5948:                            .'<td colspan="2"><span class="LC_nobreak">'.$add_domtitle.'</span><br />'
                   5949:                            .&Apache::loncommon::select_dom_form('','selfenroll_newdom',
1.418     raeburn  5950:                                                                 $includeempty,$showdomdesc,'','','',$readonly)
1.241     raeburn  5951:                            .'<input type="hidden" name="selfenroll_types_total" value="'.$num.'" />'
                   5952:                            .'</td>'.&Apache::loncommon::end_data_table_row()
                   5953:                            .&Apache::loncommon::end_data_table();
1.237     raeburn  5954:             } elsif ($item eq 'registered') {
                   5955:                 my ($regon,$regoff);
1.398     raeburn  5956:                 my $registered;
                   5957:                 if (ref($currsettings) eq 'HASH') {
                   5958:                     $registered = $currsettings->{'selfenroll_registered'};
                   5959:                 }
1.400     raeburn  5960:                 if ($noedit{$item}) {
                   5961:                     if ($registered) {
                   5962:                         $output .= &mt('Must be registered in course');
                   5963:                     } else {
                   5964:                         $output .= &mt('No requirement');
                   5965:                     }
                   5966:                     $output .= '<br />'.&mt('(Set by Domain Coordinator)');
                   5967:                     next;
                   5968:                 }
1.398     raeburn  5969:                 if ($registered) {
1.237     raeburn  5970:                     $regon = ' checked="checked" ';
1.419     raeburn  5971:                     $regoff = '';
1.237     raeburn  5972:                 } else {
1.419     raeburn  5973:                     $regon = '';
1.237     raeburn  5974:                     $regoff = ' checked="checked" ';
                   5975:                 }
                   5976:                 $output .= '<label>'.
1.419     raeburn  5977:                            '<input type="radio" name="selfenroll_registered" value="1"'.$regon.$disabled.' />'.
1.244     bisitz   5978:                            &mt('Yes').'</label>&nbsp;&nbsp;<label>'.
1.419     raeburn  5979:                            '<input type="radio" name="selfenroll_registered" value="0"'.$regoff.$disabled.' />'.
1.244     bisitz   5980:                            &mt('No').'</label>';
1.237     raeburn  5981:             } elsif ($item eq 'enroll_dates') {
1.398     raeburn  5982:                 my ($starttime,$endtime);
                   5983:                 if (ref($currsettings) eq 'HASH') {
                   5984:                     $starttime = $currsettings->{'selfenroll_start_date'};
                   5985:                     $endtime = $currsettings->{'selfenroll_end_date'};
                   5986:                     if ($starttime eq '') {
                   5987:                         $starttime = $currsettings->{'default_enrollment_start_date'};
                   5988:                     }
                   5989:                     if ($endtime eq '') {
                   5990:                         $endtime = $currsettings->{'default_enrollment_end_date'};
                   5991:                     }
1.237     raeburn  5992:                 }
1.400     raeburn  5993:                 if ($noedit{$item}) {
                   5994:                     $output .= &mt('From: [_1], to: [_2]',&Apache::lonlocal::locallocaltime($starttime),
                   5995:                                                           &Apache::lonlocal::locallocaltime($endtime));
                   5996:                     $output .= '<br />'.&mt('(Set by Domain Coordinator)');
                   5997:                     next;
                   5998:                 }
1.237     raeburn  5999:                 my $startform =
                   6000:                     &Apache::lonhtmlcommon::date_setter($formname,'selfenroll_start_date',$starttime,
1.418     raeburn  6001:                                       $disabled,undef,undef,undef,undef,undef,undef,$nolink);
1.237     raeburn  6002:                 my $endform =
                   6003:                     &Apache::lonhtmlcommon::date_setter($formname,'selfenroll_end_date',$endtime,
1.418     raeburn  6004:                                       $disabled,undef,undef,undef,undef,undef,undef,$nolink);
1.237     raeburn  6005:                 $output .= &selfenroll_date_forms($startform,$endform);
                   6006:             } elsif ($item eq 'access_dates') {
1.398     raeburn  6007:                 my ($starttime,$endtime);
                   6008:                 if (ref($currsettings) eq 'HASH') {
                   6009:                     $starttime = $currsettings->{'selfenroll_start_access'};
                   6010:                     $endtime = $currsettings->{'selfenroll_end_access'};
                   6011:                     if ($starttime eq '') {
                   6012:                         $starttime = $currsettings->{'default_enrollment_start_date'};
                   6013:                     }
                   6014:                     if ($endtime eq '') {
                   6015:                         $endtime = $currsettings->{'default_enrollment_end_date'};
                   6016:                     }
1.237     raeburn  6017:                 }
1.400     raeburn  6018:                 if ($noedit{$item}) {
                   6019:                     $output .= &mt('From: [_1], to: [_2]',&Apache::lonlocal::locallocaltime($starttime),
                   6020:                                                           &Apache::lonlocal::locallocaltime($endtime));
                   6021:                     $output .= '<br />'.&mt('(Set by Domain Coordinator)');
                   6022:                     next;
                   6023:                 }
1.237     raeburn  6024:                 my $startform =
                   6025:                     &Apache::lonhtmlcommon::date_setter($formname,'selfenroll_start_access',$starttime,
1.418     raeburn  6026:                                       $disabled,undef,undef,undef,undef,undef,undef,$nolink);
1.237     raeburn  6027:                 my $endform =
                   6028:                     &Apache::lonhtmlcommon::date_setter($formname,'selfenroll_end_access',$endtime,
1.418     raeburn  6029:                                       $disabled,undef,undef,undef,undef,undef,undef,$nolink);
1.237     raeburn  6030:                 $output .= &selfenroll_date_forms($startform,$endform);
                   6031:             } elsif ($item eq 'section') {
1.398     raeburn  6032:                 my $currsec;
                   6033:                 if (ref($currsettings) eq 'HASH') {
                   6034:                     $currsec = $currsettings->{'selfenroll_section'};
                   6035:                 }
1.237     raeburn  6036:                 my %sections_count = &Apache::loncommon::get_sections($cdom,$cnum);
                   6037:                 my $newsecval;
                   6038:                 if ($currsec ne 'none' && $currsec ne '') {
                   6039:                     if (!defined($sections_count{$currsec})) {
                   6040:                         $newsecval = $currsec;
                   6041:                     }
                   6042:                 }
1.400     raeburn  6043:                 if ($noedit{$item}) {
                   6044:                     if ($currsec ne '') {
                   6045:                         $output .= $currsec;
                   6046:                     } else {
                   6047:                         $output .= &mt('No specific section');
                   6048:                     }
                   6049:                     $output .= '<br />'.&mt('(Set by Domain Coordinator)');
                   6050:                     next;
                   6051:                 }
1.237     raeburn  6052:                 my $sections_select = 
1.418     raeburn  6053:                     &Apache::lonuserutils::course_sections(\%sections_count,'st',$currsec,$disabled);
1.237     raeburn  6054:                 $output .= '<table class="LC_createuser">'."\n".
                   6055:                            '<tr class="LC_section_row">'."\n".
                   6056:                            '<td align="center">'.&mt('Existing sections')."\n".
                   6057:                            '<br />'.$sections_select.'</td><td align="center">'.
                   6058:                            &mt('New section').'<br />'."\n".
1.418     raeburn  6059:                            '<input type="text" name="newsec" size="15" value="'.$newsecval.'"'.$disabled.' />'."\n".
1.237     raeburn  6060:                            '<input type="hidden" name="sections" value="" />'."\n".
                   6061:                            '</td></tr></table>'."\n";
1.276     raeburn  6062:             } elsif ($item eq 'approval') {
1.398     raeburn  6063:                 my ($currnotified,$currapproval,%appchecked);
                   6064:                 my %selfdescs = &Apache::lonuserutils::selfenroll_default_descs();
1.430     raeburn  6065:                 if (ref($currsettings) eq 'HASH') {
1.398     raeburn  6066:                     $currnotified = $currsettings->{'selfenroll_notifylist'};
                   6067:                     $currapproval = $currsettings->{'selfenroll_approval'};
                   6068:                 }
                   6069:                 if ($currapproval !~ /^[012]$/) {
                   6070:                     $currapproval = 0;
                   6071:                 }
1.400     raeburn  6072:                 if ($noedit{$item}) {
                   6073:                     $output .=  $selfdescs{'approval'}{$currapproval}.
                   6074:                                 '<br />'.&mt('(Set by Domain Coordinator)');
                   6075:                     next;
                   6076:                 }
1.398     raeburn  6077:                 $appchecked{$currapproval} = ' checked="checked"';
                   6078:                 for my $i (0..2) {
                   6079:                     $output .= '<label>'.
                   6080:                                '<input type="radio" name="selfenroll_approval" value="'.$i.'"'.
1.418     raeburn  6081:                                $appchecked{$i}.' onclick="toggleNotify();"'.$disabled.' />'.
                   6082:                                $selfdescs{'approval'}{$i}.'</label>'.('&nbsp;'x2);
1.276     raeburn  6083:                 }
                   6084:                 my %advhash = &Apache::lonnet::get_course_adv_roles($cid,1);
                   6085:                 my (@ccs,%notified);
1.322     raeburn  6086:                 my $ccrole = 'cc';
                   6087:                 if ($crstype eq 'Community') {
                   6088:                     $ccrole = 'co';
                   6089:                 }
                   6090:                 if ($advhash{$ccrole}) {
                   6091:                     @ccs = split(/,/,$advhash{$ccrole});
1.276     raeburn  6092:                 }
                   6093:                 if ($currnotified) {
                   6094:                     foreach my $current (split(/,/,$currnotified)) {
                   6095:                         $notified{$current} = 1;
                   6096:                         if (!grep(/^\Q$current\E$/,@ccs)) {
                   6097:                             push(@ccs,$current);
                   6098:                         }
                   6099:                     }
                   6100:                 }
                   6101:                 if (@ccs) {
1.398     raeburn  6102:                     my $style;
                   6103:                     unless ($currapproval) {
                   6104:                         $style = ' style="display: none;"'; 
                   6105:                     }
                   6106:                     $output .= '<br /><div id="notified"'.$style.'>'.
                   6107:                                &mt('Personnel to be notified when an enrollment request needs approval, or has been approved:').'&nbsp;'.
                   6108:                                &Apache::loncommon::start_data_table().
1.276     raeburn  6109:                                &Apache::loncommon::start_data_table_row();
                   6110:                     my $count = 0;
                   6111:                     my $numcols = 4;
                   6112:                     foreach my $cc (sort(@ccs)) {
                   6113:                         my $notifyon;
                   6114:                         my ($ccuname,$ccudom) = split(/:/,$cc);
                   6115:                         if ($notified{$cc}) {
                   6116:                             $notifyon = ' checked="checked" ';
                   6117:                         }
                   6118:                         if ($count && !$count%$numcols) {
                   6119:                             $output .= &Apache::loncommon::end_data_table_row().
                   6120:                                        &Apache::loncommon::start_data_table_row()
                   6121:                         }
                   6122:                         $output .= '<td><span class="LC_nobreak"><label>'.
1.418     raeburn  6123:                                    '<input type="checkbox" name="selfenroll_notify"'.$notifyon.' value="'.$cc.'"'.$disabled.' />'.
1.276     raeburn  6124:                                    &Apache::loncommon::plainname($ccuname,$ccudom).
                   6125:                                    '</label></span></td>';
1.343     raeburn  6126:                         $count ++;
1.276     raeburn  6127:                     }
                   6128:                     my $rem = $count%$numcols;
                   6129:                     if ($rem) {
                   6130:                         my $emptycols = $numcols - $rem;
                   6131:                         for (my $i=0; $i<$emptycols; $i++) { 
                   6132:                             $output .= '<td>&nbsp;</td>';
                   6133:                         }
                   6134:                     }
                   6135:                     $output .= &Apache::loncommon::end_data_table_row().
1.398     raeburn  6136:                                &Apache::loncommon::end_data_table().
                   6137:                                '</div>';
1.276     raeburn  6138:                 }
                   6139:             } elsif ($item eq 'limit') {
1.398     raeburn  6140:                 my ($crslimit,$selflimit,$nolimit,$currlim,$currcap);
                   6141:                 if (ref($currsettings) eq 'HASH') {
                   6142:                     $currlim = $currsettings->{'selfenroll_limit'};
                   6143:                     $currcap = $currsettings->{'selfenroll_cap'};
                   6144:                 }
1.400     raeburn  6145:                 if ($noedit{$item}) {
                   6146:                     if (($currlim eq 'allstudents') || ($currlim eq 'selfenrolled')) {
                   6147:                         if ($currlim eq 'allstudents') {
                   6148:                             $output .= &mt('Limit by total students');
                   6149:                         } elsif ($currlim eq 'selfenrolled') {
                   6150:                             $output .= &mt('Limit by total self-enrolled students');
                   6151:                         }
                   6152:                         $output .= ' '.&mt('Maximum: [_1]',$currcap).
                   6153:                                    '<br />'.&mt('(Set by Domain Coordinator)');
                   6154:                     } else {
                   6155:                         $output .= &mt('No limit').'<br />'.&mt('(Set by Domain Coordinator)');
                   6156:                     }
                   6157:                     next;
                   6158:                 }
1.276     raeburn  6159:                 if ($currlim eq 'allstudents') {
                   6160:                     $crslimit = ' checked="checked" ';
                   6161:                     $selflimit = ' ';
                   6162:                     $nolimit = ' ';
                   6163:                 } elsif ($currlim eq 'selfenrolled') {
                   6164:                     $crslimit = ' ';
                   6165:                     $selflimit = ' checked="checked" ';
                   6166:                     $nolimit = ' '; 
                   6167:                 } else {
                   6168:                     $crslimit = ' ';
                   6169:                     $selflimit = ' ';
1.398     raeburn  6170:                     $nolimit = ' checked="checked" ';
1.276     raeburn  6171:                 }
                   6172:                 $output .= '<table><tr><td><label>'.
1.418     raeburn  6173:                            '<input type="radio" name="selfenroll_limit" value="none"'.$nolimit.$disabled.'/>'.
1.276     raeburn  6174:                            &mt('No limit').'</label></td><td><label>'.
1.418     raeburn  6175:                            '<input type="radio" name="selfenroll_limit" value="allstudents"'.$crslimit.$disabled.'/>'.
1.276     raeburn  6176:                            &mt('Limit by total students').'</label></td><td><label>'.
1.418     raeburn  6177:                            '<input type="radio" name="selfenroll_limit" value="selfenrolled"'.$selflimit.$disabled.'/>'.
1.276     raeburn  6178:                            &mt('Limit by total self-enrolled students').
                   6179:                            '</td></tr><tr>'.
                   6180:                            '<td>&nbsp;</td><td colspan="2"><span class="LC_nobreak">'.
                   6181:                            ('&nbsp;'x3).&mt('Maximum number allowed: ').
1.418     raeburn  6182:                            '<input type="text" name="selfenroll_cap" size = "5" value="'.$currcap.'"'.$disabled.' /></td></tr></table>';
1.237     raeburn  6183:             }
                   6184:             $output .= &Apache::lonhtmlcommon::row_closure(1);
                   6185:         }
                   6186:     }
1.418     raeburn  6187:     $output .= &Apache::lonhtmlcommon::end_pick_box().'<br />';
                   6188:     unless ($readonly) {
                   6189:         $output .= '<input type="button" name="selfenrollconf" value="'
                   6190:                    .&mt('Save').'" onclick="validate_types(this.form);" />';
                   6191:     }
                   6192:     $output .= '<input type="hidden" name="action" value="selfenroll" />'
                   6193:               .'<input type="hidden" name="state" value="done" />'."\n"
                   6194:               .$additional.'</form>';
1.237     raeburn  6195:     $r->print($output);
                   6196:     return;
                   6197: }
                   6198: 
1.400     raeburn  6199: sub get_noedit_fields {
                   6200:     my ($cdom,$cnum,$crstype,$row) = @_;
                   6201:     my %noedit;
                   6202:     if (ref($row) eq 'ARRAY') {
                   6203:         my %settings = &Apache::lonnet::get('environment',['internal.coursecode','internal.textbook',
                   6204:                                                            'internal.selfenrollmgrdc',
                   6205:                                                            'internal.selfenrollmgrcc'],$cdom,$cnum);
                   6206:         my $type = &Apache::lonuserutils::get_extended_type($cdom,$cnum,$crstype,\%settings);
                   6207:         my (%specific_managebydc,%specific_managebycc,%default_managebydc);
                   6208:         map { $specific_managebydc{$_} = 1; } (split(/,/,$settings{'internal.selfenrollmgrdc'}));
                   6209:         map { $specific_managebycc{$_} = 1; } (split(/,/,$settings{'internal.selfenrollmgrcc'}));
                   6210:         my %domdefaults = &Apache::lonnet::get_domain_defaults($cdom);
                   6211:         map { $default_managebydc{$_} = 1; } (split(/,/,$domdefaults{$type.'selfenrolladmdc'}));
                   6212: 
                   6213:         foreach my $item (@{$row}) {
                   6214:             next if ($specific_managebycc{$item});
                   6215:             if (($specific_managebydc{$item}) || ($default_managebydc{$item})) {
                   6216:                 $noedit{$item} = 1;
                   6217:             }
                   6218:         }
                   6219:     }
                   6220:     return %noedit;
                   6221: } 
                   6222: 
                   6223: sub visible_in_stdcat {
                   6224:     my ($cdom,$cnum,$domconf) = @_;
                   6225:     my ($cathash,%settable,@vismsgs,$cansetvis,$visible);
                   6226:     unless (ref($domconf) eq 'HASH') {
                   6227:         return ($visible,$cansetvis,\@vismsgs);
                   6228:     }
                   6229:     if (ref($domconf->{'coursecategories'}) eq 'HASH') {
                   6230:         if ($domconf->{'coursecategories'}{'togglecats'} eq 'crs') {
1.256     raeburn  6231:             $settable{'togglecats'} = 1;
                   6232:         }
1.400     raeburn  6233:         if ($domconf->{'coursecategories'}{'categorize'} eq 'crs') {
1.256     raeburn  6234:             $settable{'categorize'} = 1;
                   6235:         }
1.400     raeburn  6236:         $cathash = $domconf->{'coursecategories'}{'cats'};
1.256     raeburn  6237:     }
1.260     raeburn  6238:     if ($settable{'togglecats'} && $settable{'categorize'}) {
1.256     raeburn  6239:         $cansetvis = &mt('You are able to both assign a course category and choose to exclude this course from the catalog.');   
                   6240:     } elsif ($settable{'togglecats'}) {
                   6241:         $cansetvis = &mt('You are able to choose to exclude this course from the catalog, but only a Domain Coordinator may assign a course category.'); 
1.260     raeburn  6242:     } elsif ($settable{'categorize'}) {
1.256     raeburn  6243:         $cansetvis = &mt('You may assign a course category, but only a Domain Coordinator may choose to exclude this course from the catalog.');  
                   6244:     } else {
                   6245:         $cansetvis = &mt('Only a Domain Coordinator may assign a course category or choose to exclude this course from the catalog.'); 
                   6246:     }
                   6247:      
                   6248:     my %currsettings =
                   6249:         &Apache::lonnet::get('environment',['hidefromcat','categories','internal.coursecode'],
                   6250:                              $cdom,$cnum);
1.400     raeburn  6251:     $visible = 0;
1.256     raeburn  6252:     if ($currsettings{'internal.coursecode'} ne '') {
1.400     raeburn  6253:         if (ref($domconf->{'coursecategories'}) eq 'HASH') {
                   6254:             $cathash = $domconf->{'coursecategories'}{'cats'};
1.256     raeburn  6255:             if (ref($cathash) eq 'HASH') {
                   6256:                 if ($cathash->{'instcode::0'} eq '') {
                   6257:                     push(@vismsgs,'dc_addinst'); 
                   6258:                 } else {
                   6259:                     $visible = 1;
                   6260:                 }
                   6261:             } else {
                   6262:                 $visible = 1;
                   6263:             }
                   6264:         } else {
                   6265:             $visible = 1;
                   6266:         }
                   6267:     } else {
                   6268:         if (ref($cathash) eq 'HASH') {
                   6269:             if ($cathash->{'instcode::0'} ne '') {
                   6270:                 push(@vismsgs,'dc_instcode');
                   6271:             }
                   6272:         } else {
                   6273:             push(@vismsgs,'dc_instcode');
                   6274:         }
                   6275:     }
                   6276:     if ($currsettings{'categories'} ne '') {
                   6277:         my $cathash;
1.400     raeburn  6278:         if (ref($domconf->{'coursecategories'}) eq 'HASH') {
                   6279:             $cathash = $domconf->{'coursecategories'}{'cats'};
1.256     raeburn  6280:             if (ref($cathash) eq 'HASH') {
                   6281:                 if (keys(%{$cathash}) == 0) {
                   6282:                     push(@vismsgs,'dc_catalog');
                   6283:                 } elsif ((keys(%{$cathash}) == 1) && ($cathash->{'instcode::0'} ne '')) {
                   6284:                     push(@vismsgs,'dc_categories');
                   6285:                 } else {
                   6286:                     my @currcategories = split('&',$currsettings{'categories'});
                   6287:                     my $matched = 0;
                   6288:                     foreach my $cat (@currcategories) {
                   6289:                         if ($cathash->{$cat} ne '') {
                   6290:                             $visible = 1;
                   6291:                             $matched = 1;
                   6292:                             last;
                   6293:                         }
                   6294:                     }
                   6295:                     if (!$matched) {
1.260     raeburn  6296:                         if ($settable{'categorize'}) { 
1.256     raeburn  6297:                             push(@vismsgs,'chgcat');
                   6298:                         } else {
                   6299:                             push(@vismsgs,'dc_chgcat');
                   6300:                         }
                   6301:                     }
                   6302:                 }
                   6303:             }
                   6304:         }
                   6305:     } else {
                   6306:         if (ref($cathash) eq 'HASH') {
                   6307:             if ((keys(%{$cathash}) > 1) || 
                   6308:                 (keys(%{$cathash}) == 1) && ($cathash->{'instcode::0'} eq '')) {
1.260     raeburn  6309:                 if ($settable{'categorize'}) {
1.256     raeburn  6310:                     push(@vismsgs,'addcat');
                   6311:                 } else {
                   6312:                     push(@vismsgs,'dc_addcat');
                   6313:                 }
                   6314:             }
                   6315:         }
                   6316:     }
                   6317:     if ($currsettings{'hidefromcat'} eq 'yes') {
                   6318:         $visible = 0;
                   6319:         if ($settable{'togglecats'}) {
                   6320:             unshift(@vismsgs,'unhide');
                   6321:         } else {
                   6322:             unshift(@vismsgs,'dc_unhide')
                   6323:         }
                   6324:     }
1.400     raeburn  6325:     return ($visible,$cansetvis,\@vismsgs);
                   6326: }
                   6327: 
                   6328: sub cat_visibility {
                   6329:     my %visactions = &Apache::lonlocal::texthash(
                   6330:                    vis => 'This course/community currently appears in the Course/Community Catalog for this domain.',
                   6331:                    gen => 'Courses can be both self-cataloging, based on an institutional code (e.g., fs08phy231), or can be assigned categories from a hierarchy defined for the domain.',
                   6332:                    miss => 'This course/community does not currently appear in the Course/Community Catalog for this domain.',
                   6333:                    none => 'Display of a course catalog is disabled for this domain.',
                   6334:                    yous => 'You should remedy this if you plan to allow self-enrollment, otherwise students will have difficulty finding this course.',
                   6335:                    coca => 'Courses can be absent from the Catalog, because they do not have an institutional code, have no assigned category, or have been specifically excluded.',
                   6336:                    make => 'Make any changes to self-enrollment settings below, click "Save", then take action to include the course in the Catalog:',
                   6337:                    take => 'Take the following action to ensure the course appears in the Catalog:',
                   6338:                    dc_chgconf => 'Ask a domain coordinator to change the Catalog type for this domain.',
                   6339:                    dc_setcode => 'Ask a domain coordinator to assign a six character code to the course',
                   6340:                    dc_unhide  => 'Ask a domain coordinator to change the "Exclude from course catalog" setting.',
                   6341:                    dc_addinst => 'Ask a domain coordinator to enable display the catalog of "Official courses (with institutional codes)".',
                   6342:                    dc_instcode => 'Ask a domain coordinator to assign an institutional code (if this is an official course).',
                   6343:                    dc_catalog  => 'Ask a domain coordinator to enable or create at least one course category in the domain.',
                   6344:                    dc_categories => 'Ask a domain coordinator to create a hierarchy of categories and sub categories for courses in the domain.',
                   6345:                    dc_chgcat => 'Ask a domain coordinator to change the category assigned to the course, as the one currently assigned is no longer used in the domain',
                   6346:                    dc_addcat => 'Ask a domain coordinator to assign a category to the course.',
                   6347:     );
                   6348:     $visactions{'unhide'} = &mt('Use [_1]Categorize course[_2] to change the "Exclude from course catalog" setting.','<a href="/adm/courseprefs?phase=display&actions=courseinfo">','</a>"');
                   6349:     $visactions{'chgcat'} = &mt('Use [_1]Categorize course[_2] to change the category assigned to the course, as the one currently assigned is no longer used in the domain.','"<a href="/adm/courseprefs?phase=display&actions=courseinfo">','</a>"');
                   6350:     $visactions{'addcat'} = &mt('Use [_1]Categorize course[_2] to assign a category to the course.','"<a href="/adm/courseprefs?phase=display&actions=courseinfo">','</a>"');
                   6351:     return \%visactions;
1.256     raeburn  6352: }
                   6353: 
1.241     raeburn  6354: sub new_selfenroll_dom_row {
                   6355:     my ($newdom,$num) = @_;
                   6356:     my $domdesc = &Apache::lonnet::domain($newdom);
                   6357:     my $output;
                   6358:     if ($domdesc ne '') {
                   6359:         $output .= &Apache::loncommon::start_data_table_row()
                   6360:                    .'<td valign="top"><span class="LC_nobreak">'.&mt('Domain:').'&nbsp;<b>'.$domdesc
                   6361:                    .' ('.$newdom.')</b><input type="hidden" name="selfenroll_dom_'.$num
1.249     raeburn  6362:                    .'" value="'.$newdom.'" /></span><br />'
                   6363:                    .'<span class="LC_nobreak"><label><input type="checkbox" '
                   6364:                    .'name="selfenroll_activate" value="'.$num.'" '
                   6365:                    .'onchange="javascript:update_types('
                   6366:                    ."'selfenroll_activate','$num'".');" />'
                   6367:                    .&mt('Activate').'</label></span></td>';
1.241     raeburn  6368:         my @currinsttypes;
                   6369:         $output .= '<td>'.&mt('User types:').'<br />'
                   6370:                    .&selfenroll_inst_types($num,$newdom,\@currinsttypes).'</td>'
                   6371:                    .&Apache::loncommon::end_data_table_row();
                   6372:     }
                   6373:     return $output;
                   6374: }
                   6375: 
                   6376: sub selfenroll_inst_types {
1.418     raeburn  6377:     my ($num,$currdom,$currinsttypes,$readonly) = @_;
1.241     raeburn  6378:     my $output;
                   6379:     my $numinrow = 4;
                   6380:     my $count = 0;
                   6381:     my ($othertitle,$usertypes,$types) = &Apache::loncommon::sorted_inst_types($currdom);
1.247     raeburn  6382:     my $othervalue = 'any';
1.418     raeburn  6383:     my $disabled;
                   6384:     if ($readonly) {
                   6385:         $disabled = ' disabled="disabled"';
                   6386:     }
1.241     raeburn  6387:     if ((ref($types) eq 'ARRAY') && (ref($usertypes) eq 'HASH')) {
1.251     raeburn  6388:         if (keys(%{$usertypes}) > 0) {
1.247     raeburn  6389:             $othervalue = 'other';
                   6390:         }
1.241     raeburn  6391:         $output .= '<table><tr>';
                   6392:         foreach my $type (@{$types}) {
                   6393:             if (($count > 0) && ($count%$numinrow == 0)) {
                   6394:                 $output .= '</tr><tr>';
                   6395:             }
                   6396:             if (defined($usertypes->{$type})) {
1.257     raeburn  6397:                 my $esc_type = &escape($type);
1.241     raeburn  6398:                 $output .= '<td><span class="LC_nobreak"><label><input type = "checkbox" value="'.
1.257     raeburn  6399:                            $esc_type.'" ';
1.241     raeburn  6400:                 if (ref($currinsttypes) eq 'ARRAY') {
                   6401:                     if (@{$currinsttypes} > 0) {
1.249     raeburn  6402:                         if (grep(/^any$/,@{$currinsttypes})) {
                   6403:                             $output .= 'checked="checked"';
1.257     raeburn  6404:                         } elsif (grep(/^\Q$esc_type\E$/,@{$currinsttypes})) {
1.241     raeburn  6405:                             $output .= 'checked="checked"';
                   6406:                         }
1.249     raeburn  6407:                     } else {
                   6408:                         $output .= 'checked="checked"';
1.241     raeburn  6409:                     }
                   6410:                 }
1.418     raeburn  6411:                 $output .= ' name="selfenroll_types_'.$num.'"'.$disabled.' />'.$usertypes->{$type}.'</label></span></td>';
1.241     raeburn  6412:             }
                   6413:             $count ++;
                   6414:         }
                   6415:         if (($count > 0) && ($count%$numinrow == 0)) {
                   6416:             $output .= '</tr><tr>';
                   6417:         }
1.249     raeburn  6418:         $output .= '<td><span class="LC_nobreak"><label><input type = "checkbox" value="'.$othervalue.'"';
1.241     raeburn  6419:         if (ref($currinsttypes) eq 'ARRAY') {
                   6420:             if (@{$currinsttypes} > 0) {
1.249     raeburn  6421:                 if (grep(/^any$/,@{$currinsttypes})) { 
                   6422:                     $output .= ' checked="checked"';
                   6423:                 } elsif ($othervalue eq 'other') {
                   6424:                     if (grep(/^\Q$othervalue\E$/,@{$currinsttypes})) {
                   6425:                         $output .= ' checked="checked"';
                   6426:                     }
1.241     raeburn  6427:                 }
1.249     raeburn  6428:             } else {
                   6429:                 $output .= ' checked="checked"';
1.241     raeburn  6430:             }
1.249     raeburn  6431:         } else {
                   6432:             $output .= ' checked="checked"';
1.241     raeburn  6433:         }
1.418     raeburn  6434:         $output .= ' name="selfenroll_types_'.$num.'"'.$disabled.' />'.$othertitle.'</label></span></td></tr></table>';
1.241     raeburn  6435:     }
                   6436:     return $output;
                   6437: }
                   6438: 
1.237     raeburn  6439: sub selfenroll_date_forms {
                   6440:     my ($startform,$endform) = @_;
                   6441:     my $output .= &Apache::lonhtmlcommon::start_pick_box()."\n".
1.244     bisitz   6442:                   &Apache::lonhtmlcommon::row_title(&mt('Start date'),
1.237     raeburn  6443:                                                     'LC_oddrow_value')."\n".
                   6444:                   $startform."\n".
                   6445:                   &Apache::lonhtmlcommon::row_closure(1).
1.244     bisitz   6446:                   &Apache::lonhtmlcommon::row_title(&mt('End date'),
1.237     raeburn  6447:                                                    'LC_oddrow_value')."\n".
                   6448:                   $endform."\n".
                   6449:                   &Apache::lonhtmlcommon::row_closure(1).
                   6450:                   &Apache::lonhtmlcommon::end_pick_box();
                   6451:     return $output;
                   6452: }
                   6453: 
1.239     raeburn  6454: sub print_userchangelogs_display {
1.415     raeburn  6455:     my ($r,$context,$permission,$brcrum) = @_;
1.363     raeburn  6456:     my $formname = 'rolelog';
1.418     raeburn  6457:     my ($username,$domain,$crstype,$viewablesec,%roleslog);
1.363     raeburn  6458:     if ($context eq 'domain') {
                   6459:         $domain = $env{'request.role.domain'};
                   6460:         %roleslog=&Apache::lonnet::dump_dom('nohist_rolelog',$domain);
                   6461:     } else {
                   6462:         if ($context eq 'course') { 
                   6463:             $domain = $env{'course.'.$env{'request.course.id'}.'.domain'};
                   6464:             $username = $env{'course.'.$env{'request.course.id'}.'.num'};
                   6465:             $crstype = &Apache::loncommon::course_type();
1.418     raeburn  6466:             $viewablesec = &Apache::lonuserutils::viewable_section($permission);
1.363     raeburn  6467:             my %saveable_parameters = ('show' => 'scalar',);
                   6468:             &Apache::loncommon::store_course_settings('roles_log',
                   6469:                                                       \%saveable_parameters);
                   6470:             &Apache::loncommon::restore_course_settings('roles_log',
                   6471:                                                         \%saveable_parameters);
                   6472:         } elsif ($context eq 'author') {
                   6473:             $domain = $env{'user.domain'}; 
                   6474:             if ($env{'request.role'} =~ m{^au\./\Q$domain\E/$}) {
                   6475:                 $username = $env{'user.name'};
                   6476:             } else {
                   6477:                 undef($domain);
                   6478:             }
                   6479:         }
                   6480:         if ($domain ne '' && $username ne '') { 
                   6481:             %roleslog=&Apache::lonnet::dump('nohist_rolelog',$domain,$username);
                   6482:         }
                   6483:     }
1.239     raeburn  6484:     if ((keys(%roleslog))[0]=~/^error\:/) { undef(%roleslog); }
                   6485: 
1.415     raeburn  6486:     my $helpitem;
                   6487:     if ($context eq 'course') {
                   6488:         $helpitem = 'Course_User_Logs';
                   6489:     }
                   6490:     push (@{$brcrum},
                   6491:              {href => '/adm/createuser?action=changelogs',
                   6492:               text => 'User Management Logs',
                   6493:               help => $helpitem});
                   6494:     my $bread_crumbs_component = 'User Changes';
                   6495:     my $args = { bread_crumbs           => $brcrum,
                   6496:                  bread_crumbs_component => $bread_crumbs_component};
                   6497: 
                   6498:     # Create navigation javascript
                   6499:     my $jsnav = &userlogdisplay_js($formname);
                   6500: 
                   6501:     my $jscript = (<<ENDSCRIPT);
                   6502: <script type="text/javascript">
                   6503: // <![CDATA[
                   6504: $jsnav
                   6505: // ]]>
                   6506: </script>
                   6507: ENDSCRIPT
                   6508: 
                   6509:     # print page header
                   6510:     $r->print(&header($jscript,$args));
                   6511: 
1.239     raeburn  6512:     # set defaults
                   6513:     my $now = time();
                   6514:     my $defstart = $now - (7*24*3600); #7 days ago 
                   6515:     my %defaults = (
                   6516:                      page               => '1',
                   6517:                      show               => '10',
                   6518:                      role               => 'any',
                   6519:                      chgcontext         => 'any',
                   6520:                      rolelog_start_date => $defstart,
                   6521:                      rolelog_end_date   => $now,
                   6522:                    );
                   6523:     my $more_records = 0;
                   6524: 
                   6525:     # set current
                   6526:     my %curr;
                   6527:     foreach my $item ('show','page','role','chgcontext') {
                   6528:         $curr{$item} = $env{'form.'.$item};
                   6529:     }
                   6530:     my ($startdate,$enddate) = 
                   6531:         &Apache::lonuserutils::get_dates_from_form('rolelog_start_date','rolelog_end_date');
                   6532:     $curr{'rolelog_start_date'} = $startdate;
                   6533:     $curr{'rolelog_end_date'} = $enddate;
                   6534:     foreach my $key (keys(%defaults)) {
                   6535:         if ($curr{$key} eq '') {
                   6536:             $curr{$key} = $defaults{$key};
                   6537:         }
                   6538:     }
1.248     raeburn  6539:     my (%whodunit,%changed,$version);
                   6540:     ($version) = ($r->dir_config('lonVersion') =~ /^([\d\.]+)\-/);
1.239     raeburn  6541:     my ($minshown,$maxshown);
1.255     raeburn  6542:     $minshown = 1;
1.239     raeburn  6543:     my $count = 0;
1.415     raeburn  6544:     if ($curr{'show'} =~ /\D/) {
                   6545:         $curr{'page'} = 1;
                   6546:     } else {
1.239     raeburn  6547:         $maxshown = $curr{'page'} * $curr{'show'};
                   6548:         if ($curr{'page'} > 1) {
                   6549:             $minshown = 1 + ($curr{'page'} - 1) * $curr{'show'};
                   6550:         }
                   6551:     }
1.301     bisitz   6552: 
1.327     raeburn  6553:     # Form Header
                   6554:     $r->print('<form action="/adm/createuser" method="post" name="'.$formname.'">'.
1.363     raeburn  6555:               &role_display_filter($context,$formname,$domain,$username,\%curr,
                   6556:                                    $version,$crstype));
1.327     raeburn  6557: 
                   6558:     my $showntableheader = 0;
                   6559: 
                   6560:     # Table Header
                   6561:     my $tableheader = 
                   6562:         &Apache::loncommon::start_data_table_header_row()
                   6563:        .'<th>&nbsp;</th>'
                   6564:        .'<th>'.&mt('When').'</th>'
                   6565:        .'<th>'.&mt('Who made the change').'</th>'
                   6566:        .'<th>'.&mt('Changed User').'</th>'
1.363     raeburn  6567:        .'<th>'.&mt('Role').'</th>';
                   6568: 
                   6569:     if ($context eq 'course') {
                   6570:         $tableheader .= '<th>'.&mt('Section').'</th>';
                   6571:     }
                   6572:     $tableheader .=
                   6573:         '<th>'.&mt('Context').'</th>'
1.327     raeburn  6574:        .'<th>'.&mt('Start').'</th>'
                   6575:        .'<th>'.&mt('End').'</th>'
                   6576:        .&Apache::loncommon::end_data_table_header_row();
                   6577: 
                   6578:     # Display user change log data
1.239     raeburn  6579:     foreach my $id (sort { $roleslog{$b}{'exe_time'}<=>$roleslog{$a}{'exe_time'} } (keys(%roleslog))) {
                   6580:         next if (($roleslog{$id}{'exe_time'} < $curr{'rolelog_start_date'}) ||
                   6581:                  ($roleslog{$id}{'exe_time'} > $curr{'rolelog_end_date'}));
1.415     raeburn  6582:         if ($curr{'show'} !~ /\D/) {
1.239     raeburn  6583:             if ($count >= $curr{'page'} * $curr{'show'}) {
                   6584:                 $more_records = 1;
                   6585:                 last;
                   6586:             }
                   6587:         }
                   6588:         if ($curr{'role'} ne 'any') {
                   6589:             next if ($roleslog{$id}{'logentry'}{'role'} ne $curr{'role'}); 
                   6590:         }
                   6591:         if ($curr{'chgcontext'} ne 'any') {
                   6592:             if ($curr{'chgcontext'} eq 'selfenroll') {
                   6593:                 next if (!$roleslog{$id}{'logentry'}{'selfenroll'});
                   6594:             } else {
                   6595:                 next if ($roleslog{$id}{'logentry'}{'context'} ne $curr{'chgcontext'});
                   6596:             }
                   6597:         }
1.418     raeburn  6598:         if (($context eq 'course') && ($viewablesec ne '')) {
1.430     raeburn  6599:             next if ($roleslog{$id}{'logentry'}{'section'} ne $viewablesec);
1.418     raeburn  6600:         }
1.239     raeburn  6601:         $count ++;
                   6602:         next if ($count < $minshown);
1.327     raeburn  6603:         unless ($showntableheader) {
1.415     raeburn  6604:             $r->print(&Apache::loncommon::start_data_table()
1.327     raeburn  6605:                      .$tableheader);
                   6606:             $r->rflush();
                   6607:             $showntableheader = 1;
                   6608:         }
1.239     raeburn  6609:         if ($whodunit{$roleslog{$id}{'exe_uname'}.':'.$roleslog{$id}{'exe_udom'}} eq '') {
                   6610:             $whodunit{$roleslog{$id}{'exe_uname'}.':'.$roleslog{$id}{'exe_udom'}} =
                   6611:                 &Apache::loncommon::plainname($roleslog{$id}{'exe_uname'},$roleslog{$id}{'exe_udom'});
                   6612:         }
                   6613:         if ($changed{$roleslog{$id}{'uname'}.':'.$roleslog{$id}{'udom'}} eq '') {
                   6614:             $changed{$roleslog{$id}{'uname'}.':'.$roleslog{$id}{'udom'}} =
                   6615:                 &Apache::loncommon::plainname($roleslog{$id}{'uname'},$roleslog{$id}{'udom'});
                   6616:         }
                   6617:         my $sec = $roleslog{$id}{'logentry'}{'section'};
                   6618:         if ($sec eq '') {
                   6619:             $sec = &mt('None');
                   6620:         }
                   6621:         my ($rolestart,$roleend);
                   6622:         if ($roleslog{$id}{'delflag'}) {
                   6623:             $rolestart = &mt('deleted');
                   6624:             $roleend = &mt('deleted');
                   6625:         } else {
                   6626:             $rolestart = $roleslog{$id}{'logentry'}{'start'};
                   6627:             $roleend = $roleslog{$id}{'logentry'}{'end'};
                   6628:             if ($rolestart eq '' || $rolestart == 0) {
                   6629:                 $rolestart = &mt('No start date'); 
                   6630:             } else {
                   6631:                 $rolestart = &Apache::lonlocal::locallocaltime($rolestart);
                   6632:             }
                   6633:             if ($roleend eq '' || $roleend == 0) { 
                   6634:                 $roleend = &mt('No end date');
                   6635:             } else {
                   6636:                 $roleend = &Apache::lonlocal::locallocaltime($roleend);
                   6637:             }
                   6638:         }
                   6639:         my $chgcontext = $roleslog{$id}{'logentry'}{'context'};
                   6640:         if ($roleslog{$id}{'logentry'}{'selfenroll'}) {
                   6641:             $chgcontext = 'selfenroll';
                   6642:         }
1.363     raeburn  6643:         my %lt = &rolechg_contexts($context,$crstype);
1.239     raeburn  6644:         if ($chgcontext ne '' && $lt{$chgcontext} ne '') {
                   6645:             $chgcontext = $lt{$chgcontext};
                   6646:         }
1.327     raeburn  6647:         $r->print(
1.301     bisitz   6648:             &Apache::loncommon::start_data_table_row()
                   6649:            .'<td>'.$count.'</td>'
                   6650:            .'<td>'.&Apache::lonlocal::locallocaltime($roleslog{$id}{'exe_time'}).'</td>'
                   6651:            .'<td>'.$whodunit{$roleslog{$id}{'exe_uname'}.':'.$roleslog{$id}{'exe_udom'}}.'</td>'
                   6652:            .'<td>'.$changed{$roleslog{$id}{'uname'}.':'.$roleslog{$id}{'udom'}}.'</td>'
1.363     raeburn  6653:            .'<td>'.&Apache::lonnet::plaintext($roleslog{$id}{'logentry'}{'role'},$crstype).'</td>');
                   6654:         if ($context eq 'course') { 
                   6655:             $r->print('<td>'.$sec.'</td>');
                   6656:         }
                   6657:         $r->print(
                   6658:             '<td>'.$chgcontext.'</td>'
1.301     bisitz   6659:            .'<td>'.$rolestart.'</td>'
                   6660:            .'<td>'.$roleend.'</td>'
1.327     raeburn  6661:            .&Apache::loncommon::end_data_table_row()."\n");
1.301     bisitz   6662:     }
                   6663: 
1.327     raeburn  6664:     if ($showntableheader) { # Table footer, if content displayed above
1.415     raeburn  6665:         $r->print(&Apache::loncommon::end_data_table().
                   6666:                   &userlogdisplay_navlinks(\%curr,$more_records));
1.327     raeburn  6667:     } else { # No content displayed above
1.301     bisitz   6668:         $r->print('<p class="LC_info">'
                   6669:                  .&mt('There are no records to display.')
                   6670:                  .'</p>'
                   6671:         );
1.239     raeburn  6672:     }
1.301     bisitz   6673: 
1.327     raeburn  6674:     # Form Footer
                   6675:     $r->print( 
                   6676:         '<input type="hidden" name="page" value="'.$curr{'page'}.'" />'
                   6677:        .'<input type="hidden" name="action" value="changelogs" />'
                   6678:        .'</form>');
                   6679:     return;
                   6680: }
1.301     bisitz   6681: 
1.416     raeburn  6682: sub print_useraccesslogs_display {
                   6683:     my ($r,$uname,$udom,$permission,$brcrum) = @_;
                   6684:     my $formname = 'accesslog';
                   6685:     my $form = 'document.accesslog';
                   6686: 
                   6687: # set breadcrumbs
1.422     raeburn  6688:     my %breadcrumb_text = &singleuser_breadcrumb('','domain',$udom);
1.431     raeburn  6689:     my $prevphasestr;
                   6690:     if ($env{'form.popup'}) {
                   6691:         $brcrum = [];
                   6692:     } else {
                   6693:         push (@{$brcrum},
                   6694:             {href => "javascript:backPage($form)",
                   6695:              text => $breadcrumb_text{'search'}});
                   6696:         my @prevphases;
                   6697:         if ($env{'form.prevphases'}) {
                   6698:             @prevphases = split(/,/,$env{'form.prevphases'});
                   6699:             $prevphasestr = $env{'form.prevphases'};
                   6700:         }
                   6701:         if (($env{'form.phase'} eq 'userpicked') || (grep(/^userpicked$/,@prevphases))) {
                   6702:             push(@{$brcrum},
                   6703:                   {href => "javascript:backPage($form,'get_user_info','select')",
                   6704:                    text => $breadcrumb_text{'userpicked'}});
                   6705:             if ($env{'form.phase'} eq 'userpicked') {
                   6706:                 $prevphasestr = 'userpicked';
                   6707:             }
1.416     raeburn  6708:         }
                   6709:     }
                   6710:     push(@{$brcrum},
                   6711:              {href => '/adm/createuser?action=accesslogs',
                   6712:               text => 'User access logs',
1.424     raeburn  6713:               help => 'Domain_User_Access_Logs'});
1.416     raeburn  6714:     my $bread_crumbs_component = 'User Access Logs';
                   6715:     my $args = { bread_crumbs           => $brcrum,
                   6716:                  bread_crumbs_component => 'User Management'};
1.423     raeburn  6717:     if ($env{'form.popup'}) {
                   6718:         $args->{'no_nav_bar'} = 1;
1.431     raeburn  6719:         $args->{'bread_crumbs_nomenu'} = 1;
1.423     raeburn  6720:     }
1.416     raeburn  6721: 
1.417     raeburn  6722: # set javascript
1.416     raeburn  6723:     my ($jsback,$elements) = &crumb_utilities();
                   6724:     my $jsnav = &userlogdisplay_js($formname);
                   6725: 
                   6726:     my $jscript = (<<ENDSCRIPT);
                   6727: <script type="text/javascript">
                   6728: // <![CDATA[
                   6729: 
                   6730: $jsback
                   6731: $jsnav
                   6732: 
                   6733: // ]]>
                   6734: </script>
                   6735: 
                   6736: ENDSCRIPT
                   6737: 
1.417     raeburn  6738: # print page header
1.416     raeburn  6739:     $r->print(&header($jscript,$args));
                   6740: 
                   6741: # early out unless log data can be displayed.
                   6742:     unless ($permission->{'activity'}) {
                   6743:         $r->print('<p class="LC_warning">'
                   6744:                  .&mt('You do not have rights to display user access logs.')
1.431     raeburn  6745:                  .'</p>');
                   6746:         if ($env{'form.popup'}) {
                   6747:             $r->print('<p><a href="javascript:window.close()">'.&mt('Close window').'</a></p>');
                   6748:         } else {
                   6749:             $r->print(&earlyout_accesslog_form($formname,$prevphasestr,$udom));
                   6750:         }
1.416     raeburn  6751:         return;
                   6752:     }
                   6753: 
                   6754:     unless ($udom eq $env{'request.role.domain'}) {
                   6755:         $r->print('<p class="LC_warning">'
                   6756:                  .&mt("User's domain must match role's domain")
                   6757:                  .'</p>'
                   6758:                  .&earlyout_accesslog_form($formname,$prevphasestr,$udom));
1.417     raeburn  6759:         return;
1.416     raeburn  6760:     }
                   6761: 
                   6762:     if (($uname eq '') || ($udom eq '')) {
                   6763:         $r->print('<p class="LC_warning">'
                   6764:                  .&mt('Invalid username or domain')
                   6765:                  .'</p>'
                   6766:                  .&earlyout_accesslog_form($formname,$prevphasestr,$udom));
                   6767:         return;
                   6768:     }
                   6769: 
1.437   ! raeburn  6770:     if (&Apache::lonnet::privileged($uname,$udom,
        !          6771:                                     [$env{'request.role.domain'}],['dc','su'])) {
        !          6772:         unless (&Apache::lonnet::privileged($env{'user.name'},$env{'user.domain'},
        !          6773:                                             [$env{'request.role.domain'}],['dc','su'])) {
        !          6774:             $r->print('<p class="LC_warning">'
        !          6775:                  .&mt('You need to be a privileged user to display user access logs for [_1]',
        !          6776:                       &Apache::loncommon::aboutmewrapper(&Apache::loncommon::plainname($uname,$udom),
        !          6777:                                                          $uname,$udom))
        !          6778:                  .'</p>');
        !          6779:             if ($env{'form.popup'}) {
        !          6780:                 $r->print('<p><a href="javascript:window.close()">'.&mt('Close window').'</a></p>');
        !          6781:             } else {
        !          6782:                 $r->print(&earlyout_accesslog_form($formname,$prevphasestr,$udom));
        !          6783:             }
        !          6784:             return;
        !          6785:         }
        !          6786:     }
        !          6787: 
1.416     raeburn  6788: # set defaults
                   6789:     my $now = time();
                   6790:     my $defstart = $now - (7*24*3600);
                   6791:     my %defaults = (
                   6792:                      page                 => '1',
                   6793:                      show                 => '10',
                   6794:                      activity             => 'any',
                   6795:                      accesslog_start_date => $defstart,
                   6796:                      accesslog_end_date   => $now,
                   6797:                    );
                   6798:     my $more_records = 0;
                   6799: 
                   6800: # set current
                   6801:     my %curr;
                   6802:     foreach my $item ('show','page','activity') {
                   6803:         $curr{$item} = $env{'form.'.$item};
                   6804:     }
                   6805:     my ($startdate,$enddate) =
                   6806:         &Apache::lonuserutils::get_dates_from_form('accesslog_start_date','accesslog_end_date');
                   6807:     $curr{'accesslog_start_date'} = $startdate;
                   6808:     $curr{'accesslog_end_date'} = $enddate;
                   6809:     foreach my $key (keys(%defaults)) {
                   6810:         if ($curr{$key} eq '') {
                   6811:             $curr{$key} = $defaults{$key};
                   6812:         }
                   6813:     }
                   6814:     my ($minshown,$maxshown);
                   6815:     $minshown = 1;
                   6816:     my $count = 0;
                   6817:     if ($curr{'show'} =~ /\D/) {
                   6818:         $curr{'page'} = 1;
                   6819:     } else {
                   6820:         $maxshown = $curr{'page'} * $curr{'show'};
                   6821:         if ($curr{'page'} > 1) {
                   6822:             $minshown = 1 + ($curr{'page'} - 1) * $curr{'show'};
                   6823:         }
                   6824:     }
                   6825: 
                   6826: # form header
                   6827:     $r->print('<form action="/adm/createuser" method="post" name="'.$formname.'">'.
                   6828:               &activity_display_filter($formname,\%curr));
                   6829: 
                   6830:     my $showntableheader = 0;
                   6831:     my ($nav_script,$nav_links);
                   6832: 
                   6833: # table header
1.431     raeburn  6834:     my $tableheader = '<h3>'.
                   6835:         &mt('User access logs for: [_1]',
                   6836:             &Apache::loncommon::aboutmewrapper(&Apache::loncommon::plainname($uname,$udom),$uname,$udom)).'</h3>'
                   6837:        .&Apache::loncommon::start_data_table_header_row()
1.416     raeburn  6838:        .'<th>&nbsp;</th>'
                   6839:        .'<th>'.&mt('When').'</th>'
                   6840:        .'<th>'.&mt('HostID').'</th>'
                   6841:        .'<th>'.&mt('Event').'</th>'
                   6842:        .'<th>'.&mt('Other data').'</th>'
                   6843:        .&Apache::loncommon::end_data_table_header_row();
                   6844: 
                   6845:     my %filters=(
                   6846:         start  => $curr{'accesslog_start_date'},
                   6847:         end    => $curr{'accesslog_end_date'},
                   6848:         action => $curr{'activity'},
                   6849:     );
                   6850: 
                   6851:     my $reply = &Apache::lonnet::userlog_query($uname,$udom,%filters);
                   6852:     unless ( ($reply =~/^timeout/) || ($reply =~/^error/) ) {
                   6853:         my (%courses,%missing);
                   6854:         my @results = split(/\&/,$reply);
                   6855:         foreach my $item (reverse(@results)) {
                   6856:             my ($timestamp,$host,$event) = split(/:/,$item);
                   6857:             next unless ($event =~ /^(Log|Role)/);
                   6858:             if ($curr{'show'} !~ /\D/) {
                   6859:                 if ($count >= $curr{'page'} * $curr{'show'}) {
                   6860:                     $more_records = 1;
                   6861:                     last;
                   6862:                 }
                   6863:             }
                   6864:             $count ++;
                   6865:             next if ($count < $minshown);
                   6866:             unless ($showntableheader) {
                   6867:                 $r->print($nav_script
                   6868:                          .&Apache::loncommon::start_data_table()
                   6869:                          .$tableheader);
                   6870:                 $r->rflush();
                   6871:                 $showntableheader = 1;
                   6872:             }
1.418     raeburn  6873:             my ($shown,$extra);
1.437   ! raeburn  6874:             my ($event,$data) = split(/\s+/,&unescape($event),2);
1.416     raeburn  6875:             if ($event eq 'Role') {
                   6876:                 my ($rolecode,$extent) = split(/\./,$data,2);
                   6877:                 next if ($extent eq '');
                   6878:                 my ($crstype,$desc,$info);
1.418     raeburn  6879:                 if ($extent =~ m{^/($match_domain)/($match_courseid)(?:/(\w+)|)$}) {
                   6880:                     my ($cdom,$cnum,$sec) = ($1,$2,$3);
1.416     raeburn  6881:                     my $cid = $cdom.'_'.$cnum;
                   6882:                     if (exists($courses{$cid})) {
                   6883:                         $crstype = $courses{$cid}{'type'};
                   6884:                         $desc = $courses{$cid}{'description'};
                   6885:                     } elsif ($missing{$cid}) {
                   6886:                         $crstype = 'Course';
                   6887:                         $desc = 'Course/Community';
                   6888:                     } else {
                   6889:                         my %crsinfo = &Apache::lonnet::courseiddump($cdom,'.',1,'.','.',$cnum,undef,undef,'.');
                   6890:                         if (ref($crsinfo{$cdom.'_'.$cnum}) eq 'HASH') {
                   6891:                             $courses{$cid} = $crsinfo{$cid};
                   6892:                             $crstype = $crsinfo{$cid}{'type'};
                   6893:                             $desc = $crsinfo{$cid}{'description'};
                   6894:                         } else {
                   6895:                             $missing{$cid} = 1;
                   6896:                         }
                   6897:                     }
                   6898:                     $extra = &mt($crstype).': <a href="/public/'.$cdom.'/'.$cnum.'/syllabus">'.$desc.'</a>';
1.418     raeburn  6899:                     if ($sec ne '') {
                   6900:                        $extra .= ' ('.&mt('Section: [_1]',$sec).')';
                   6901:                     }
1.416     raeburn  6902:                 } elsif ($extent =~ m{^/($match_domain)/($match_username|$)}) {
                   6903:                     my ($dom,$name) = ($1,$2);
                   6904:                     if ($rolecode eq 'au') {
                   6905:                         $extra = '';
                   6906:                     } elsif ($rolecode =~ /^(ca|aa)$/) {
1.417     raeburn  6907:                         $extra = &mt('Authoring Space: [_1]',$name.':'.$dom);
1.416     raeburn  6908:                     } elsif ($rolecode =~ /^(li|dg|dh|dc|sc)$/) {
                   6909:                         $extra = &mt('Domain: [_1]',$dom);
                   6910:                     }
                   6911:                 }
                   6912:                 my $rolename;
                   6913:                 if ($rolecode =~ m{^cr/($match_domain)/($match_username)/(\w+)}) {
                   6914:                     my $role = $3;
1.417     raeburn  6915:                     my $owner = "($2:$1)";
1.416     raeburn  6916:                     if ($2 eq $1.'-domainconfig') {
                   6917:                         $owner = '(ad hoc)';
1.417     raeburn  6918:                     }
1.416     raeburn  6919:                     $rolename = &mt('Custom role: [_1]',$role.' '.$owner);
                   6920:                 } else {
                   6921:                     $rolename = &Apache::lonnet::plaintext($rolecode,$crstype);
                   6922:                 }
                   6923:                 $shown = &mt('Role selection: [_1]',$rolename);
                   6924:             } else {
                   6925:                 $shown = &mt($event);
1.437   ! raeburn  6926:                 if ($data =~ /^webdav/) {
        !          6927:                     my ($path,$clientip) = split(/\s+/,$data,2);
        !          6928:                     $path =~ s/^webdav//;
        !          6929:                     if ($clientip ne '') {
        !          6930:                         $extra = &mt('Client IP address: [_1]',$clientip);
        !          6931:                     }
        !          6932:                     if ($path ne '') {
        !          6933:                         $shown .= ' '.&mt('(WebDAV access to [_1])',$path);
        !          6934:                     }
        !          6935:                 } elsif ($data ne '') {
        !          6936:                     $extra = &mt('Client IP address: [_1]',$data);
1.416     raeburn  6937:                 }
                   6938:             }
                   6939:             $r->print(
                   6940:             &Apache::loncommon::start_data_table_row()
                   6941:            .'<td>'.$count.'</td>'
                   6942:            .'<td>'.&Apache::lonlocal::locallocaltime($timestamp).'</td>'
                   6943:            .'<td>'.$host.'</td>'
                   6944:            .'<td>'.$shown.'</td>'
                   6945:            .'<td>'.$extra.'</td>'
                   6946:            .&Apache::loncommon::end_data_table_row()."\n");
                   6947:         }
                   6948:     }
                   6949: 
                   6950:     if ($showntableheader) { # Table footer, if content displayed above
                   6951:         $r->print(&Apache::loncommon::end_data_table().
                   6952:                   &userlogdisplay_navlinks(\%curr,$more_records));
                   6953:     } else { # No content displayed above
                   6954:         $r->print('<p class="LC_info">'
                   6955:                  .&mt('There are no records to display.')
                   6956:                  .'</p>');
                   6957:     }
                   6958: 
1.423     raeburn  6959:     if ($env{'form.popup'} == 1) {
                   6960:         $r->print('<input type="hidden" name="popup" value="1" />'."\n");
                   6961:     }
                   6962: 
1.416     raeburn  6963:     # Form Footer
                   6964:     $r->print(
                   6965:         '<input type="hidden" name="currstate" value="" />'
                   6966:        .'<input type="hidden" name="accessuname" value="'.$uname.'" />'
                   6967:        .'<input type="hidden" name="accessudom" value="'.$udom.'" />'
                   6968:        .'<input type="hidden" name="page" value="'.$curr{'page'}.'" />'
                   6969:        .'<input type="hidden" name="prevphases" value="'.$prevphasestr.'" />'
                   6970:        .'<input type="hidden" name="phase" value="activity" />'
                   6971:        .'<input type="hidden" name="action" value="accesslogs" />'
                   6972:        .'<input type="hidden" name="srchdomain" value="'.$udom.'" />'
                   6973:        .'<input type="hidden" name="srchby" value="'.$env{'form.srchby'}.'" />'
                   6974:        .'<input type="hidden" name="srchtype" value="'.$env{'form.srchtype'}.'" />'
                   6975:        .'<input type="hidden" name="srchterm" value="'.&HTML::Entities::encode($env{'form.srchterm'},'<>"&').'" />'
                   6976:        .'<input type="hidden" name="srchin" value="'.$env{'form.srchin'}.'" />'
                   6977:        .'</form>');
                   6978:     return;
                   6979: }
                   6980: 
                   6981: sub earlyout_accesslog_form {
                   6982:     my ($formname,$prevphasestr,$udom) = @_;
                   6983:     my $srchterm = &HTML::Entities::encode($env{'form.srchterm'},'<>"&');
                   6984:    return <<"END";
                   6985: <form action="/adm/createuser" method="post" name="$formname">
                   6986: <input type="hidden" name="currstate" value="" />
                   6987: <input type="hidden" name="prevphases" value="$prevphasestr" />
                   6988: <input type="hidden" name="phase" value="activity" />
                   6989: <input type="hidden" name="action" value="accesslogs" />
                   6990: <input type="hidden" name="srchdomain" value="$udom" />
                   6991: <input type="hidden" name="srchby" value="$env{'form.srchby'}" />
                   6992: <input type="hidden" name="srchtype" value="$env{'form.srchtype'}" />
                   6993: <input type="hidden" name="srchterm" value="$srchterm" />
                   6994: <input type="hidden" name="srchin" value="$env{'form.srchin'}" />
                   6995: </form>
                   6996: END
                   6997: }
                   6998: 
                   6999: sub activity_display_filter {
                   7000:     my ($formname,$curr) = @_;
                   7001:     my $nolink = 1;
                   7002:     my $output = '<table><tr><td valign="top">'.
                   7003:                  '<span class="LC_nobreak"><b>'.&mt('Actions/page:').'</b></span><br />'.
                   7004:                  &Apache::lonmeta::selectbox('show',$curr->{'show'},undef,
                   7005:                                               (&mt('all'),5,10,20,50,100,1000,10000)).
                   7006:                  '</td><td>&nbsp;&nbsp;</td>';
                   7007:     my $startform =
                   7008:         &Apache::lonhtmlcommon::date_setter($formname,'accesslog_start_date',
                   7009:                                             $curr->{'accesslog_start_date'},undef,
                   7010:                                             undef,undef,undef,undef,undef,undef,$nolink);
                   7011:     my $endform =
                   7012:         &Apache::lonhtmlcommon::date_setter($formname,'accesslog_end_date',
                   7013:                                             $curr->{'accesslog_end_date'},undef,
                   7014:                                             undef,undef,undef,undef,undef,undef,$nolink);
                   7015:     my %lt = &Apache::lonlocal::texthash (
                   7016:                                           activity => 'Activity',
                   7017:                                           Role     => 'Role selection',
                   7018:                                           log      => 'Log-in or Logout',
                   7019:     );
                   7020:     $output .= '<td valign="top"><b>'.&mt('Window during which actions occurred:').'</b><br />'.
                   7021:                '<table><tr><td>'.&mt('After:').
                   7022:                '</td><td>'.$startform.'</td></tr>'.
                   7023:                '<tr><td>'.&mt('Before:').'</td>'.
                   7024:                '<td>'.$endform.'</td></tr></table>'.
                   7025:                '</td>'.
                   7026:                '<td>&nbsp;&nbsp;</td>'.
                   7027:                '<td valign="top"><b>'.&mt('Activities').'</b><br />'.
                   7028:                '<select name="activity"><option value="any"';
                   7029:     if ($curr->{'activity'} eq 'any') {
                   7030:         $output .= ' selected="selected"';
                   7031:     }
                   7032:     $output .= '>'.&mt('Any').'</option>'."\n";
                   7033:     foreach my $activity ('Role','log') {
                   7034:         my $selstr = '';
                   7035:         if ($activity eq $curr->{'activity'}) {
                   7036:             $selstr = ' selected="selected"';
                   7037:         }
                   7038:         $output .= '<option value="'.$activity.'"'.$selstr.'>'.$lt{$activity}.'</option>';
                   7039:     }
                   7040:     $output .= '</select></td>'.
                   7041:                '</tr></table>';
                   7042:     # Update Display button
                   7043:     $output .= '<p>'
                   7044:               .'<input type="submit" value="'.&mt('Update Display').'" />'
1.431     raeburn  7045:               .'</p><hr />';
1.416     raeburn  7046:     return $output;
                   7047: }
                   7048: 
1.415     raeburn  7049: sub userlogdisplay_js {
                   7050:     my ($formname) = @_;
                   7051:     return <<"ENDSCRIPT";
                   7052: 
1.239     raeburn  7053: function chgPage(caller) {
                   7054:     if (caller == 'previous') {
                   7055:         document.$formname.page.value --;
                   7056:     }
                   7057:     if (caller == 'next') {
                   7058:         document.$formname.page.value ++;
                   7059:     }
1.327     raeburn  7060:     document.$formname.submit();
1.239     raeburn  7061:     return;
                   7062: }
                   7063: ENDSCRIPT
1.415     raeburn  7064: }
                   7065: 
                   7066: sub userlogdisplay_navlinks {
                   7067:     my ($curr,$more_records) = @_;
                   7068:     return unless(ref($curr) eq 'HASH');
                   7069:     # Navigation Buttons
                   7070:     my $nav_links = '<p>';
                   7071:     if (($curr->{'page'} > 1) || ($more_records)) {
                   7072:         if (($curr->{'page'} > 1) && ($curr->{'show'} !~ /\D/)) {
                   7073:             $nav_links .= '<input type="button"'
                   7074:                          .' onclick="javascript:chgPage('."'previous'".');"'
                   7075:                          .' value="'.&mt('Previous [_1] changes',$curr->{'show'})
                   7076:                          .'" /> ';
                   7077:         }
                   7078:         if ($more_records) {
                   7079:             $nav_links .= '<input type="button"'
                   7080:                          .' onclick="javascript:chgPage('."'next'".');"'
                   7081:                          .' value="'.&mt('Next [_1] changes',$curr->{'show'})
                   7082:                          .'" />';
1.301     bisitz   7083:         }
                   7084:     }
1.415     raeburn  7085:     $nav_links .= '</p>';
                   7086:     return $nav_links;
1.239     raeburn  7087: }
                   7088: 
                   7089: sub role_display_filter {
1.363     raeburn  7090:     my ($context,$formname,$cdom,$cnum,$curr,$version,$crstype) = @_;
                   7091:     my $lctype;
                   7092:     if ($context eq 'course') {
                   7093:         $lctype = lc($crstype);
                   7094:     }
1.239     raeburn  7095:     my $nolink = 1;
                   7096:     my $output = '<table><tr><td valign="top">'.
1.301     bisitz   7097:                  '<span class="LC_nobreak"><b>'.&mt('Changes/page:').'</b></span><br />'.
1.239     raeburn  7098:                  &Apache::lonmeta::selectbox('show',$curr->{'show'},undef,
                   7099:                                               (&mt('all'),5,10,20,50,100,1000,10000)).
                   7100:                  '</td><td>&nbsp;&nbsp;</td>';
                   7101:     my $startform =
                   7102:         &Apache::lonhtmlcommon::date_setter($formname,'rolelog_start_date',
                   7103:                                             $curr->{'rolelog_start_date'},undef,
                   7104:                                             undef,undef,undef,undef,undef,undef,$nolink);
                   7105:     my $endform =
                   7106:         &Apache::lonhtmlcommon::date_setter($formname,'rolelog_end_date',
                   7107:                                             $curr->{'rolelog_end_date'},undef,
                   7108:                                             undef,undef,undef,undef,undef,undef,$nolink);
1.363     raeburn  7109:     my %lt = &rolechg_contexts($context,$crstype);
1.301     bisitz   7110:     $output .= '<td valign="top"><b>'.&mt('Window during which changes occurred:').'</b><br />'.
                   7111:                '<table><tr><td>'.&mt('After:').
                   7112:                '</td><td>'.$startform.'</td></tr>'.
                   7113:                '<tr><td>'.&mt('Before:').'</td>'.
                   7114:                '<td>'.$endform.'</td></tr></table>'.
                   7115:                '</td>'.
                   7116:                '<td>&nbsp;&nbsp;</td>'.
1.239     raeburn  7117:                '<td valign="top"><b>'.&mt('Role:').'</b><br />'.
                   7118:                '<select name="role"><option value="any"';
                   7119:     if ($curr->{'role'} eq 'any') {
                   7120:         $output .= ' selected="selected"';
                   7121:     }
                   7122:     $output .=  '>'.&mt('Any').'</option>'."\n";
1.363     raeburn  7123:     my @roles = &Apache::lonuserutils::roles_by_context($context,1,$crstype);
1.239     raeburn  7124:     foreach my $role (@roles) {
                   7125:         my $plrole;
                   7126:         if ($role eq 'cr') {
                   7127:             $plrole = &mt('Custom Role');
                   7128:         } else {
1.318     raeburn  7129:             $plrole=&Apache::lonnet::plaintext($role,$crstype);
1.239     raeburn  7130:         }
                   7131:         my $selstr = '';
                   7132:         if ($role eq $curr->{'role'}) {
                   7133:             $selstr = ' selected="selected"';
                   7134:         }
                   7135:         $output .= '  <option value="'.$role.'"'.$selstr.'>'.$plrole.'</option>';
                   7136:     }
1.301     bisitz   7137:     $output .= '</select></td>'.
                   7138:                '<td>&nbsp;&nbsp;</td>'.
                   7139:                '<td valign="top"><b>'.
1.239     raeburn  7140:                &mt('Context:').'</b><br /><select name="chgcontext">';
1.363     raeburn  7141:     my @posscontexts;
                   7142:     if ($context eq 'course') {
1.376     raeburn  7143:         @posscontexts = ('any','automated','updatenow','createcourse','course','domain','selfenroll','requestcourses');
1.363     raeburn  7144:     } elsif ($context eq 'domain') {
                   7145:         @posscontexts = ('any','domain','requestauthor','domconfig','server');
                   7146:     } else {
                   7147:         @posscontexts = ('any','author','domain');
                   7148:     } 
                   7149:     foreach my $chgtype (@posscontexts) {
1.239     raeburn  7150:         my $selstr = '';
                   7151:         if ($curr->{'chgcontext'} eq $chgtype) {
1.301     bisitz   7152:             $selstr = ' selected="selected"';
1.239     raeburn  7153:         }
1.363     raeburn  7154:         if ($context eq 'course') {
1.376     raeburn  7155:             if (($chgtype eq 'automated') || ($chgtype eq 'updatenow')) {
1.363     raeburn  7156:                 next if (!&Apache::lonnet::auto_run($cnum,$cdom));
                   7157:             }
1.239     raeburn  7158:         }
                   7159:         $output .= '<option value="'.$chgtype.'"'.$selstr.'>'.$lt{$chgtype}.'</option>'."\n";
1.248     raeburn  7160:     }
1.303     bisitz   7161:     $output .= '</select></td>'
                   7162:               .'</tr></table>';
                   7163: 
                   7164:     # Update Display button
                   7165:     $output .= '<p>'
                   7166:               .'<input type="submit" value="'.&mt('Update Display').'" />'
                   7167:               .'</p>';
                   7168: 
                   7169:     # Server version info
1.363     raeburn  7170:     my $needsrev = '2.11.0';
                   7171:     if ($context eq 'course') {
                   7172:         $needsrev = '2.7.0';
                   7173:     }
                   7174:     
1.303     bisitz   7175:     $output .= '<p class="LC_info">'
                   7176:               .&mt('Only changes made from servers running LON-CAPA [_1] or later are displayed.'
1.363     raeburn  7177:                   ,$needsrev);
1.248     raeburn  7178:     if ($version) {
1.303     bisitz   7179:         $output .= ' '.&mt('This LON-CAPA server is version [_1]',$version);
                   7180:     }
                   7181:     $output .= '</p><hr />';
1.239     raeburn  7182:     return $output;
                   7183: }
                   7184: 
                   7185: sub rolechg_contexts {
1.363     raeburn  7186:     my ($context,$crstype) = @_;
                   7187:     my %lt;
                   7188:     if ($context eq 'course') {
                   7189:         %lt = &Apache::lonlocal::texthash (
1.239     raeburn  7190:                                              any          => 'Any',
1.376     raeburn  7191:                                              automated    => 'Automated Enrollment',
1.239     raeburn  7192:                                              updatenow    => 'Roster Update',
                   7193:                                              createcourse => 'Course Creation',
                   7194:                                              course       => 'User Management in course',
                   7195:                                              domain       => 'User Management in domain',
1.313     raeburn  7196:                                              selfenroll   => 'Self-enrolled',
1.318     raeburn  7197:                                              requestcourses => 'Course Request',
1.239     raeburn  7198:                                          );
1.363     raeburn  7199:         if ($crstype eq 'Community') {
                   7200:             $lt{'createcourse'} = &mt('Community Creation');
                   7201:             $lt{'course'} = &mt('User Management in community');
                   7202:             $lt{'requestcourses'} = &mt('Community Request');
                   7203:         }
                   7204:     } elsif ($context eq 'domain') {
                   7205:         %lt = &Apache::lonlocal::texthash (
                   7206:                                              any           => 'Any',
                   7207:                                              domain        => 'User Management in domain',
                   7208:                                              requestauthor => 'Authoring Request',
                   7209:                                              server        => 'Command line script (DC role)',
                   7210:                                              domconfig     => 'Self-enrolled',
                   7211:                                          );
                   7212:     } else {
                   7213:         %lt = &Apache::lonlocal::texthash (
                   7214:                                              any    => 'Any',
                   7215:                                              domain => 'User Management in domain',
                   7216:                                              author => 'User Management by author',
                   7217:                                          );
                   7218:     } 
1.239     raeburn  7219:     return %lt;
                   7220: }
                   7221: 
1.428     raeburn  7222: sub print_helpdeskaccess_display {
                   7223:     my ($r,$permission,$brcrum) = @_;
                   7224:     my $formname = 'helpdeskaccess';
                   7225:     my $helpitem = 'Course_Helpdesk_Access';
                   7226:     push (@{$brcrum},
                   7227:              {href => '/adm/createuser?action=helpdesk',
                   7228:               text => 'Helpdesk Access',
                   7229:               help => $helpitem});
                   7230:     my $bread_crumbs_component = 'Helpdesk Staff Access';
                   7231:     my $args = { bread_crumbs           => $brcrum,
                   7232:                  bread_crumbs_component => $bread_crumbs_component};
                   7233: 
                   7234:     my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
                   7235:     my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
                   7236:     my $confname = $cdom.'-domainconfig';
                   7237:     my $crstype = &Apache::loncommon::course_type();
                   7238: 
1.434     raeburn  7239:     my @accesstypes = ('all','dh','da','none');
1.428     raeburn  7240:     my ($numstatustypes,@jsarray);
                   7241:     my ($othertitle,$usertypes,$types) = &Apache::loncommon::sorted_inst_types($cdom);
                   7242:     if (ref($types) eq 'ARRAY') {
1.430     raeburn  7243:         if (@{$types} > 0) {
1.428     raeburn  7244:             $numstatustypes = scalar(@{$types});
                   7245:             push(@accesstypes,'status');
                   7246:             @jsarray = ('bystatus');
                   7247:         }
                   7248:     }
                   7249:     my %customroles = &get_domain_customroles($cdom,$confname);
1.432     raeburn  7250:     my %domhelpdesk = &Apache::lonnet::get_active_domroles($cdom,['dh','da']);
1.428     raeburn  7251:     if (keys(%domhelpdesk)) {
                   7252:        push(@accesstypes,('inc','exc'));
                   7253:        push(@jsarray,('notinc','notexc'));
                   7254:     }
                   7255:     push(@jsarray,'privs');
                   7256:     my $hiddenstr = join("','",@jsarray);
                   7257:     my $rolestr = join("','",sort(keys(%customroles)));
                   7258: 
                   7259:     my $jscript;
                   7260:     my (%settings,%overridden);
                   7261:     if (keys(%customroles)) {
                   7262:         &get_adhocrole_settings($env{'request.course.id'},\@accesstypes,
                   7263:                                 $types,\%customroles,\%settings,\%overridden);
                   7264:         my %jsfull=();
                   7265:         my %jslevels= (
                   7266:                      course => {},
                   7267:                      domain => {},
                   7268:                      system => {},
                   7269:                     );
                   7270:         my %jslevelscurrent=(
                   7271:                            course => {},
                   7272:                            domain => {},
                   7273:                            system => {},
                   7274:                           );
                   7275:         my (%privs,%jsprivs);
                   7276:         &Apache::lonuserutils::custom_role_privs(\%privs,\%jsfull,\%jslevels,\%jslevelscurrent);
                   7277:         foreach my $priv (keys(%jsfull)) {
                   7278:             if ($jslevels{'course'}{$priv}) {
                   7279:                 $jsprivs{$priv} = 1;
                   7280:             }
                   7281:         }
                   7282:         my (%elements,%stored);
                   7283:         foreach my $role (keys(%customroles)) {
                   7284:             $elements{$role.'_access'} = 'radio';
                   7285:             $elements{$role.'_incrs'} = 'radio';
                   7286:             if ($numstatustypes) {
                   7287:                 $elements{$role.'_status'} = 'checkbox';
                   7288:             }
                   7289:             if (keys(%domhelpdesk) > 0) {
                   7290:                 $elements{$role.'_staff_inc'} = 'checkbox';
                   7291:                 $elements{$role.'_staff_exc'} = 'checkbox';
                   7292:             }
1.430     raeburn  7293:             $elements{$role.'_override'} = 'checkbox';
1.428     raeburn  7294:             if (ref($settings{$role}) eq 'HASH') {
                   7295:                 if ($settings{$role}{'access'} ne '') {
                   7296:                     my $curraccess = $settings{$role}{'access'};
                   7297:                     $stored{$role.'_access'} = $curraccess;
                   7298:                     $stored{$role.'_incrs'} = 1;
                   7299:                     if ($curraccess eq 'status') {
                   7300:                         if (ref($settings{$role}{'status'}) eq 'ARRAY') {
                   7301:                             $stored{$role.'_status'} = $settings{$role}{'status'};
                   7302:                         }
                   7303:                     } elsif (($curraccess eq 'exc') || ($curraccess eq 'inc')) {
                   7304:                         if (ref($settings{$role}{$curraccess}) eq 'ARRAY') {
                   7305:                             $stored{$role.'_staff_'.$curraccess} = $settings{$role}{$curraccess};
                   7306:                         }
                   7307:                     }
                   7308:                 } else {
                   7309:                     $stored{$role.'_incrs'} = 0;
                   7310:                 }
                   7311:                 $stored{$role.'_override'} = [];
                   7312:                 if ($env{'course.'.$env{'request.course.id'}.'.internal.adhocpriv.'.$role}) {
                   7313:                     if (ref($settings{$role}{'off'}) eq 'ARRAY') {
                   7314:                         foreach my $priv (@{$settings{$role}{'off'}}) {
                   7315:                             push(@{$stored{$role.'_override'}},$priv);
                   7316:                         }
                   7317:                     }
                   7318:                     if (ref($settings{$role}{'on'}) eq 'ARRAY') {
                   7319:                         foreach my $priv (@{$settings{$role}{'on'}}) {
                   7320:                             unless (grep(/^$priv$/,@{$stored{$role.'_override'}})) {
                   7321:                                 push(@{$stored{$role.'_override'}},$priv);
                   7322:                             }
                   7323:                         }
                   7324:                     }
                   7325:                 }
                   7326:             } else {
                   7327:                 $stored{$role.'_incrs'} = 0;
                   7328:             }
                   7329:         }
                   7330:         $jscript = &Apache::lonhtmlcommon::set_form_elements(\%elements,\%stored);
                   7331:     }
                   7332: 
                   7333:     my $js = <<"ENDJS";
                   7334: <script type="text/javascript">
                   7335: // <![CDATA[
                   7336: $jscript;
                   7337: 
                   7338: function switchRoleTab(caller,role) {
                   7339:     if (document.getElementById(role+'_maindiv')) {
                   7340:         if (caller.id != 'LC_current_minitab') {
                   7341:             if (document.getElementById('LC_current_minitab')) {
                   7342:                 document.getElementById('LC_current_minitab').id=null;
                   7343:             }
                   7344:             var roledivs = Array('$rolestr');
                   7345:             if (roledivs.length > 0) {
                   7346:                 for (var i=0; i<roledivs.length; i++) {
                   7347:                     if (document.getElementById(roledivs[i]+'_maindiv')) {
                   7348:                         document.getElementById(roledivs[i]+'_maindiv').style.display='none';
                   7349:                     }
                   7350:                 }
                   7351:             }
                   7352:             caller.id = 'LC_current_minitab';
                   7353:             document.getElementById(role+'_maindiv').style.display='block';
                   7354:         }
                   7355:     }
                   7356:     return false;
1.430     raeburn  7357: }
1.428     raeburn  7358: 
                   7359: function helpdeskAccess(role) {
                   7360:     var curraccess = null;
                   7361:     if (document.$formname.elements[role+'_access'].length) {
                   7362:         for (var i=0; i<document.$formname.elements[role+'_access'].length; i++) {
                   7363:             if (document.$formname.elements[role+'_access'][i].checked) {
                   7364:                 curraccess = document.$formname.elements[role+'_access'][i].value;
                   7365:             }
                   7366:         }
                   7367:     }
                   7368:     var shown = Array();
                   7369:     var hidden = Array();
                   7370:     if (curraccess == 'none') {
1.430     raeburn  7371:         hidden = Array ('$hiddenstr');
1.428     raeburn  7372:     } else {
                   7373:         if (curraccess == 'status') {
1.430     raeburn  7374:             shown = Array ('bystatus','privs');
                   7375:             hidden = Array ('notinc','notexc');
1.428     raeburn  7376:         } else {
                   7377:             if (curraccess == 'exc') {
                   7378:                 shown = Array ('notexc','privs');
                   7379:                 hidden = Array ('notinc','bystatus');
                   7380:             }
                   7381:             if (curraccess == 'inc') {
                   7382:                 shown = Array ('notinc','privs');
                   7383:                 hidden = Array ('notexc','bystatus');
                   7384:             }
                   7385:             if (curraccess == 'all') {
                   7386:                 shown = Array ('privs');
                   7387:                 hidden = Array ('notinc','notexc','bystatus');
                   7388:             }
                   7389:         }
                   7390:     }
                   7391:     if (hidden.length > 0) {
                   7392:         for (var i=0; i<hidden.length; i++) {
                   7393:             if (document.getElementById(role+'_'+hidden[i])) {
1.430     raeburn  7394:                 document.getElementById(role+'_'+hidden[i]).style.display = 'none';
1.428     raeburn  7395:             }
                   7396:         }
                   7397:     }
                   7398:     if (shown.length > 0) {
                   7399:         for (var i=0; i<shown.length; i++) {
                   7400:             if (document.getElementById(role+'_'+shown[i])) {
                   7401:                 if (shown[i] == 'privs') {
                   7402:                     document.getElementById(role+'_'+shown[i]).style.display = 'block';
                   7403:                 } else {
                   7404:                     document.getElementById(role+'_'+shown[i]).style.display = 'inline';
                   7405:                 }
                   7406:             }
                   7407:         }
                   7408:     }
                   7409:     return;
                   7410: }
                   7411: 
                   7412: function toggleAccess(role) {
                   7413:     if ((document.getElementById(role+'_setincrs')) &&
                   7414:         (document.getElementById(role+'_setindom'))) {
                   7415:         for (var i=0; i<document.$formname.elements[role+'_incrs'].length; i++) {
                   7416:             if (document.$formname.elements[role+'_incrs'][i].checked) {
                   7417:                 if (document.$formname.elements[role+'_incrs'][i].value == 1) {
                   7418:                     document.getElementById(role+'_setindom').style.display = 'none';
1.430     raeburn  7419:                     document.getElementById(role+'_setincrs').style.display = 'block';
1.428     raeburn  7420:                 } else {
                   7421:                     document.getElementById(role+'_setincrs').style.display = 'none';
                   7422:                     document.getElementById(role+'_setindom').style.display = 'block';
                   7423:                 }
                   7424:                 break;
                   7425:             }
                   7426:         }
                   7427:     }
                   7428:     return;
                   7429: }
                   7430: 
                   7431: // ]]>
                   7432: </script>
                   7433: ENDJS
                   7434: 
                   7435:     $args->{add_entries} = {onload => "javascript:setFormElements(document.$formname)"};
                   7436: 
                   7437:     # print page header
                   7438:     $r->print(&header($js,$args));
                   7439:     # print form header
                   7440:     $r->print('<form action="/adm/createuser" method="post" name="'.$formname.'">');
                   7441: 
                   7442:     if (keys(%customroles)) {
                   7443:         my %lt = &Apache::lonlocal::texthash(
                   7444:                     'aco'    => 'As course owner you may override the defaults set in the domain for role usage and/or privileges.',
                   7445:                     'rou'    => 'Role usage',
                   7446:                     'whi'    => 'Which helpdesk personnel may use this role?',
                   7447:                     'udd'    => 'Use domain default',
1.433     raeburn  7448:                     'all'    => 'All with domain helpdesk or helpdesk assistant role',
1.434     raeburn  7449:                     'dh'     => 'All with domain helpdesk role',
                   7450:                     'da'     => 'All with domain helpdesk assistant role',
1.428     raeburn  7451:                     'none'   => 'None',
                   7452:                     'status' => 'Determined based on institutional status',
1.430     raeburn  7453:                     'inc'    => 'Include all, but exclude specific personnel',
1.428     raeburn  7454:                     'exc'    => 'Exclude all, but include specific personnel',
                   7455:                     'hel'    => 'Helpdesk',
                   7456:                     'rpr'    => 'Role privileges',
                   7457:                  );
                   7458:         $lt{'tfh'} = &mt("Custom [_1]ad hoc[_2] course roles available for use by the domain's helpdesk are as follows",'<i>','</i>');
                   7459:         my %domconfig = &Apache::lonnet::get_dom('configuration',['helpsettings'],$cdom);
                   7460:         my (%domcurrent,%ordered,%description,%domusage,$disabled);
                   7461:         if (ref($domconfig{'helpsettings'}) eq 'HASH') {
                   7462:             if (ref($domconfig{'helpsettings'}{'adhoc'}) eq 'HASH') {
                   7463:                 %domcurrent = %{$domconfig{'helpsettings'}{'adhoc'}};
                   7464:             }
                   7465:         }
                   7466:         my $count = 0;
                   7467:         foreach my $role (sort(keys(%customroles))) {
                   7468:             my ($order,$desc,$access_in_dom);
                   7469:             if (ref($domcurrent{$role}) eq 'HASH') {
                   7470:                 $order = $domcurrent{$role}{'order'};
                   7471:                 $desc = $domcurrent{$role}{'desc'};
                   7472:                 $access_in_dom = $domcurrent{$role}{'access'};
                   7473:             }
                   7474:             if ($order eq '') {
                   7475:                 $order = $count;
                   7476:             }
                   7477:             $ordered{$order} = $role;
                   7478:             if ($desc ne '') {
                   7479:                 $description{$role} = $desc;
                   7480:             } else {
                   7481:                 $description{$role}= $role;
                   7482:             }
                   7483:             $count++;
                   7484:         }
                   7485:         %domusage = &domain_adhoc_access(\%customroles,\%domcurrent,\@accesstypes,$usertypes,$othertitle);
                   7486:         my @roles_by_num = ();
                   7487:         foreach my $item (sort {$a <=> $b } (keys(%ordered))) {
                   7488:             push(@roles_by_num,$ordered{$item});
1.430     raeburn  7489:         }
1.429     raeburn  7490:         $r->print('<p>'.$lt{'tfh'}.': <i>'.join('</i>, <i>',map { $description{$_}; } @roles_by_num).'</i>.');
1.428     raeburn  7491:         if ($permission->{'owner'}) {
                   7492:             $r->print('<br />'.$lt{'aco'}.'</p><p>');
                   7493:             $r->print('<input type="hidden" name="state" value="process" />'.
                   7494:                       '<input type="submit" value="'.&mt('Save changes').'" />');
                   7495:         } else {
                   7496:             if ($env{'course.'.$env{'request.course.id'}.'.internal.courseowner'}) {
                   7497:                 my ($ownername,$ownerdom) = split(/:/,$env{'course.'.$env{'request.course.id'}.'.internal.courseowner'});
                   7498:                 $r->print('<br />'.&mt('The course owner -- [_1] -- can override the default access and/or privileges for these ad hoc roles.',
                   7499:                                     &Apache::loncommon::aboutmewrapper(&Apache::loncommon::plainname($ownername,$ownerdom),$ownername,$ownerdom)));
                   7500:             }
                   7501:             $disabled = ' disabled="disabled"';
                   7502:         }
                   7503:         $r->print('</p>');
                   7504: 
                   7505:         $r->print('<div id="LC_minitab_header"><ul>');
                   7506:         my $count = 0;
                   7507:         my %visibility;
                   7508:         foreach my $role (@roles_by_num) {
                   7509:             my $id;
                   7510:             if ($count == 0) {
                   7511:                 $id=' id="LC_current_minitab"';
1.430     raeburn  7512:                 $visibility{$role} = ' style="display:block"';
1.428     raeburn  7513:             } else {
                   7514:                 $visibility{$role} = ' style="display:none"';
                   7515:             }
                   7516:             $count ++;
                   7517:             $r->print('<li'.$id.'><a href="#" onclick="javascript:switchRoleTab(this.parentNode,'."'$role'".');">'.$description{$role}.'</a></li>');
                   7518:         }
                   7519:         $r->print('</ul></div>');
                   7520: 
                   7521:         foreach my $role (@roles_by_num) {
                   7522:             my %usecheck = (
                   7523:                              all => ' checked="checked"',
                   7524:                            );
                   7525:             my %displaydiv = (
                   7526:                                 status => 'none',
                   7527:                                 inc    => 'none',
                   7528:                                 exc    => 'none',
                   7529:                                 priv   => 'block',
                   7530:                              );
                   7531:             my (%selected,$overridden,$incrscheck,$indomcheck,$indomvis,$incrsvis);
1.430     raeburn  7532:             if (ref($settings{$role}) eq 'HASH') {
1.428     raeburn  7533:                 if ($settings{$role}{'access'} ne '') {
                   7534:                     $indomvis = ' style="display:none"';
                   7535:                     $incrsvis = ' style="display:block"';
1.430     raeburn  7536:                     $incrscheck = ' checked="checked"';
1.428     raeburn  7537:                     if ($settings{$role}{'access'} ne 'all') {
                   7538:                         $usecheck{$settings{$role}{'access'}} = $usecheck{'all'};
                   7539:                         delete($usecheck{'all'});
                   7540:                         if ($settings{$role}{'access'} eq 'status') {
                   7541:                             my $access = 'status';
                   7542:                             $displaydiv{$access} = 'inline';
                   7543:                             if (ref($settings{$role}{$access}) eq 'ARRAY') {
                   7544:                                 $selected{$access} = $settings{$role}{$access};
                   7545:                             }
                   7546:                         } elsif ($settings{$role}{'access'} =~ /^(inc|exc)$/) {
                   7547:                             my $access = $1;
                   7548:                             $displaydiv{$access} = 'inline';
                   7549:                             if (ref($settings{$role}{$access}) eq 'ARRAY') {
                   7550:                                 $selected{$access} = $settings{$role}{$access};
                   7551:                             }
                   7552:                         } elsif ($settings{$role}{'access'} eq 'none') {
                   7553:                             $displaydiv{'priv'} = 'none';
                   7554:                         }
                   7555:                     }
                   7556:                 } else {
                   7557:                     $indomcheck = ' checked="checked"';
                   7558:                     $indomvis = ' style="display:block"';
                   7559:                     $incrsvis = ' style="display:none"';
                   7560:                 }
                   7561:             } else {
                   7562:                 $indomcheck = ' checked="checked"';
1.430     raeburn  7563:                 $indomvis = ' style="display:block"';
1.428     raeburn  7564:                 $incrsvis = ' style="display:none"';
                   7565:             }
                   7566:             $r->print('<div class="LC_left_float" id="'.$role.'_maindiv"'.$visibility{$role}.'>'.
                   7567:                       '<fieldset><legend>'.$lt{'rou'}.'</legend>'.
                   7568:                       '<p>'.$lt{'whi'}.' <span class="LC_nobreak">'.
                   7569:                       '<label><input type="radio" name="'.$role.'_incrs" value="1"'.$incrscheck.' onclick="toggleAccess('."'$role'".');"'.$disabled.'>'.
                   7570:                       &mt('Set here in [_1]',lc($crstype)).'</label>'.
                   7571:                       '<span>'.('&nbsp;'x2).
                   7572:                       '<label><input type="radio" name="'.$role.'_incrs" value="0"'.$indomcheck.' onclick="toggleAccess('."'$role'".');"'.$disabled.'>'.
                   7573:                       $lt{'udd'}.'</label><span></p>'.
                   7574:                       '<div id="'.$role.'_setindom"'.$indomvis.'>'.
                   7575:                       '<span class="LC_cusr_emph">'.$domusage{$role}.'</span></div>'.
                   7576:                       '<div id="'.$role.'_setincrs"'.$incrsvis.'>');
                   7577:             foreach my $access (@accesstypes) {
                   7578:                 $r->print('<p><label><input type="radio" name="'.$role.'_access" value="'.$access.'" '.$usecheck{$access}.
                   7579:                           ' onclick="helpdeskAccess('."'$role'".');"'.$disabled.' />'.$lt{$access}.'</label>');
                   7580:                 if ($access eq 'status') {
                   7581:                     $r->print('<div id="'.$role.'_bystatus" style="display:'.$displaydiv{$access}.'">'.
                   7582:                               &Apache::lonuserutils::adhoc_status_types($cdom,undef,$role,$selected{$access},
                   7583:                                                                         $othertitle,$usertypes,$types,$disabled).
                   7584:                               '</div>');
                   7585:                 } elsif (($access eq 'inc') && (keys(%domhelpdesk) > 0)) {
                   7586:                     $r->print('<div id="'.$role.'_notinc" style="display:'.$displaydiv{$access}.'">'.
                   7587:                               &Apache::lonuserutils::adhoc_staff($access,undef,$role,$selected{$access},
                   7588:                                                                  \%domhelpdesk,$disabled).
                   7589:                               '</div>');
                   7590:                 } elsif (($access eq 'exc') && (keys(%domhelpdesk) > 0)) {
                   7591:                     $r->print('<div id="'.$role.'_notexc" style="display:'.$displaydiv{$access}.'">'.
                   7592:                               &Apache::lonuserutils::adhoc_staff($access,undef,$role,$selected{$access},
                   7593:                                                                  \%domhelpdesk,$disabled).
                   7594:                               '</div>');
                   7595:                 }
                   7596:                 $r->print('</p>');
                   7597:             }
                   7598:             $r->print('</div></fieldset>');
                   7599:             my %full=();
                   7600:             my %levels= (
                   7601:                          course => {},
                   7602:                          domain => {},
                   7603:                          system => {},
                   7604:                         );
                   7605:             my %levelscurrent=(
                   7606:                                course => {},
                   7607:                                domain => {},
                   7608:                                system => {},
                   7609:                               );
                   7610:             &Apache::lonuserutils::custom_role_privs($customroles{$role},\%full,\%levels,\%levelscurrent);
                   7611:             $r->print('<fieldset id="'.$role.'_privs" style="display:'.$displaydiv{'priv'}.'">'.
                   7612:                       '<legend>'.$lt{'rpr'}.'</legend>'.
                   7613:                       &role_priv_table($role,$permission,$crstype,\%full,\%levels,\%levelscurrent,$overridden{$role}).
                   7614:                       '</fieldset></div><div style="padding:0;clear:both;margin:0;border:0"></div>');
                   7615:         }
1.429     raeburn  7616:         if ($permission->{'owner'}) {
                   7617:             $r->print('<p><input type="submit" value="'.&mt('Save changes').'" /></p>');
                   7618:         }
1.428     raeburn  7619:     } else {
                   7620:         $r->print(&mt('Helpdesk roles have not yet been created in this domain.'));
                   7621:     }
                   7622:     # Form Footer
                   7623:     $r->print('<input type="hidden" name="action" value="helpdesk" />'
                   7624:              .'</form>');
                   7625:     return;
                   7626: }
                   7627: 
                   7628: sub domain_adhoc_access {
                   7629:     my ($roles,$domcurrent,$accesstypes,$usertypes,$othertitle) = @_;
                   7630:     my %domusage;
                   7631:     return unless ((ref($roles) eq 'HASH') && (ref($domcurrent) eq 'HASH') && (ref($accesstypes) eq 'ARRAY'));
                   7632:     foreach my $role (keys(%{$roles})) {
                   7633:         if (ref($domcurrent->{$role}) eq 'HASH') {
                   7634:             my $access = $domcurrent->{$role}{'access'};
                   7635:             if (($access eq '') || (!grep(/^\Q$access\E$/,@{$accesstypes}))) {
                   7636:                 $access = 'all';
1.432     raeburn  7637:                 $domusage{$role} = &mt('Any user in domain with active [_1] or [_2] role',&Apache::lonnet::plaintext('dh'),
                   7638:                                                                                           &Apache::lonnet::plaintext('da'));
1.428     raeburn  7639:             } elsif ($access eq 'status') {
                   7640:                 if (ref($domcurrent->{$role}{$access}) eq 'ARRAY') {
                   7641:                     my @shown;
                   7642:                     foreach my $type (@{$domcurrent->{$role}{$access}}) {
                   7643:                         unless ($type eq 'default') {
                   7644:                             if ($usertypes->{$type}) {
                   7645:                                 push(@shown,$usertypes->{$type});
                   7646:                             }
                   7647:                         }
                   7648:                     }
                   7649:                     if (grep(/^default$/,@{$domcurrent->{$role}{$access}})) {
                   7650:                         push(@shown,$othertitle);
                   7651:                     }
                   7652:                     if (@shown) {
                   7653:                         my $shownstatus = join(' '.&mt('or').' ',@shown);
1.432     raeburn  7654:                         $domusage{$role} = &mt('Any user in domain with active [_1] or [_2] role, and institutional status: [_3]',
                   7655:                                                &Apache::lonnet::plaintext('dh'),&Apache::lonnet::plaintext('da'),$shownstatus);
1.428     raeburn  7656:                     } else {
                   7657:                         $domusage{$role} = &mt('No one in the domain');
                   7658:                     }
                   7659:                 }
                   7660:             } elsif ($access eq 'inc') {
                   7661:                 my @dominc = ();
                   7662:                 if (ref($domcurrent->{$role}{'inc'}) eq 'ARRAY') {
                   7663:                     foreach my $user (@{$domcurrent->{$role}{'inc'}}) {
                   7664:                         my ($uname,$udom) = split(/:/,$user);
                   7665:                         push(@dominc,&Apache::loncommon::aboutmewrapper(&Apache::loncommon::plainname($uname,$udom),$uname,$udom));
                   7666:                     }
                   7667:                     my $showninc = join(', ',@dominc);
                   7668:                     if ($showninc ne '') {
1.432     raeburn  7669:                         $domusage{$role} = &mt('Include any user in domain with active [_1] or [_2] role, except: [_3]',
                   7670:                                                &Apache::lonnet::plaintext('dh'),&Apache::lonnet::plaintext('da'),$showninc);
1.428     raeburn  7671:                     } else {
1.432     raeburn  7672:                         $domusage{$role} = &mt('Any user in domain with active [_1] or [_2] role',
                   7673:                                                &Apache::lonnet::plaintext('dh'),&Apache::lonnet::plaintext('da'));
1.428     raeburn  7674:                     }
                   7675:                 }
                   7676:             } elsif ($access eq 'exc') {
                   7677:                 my @domexc = ();
                   7678:                 if (ref($domcurrent->{$role}{'exc'}) eq 'ARRAY') {
                   7679:                     foreach my $user (@{$domcurrent->{$role}{'exc'}}) {
                   7680:                         my ($uname,$udom) = split(/:/,$user);
                   7681:                         push(@domexc,&Apache::loncommon::aboutmewrapper(&Apache::loncommon::plainname($uname,$udom),$uname,$udom));
                   7682:                     }
                   7683:                 }
                   7684:                 my $shownexc = join(', ',@domexc);
                   7685:                 if ($shownexc ne '') {
1.432     raeburn  7686:                     $domusage{$role} = &mt('Only the following in the domain with active [_1] or [_2] role: [_3]',
                   7687:                                            &Apache::lonnet::plaintext('dh'),&Apache::lonnet::plaintext('da'),$shownexc);
1.428     raeburn  7688:                 } else {
                   7689:                     $domusage{$role} = &mt('No one in the domain');
                   7690:                 }
                   7691:             } elsif ($access eq 'none') {
                   7692:                 $domusage{$role} = &mt('No one in the domain');
1.434     raeburn  7693:             } elsif ($access eq 'dh') {
1.433     raeburn  7694:                 $domusage{$role} = &mt('Any user in domain with active [_1] role',&Apache::lonnet::plaintext('dh'));
1.434     raeburn  7695:             } elsif ($access eq 'da') {
1.433     raeburn  7696:                 $domusage{$role} = &mt('Any user in domain with active [_1] role',&Apache::lonnet::plaintext('da'));
1.428     raeburn  7697:             } elsif ($access eq 'all') {
1.432     raeburn  7698:                 $domusage{$role} = &mt('Any user in domain with active [_1] or [_2] role',
                   7699:                                        &Apache::lonnet::plaintext('dh'),&Apache::lonnet::plaintext('da'));
1.428     raeburn  7700:             }
                   7701:         } else {
1.432     raeburn  7702:             $domusage{$role} = &mt('Any user in domain with active [_1] or [_2] role',
                   7703:                                    &Apache::lonnet::plaintext('dh'),&Apache::lonnet::plaintext('da'));
1.428     raeburn  7704:         }
                   7705:     }
                   7706:     return %domusage;
                   7707: }
                   7708: 
                   7709: sub get_domain_customroles {
                   7710:     my ($cdom,$confname) = @_;
                   7711:     my %existing=&Apache::lonnet::dump('roles',$cdom,$confname,'rolesdef_');
                   7712:     my %customroles;
                   7713:     foreach my $key (keys(%existing)) {
                   7714:         if ($key=~/^rolesdef\_(\w+)$/) {
                   7715:             my $rolename = $1;
                   7716:             my %privs;
                   7717:             ($privs{'system'},$privs{'domain'},$privs{'course'}) = split(/\_/,$existing{$key});
                   7718:             $customroles{$rolename} = \%privs;
                   7719:         }
                   7720:     }
                   7721:     return %customroles;
                   7722: }
                   7723: 
                   7724: sub role_priv_table {
                   7725:     my ($role,$permission,$crstype,$full,$levels,$levelscurrent,$overridden) = @_;
                   7726:     return unless ((ref($full) eq 'HASH') && (ref($levels) eq 'HASH') &&
                   7727:                    (ref($levelscurrent) eq 'HASH'));
                   7728:     my %lt=&Apache::lonlocal::texthash (
                   7729:                     'crl'  => 'Course Level Privilege',
                   7730:                     'def'  => 'Domain Defaults',
                   7731:                     'ove'  => 'Override in Course',
                   7732:                     'ine'  => 'In effect',
                   7733:                     'dis'  => 'Disabled',
                   7734:                     'ena'  => 'Enabled',
                   7735:                    );
                   7736:     if ($crstype eq 'Community') {
                   7737:         $lt{'ove'} = 'Override in Community',
                   7738:     }
                   7739:     my @status = ('Disabled','Enabled');
                   7740:     my (%on,%off);
                   7741:     if (ref($overridden) eq 'HASH') {
                   7742:         if (ref($overridden->{'on'}) eq 'ARRAY') {
                   7743:             map { $on{$_} = 1; } (@{$overridden->{'on'}});
                   7744:         }
                   7745:         if (ref($overridden->{'off'}) eq 'ARRAY') {
                   7746:             map { $off{$_} = 1; } (@{$overridden->{'off'}});
                   7747:         }
                   7748:     }
                   7749:     my $output=&Apache::loncommon::start_data_table().
                   7750:                &Apache::loncommon::start_data_table_header_row().
                   7751:                '<th>'.$lt{'crl'}.'</th><th>'.$lt{'def'}.'</th><th>'.$lt{'ove'}.
                   7752:                '</th><th>'.$lt{'ine'}.'</th>'.
                   7753:                &Apache::loncommon::end_data_table_header_row();
                   7754:     foreach my $priv (sort(keys(%{$full}))) {
                   7755:         next unless ($levels->{'course'}{$priv});
                   7756:         my $privtext = &Apache::lonnet::plaintext($priv,$crstype);
                   7757:         my ($default,$ineffect);
                   7758:         if ($levelscurrent->{'course'}{$priv}) {
                   7759:             $default = '<img src="/adm/lonIcons/navmap.correct.gif" alt="'.$lt{'ena'}.'" />';
                   7760:             $ineffect = $default;
                   7761:         }
                   7762:         my ($customstatus,$checked);
                   7763:         $output .= &Apache::loncommon::start_data_table_row().
                   7764:                    '<td>'.$privtext.'</td>'.
                   7765:                    '<td>'.$default.'</td><td>';
                   7766:         if (($levelscurrent->{'course'}{$priv}) && ($off{$priv})) {
                   7767:             if ($permission->{'owner'}) {
                   7768:                 $checked = ' checked="checked"';
                   7769:             }
                   7770:             $customstatus = '<img src="/adm/lonIcons/navmap.wrong.gif" alt="'.$lt{'dis'}.'" />';
1.430     raeburn  7771:             $ineffect = $customstatus;
1.428     raeburn  7772:         } elsif ((!$levelscurrent->{'course'}{$priv}) && ($on{$priv})) {
                   7773:             if ($permission->{'owner'}) {
1.430     raeburn  7774:                 $checked = ' checked="checked"';
1.428     raeburn  7775:             }
                   7776:             $customstatus = '<img src="/adm/lonIcons/navmap.correct.gif" alt="'.$lt{'ena'}.'" />';
1.430     raeburn  7777:             $ineffect = $customstatus;
1.428     raeburn  7778:         }
                   7779:         if ($permission->{'owner'}) {
                   7780:             $output .= '<input type="checkbox" name="'.$role.'_override" value="'.$priv.'"'.$checked.' />';
                   7781:         } else {
                   7782:             $output .= $customstatus;
                   7783:         }
                   7784:         $output .= '</td><td>'.$ineffect.'</td>'.
                   7785:                    &Apache::loncommon::end_data_table_row();
                   7786:     }
                   7787:     $output .= &Apache::loncommon::end_data_table();
                   7788:     return $output;
                   7789: }
                   7790: 
                   7791: sub get_adhocrole_settings {
1.430     raeburn  7792:     my ($cid,$accesstypes,$types,$customroles,$settings,$overridden) = @_;
1.428     raeburn  7793:     return unless ((ref($accesstypes) eq 'ARRAY') && (ref($customroles) eq 'HASH') &&
                   7794:                    (ref($settings) eq 'HASH') && (ref($overridden) eq 'HASH'));
                   7795:     foreach my $role (split(/,/,$env{'course.'.$cid.'.internal.adhocaccess'})) {
                   7796:         my ($curraccess,$rest) = split(/=/,$env{'course.'.$cid.'.internal.adhoc.'.$role});
                   7797:         if (($curraccess ne '') && (grep(/^\Q$curraccess\E$/,@{$accesstypes}))) {
                   7798:             $settings->{$role}{'access'} = $curraccess;
                   7799:             if (($curraccess eq 'status') && (ref($types) eq 'ARRAY')) {
                   7800:                 my @status = split(/,/,$rest);
                   7801:                 my @currstatus;
                   7802:                 foreach my $type (@status) {
                   7803:                     if ($type eq 'default') {
                   7804:                         push(@currstatus,$type);
                   7805:                     } elsif (grep(/^\Q$type\E$/,@{$types})) {
                   7806:                         push(@currstatus,$type);
                   7807:                     }
                   7808:                 }
                   7809:                 if (@currstatus) {
                   7810:                     $settings->{$role}{$curraccess} = \@currstatus;
                   7811:                 } elsif (($curraccess eq 'exc') || ($curraccess eq 'inc')) {
                   7812:                     my @personnel = split(/,/,$rest);
                   7813:                     $settings->{$role}{$curraccess} = \@personnel;
                   7814:                 }
                   7815:             }
                   7816:         }
                   7817:     }
                   7818:     foreach my $role (keys(%{$customroles})) {
                   7819:         if ($env{'course.'.$cid.'.internal.adhocpriv.'.$role}) {
                   7820:             my %currentprivs;
                   7821:             if (ref($customroles->{$role}) eq 'HASH') {
                   7822:                 if (exists($customroles->{$role}{'course'})) {
                   7823:                     my %full=();
                   7824:                     my %levels= (
                   7825:                                   course => {},
                   7826:                                   domain => {},
                   7827:                                   system => {},
                   7828:                                 );
                   7829:                     my %levelscurrent=(
                   7830:                                         course => {},
                   7831:                                         domain => {},
                   7832:                                         system => {},
                   7833:                                       );
                   7834:                     &Apache::lonuserutils::custom_role_privs($customroles->{$role},\%full,\%levels,\%levelscurrent);
                   7835:                     %currentprivs = %{$levelscurrent{'course'}};
                   7836:                 }
                   7837:             }
                   7838:             foreach my $item (split(/,/,$env{'course.'.$cid.'.internal.adhocpriv.'.$role})) {
                   7839:                 next if ($item eq '');
                   7840:                 my ($rule,$rest) = split(/=/,$item);
                   7841:                 next unless (($rule eq 'off') || ($rule eq 'on'));
                   7842:                 foreach my $priv (split(/:/,$rest)) {
                   7843:                     if ($priv ne '') {
                   7844:                         if ($rule eq 'off') {
                   7845:                             push(@{$overridden->{$role}{'off'}},$priv);
                   7846:                             if ($currentprivs{$priv}) {
                   7847:                                 push(@{$settings->{$role}{'off'}},$priv);
                   7848:                             }
                   7849:                         } else {
                   7850:                             push(@{$overridden->{$role}{'on'}},$priv);
                   7851:                             unless ($currentprivs{$priv}) {
                   7852:                                 push(@{$settings->{$role}{'on'}},$priv);
                   7853:                             }
                   7854:                         }
                   7855:                     }
                   7856:                 }
                   7857:             }
                   7858:         }
                   7859:     }
                   7860:     return;
                   7861: }
                   7862: 
                   7863: sub update_helpdeskaccess {
                   7864:     my ($r,$permission,$brcrum) = @_;
                   7865:     my $helpitem = 'Course_Helpdesk_Access';
                   7866:     push (@{$brcrum},
                   7867:              {href => '/adm/createuser?action=helpdesk',
                   7868:               text => 'Helpdesk Access',
                   7869:               help => $helpitem},
                   7870:              {href => '/adm/createuser?action=helpdesk',
                   7871:               text => 'Result',
                   7872:               help => $helpitem}
                   7873:          );
                   7874:     my $bread_crumbs_component = 'Helpdesk Staff Access';
                   7875:     my $args = { bread_crumbs           => $brcrum,
                   7876:                  bread_crumbs_component => $bread_crumbs_component};
                   7877: 
                   7878:     # print page header
                   7879:     $r->print(&header('',$args));
                   7880:     unless ((ref($permission) eq 'HASH') && ($permission->{'owner'})) {
                   7881:         $r->print('<p class="LC_error">'.&mt('You do not have permission to change helpdesk access.').'</p>');
                   7882:         return;
                   7883:     }
1.434     raeburn  7884:     my @accesstypes = ('all','dh','da','none','status','inc','exc');
1.428     raeburn  7885:     my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
                   7886:     my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
                   7887:     my $confname = $cdom.'-domainconfig';
                   7888:     my ($othertitle,$usertypes,$types) = &Apache::loncommon::sorted_inst_types($cdom);
                   7889:     my $crstype = &Apache::loncommon::course_type();
                   7890:     my %customroles = &get_domain_customroles($cdom,$confname);
                   7891:     my (%settings,%overridden);
                   7892:     &get_adhocrole_settings($env{'request.course.id'},\@accesstypes,
                   7893:                             $types,\%customroles,\%settings,\%overridden);
1.432     raeburn  7894:     my %domhelpdesk = &Apache::lonnet::get_active_domroles($cdom,['dh','da']);
1.428     raeburn  7895:     my (%changed,%storehash,@todelete);
                   7896: 
                   7897:     if (keys(%customroles)) {
                   7898:         my (%newsettings,@incrs);
                   7899:         foreach my $role (keys(%customroles)) {
                   7900:             $newsettings{$role} = {
                   7901:                                     access => '',
                   7902:                                     status => '',
                   7903:                                     exc    => '',
                   7904:                                     inc    => '',
                   7905:                                     on     => '',
                   7906:                                     off    => '',
                   7907:                                   };
                   7908:             my %current;
                   7909:             if (ref($settings{$role}) eq 'HASH') {
                   7910:                 %current = %{$settings{$role}};
                   7911:             }
                   7912:             if (ref($overridden{$role}) eq 'HASH') {
                   7913:                 $current{'overridden'} = $overridden{$role};
                   7914:             }
                   7915:             if ($env{'form.'.$role.'_incrs'}) {
                   7916:                 my $access = $env{'form.'.$role.'_access'};
                   7917:                 if (grep(/^\Q$access\E$/,@accesstypes)) {
                   7918:                     push(@incrs,$role);
                   7919:                     unless ($current{'access'} eq $access) {
                   7920:                         $changed{$role}{'access'} = 1;
1.430     raeburn  7921:                         $storehash{'internal.adhoc.'.$role} = $access;
1.428     raeburn  7922:                     }
                   7923:                     if ($access eq 'status') {
                   7924:                         my @statuses = &Apache::loncommon::get_env_multiple('form.'.$role.'_status');
                   7925:                         my @stored;
                   7926:                         my @shownstatus;
                   7927:                         if (ref($types) eq 'ARRAY') {
                   7928:                             foreach my $type (sort(@statuses)) {
                   7929:                                 if ($type eq 'default') {
                   7930:                                     push(@stored,$type);
                   7931:                                 } elsif (grep(/^\Q$type\E$/,@{$types})) {
                   7932:                                     push(@stored,$type);
                   7933:                                     push(@shownstatus,$usertypes->{$type});
                   7934:                                 }
                   7935:                             }
                   7936:                             if (grep(/^default$/,@statuses)) {
                   7937:                                 push(@shownstatus,$othertitle);
                   7938:                             }
                   7939:                             $storehash{'internal.adhoc.'.$role} .= '='.join(',',@stored);
                   7940:                         }
                   7941:                         $newsettings{$role}{'status'} = join(' '.&mt('or').' ',@shownstatus);
                   7942:                         if (ref($current{'status'}) eq 'ARRAY') {
                   7943:                             my @diffs = &Apache::loncommon::compare_arrays(\@stored,$current{'status'});
                   7944:                             if (@diffs) {
                   7945:                                 $changed{$role}{'status'} = 1;
                   7946:                             }
                   7947:                         } elsif (@stored) {
                   7948:                             $changed{$role}{'status'} = 1;
                   7949:                         }
                   7950:                     } elsif (($access eq 'inc') || ($access eq 'exc')) {
                   7951:                         my @personnel = &Apache::loncommon::get_env_multiple('form.'.$role.'_staff_'.$access);
                   7952:                         my @newspecstaff;
                   7953:                         my @stored;
                   7954:                         my @currstaff;
                   7955:                         foreach my $person (sort(@personnel)) {
                   7956:                             if ($domhelpdesk{$person}) {
1.430     raeburn  7957:                                 push(@stored,$person);
1.428     raeburn  7958:                             }
                   7959:                         }
                   7960:                         if (ref($current{$access}) eq 'ARRAY') {
                   7961:                             my @diffs = &Apache::loncommon::compare_arrays(\@stored,$current{$access});
                   7962:                             if (@diffs) {
                   7963:                                 $changed{$role}{$access} = 1;
                   7964:                             }
                   7965:                         } elsif (@stored) {
                   7966:                             $changed{$role}{$access} = 1;
                   7967:                         }
                   7968:                         $storehash{'internal.adhoc.'.$role} .= '='.join(',',@stored);
                   7969:                         foreach my $person (@stored) {
                   7970:                             my ($uname,$udom) = split(/:/,$person);
                   7971:                             push(@newspecstaff,&Apache::loncommon::aboutmewrapper(&Apache::loncommon::plainname($uname,$udom,'lastname'),$uname,$udom));
                   7972:                         }
                   7973:                         $newsettings{$role}{$access} = join(', ',sort(@newspecstaff));
                   7974:                     }
                   7975:                     $newsettings{$role}{'access'} = $access;
                   7976:                 }
                   7977:             } else {
                   7978:                 if (($current{'access'} ne '') && (grep(/^\Q$current{'access'}\E$/,@accesstypes))) {
                   7979:                     $changed{$role}{'access'} = 1;
                   7980:                     $newsettings{$role} = {};
                   7981:                     push(@todelete,'internal.adhoc.'.$role);
                   7982:                 }
                   7983:             }
                   7984:             if (($env{'form.'.$role.'_incrs'}) && ($env{'form.'.$role.'_access'} eq 'none')) {
                   7985:                 if (ref($current{'overridden'}) eq 'HASH') {
                   7986:                     push(@todelete,'internal.adhocpriv.'.$role);
                   7987:                 }
                   7988:             } else {
                   7989:                 my %full=();
                   7990:                 my %levels= (
                   7991:                              course => {},
                   7992:                              domain => {},
                   7993:                              system => {},
                   7994:                             );
                   7995:                 my %levelscurrent=(
                   7996:                                    course => {},
                   7997:                                    domain => {},
                   7998:                                    system => {},
                   7999:                                   );
                   8000:                 &Apache::lonuserutils::custom_role_privs($customroles{$role},\%full,\%levels,\%levelscurrent);
                   8001:                 my (@updatedon,@updatedoff,@override);
                   8002:                 @override = &Apache::loncommon::get_env_multiple('form.'.$role.'_override');
1.430     raeburn  8003:                 if (@override) {
1.428     raeburn  8004:                     foreach my $priv (sort(keys(%full))) {
                   8005:                         next unless ($levels{'course'}{$priv});
                   8006:                         if (grep(/^\Q$priv\E$/,@override)) {
                   8007:                             if ($levelscurrent{'course'}{$priv}) {
                   8008:                                 push(@updatedoff,$priv);
                   8009:                             } else {
                   8010:                                 push(@updatedon,$priv);
                   8011:                             }
                   8012:                         }
                   8013:                     }
                   8014:                 }
                   8015:                 if (@updatedon) {
1.430     raeburn  8016:                     $newsettings{$role}{'on'} = join('</li><li>', map { &Apache::lonnet::plaintext($_,$crstype) } (@updatedon));
1.428     raeburn  8017:                 }
                   8018:                 if (@updatedoff) {
                   8019:                     $newsettings{$role}{'off'} = join('</li><li>', map { &Apache::lonnet::plaintext($_,$crstype) } (@updatedoff));
                   8020:                 }
                   8021:                 if (ref($current{'overridden'}) eq 'HASH') {
                   8022:                     if (ref($current{'overridden'}{'on'}) eq 'ARRAY') {
                   8023:                         if (@updatedon) {
                   8024:                             my @diffs = &Apache::loncommon::compare_arrays(\@updatedon,$current{'overridden'}{'on'});
                   8025:                             if (@diffs) {
                   8026:                                 $changed{$role}{'on'} = 1;
                   8027:                             }
                   8028:                         } else {
                   8029:                             $changed{$role}{'on'} = 1;
                   8030:                         }
                   8031:                     } elsif (@updatedon) {
                   8032:                         $changed{$role}{'on'} = 1;
                   8033:                     }
                   8034:                     if (ref($current{'overridden'}{'off'}) eq 'ARRAY') {
                   8035:                         if (@updatedoff) {
                   8036:                             my @diffs = &Apache::loncommon::compare_arrays(\@updatedoff,$current{'overridden'}{'off'});
                   8037:                             if (@diffs) {
                   8038:                                 $changed{$role}{'off'} = 1;
                   8039:                             }
                   8040:                         } else {
                   8041:                             $changed{$role}{'off'} = 1;
                   8042:                         }
                   8043:                     } elsif (@updatedoff) {
                   8044:                         $changed{$role}{'off'} = 1;
                   8045:                     }
                   8046:                 } else {
                   8047:                     if (@updatedon) {
                   8048:                         $changed{$role}{'on'} = 1;
                   8049:                     }
                   8050:                     if (@updatedoff) {
                   8051:                         $changed{$role}{'off'} = 1;
                   8052:                     }
                   8053:                 }
                   8054:                 if (ref($changed{$role}) eq 'HASH') {
                   8055:                     if (($changed{$role}{'on'} || $changed{$role}{'off'})) {
                   8056:                         my $newpriv;
                   8057:                         if (@updatedon) {
                   8058:                             $newpriv = 'on='.join(':',@updatedon);
                   8059:                         }
                   8060:                         if (@updatedoff) {
                   8061:                             $newpriv .= ($newpriv ? ',' : '' ).'off='.join(':',@updatedoff);
                   8062:                         }
                   8063:                         if ($newpriv eq '') {
                   8064:                             push(@todelete,'internal.adhocpriv.'.$role);
                   8065:                         } else {
                   8066:                             $storehash{'internal.adhocpriv.'.$role} = $newpriv;
                   8067:                         }
                   8068:                     }
                   8069:                 }
                   8070:             }
                   8071:         }
                   8072:         if (@incrs) {
                   8073:             $storehash{'internal.adhocaccess'} = join(',',@incrs);
                   8074:         } elsif (@todelete) {
                   8075:             push(@todelete,'internal.adhocaccess');
                   8076:         }
                   8077:         if (keys(%changed)) {
                   8078:             my ($putres,$delres);
                   8079:             if (keys(%storehash)) {
                   8080:                 $putres = &Apache::lonnet::put('environment',\%storehash,$cdom,$cnum);
                   8081:                 my %newenvhash;
                   8082:                 foreach my $key (keys(%storehash)) {
                   8083:                     $newenvhash{'course.'.$env{'request.course.id'}.'.'.$key} = $storehash{$key};
                   8084:                 }
                   8085:                 &Apache::lonnet::appenv(\%newenvhash);
                   8086:             }
                   8087:             if (@todelete) {
                   8088:                 $delres = &Apache::lonnet::del('environment',\@todelete,$cdom,$cnum);
                   8089:                 foreach my $key (@todelete) {
                   8090:                     &Apache::lonnet::delenv('course.'.$env{'request.course.id'}.'.'.$key);
                   8091:                 }
                   8092:             }
                   8093:             if (($putres eq 'ok') || ($delres eq 'ok')) {
                   8094:                 my %domconfig = &Apache::lonnet::get_dom('configuration',['helpsettings'],$cdom);
                   8095:                 my (%domcurrent,%ordered,%description,%domusage);
                   8096:                 if (ref($domconfig{'helpsettings'}) eq 'HASH') {
                   8097:                     if (ref($domconfig{'helpsettings'}{'adhoc'}) eq 'HASH') {
                   8098:                         %domcurrent = %{$domconfig{'helpsettings'}{'adhoc'}};
                   8099:                     }
                   8100:                 }
                   8101:                 my $count = 0;
                   8102:                 foreach my $role (sort(keys(%customroles))) {
                   8103:                     my ($order,$desc);
                   8104:                     if (ref($domcurrent{$role}) eq 'HASH') {
                   8105:                         $order = $domcurrent{$role}{'order'};
                   8106:                         $desc = $domcurrent{$role}{'desc'};
                   8107:                     }
                   8108:                     if ($order eq '') {
                   8109:                         $order = $count;
                   8110:                     }
                   8111:                     $ordered{$order} = $role;
                   8112:                     if ($desc ne '') {
                   8113:                         $description{$role} = $desc;
                   8114:                     } else {
                   8115:                         $description{$role}= $role;
                   8116:                     }
                   8117:                     $count++;
                   8118:                 }
                   8119:                 my @roles_by_num = ();
                   8120:                 foreach my $item (sort {$a <=> $b } (keys(%ordered))) {
                   8121:                     push(@roles_by_num,$ordered{$item});
                   8122:                 }
                   8123:                 %domusage = &domain_adhoc_access(\%changed,\%domcurrent,\@accesstypes,$usertypes,$othertitle);
1.430     raeburn  8124:                 $r->print(&mt('Helpdesk access settings have been changed as follows').'<br />');
1.428     raeburn  8125:                 $r->print('<ul>');
                   8126:                 foreach my $role (@roles_by_num) {
                   8127:                     next unless (ref($changed{$role}) eq 'HASH');
                   8128:                     $r->print('<li>'.&mt('Ad hoc role').': <b>'.$description{$role}.'</b>'.
                   8129:                               '<ul>');
1.430     raeburn  8130:                     if ($changed{$role}{'access'} || $changed{$role}{'status'} || $changed{$role}{'inc'} || $changed{$role}{'exc'}) {
1.428     raeburn  8131:                         $r->print('<li>');
                   8132:                         if ($env{'form.'.$role.'_incrs'}) {
                   8133:                             if ($newsettings{$role}{'access'} eq 'all') {
                   8134:                                 $r->print(&mt('All helpdesk staff can access '.lc($crstype).' with this role.'));
1.434     raeburn  8135:                             } elsif ($newsettings{$role}{'access'} eq 'dh') {
1.433     raeburn  8136:                                 $r->print(&mt('Helpdesk staff can use this role if they have an active [_1] role',
                   8137:                                               &Apache::lonnet::plaintext('dh')));
1.434     raeburn  8138:                             } elsif ($newsettings{$role}{'access'} eq 'da') {
1.433     raeburn  8139:                                 $r->print(&mt('Helpdesk staff can use this role if they have an active [_1] role',
                   8140:                                               &Apache::lonnet::plaintext('da')));
1.428     raeburn  8141:                             } elsif ($newsettings{$role}{'access'} eq 'none') {
                   8142:                                 $r->print(&mt('No helpdesk staff can access '.lc($crstype).' with this role.'));
                   8143:                             } elsif ($newsettings{$role}{'access'} eq 'status') {
                   8144:                                 if ($newsettings{$role}{'status'}) {
                   8145:                                     my ($access,$rest) = split(/=/,$storehash{'internal.adhoc.'.$role});
1.430     raeburn  8146:                                     if (split(/,/,$rest) > 1) {
1.428     raeburn  8147:                                         $r->print(&mt('Helpdesk staff can use this role if their institutional type is one of: [_1].',
                   8148:                                                       $newsettings{$role}{'status'}));
                   8149:                                     } else {
                   8150:                                         $r->print(&mt('Helpdesk staff can use this role if their institutional type is: [_1].',
                   8151:                                                       $newsettings{$role}{'status'}));
                   8152:                                     }
                   8153:                                 } else {
                   8154:                                     $r->print(&mt('No helpdesk staff can access '.lc($crstype).' with this role.'));
                   8155:                                 }
                   8156:                             } elsif ($newsettings{$role}{'access'} eq 'exc') {
                   8157:                                 if ($newsettings{$role}{'exc'}) {
                   8158:                                     $r->print(&mt('Helpdesk staff who can use this role are as follows:').' '.$newsettings{$role}{'exc'}.'.');
                   8159:                                 } else {
                   8160:                                     $r->print(&mt('No helpdesk staff can access '.lc($crstype).' with this role.'));
                   8161:                                 }
                   8162:                             } elsif ($newsettings{$role}{'access'} eq 'inc') {
                   8163:                                 if ($newsettings{$role}{'inc'}) {
                   8164:                                     $r->print(&mt('All helpdesk staff may use this role except the following:').' '.$newsettings{$role}{'inc'}.'.');
                   8165:                                 } else {
                   8166:                                     $r->print(&mt('All helpdesk staff may use this role.'));
                   8167:                                 }
                   8168:                             }
                   8169:                         } else {
                   8170:                             $r->print(&mt('Default access set in the domain now applies.').'<br />'.
                   8171:                                       '<span class="LC_cusr_emph">'.$domusage{$role}.'</span>');
                   8172:                         }
                   8173:                         $r->print('</li>');
                   8174:                     }
                   8175:                     unless ($newsettings{$role}{'access'} eq 'none') {
                   8176:                         if ($changed{$role}{'off'}) {
                   8177:                             if ($newsettings{$role}{'off'}) {
                   8178:                                 $r->print('<li>'.&mt('Privileges which are available by default for this ad hoc role, but are disabled for this specific '.lc($crstype).':').
                   8179:                                           '<ul><li>'.$newsettings{$role}{'off'}.'</li></ul></li>');
                   8180:                             } else {
1.430     raeburn  8181:                                 $r->print('<li>'.&mt('All privileges available by default for this ad hoc role are enabled.').'</li>');
1.428     raeburn  8182:                             }
                   8183:                         }
1.430     raeburn  8184:                         if ($changed{$role}{'on'}) {
1.428     raeburn  8185:                             if ($newsettings{$role}{'on'}) {
                   8186:                                 $r->print('<li>'.&mt('Privileges which are not available by default for this ad hoc role, but are enabled for this specific '.lc($crstype).':').
                   8187:                                           '<ul><li>'.$newsettings{$role}{'on'}.'</li></ul></li>');
                   8188:                             } else {
1.430     raeburn  8189:                                 $r->print('<li>'.&mt('None of the privileges unavailable by default for this ad hoc role are enabled.').'</li>');
1.428     raeburn  8190:                             }
                   8191:                         }
                   8192:                     }
                   8193:                     $r->print('</ul></li>');
                   8194:                 }
                   8195:                 $r->print('</ul>');
                   8196:             }
                   8197:         } else {
1.430     raeburn  8198:             $r->print(&mt('No changes made to helpdesk access settings.'));
1.428     raeburn  8199:         }
                   8200:     }
                   8201:     return;
                   8202: }
                   8203: 
1.27      matthew  8204: #-------------------------------------------------- functions for &phase_two
1.160     raeburn  8205: sub user_search_result {
1.221     raeburn  8206:     my ($context,$srch) = @_;
1.160     raeburn  8207:     my %allhomes;
                   8208:     my %inst_matches;
                   8209:     my %srch_results;
1.181     raeburn  8210:     my ($response,$currstate,$forcenewuser,$dirsrchres);
1.183     raeburn  8211:     $srch->{'srchterm'} =~ s/\s+/ /g;
1.176     raeburn  8212:     if ($srch->{'srchby'} !~ /^(uname|lastname|lastfirst)$/) {
1.160     raeburn  8213:         $response = &mt('Invalid search.');
                   8214:     }
                   8215:     if ($srch->{'srchin'} !~ /^(crs|dom|alc|instd)$/) {
                   8216:         $response = &mt('Invalid search.');
                   8217:     }
1.177     raeburn  8218:     if ($srch->{'srchtype'} !~ /^(exact|contains|begins)$/) {
1.160     raeburn  8219:         $response = &mt('Invalid search.');
                   8220:     }
                   8221:     if ($srch->{'srchterm'} eq '') {
                   8222:         $response = &mt('You must enter a search term.');
                   8223:     }
1.183     raeburn  8224:     if ($srch->{'srchterm'} =~ /^\s+$/) {
                   8225:         $response = &mt('Your search term must contain more than just spaces.');
                   8226:     }
1.160     raeburn  8227:     if (($srch->{'srchin'} eq 'dom') || ($srch->{'srchin'} eq 'instd')) {
                   8228:         if (($srch->{'srchdomain'} eq '') || 
1.163     albertel 8229: 	    ! (&Apache::lonnet::domain($srch->{'srchdomain'}))) {
1.160     raeburn  8230:             $response = &mt('You must specify a valid domain when searching in a domain or institutional directory.')
                   8231:         }
                   8232:     }
                   8233:     if (($srch->{'srchin'} eq 'dom') || ($srch->{'srchin'} eq 'crs') ||
                   8234:         ($srch->{'srchin'} eq 'alc')) {
1.176     raeburn  8235:         if ($srch->{'srchby'} eq 'uname') {
1.243     raeburn  8236:             my $unamecheck = $srch->{'srchterm'};
                   8237:             if ($srch->{'srchtype'} eq 'contains') {
                   8238:                 if ($unamecheck !~ /^\w/) {
                   8239:                     $unamecheck = 'a'.$unamecheck; 
                   8240:                 }
                   8241:             }
                   8242:             if ($unamecheck !~ /^$match_username$/) {
1.176     raeburn  8243:                 $response = &mt('You must specify a valid username. Only the following are allowed: letters numbers - . @');
                   8244:             }
1.160     raeburn  8245:         }
                   8246:     }
1.180     raeburn  8247:     if ($response ne '') {
1.413     raeburn  8248:         $response = '<span class="LC_warning">'.$response.'</span><br />';
1.180     raeburn  8249:     }
1.160     raeburn  8250:     if ($srch->{'srchin'} eq 'instd') {
1.412     raeburn  8251:         my $instd_chk = &instdirectorysrch_check($srch);
1.160     raeburn  8252:         if ($instd_chk ne 'ok') {
1.412     raeburn  8253:             my $domd_chk = &domdirectorysrch_check($srch);
1.413     raeburn  8254:             $response .= '<span class="LC_warning">'.$instd_chk.'</span><br />';
1.412     raeburn  8255:             if ($domd_chk eq 'ok') {
1.435     raeburn  8256:                 $response .= &mt('You may want to search in the LON-CAPA domain instead of in the institutional directory.');
1.412     raeburn  8257:             }
1.415     raeburn  8258:             $response .= '<br />';
1.412     raeburn  8259:         }
                   8260:     } else {
1.417     raeburn  8261:         unless (($context eq 'requestcrs') && ($srch->{'srchtype'} eq 'exact')) {
1.412     raeburn  8262:             my $domd_chk = &domdirectorysrch_check($srch);
                   8263:             if ($domd_chk ne 'ok') {
                   8264:                 my $instd_chk = &instdirectorysrch_check($srch);
1.413     raeburn  8265:                 $response .= '<span class="LC_warning">'.$domd_chk.'</span><br />';
1.412     raeburn  8266:                 if ($instd_chk eq 'ok') {
1.435     raeburn  8267:                     $response .= &mt('You may want to search in the institutional directory instead of in the LON-CAPA domain.');
1.412     raeburn  8268:                 }
1.415     raeburn  8269:                 $response .= '<br />';
1.412     raeburn  8270:             }
1.160     raeburn  8271:         }
                   8272:     }
                   8273:     if ($response ne '') {
1.180     raeburn  8274:         return ($currstate,$response);
1.160     raeburn  8275:     }
                   8276:     if ($srch->{'srchby'} eq 'uname') {
                   8277:         if (($srch->{'srchin'} eq 'dom') || ($srch->{'srchin'} eq 'crs')) {
                   8278:             if ($env{'form.forcenew'}) {
                   8279:                 if ($srch->{'srchdomain'} ne $env{'request.role.domain'}) {
                   8280:                     my $uhome=&Apache::lonnet::homeserver($srch->{'srchterm'},$srch->{'srchdomain'});
                   8281:                     if ($uhome eq 'no_host') {
                   8282:                         my $domdesc = &Apache::lonnet::domain($env{'request.role.domain'},'description');
1.180     raeburn  8283:                         my $showdom = &display_domain_info($env{'request.role.domain'});
                   8284:                         $response = &mt('New users can only be created in the domain to which your current role belongs - [_1].',$showdom);
1.160     raeburn  8285:                     } else {
1.179     raeburn  8286:                         $currstate = 'modify';
1.160     raeburn  8287:                     }
                   8288:                 } else {
1.179     raeburn  8289:                     $currstate = 'modify';
1.160     raeburn  8290:                 }
                   8291:             } else {
                   8292:                 if ($srch->{'srchin'} eq 'dom') {
1.162     raeburn  8293:                     if ($srch->{'srchtype'} eq 'exact') {
                   8294:                         my $uhome=&Apache::lonnet::homeserver($srch->{'srchterm'},$srch->{'srchdomain'});
                   8295:                         if ($uhome eq 'no_host') {
1.179     raeburn  8296:                             ($currstate,$response,$forcenewuser) =
1.221     raeburn  8297:                                 &build_search_response($context,$srch,%srch_results);
1.162     raeburn  8298:                         } else {
1.179     raeburn  8299:                             $currstate = 'modify';
1.416     raeburn  8300:                             if ($env{'form.action'} eq 'accesslogs') {
                   8301:                                 $currstate = 'activity';
                   8302:                             }
1.310     raeburn  8303:                             my $uname = $srch->{'srchterm'};
                   8304:                             my $udom = $srch->{'srchdomain'};
                   8305:                             $srch_results{$uname.':'.$udom} =
                   8306:                                 { &Apache::lonnet::get('environment',
                   8307:                                                        ['firstname',
                   8308:                                                         'lastname',
                   8309:                                                         'permanentemail'],
                   8310:                                                          $udom,$uname)
                   8311:                                 };
1.162     raeburn  8312:                         }
                   8313:                     } else {
                   8314:                         %srch_results = &Apache::lonnet::usersearch($srch);
1.179     raeburn  8315:                         ($currstate,$response,$forcenewuser) =
1.221     raeburn  8316:                             &build_search_response($context,$srch,%srch_results);
1.160     raeburn  8317:                     }
                   8318:                 } else {
1.167     albertel 8319:                     my $courseusers = &get_courseusers();
1.162     raeburn  8320:                     if ($srch->{'srchtype'} eq 'exact') {
1.167     albertel 8321:                         if (exists($courseusers->{$srch->{'srchterm'}.':'.$srch->{'srchdomain'}})) {
1.179     raeburn  8322:                             $currstate = 'modify';
1.162     raeburn  8323:                         } else {
1.179     raeburn  8324:                             ($currstate,$response,$forcenewuser) =
1.221     raeburn  8325:                                 &build_search_response($context,$srch,%srch_results);
1.162     raeburn  8326:                         }
1.160     raeburn  8327:                     } else {
1.167     albertel 8328:                         foreach my $user (keys(%$courseusers)) {
1.162     raeburn  8329:                             my ($cuname,$cudomain) = split(/:/,$user);
                   8330:                             if ($cudomain eq $srch->{'srchdomain'}) {
1.177     raeburn  8331:                                 my $matched = 0;
                   8332:                                 if ($srch->{'srchtype'} eq 'begins') {
                   8333:                                     if ($cuname =~ /^\Q$srch->{'srchterm'}\E/i) {
                   8334:                                         $matched = 1;
                   8335:                                     }
                   8336:                                 } else {
                   8337:                                     if ($cuname =~ /\Q$srch->{'srchterm'}\E/i) {
                   8338:                                         $matched = 1;
                   8339:                                     }
                   8340:                                 }
                   8341:                                 if ($matched) {
1.167     albertel 8342:                                     $srch_results{$user} = 
                   8343: 					{&Apache::lonnet::get('environment',
                   8344: 							     ['firstname',
                   8345: 							      'lastname',
1.194     albertel 8346: 							      'permanentemail'],
                   8347: 							      $cudomain,$cuname)};
1.162     raeburn  8348:                                 }
                   8349:                             }
                   8350:                         }
1.179     raeburn  8351:                         ($currstate,$response,$forcenewuser) =
1.221     raeburn  8352:                             &build_search_response($context,$srch,%srch_results);
1.160     raeburn  8353:                     }
                   8354:                 }
                   8355:             }
                   8356:         } elsif ($srch->{'srchin'} eq 'alc') {
1.179     raeburn  8357:             $currstate = 'query';
1.160     raeburn  8358:         } elsif ($srch->{'srchin'} eq 'instd') {
1.181     raeburn  8359:             ($dirsrchres,%srch_results) = &Apache::lonnet::inst_directory_query($srch);
                   8360:             if ($dirsrchres eq 'ok') {
                   8361:                 ($currstate,$response,$forcenewuser) = 
1.221     raeburn  8362:                     &build_search_response($context,$srch,%srch_results);
1.181     raeburn  8363:             } else {
                   8364:                 my $showdom = &display_domain_info($srch->{'srchdomain'});
                   8365:                 $response = '<span class="LC_warning">'.
                   8366:                     &mt('Institutional directory search is not available in domain: [_1]',$showdom).
                   8367:                     '</span><br />'.
1.435     raeburn  8368:                     &mt('You may want to search in the LON-CAPA domain instead of in the institutional directory.').
1.415     raeburn  8369:                     '<br />'; 
1.181     raeburn  8370:             }
1.160     raeburn  8371:         }
                   8372:     } else {
                   8373:         if ($srch->{'srchin'} eq 'dom') {
                   8374:             %srch_results = &Apache::lonnet::usersearch($srch);
1.179     raeburn  8375:             ($currstate,$response,$forcenewuser) = 
1.221     raeburn  8376:                 &build_search_response($context,$srch,%srch_results); 
1.160     raeburn  8377:         } elsif ($srch->{'srchin'} eq 'crs') {
1.167     albertel 8378:             my $courseusers = &get_courseusers(); 
                   8379:             foreach my $user (keys(%$courseusers)) {
1.160     raeburn  8380:                 my ($uname,$udom) = split(/:/,$user);
                   8381:                 my %names = &Apache::loncommon::getnames($uname,$udom);
                   8382:                 my %emails = &Apache::loncommon::getemails($uname,$udom);
                   8383:                 if ($srch->{'srchby'} eq 'lastname') {
                   8384:                     if ((($srch->{'srchtype'} eq 'exact') && 
                   8385:                          ($names{'lastname'} eq $srch->{'srchterm'})) || 
1.177     raeburn  8386:                         (($srch->{'srchtype'} eq 'begins') &&
                   8387:                          ($names{'lastname'} =~ /^\Q$srch->{'srchterm'}\E/i)) ||
1.160     raeburn  8388:                         (($srch->{'srchtype'} eq 'contains') &&
                   8389:                          ($names{'lastname'} =~ /\Q$srch->{'srchterm'}\E/i))) {
                   8390:                         $srch_results{$user} = {firstname => $names{'firstname'},
                   8391:                                             lastname => $names{'lastname'},
                   8392:                                             permanentemail => $emails{'permanentemail'},
                   8393:                                            };
                   8394:                     }
                   8395:                 } elsif ($srch->{'srchby'} eq 'lastfirst') {
                   8396:                     my ($srchlast,$srchfirst) = split(/,/,$srch->{'srchterm'});
1.177     raeburn  8397:                     $srchlast =~ s/\s+$//;
                   8398:                     $srchfirst =~ s/^\s+//;
1.160     raeburn  8399:                     if ($srch->{'srchtype'} eq 'exact') {
                   8400:                         if (($names{'lastname'} eq $srchlast) &&
                   8401:                             ($names{'firstname'} eq $srchfirst)) {
                   8402:                             $srch_results{$user} = {firstname => $names{'firstname'},
                   8403:                                                 lastname => $names{'lastname'},
                   8404:                                                 permanentemail => $emails{'permanentemail'},
                   8405: 
                   8406:                                            };
                   8407:                         }
1.177     raeburn  8408:                     } elsif ($srch->{'srchtype'} eq 'begins') {
                   8409:                         if (($names{'lastname'} =~ /^\Q$srchlast\E/i) &&
                   8410:                             ($names{'firstname'} =~ /^\Q$srchfirst\E/i)) {
                   8411:                             $srch_results{$user} = {firstname => $names{'firstname'},
                   8412:                                                 lastname => $names{'lastname'},
                   8413:                                                 permanentemail => $emails{'permanentemail'},
                   8414:                                                };
                   8415:                         }
                   8416:                     } else {
1.160     raeburn  8417:                         if (($names{'lastname'} =~ /\Q$srchlast\E/i) && 
                   8418:                             ($names{'firstname'} =~ /\Q$srchfirst\E/i)) {
                   8419:                             $srch_results{$user} = {firstname => $names{'firstname'},
                   8420:                                                 lastname => $names{'lastname'},
                   8421:                                                 permanentemail => $emails{'permanentemail'},
                   8422:                                                };
                   8423:                         }
                   8424:                     }
                   8425:                 }
                   8426:             }
1.179     raeburn  8427:             ($currstate,$response,$forcenewuser) = 
1.221     raeburn  8428:                 &build_search_response($context,$srch,%srch_results); 
1.160     raeburn  8429:         } elsif ($srch->{'srchin'} eq 'alc') {
1.179     raeburn  8430:             $currstate = 'query';
1.160     raeburn  8431:         } elsif ($srch->{'srchin'} eq 'instd') {
1.181     raeburn  8432:             ($dirsrchres,%srch_results) = &Apache::lonnet::inst_directory_query($srch); 
                   8433:             if ($dirsrchres eq 'ok') {
                   8434:                 ($currstate,$response,$forcenewuser) = 
1.221     raeburn  8435:                     &build_search_response($context,$srch,%srch_results);
1.181     raeburn  8436:             } else {
1.412     raeburn  8437:                 my $showdom = &display_domain_info($srch->{'srchdomain'});
                   8438:                 $response = '<span class="LC_warning">'.
1.181     raeburn  8439:                     &mt('Institutional directory search is not available in domain: [_1]',$showdom).
                   8440:                     '</span><br />'.
1.435     raeburn  8441:                     &mt('You may want to search in the LON-CAPA domain instead of in the institutional directory.').
1.415     raeburn  8442:                     '<br />';
1.181     raeburn  8443:             }
1.160     raeburn  8444:         }
                   8445:     }
1.179     raeburn  8446:     return ($currstate,$response,$forcenewuser,\%srch_results);
1.160     raeburn  8447: }
                   8448: 
1.412     raeburn  8449: sub domdirectorysrch_check {
                   8450:     my ($srch) = @_;
                   8451:     my $response;
                   8452:     my %dom_inst_srch = &Apache::lonnet::get_dom('configuration',
                   8453:                                              ['directorysrch'],$srch->{'srchdomain'});
                   8454:     my $showdom = &display_domain_info($srch->{'srchdomain'});
                   8455:     if (ref($dom_inst_srch{'directorysrch'}) eq 'HASH') {
                   8456:         if ($dom_inst_srch{'directorysrch'}{'lcavailable'} eq '0') {
                   8457:             return &mt('LON-CAPA directory search is not available in domain: [_1]',$showdom);
                   8458:         }
                   8459:         if ($dom_inst_srch{'directorysrch'}{'lclocalonly'}) {
                   8460:             if ($env{'request.role.domain'} ne $srch->{'srchdomain'}) {
                   8461:                 return &mt('LON-CAPA directory search in domain: [_1] is only allowed for users with a current role in the domain.',$showdom);
                   8462:             }
                   8463:         }
                   8464:     }
                   8465:     return 'ok';
                   8466: }
                   8467: 
                   8468: sub instdirectorysrch_check {
1.160     raeburn  8469:     my ($srch) = @_;
                   8470:     my $can_search = 0;
                   8471:     my $response;
                   8472:     my %dom_inst_srch = &Apache::lonnet::get_dom('configuration',
                   8473:                                              ['directorysrch'],$srch->{'srchdomain'});
1.180     raeburn  8474:     my $showdom = &display_domain_info($srch->{'srchdomain'});
1.160     raeburn  8475:     if (ref($dom_inst_srch{'directorysrch'}) eq 'HASH') {
                   8476:         if (!$dom_inst_srch{'directorysrch'}{'available'}) {
1.180     raeburn  8477:             return &mt('Institutional directory search is not available in domain: [_1]',$showdom); 
1.160     raeburn  8478:         }
                   8479:         if ($dom_inst_srch{'directorysrch'}{'localonly'}) {
                   8480:             if ($env{'request.role.domain'} ne $srch->{'srchdomain'}) {
1.180     raeburn  8481:                 return &mt('Institutional directory search in domain: [_1] is only allowed for users with a current role in the domain.',$showdom); 
1.160     raeburn  8482:             }
                   8483:             my @usertypes = split(/:/,$env{'environment.inststatus'});
                   8484:             if (!@usertypes) {
                   8485:                 push(@usertypes,'default');
                   8486:             }
                   8487:             if (ref($dom_inst_srch{'directorysrch'}{'cansearch'}) eq 'ARRAY') {
                   8488:                 foreach my $type (@usertypes) {
                   8489:                     if (grep(/^\Q$type\E$/,@{$dom_inst_srch{'directorysrch'}{'cansearch'}})) {
                   8490:                         $can_search = 1;
                   8491:                         last;
                   8492:                     }
                   8493:                 }
                   8494:             }
                   8495:             if (!$can_search) {
                   8496:                 my ($insttypes,$order) = &Apache::lonnet::retrieve_inst_usertypes($srch->{'srchdomain'});
                   8497:                 my @longtypes; 
                   8498:                 foreach my $item (@usertypes) {
1.229     raeburn  8499:                     if (defined($insttypes->{$item})) { 
                   8500:                         push (@longtypes,$insttypes->{$item});
                   8501:                     } elsif ($item eq 'default') {
                   8502:                         push (@longtypes,&mt('other')); 
                   8503:                     }
1.160     raeburn  8504:                 }
                   8505:                 my $insttype_str = join(', ',@longtypes); 
1.180     raeburn  8506:                 return &mt('Institutional directory search in domain: [_1] is not available to your user type: ',$showdom).$insttype_str;
1.229     raeburn  8507:             }
1.160     raeburn  8508:         } else {
                   8509:             $can_search = 1;
                   8510:         }
                   8511:     } else {
1.180     raeburn  8512:         return &mt('Institutional directory search has not been configured for domain: [_1]',$showdom);
1.160     raeburn  8513:     }
                   8514:     my %longtext = &Apache::lonlocal::texthash (
1.167     albertel 8515:                        uname     => 'username',
1.160     raeburn  8516:                        lastfirst => 'last name, first name',
1.167     albertel 8517:                        lastname  => 'last name',
1.172     raeburn  8518:                        contains  => 'contains',
1.178     raeburn  8519:                        exact     => 'as exact match to',
                   8520:                        begins    => 'begins with',
1.160     raeburn  8521:                    );
                   8522:     if ($can_search) {
                   8523:         if (ref($dom_inst_srch{'directorysrch'}{'searchby'}) eq 'ARRAY') {
                   8524:             if (!grep(/^\Q$srch->{'srchby'}\E$/,@{$dom_inst_srch{'directorysrch'}{'searchby'}})) {
1.180     raeburn  8525:                 return &mt('Institutional directory search in domain: [_1] is not available for searching by "[_2]"',$showdom,$longtext{$srch->{'srchby'}});
1.160     raeburn  8526:             }
                   8527:         } else {
1.180     raeburn  8528:             return &mt('Institutional directory search in domain: [_1] is not available.', $showdom);
1.160     raeburn  8529:         }
                   8530:     }
                   8531:     if ($can_search) {
1.178     raeburn  8532:         if (ref($dom_inst_srch{'directorysrch'}{'searchtypes'}) eq 'ARRAY') {
                   8533:             if (grep(/^\Q$srch->{'srchtype'}\E/,@{$dom_inst_srch{'directorysrch'}{'searchtypes'}})) {
                   8534:                 return 'ok';
                   8535:             } else {
1.180     raeburn  8536:                 return &mt('Institutional directory search in domain [_1] is not available for the requested search type: "[_2]"',$showdom,$longtext{$srch->{'srchtype'}});
1.178     raeburn  8537:             }
                   8538:         } else {
                   8539:             if ((($dom_inst_srch{'directorysrch'}{'searchtypes'} eq 'specify') &&
                   8540:                  ($srch->{'srchtype'} eq 'exact' || $srch->{'srchtype'} eq 'contains')) ||
                   8541:                 ($dom_inst_srch{'directorysrch'}{'searchtypes'} eq $srch->{'srchtype'})) {
                   8542:                 return 'ok';
                   8543:             } else {
1.180     raeburn  8544:                 return &mt('Institutional directory search in domain [_1] is not available for the requested search type: "[_2]"',$showdom,$longtext{$srch->{'srchtype'}});
1.178     raeburn  8545:             }
1.160     raeburn  8546:         }
                   8547:     }
                   8548: }
                   8549: 
                   8550: sub get_courseusers {
                   8551:     my %advhash;
1.167     albertel 8552:     my $classlist = &Apache::loncoursedata::get_classlist();
1.160     raeburn  8553:     my %coursepersonnel=&Apache::lonnet::get_course_adv_roles();
                   8554:     foreach my $role (sort(keys(%coursepersonnel))) {
                   8555:         foreach my $user (split(/\,/,$coursepersonnel{$role})) {
1.167     albertel 8556: 	    if (!exists($classlist->{$user})) {
                   8557: 		$classlist->{$user} = [];
                   8558: 	    }
1.160     raeburn  8559:         }
                   8560:     }
1.167     albertel 8561:     return $classlist;
1.160     raeburn  8562: }
                   8563: 
                   8564: sub build_search_response {
1.221     raeburn  8565:     my ($context,$srch,%srch_results) = @_;
1.179     raeburn  8566:     my ($currstate,$response,$forcenewuser);
1.160     raeburn  8567:     my %names = (
1.330     bisitz   8568:           'uname'     => 'username',
                   8569:           'lastname'  => 'last name',
1.160     raeburn  8570:           'lastfirst' => 'last name, first name',
1.330     bisitz   8571:           'crs'       => 'this course',
                   8572:           'dom'       => 'LON-CAPA domain',
                   8573:           'instd'     => 'the institutional directory for domain',
1.160     raeburn  8574:     );
                   8575: 
                   8576:     my %single = (
1.180     raeburn  8577:                    begins   => 'A match',
1.160     raeburn  8578:                    contains => 'A match',
1.180     raeburn  8579:                    exact    => 'An exact match',
1.160     raeburn  8580:                  );
                   8581:     my %nomatch = (
1.180     raeburn  8582:                    begins   => 'No match',
1.160     raeburn  8583:                    contains => 'No match',
1.180     raeburn  8584:                    exact    => 'No exact match',
1.160     raeburn  8585:                   );
                   8586:     if (keys(%srch_results) > 1) {
1.179     raeburn  8587:         $currstate = 'select';
1.160     raeburn  8588:     } else {
                   8589:         if (keys(%srch_results) == 1) {
1.416     raeburn  8590:             if ($env{'form.action'} eq 'accesslogs') {
                   8591:                 $currstate = 'activity';
                   8592:             } else {
                   8593:                 $currstate = 'modify';
                   8594:             }
1.180     raeburn  8595:             $response = &mt("$single{$srch->{'srchtype'}} was found for the $names{$srch->{'srchby'}} ([_1]) in $names{$srch->{'srchin'}}.",$srch->{'srchterm'});
                   8596:             if ($srch->{'srchin'} eq 'dom' || $srch->{'srchin'} eq 'instd') {
1.330     bisitz   8597:                 $response .= ': '.&display_domain_info($srch->{'srchdomain'});
1.180     raeburn  8598:             }
1.330     bisitz   8599:         } else { # Search has nothing found. Prepare message to user.
                   8600:             $response = '<span class="LC_warning">';
1.180     raeburn  8601:             if ($srch->{'srchin'} eq 'dom' || $srch->{'srchin'} eq 'instd') {
1.330     bisitz   8602:                 $response .= &mt("$nomatch{$srch->{'srchtype'}} found for the $names{$srch->{'srchby'}} [_1] in $names{$srch->{'srchin'}}: [_2]",
                   8603:                                  '<b>'.$srch->{'srchterm'}.'</b>',
                   8604:                                  &display_domain_info($srch->{'srchdomain'}));
                   8605:             } else {
                   8606:                 $response .= &mt("$nomatch{$srch->{'srchtype'}} found for the $names{$srch->{'srchby'}} [_1] in $names{$srch->{'srchin'}}.",
                   8607:                                  '<b>'.$srch->{'srchterm'}.'</b>');
1.180     raeburn  8608:             }
                   8609:             $response .= '</span>';
1.330     bisitz   8610: 
1.160     raeburn  8611:             if ($srch->{'srchin'} ne 'alc') {
                   8612:                 $forcenewuser = 1;
                   8613:                 my $cansrchinst = 0; 
                   8614:                 if ($srch->{'srchdomain'}) {
                   8615:                     my %domconfig = &Apache::lonnet::get_dom('configuration',['directorysrch'],$srch->{'srchdomain'});
                   8616:                     if (ref($domconfig{'directorysrch'}) eq 'HASH') {
                   8617:                         if ($domconfig{'directorysrch'}{'available'}) {
                   8618:                             $cansrchinst = 1;
                   8619:                         } 
                   8620:                     }
                   8621:                 }
1.180     raeburn  8622:                 if ((($srch->{'srchby'} eq 'lastfirst') || 
                   8623:                      ($srch->{'srchby'} eq 'lastname')) &&
                   8624:                     ($srch->{'srchin'} eq 'dom')) {
                   8625:                     if ($cansrchinst) {
                   8626:                         $response .= '<br />'.&mt('You may want to broaden your search to a search of the institutional directory for the domain.');
1.160     raeburn  8627:                     }
                   8628:                 }
1.180     raeburn  8629:                 if ($srch->{'srchin'} eq 'crs') {
                   8630:                     $response .= '<br />'.&mt('You may want to broaden your search to the selected LON-CAPA domain.');
                   8631:                 }
                   8632:             }
1.305     raeburn  8633:             my $createdom = $env{'request.role.domain'};
                   8634:             if ($context eq 'requestcrs') {
                   8635:                 if ($env{'form.coursedom'} ne '') {
                   8636:                     $createdom = $env{'form.coursedom'};
                   8637:                 }
                   8638:             }
1.416     raeburn  8639:             unless (($env{'form.action'} eq 'accesslogs') || (($srch->{'srchby'} eq 'uname') && ($srch->{'srchin'} eq 'dom') &&
                   8640:                     ($srch->{'srchtype'} eq 'exact') && ($srch->{'srchdomain'} eq $createdom))) {
1.221     raeburn  8641:                 my $cancreate =
1.305     raeburn  8642:                     &Apache::lonuserutils::can_create_user($createdom,$context);
                   8643:                 my $targetdom = '<span class="LC_cusr_emph">'.$createdom.'</span>';
1.221     raeburn  8644:                 if ($cancreate) {
1.305     raeburn  8645:                     my $showdom = &display_domain_info($createdom); 
1.266     bisitz   8646:                     $response .= '<br /><br />'
                   8647:                                 .'<b>'.&mt('To add a new user:').'</b>'
1.305     raeburn  8648:                                 .'<br />';
                   8649:                     if ($context eq 'requestcrs') {
                   8650:                         $response .= &mt("(You can only define new users in the new course's domain - [_1])",$targetdom);
                   8651:                     } else {
                   8652:                         $response .= &mt("(You can only create new users in your current role's domain - [_1])",$targetdom);
                   8653:                     }
                   8654:                     $response .='<ul><li>'
1.266     bisitz   8655:                                 .&mt("Set 'Domain/institution to search' to: [_1]",'<span class="LC_cusr_emph">'.$showdom.'</span>')
                   8656:                                 .'</li><li>'
                   8657:                                 .&mt("Set 'Search criteria' to: [_1]username is ..... in selected LON-CAPA domain[_2]",'<span class="LC_cusr_emph">','</span>')
                   8658:                                 .'</li><li>'
                   8659:                                 .&mt('Provide the proposed username')
                   8660:                                 .'</li><li>'
                   8661:                                 .&mt("Click 'Search'")
                   8662:                                 .'</li></ul><br />';
1.221     raeburn  8663:                 } else {
1.422     raeburn  8664:                     unless (($context eq 'domain') && ($env{'form.action'} eq 'singleuser')) {
                   8665:                         my $helplink = ' href="javascript:helpMenu('."'display'".')"';
                   8666:                         $response .= '<br /><br />';
                   8667:                         if ($context eq 'requestcrs') {
                   8668:                             $response .= &mt("You are not authorized to define new users in the new course's domain - [_1].",$targetdom);
                   8669:                         } else {
                   8670:                             $response .= &mt("You are not authorized to create new users in your current role's domain - [_1].",$targetdom);
                   8671:                         }
                   8672:                         $response .= '<br />'
                   8673:                                      .&mt('Please contact the [_1]helpdesk[_2] if you need to create a new user.'
                   8674:                                         ,' <a'.$helplink.'>'
                   8675:                                         ,'</a>')
                   8676:                                      .'<br />';
1.305     raeburn  8677:                     }
1.221     raeburn  8678:                 }
1.160     raeburn  8679:             }
                   8680:         }
                   8681:     }
1.179     raeburn  8682:     return ($currstate,$response,$forcenewuser);
1.160     raeburn  8683: }
                   8684: 
1.180     raeburn  8685: sub display_domain_info {
                   8686:     my ($dom) = @_;
                   8687:     my $output = $dom;
                   8688:     if ($dom ne '') { 
                   8689:         my $domdesc = &Apache::lonnet::domain($dom,'description');
                   8690:         if ($domdesc ne '') {
                   8691:             $output .= ' <span class="LC_cusr_emph">('.$domdesc.')</span>';
                   8692:         }
                   8693:     }
                   8694:     return $output;
                   8695: }
                   8696: 
1.160     raeburn  8697: sub crumb_utilities {
                   8698:     my %elements = (
                   8699:        crtuser => {
                   8700:            srchterm => 'text',
1.172     raeburn  8701:            srchin => 'selectbox',
1.160     raeburn  8702:            srchby => 'selectbox',
                   8703:            srchtype => 'selectbox',
                   8704:            srchdomain => 'selectbox',
                   8705:        },
1.207     raeburn  8706:        crtusername => {
                   8707:            srchterm => 'text',
                   8708:            srchdomain => 'selectbox',
                   8709:        },
1.160     raeburn  8710:        docustom => {
                   8711:            rolename => 'selectbox',
                   8712:            newrolename => 'textbox',
                   8713:        },
1.179     raeburn  8714:        studentform => {
                   8715:            srchterm => 'text',
                   8716:            srchin => 'selectbox',
                   8717:            srchby => 'selectbox',
                   8718:            srchtype => 'selectbox',
                   8719:            srchdomain => 'selectbox',
                   8720:        },
1.160     raeburn  8721:     );
                   8722: 
                   8723:     my $jsback .= qq|
                   8724: function backPage(formname,prevphase,prevstate) {
1.211     raeburn  8725:     if (typeof prevphase == 'undefined') {
                   8726:         formname.phase.value = '';
                   8727:     }
                   8728:     else {  
                   8729:         formname.phase.value = prevphase;
                   8730:     }
                   8731:     if (typeof prevstate == 'undefined') {
                   8732:         formname.currstate.value = '';
                   8733:     }
                   8734:     else {
                   8735:         formname.currstate.value = prevstate;
                   8736:     }
1.160     raeburn  8737:     formname.submit();
                   8738: }
                   8739: |;
                   8740:     return ($jsback,\%elements);
                   8741: }
                   8742: 
1.26      matthew  8743: sub course_level_table {
1.375     raeburn  8744:     my ($inccourses,$showcredits,$defaultcredits) = @_;
                   8745:     return unless (ref($inccourses) eq 'HASH');
1.26      matthew  8746:     my $table = '';
1.62      www      8747: # Custom Roles?
                   8748: 
1.190     raeburn  8749:     my %customroles=&Apache::lonuserutils::my_custom_roles();
1.89      raeburn  8750:     my %lt=&Apache::lonlocal::texthash(
                   8751:             'exs'  => "Existing sections",
                   8752:             'new'  => "Define new section",
                   8753:             'ssd'  => "Set Start Date",
                   8754:             'sed'  => "Set End Date",
1.131     raeburn  8755:             'crl'  => "Course Level",
1.89      raeburn  8756:             'act'  => "Activate",
                   8757:             'rol'  => "Role",
                   8758:             'ext'  => "Extent",
1.113     raeburn  8759:             'grs'  => "Section",
1.375     raeburn  8760:             'crd'  => "Credits",
1.89      raeburn  8761:             'sta'  => "Start",
                   8762:             'end'  => "End"
                   8763:     );
1.62      www      8764: 
1.375     raeburn  8765:     foreach my $protectedcourse (sort(keys(%{$inccourses}))) {
1.135     raeburn  8766: 	my $thiscourse=$protectedcourse;
1.26      matthew  8767: 	$thiscourse=~s:_:/:g;
                   8768: 	my %coursedata=&Apache::lonnet::coursedescription($thiscourse);
1.365     raeburn  8769:         my $isowner = &Apache::lonuserutils::is_courseowner($protectedcourse,$coursedata{'internal.courseowner'});
1.26      matthew  8770: 	my $area=$coursedata{'description'};
1.321     raeburn  8771:         my $crstype=$coursedata{'type'};
1.135     raeburn  8772: 	if (!defined($area)) { $area=&mt('Unavailable course').': '.$protectedcourse; }
1.89      raeburn  8773: 	my ($domain,$cnum)=split(/\//,$thiscourse);
1.115     albertel 8774:         my %sections_count;
1.101     albertel 8775:         if (defined($env{'request.course.id'})) {
                   8776:             if ($env{'request.course.id'} eq $domain.'_'.$cnum) {
1.115     albertel 8777:                 %sections_count = 
                   8778: 		    &Apache::loncommon::get_sections($domain,$cnum);
1.92      raeburn  8779:             }
                   8780:         }
1.321     raeburn  8781:         my @roles = &Apache::lonuserutils::roles_by_context('course','',$crstype);
1.213     raeburn  8782: 	foreach my $role (@roles) {
1.321     raeburn  8783:             my $plrole=&Apache::lonnet::plaintext($role,$crstype);
1.329     raeburn  8784: 	    if ((&Apache::lonnet::allowed('c'.$role,$thiscourse)) ||
                   8785:                 ((($role eq 'cc') || ($role eq 'co')) && ($isowner))) {
1.221     raeburn  8786:                 $table .= &course_level_row($protectedcourse,$role,$area,$domain,
1.375     raeburn  8787:                                             $plrole,\%sections_count,\%lt,
1.402     raeburn  8788:                                             $showcredits,$defaultcredits,$crstype);
1.221     raeburn  8789:             } elsif ($env{'request.course.sec'} ne '') {
                   8790:                 if (&Apache::lonnet::allowed('c'.$role,$thiscourse.'/'.
                   8791:                                              $env{'request.course.sec'})) {
                   8792:                     $table .= &course_level_row($protectedcourse,$role,$area,$domain,
1.375     raeburn  8793:                                                 $plrole,\%sections_count,\%lt,
1.402     raeburn  8794:                                                 $showcredits,$defaultcredits,$crstype);
1.26      matthew  8795:                 }
                   8796:             }
                   8797:         }
1.221     raeburn  8798:         if (&Apache::lonnet::allowed('ccr',$thiscourse)) {
1.324     raeburn  8799:             foreach my $cust (sort(keys(%customroles))) {
                   8800:                 next if ($crstype eq 'Community' && $customroles{$cust} =~ /bre\&S/);
1.221     raeburn  8801:                 my $role = 'cr_cr_'.$env{'user.domain'}.'_'.$env{'user.name'}.'_'.$cust;
                   8802:                 $table .= &course_level_row($protectedcourse,$role,$area,$domain,
1.402     raeburn  8803:                                             $cust,\%sections_count,\%lt,
                   8804:                                             $showcredits,$defaultcredits,$crstype);
1.221     raeburn  8805:             }
1.62      www      8806: 	}
1.26      matthew  8807:     }
                   8808:     return '' if ($table eq ''); # return nothing if there is nothing 
                   8809:                                  # in the table
1.188     raeburn  8810:     my $result;
                   8811:     if (!$env{'request.course.id'}) {
                   8812:         $result = '<h4>'.$lt{'crl'}.'</h4>'."\n";
                   8813:     }
                   8814:     $result .= 
1.136     raeburn  8815: &Apache::loncommon::start_data_table().
                   8816: &Apache::loncommon::start_data_table_header_row().
1.375     raeburn  8817: '<th>'.$lt{'act'}.'</th><th>'.$lt{'rol'}.'</th>'."\n".
1.402     raeburn  8818: '<th>'.$lt{'ext'}.'</th><th>'."\n";
                   8819:     if ($showcredits) {
                   8820:         $result .= $lt{'crd'}.'</th>';
                   8821:     }
                   8822:     $result .=
1.375     raeburn  8823: '<th>'.$lt{'grs'}.'</th><th>'.$lt{'sta'}.'</th>'."\n".
                   8824: '<th>'.$lt{'end'}.'</th>'.
1.136     raeburn  8825: &Apache::loncommon::end_data_table_header_row().
                   8826: $table.
                   8827: &Apache::loncommon::end_data_table();
1.26      matthew  8828:     return $result;
                   8829: }
1.88      raeburn  8830: 
1.221     raeburn  8831: sub course_level_row {
1.375     raeburn  8832:     my ($protectedcourse,$role,$area,$domain,$plrole,$sections_count,
1.402     raeburn  8833:         $lt,$showcredits,$defaultcredits,$crstype) = @_;
1.375     raeburn  8834:     my $creditem;
1.222     raeburn  8835:     my $row = &Apache::loncommon::start_data_table_row().
                   8836:               ' <td><input type="checkbox" name="act_'.
                   8837:               $protectedcourse.'_'.$role.'" /></td>'."\n".
                   8838:               ' <td>'.$plrole.'</td>'."\n".
                   8839:               ' <td>'.$area.'<br />Domain: '.$domain.'</td>'."\n";
1.402     raeburn  8840:     if (($showcredits) && ($role eq 'st') && ($crstype eq 'Course')) {
1.375     raeburn  8841:         $row .= 
                   8842:             '<td><input type="text" name="credits_'.$protectedcourse.'_'.
                   8843:             $role.'" size="3" value="'.$defaultcredits.'" /></td>';
                   8844:     } else {
                   8845:         $row .= '<td>&nbsp;</td>';
                   8846:     }
1.322     raeburn  8847:     if (($role eq 'cc') || ($role eq 'co')) {
1.222     raeburn  8848:         $row .= '<td>&nbsp;</td>';
1.221     raeburn  8849:     } elsif ($env{'request.course.sec'} ne '') {
1.222     raeburn  8850:         $row .= ' <td><input type="hidden" value="'.
                   8851:                 $env{'request.course.sec'}.'" '.
                   8852:                 'name="sec_'.$protectedcourse.'_'.$role.'" />'.
                   8853:                 $env{'request.course.sec'}.'</td>';
1.221     raeburn  8854:     } else {
                   8855:         if (ref($sections_count) eq 'HASH') {
                   8856:             my $currsec = 
                   8857:                 &Apache::lonuserutils::course_sections($sections_count,
                   8858:                                                        $protectedcourse.'_'.$role);
1.222     raeburn  8859:             $row .= '<td><table class="LC_createuser">'."\n".
                   8860:                     '<tr class="LC_section_row">'."\n".
                   8861:                     ' <td valign="top">'.$lt->{'exs'}.'<br />'.
                   8862:                        $currsec.'</td>'."\n".
                   8863:                      ' <td>&nbsp;&nbsp;</td>'."\n".
                   8864:                      ' <td valign="top">&nbsp;'.$lt->{'new'}.'<br />'.
1.221     raeburn  8865:                      '<input type="text" name="newsec_'.$protectedcourse.'_'.$role.
                   8866:                      '" value="" />'.
                   8867:                      '<input type="hidden" '.
                   8868:                      'name="sec_'.$protectedcourse.'_'.$role.'" /></td>'."\n".
1.222     raeburn  8869:                      '</tr></table></td>'."\n";
1.221     raeburn  8870:         } else {
1.222     raeburn  8871:             $row .= '<td><input type="text" size="10" '.
1.375     raeburn  8872:                     'name="sec_'.$protectedcourse.'_'.$role.'" /></td>'."\n";
1.221     raeburn  8873:         }
                   8874:     }
1.222     raeburn  8875:     $row .= <<ENDTIMEENTRY;
                   8876: <td><input type="hidden" name="start_$protectedcourse\_$role" value="" />
1.221     raeburn  8877: <a href=
                   8878: "javascript:pjump('date_start','Start Date $plrole',document.cu.start_$protectedcourse\_$role.value,'start_$protectedcourse\_$role','cu.pres','dateset')">$lt->{'ssd'}</a></td>
1.222     raeburn  8879: <td><input type="hidden" name="end_$protectedcourse\_$role" value="" />
1.221     raeburn  8880: <a href=
                   8881: "javascript:pjump('date_end','End Date $plrole',document.cu.end_$protectedcourse\_$role.value,'end_$protectedcourse\_$role','cu.pres','dateset')">$lt->{'sed'}</a></td>
                   8882: ENDTIMEENTRY
1.222     raeburn  8883:     $row .= &Apache::loncommon::end_data_table_row();
                   8884:     return $row;
1.221     raeburn  8885: }
                   8886: 
1.88      raeburn  8887: sub course_level_dc {
1.375     raeburn  8888:     my ($dcdom,$showcredits) = @_;
1.190     raeburn  8889:     my %customroles=&Apache::lonuserutils::my_custom_roles();
1.213     raeburn  8890:     my @roles = &Apache::lonuserutils::roles_by_context('course');
1.88      raeburn  8891:     my $hiddenitems = '<input type="hidden" name="dcdomain" value="'.$dcdom.'" />'.
                   8892:                       '<input type="hidden" name="origdom" value="'.$dcdom.'" />'.
1.133     raeburn  8893:                       '<input type="hidden" name="dccourse" value="" />';
1.355     www      8894:     my $courseform=&Apache::loncommon::selectcourse_link
1.356     raeburn  8895:             ('cu','dccourse','dcdomain','coursedesc',undef,undef,'Select','crstype');
1.375     raeburn  8896:     my $credit_elem;
                   8897:     if ($showcredits) {
                   8898:         $credit_elem = 'credits';
                   8899:     }
                   8900:     my $cb_jscript = &Apache::loncommon::coursebrowser_javascript($dcdom,'currsec','cu','role','Course/Community Browser',$credit_elem);
1.88      raeburn  8901:     my %lt=&Apache::lonlocal::texthash(
                   8902:                     'rol'  => "Role",
1.113     raeburn  8903:                     'grs'  => "Section",
1.88      raeburn  8904:                     'exs'  => "Existing sections",
                   8905:                     'new'  => "Define new section", 
                   8906:                     'sta'  => "Start",
                   8907:                     'end'  => "End",
                   8908:                     'ssd'  => "Set Start Date",
1.355     www      8909:                     'sed'  => "Set End Date",
1.375     raeburn  8910:                     'scc'  => "Course/Community",
                   8911:                     'crd'  => "Credits",
1.88      raeburn  8912:                   );
1.323     raeburn  8913:     my $header = '<h4>'.&mt('Course/Community Level').'</h4>'.
1.136     raeburn  8914:                  &Apache::loncommon::start_data_table().
                   8915:                  &Apache::loncommon::start_data_table_header_row().
1.375     raeburn  8916:                  '<th>'.$lt{'scc'}.'</th><th>'.$lt{'rol'}.'</th>'."\n".
1.397     bisitz   8917:                  '<th>'.$lt{'grs'}.'</th>'."\n";
                   8918:     $header .=   '<th>'.$lt{'crd'}.'</th>'."\n" if ($showcredits);
                   8919:     $header .=   '<th>'.$lt{'sta'}.'</th><th>'.$lt{'end'}.'</th>'."\n".
1.136     raeburn  8920:                  &Apache::loncommon::end_data_table_header_row();
1.143     raeburn  8921:     my $otheritems = &Apache::loncommon::start_data_table_row()."\n".
1.356     raeburn  8922:                      '<td><br /><span class="LC_nobreak"><input type="text" name="coursedesc" value="" onfocus="this.blur();opencrsbrowser('."'cu','dccourse','dcdomain','coursedesc','','','','crstype'".')" />'.
                   8923:                      $courseform.('&nbsp;' x4).'</span></td>'."\n".
1.389     bisitz   8924:                      '<td valign="top"><br /><select name="role">'."\n";
1.213     raeburn  8925:     foreach my $role (@roles) {
1.135     raeburn  8926:         my $plrole=&Apache::lonnet::plaintext($role);
1.389     bisitz   8927:         $otheritems .= '  <option value="'.$role.'">'.$plrole.'</option>';
1.88      raeburn  8928:     }
1.404     raeburn  8929:     if ( keys(%customroles) > 0) {
                   8930:         foreach my $cust (sort(keys(%customroles))) {
1.101     albertel 8931:             my $custrole='cr_cr_'.$env{'user.domain'}.
1.135     raeburn  8932:                     '_'.$env{'user.name'}.'_'.$cust;
1.389     bisitz   8933:             $otheritems .= '  <option value="'.$custrole.'">'.$cust.'</option>';
1.88      raeburn  8934:         }
                   8935:     }
                   8936:     $otheritems .= '</select></td><td>'.
                   8937:                      '<table border="0" cellspacing="0" cellpadding="0">'.
                   8938:                      '<tr><td valign="top"><b>'.$lt{'exs'}.'</b><br /><select name="currsec">'.
1.389     bisitz   8939:                      ' <option value="">&lt;--'.&mt('Pick course first').'</option></select></td>'.
1.88      raeburn  8940:                      '<td>&nbsp;&nbsp;</td>'.
                   8941:                      '<td valign="top">&nbsp;<b>'.$lt{'new'}.'</b><br />'.
1.113     raeburn  8942:                      '<input type="text" name="newsec" value="" />'.
1.237     raeburn  8943:                      '<input type="hidden" name="section" value="" />'.
1.323     raeburn  8944:                      '<input type="hidden" name="groups" value="" />'.
                   8945:                      '<input type="hidden" name="crstype" value="" /></td>'.
1.375     raeburn  8946:                      '</tr></table></td>'."\n";
                   8947:     if ($showcredits) {
                   8948:         $otheritems .= '<td><br />'."\n".
1.397     bisitz   8949:                        '<input type="text" size="3" name="credits" value="" /></td>'."\n";
1.375     raeburn  8950:     }
1.88      raeburn  8951:     $otheritems .= <<ENDTIMEENTRY;
1.323     raeburn  8952: <td><br /><input type="hidden" name="start" value='' />
1.88      raeburn  8953: <a href=
                   8954: "javascript:pjump('date_start','Start Date',document.cu.start.value,'start','cu.pres','dateset')">$lt{'ssd'}</a></td>
1.323     raeburn  8955: <td><br /><input type="hidden" name="end" value='' />
1.88      raeburn  8956: <a href=
                   8957: "javascript:pjump('date_end','End Date',document.cu.end.value,'end','cu.pres','dateset')">$lt{'sed'}</a></td>
                   8958: ENDTIMEENTRY
1.136     raeburn  8959:     $otheritems .= &Apache::loncommon::end_data_table_row().
                   8960:                    &Apache::loncommon::end_data_table()."\n";
1.88      raeburn  8961:     return $cb_jscript.$header.$hiddenitems.$otheritems;
                   8962: }
                   8963: 
1.237     raeburn  8964: sub update_selfenroll_config {
1.400     raeburn  8965:     my ($r,$cid,$cdom,$cnum,$context,$crstype,$currsettings) = @_;
1.398     raeburn  8966:     return unless (ref($currsettings) eq 'HASH');
                   8967:     my ($row,$lt) = &Apache::lonuserutils::get_selfenroll_titles();
                   8968:     my %curr_groups = &Apache::longroup::coursegroups($cdom,$cnum);
1.237     raeburn  8969:     my (%changes,%warning);
1.241     raeburn  8970:     my $curr_types;
1.400     raeburn  8971:     my %noedit;
                   8972:     unless ($context eq 'domain') {
                   8973:         %noedit = &get_noedit_fields($cdom,$cnum,$crstype,$row);
                   8974:     }
1.237     raeburn  8975:     if (ref($row) eq 'ARRAY') {
                   8976:         foreach my $item (@{$row}) {
1.400     raeburn  8977:             next if ($noedit{$item});
1.237     raeburn  8978:             if ($item eq 'enroll_dates') {
                   8979:                 my (%currenrolldate,%newenrolldate);
                   8980:                 foreach my $type ('start','end') {
1.398     raeburn  8981:                     $currenrolldate{$type} = $currsettings->{'selfenroll_'.$type.'_date'};
1.237     raeburn  8982:                     $newenrolldate{$type} = &Apache::lonhtmlcommon::get_date_from_form('selfenroll_'.$type.'_date');
                   8983:                     if ($newenrolldate{$type} ne $currenrolldate{$type}) {
                   8984:                         $changes{'internal.selfenroll_'.$type.'_date'} = $newenrolldate{$type};
                   8985:                     }
                   8986:                 }
                   8987:             } elsif ($item eq 'access_dates') {
                   8988:                 my (%currdate,%newdate);
                   8989:                 foreach my $type ('start','end') {
1.398     raeburn  8990:                     $currdate{$type} = $currsettings->{'selfenroll_'.$type.'_access'};
1.237     raeburn  8991:                     $newdate{$type} = &Apache::lonhtmlcommon::get_date_from_form('selfenroll_'.$type.'_access');
                   8992:                     if ($newdate{$type} ne $currdate{$type}) {
                   8993:                         $changes{'internal.selfenroll_'.$type.'_access'} = $newdate{$type};
                   8994:                     }
                   8995:                 }
1.241     raeburn  8996:             } elsif ($item eq 'types') {
1.398     raeburn  8997:                 $curr_types = $currsettings->{'selfenroll_'.$item};
1.241     raeburn  8998:                 if ($env{'form.selfenroll_all'}) {
                   8999:                     if ($curr_types ne '*') {
                   9000:                         $changes{'internal.selfenroll_types'} = '*';
                   9001:                     } else {
                   9002:                         next;
                   9003:                     }
                   9004:                 } else {
1.249     raeburn  9005:                     my %currdoms;
1.241     raeburn  9006:                     my @entries = split(/;/,$curr_types);
                   9007:                     my @deletedoms = &Apache::loncommon::get_env_multiple('form.selfenroll_delete');
1.249     raeburn  9008:                     my @activations = &Apache::loncommon::get_env_multiple('form.selfenroll_activate');
1.241     raeburn  9009:                     my $newnum = 0;
1.249     raeburn  9010:                     my @latesttypes;
                   9011:                     foreach my $num (@activations) {
                   9012:                         my @types = &Apache::loncommon::get_env_multiple('form.selfenroll_types_'.$num);
                   9013:                         if (@types > 0) {
1.241     raeburn  9014:                             @types = sort(@types);
                   9015:                             my $typestr = join(',',@types);
1.249     raeburn  9016:                             my $typedom = $env{'form.selfenroll_dom_'.$num};
                   9017:                             $latesttypes[$newnum] = $typedom.':'.$typestr;
                   9018:                             $currdoms{$typedom} = 1;
1.241     raeburn  9019:                             $newnum ++;
                   9020:                         }
                   9021:                     }
1.338     raeburn  9022:                     for (my $j=0; $j<$env{'form.selfenroll_types_total'}; $j++) {
                   9023:                         if ((!grep(/^$j$/,@deletedoms)) && (!grep(/^$j$/,@activations))) {
1.249     raeburn  9024:                             my @types = &Apache::loncommon::get_env_multiple('form.selfenroll_types_'.$j);
                   9025:                             if (@types > 0) {
                   9026:                                 @types = sort(@types);
                   9027:                                 my $typestr = join(',',@types);
                   9028:                                 my $typedom = $env{'form.selfenroll_dom_'.$j};
                   9029:                                 $latesttypes[$newnum] = $typedom.':'.$typestr;
                   9030:                                 $currdoms{$typedom} = 1;
                   9031:                                 $newnum ++;
                   9032:                             }
                   9033:                         }
                   9034:                     }
                   9035:                     if ($env{'form.selfenroll_newdom'} ne '') {
                   9036:                         my $typedom = $env{'form.selfenroll_newdom'};
                   9037:                         if ((!defined($currdoms{$typedom})) && 
                   9038:                             (&Apache::lonnet::domain($typedom) ne '')) {
                   9039:                             my $typestr;
                   9040:                             my ($othertitle,$usertypes,$types) = 
                   9041:                                 &Apache::loncommon::sorted_inst_types($typedom);
                   9042:                             my $othervalue = 'any';
                   9043:                             if ((ref($types) eq 'ARRAY') && (ref($usertypes) eq 'HASH')) {
                   9044:                                 if (@{$types} > 0) {
1.257     raeburn  9045:                                     my @esc_types = map { &escape($_); } @{$types};
1.249     raeburn  9046:                                     $othervalue = 'other';
1.258     raeburn  9047:                                     $typestr = join(',',(@esc_types,$othervalue));
1.249     raeburn  9048:                                 }
                   9049:                                 $typestr = $othervalue;
                   9050:                             } else {
                   9051:                                 $typestr = $othervalue;
                   9052:                             } 
                   9053:                             $latesttypes[$newnum] = $typedom.':'.$typestr;
                   9054:                             $newnum ++ ;
                   9055:                         }
                   9056:                     }
1.241     raeburn  9057:                     my $selfenroll_types = join(';',@latesttypes);
                   9058:                     if ($selfenroll_types ne $curr_types) {
                   9059:                         $changes{'internal.selfenroll_types'} = $selfenroll_types;
                   9060:                     }
                   9061:                 }
1.276     raeburn  9062:             } elsif ($item eq 'limit') {
                   9063:                 my $newlimit = $env{'form.selfenroll_limit'};
                   9064:                 my $newcap = $env{'form.selfenroll_cap'};
                   9065:                 $newcap =~s/\s+//g;
1.398     raeburn  9066:                 my $currlimit =  $currsettings->{'selfenroll_limit'};
1.276     raeburn  9067:                 $currlimit = 'none' if ($currlimit eq '');
1.398     raeburn  9068:                 my $currcap = $currsettings->{'selfenroll_cap'};
1.276     raeburn  9069:                 if ($newlimit ne $currlimit) {
                   9070:                     if ($newlimit ne 'none') {
                   9071:                         if ($newcap =~ /^\d+$/) {
                   9072:                             if ($newcap ne $currcap) {
                   9073:                                 $changes{'internal.selfenroll_cap'} = $newcap;
                   9074:                             }
                   9075:                             $changes{'internal.selfenroll_limit'} = $newlimit;
                   9076:                         } else {
1.398     raeburn  9077:                             $warning{$item} = &mt('Maximum enrollment setting unchanged.').'<br />'.
                   9078:                                 &mt('The value provided was invalid - it must be a positive integer if enrollment is being limited.'); 
1.276     raeburn  9079:                         }
                   9080:                     } elsif ($currcap ne '') {
                   9081:                         $changes{'internal.selfenroll_cap'} = '';
                   9082:                         $changes{'internal.selfenroll_limit'} = $newlimit; 
                   9083:                     }
                   9084:                 } elsif ($currlimit ne 'none') {
                   9085:                     if ($newcap =~ /^\d+$/) {
                   9086:                         if ($newcap ne $currcap) {
                   9087:                             $changes{'internal.selfenroll_cap'} = $newcap;
                   9088:                         }
                   9089:                     } else {
1.398     raeburn  9090:                         $warning{$item} = &mt('Maximum enrollment setting unchanged.').'<br />'.
                   9091:                             &mt('The value provided was invalid - it must be a positive integer if enrollment is being limited.');
1.276     raeburn  9092:                     }
                   9093:                 }
                   9094:             } elsif ($item eq 'approval') {
                   9095:                 my (@currnotified,@newnotified);
1.398     raeburn  9096:                 my $currapproval = $currsettings->{'selfenroll_approval'};
                   9097:                 my $currnotifylist = $currsettings->{'selfenroll_notifylist'};
1.276     raeburn  9098:                 if ($currnotifylist ne '') {
                   9099:                     @currnotified = split(/,/,$currnotifylist);
                   9100:                     @currnotified = sort(@currnotified);
                   9101:                 }
                   9102:                 my $newapproval = $env{'form.selfenroll_approval'};
                   9103:                 @newnotified = &Apache::loncommon::get_env_multiple('form.selfenroll_notify');
                   9104:                 @newnotified = sort(@newnotified);
                   9105:                 if ($newapproval ne $currapproval) {
                   9106:                     $changes{'internal.selfenroll_approval'} = $newapproval;
                   9107:                     if (!$newapproval) {
                   9108:                         if ($currnotifylist ne '') {
                   9109:                             $changes{'internal.selfenroll_notifylist'} = '';
                   9110:                         }
                   9111:                     } else {
                   9112:                         my @differences =  
1.295     raeburn  9113:                             &Apache::loncommon::compare_arrays(\@currnotified,\@newnotified);
1.276     raeburn  9114:                         if (@differences > 0) {
                   9115:                             if (@newnotified > 0) {
                   9116:                                 $changes{'internal.selfenroll_notifylist'} = join(',',@newnotified);
                   9117:                             } else {
                   9118:                                 $changes{'internal.selfenroll_notifylist'} = join(',',@newnotified);
                   9119:                             }
                   9120:                         }
                   9121:                     }
                   9122:                 } else {
1.295     raeburn  9123:                     my @differences = &Apache::loncommon::compare_arrays(\@currnotified,\@newnotified);
1.276     raeburn  9124:                     if (@differences > 0) {
                   9125:                         if (@newnotified > 0) {
                   9126:                             $changes{'internal.selfenroll_notifylist'} = join(',',@newnotified);
                   9127:                         } else {
                   9128:                             $changes{'internal.selfenroll_notifylist'} = '';
                   9129:                         }
                   9130:                     }
                   9131:                 }
1.237     raeburn  9132:             } else {
1.398     raeburn  9133:                 my $curr_val = $currsettings->{'selfenroll_'.$item};
1.237     raeburn  9134:                 my $newval = $env{'form.selfenroll_'.$item};
                   9135:                 if ($item eq 'section') {
                   9136:                     $newval = $env{'form.sections'};
1.241     raeburn  9137:                     if (defined($curr_groups{$newval})) {
1.237     raeburn  9138:                         $newval = $curr_val;
1.398     raeburn  9139:                         $warning{$item} = &mt('Section for self-enrolled users unchanged as the proposed section is a group').'<br />'.
                   9140:                                           &mt('Group names and section names must be distinct');
1.237     raeburn  9141:                     } elsif ($newval eq 'all') {
                   9142:                         $newval = $curr_val;
1.274     bisitz   9143:                         $warning{$item} = &mt('Section for self-enrolled users unchanged, as "all" is a reserved section name.');
1.237     raeburn  9144:                     }
                   9145:                     if ($newval eq '') {
                   9146:                         $newval = 'none';
                   9147:                     }
                   9148:                 }
                   9149:                 if ($newval ne $curr_val) {
                   9150:                     $changes{'internal.selfenroll_'.$item} = $newval;
                   9151:                 }
1.241     raeburn  9152:             }
1.237     raeburn  9153:         }
                   9154:         if (keys(%warning) > 0) {
                   9155:             foreach my $item (@{$row}) {
                   9156:                 if (exists($warning{$item})) {
                   9157:                     $r->print($warning{$item}.'<br />');
                   9158:                 }
                   9159:             } 
                   9160:         }
                   9161:         if (keys(%changes) > 0) {
                   9162:             my $putresult = &Apache::lonnet::put('environment',\%changes,$cdom,$cnum);
                   9163:             if ($putresult eq 'ok') {
                   9164:                 if ((exists($changes{'internal.selfenroll_types'})) ||
                   9165:                     (exists($changes{'internal.selfenroll_start_date'}))  ||
                   9166:                     (exists($changes{'internal.selfenroll_end_date'}))) {
                   9167:                     my %crsinfo = &Apache::lonnet::courseiddump($cdom,'.',1,'.','.',
                   9168:                                                                 $cnum,undef,undef,'Course');
                   9169:                     my $chome = &Apache::lonnet::homeserver($cnum,$cdom);
1.398     raeburn  9170:                     if (ref($crsinfo{$cid}) eq 'HASH') {
1.237     raeburn  9171:                         foreach my $item ('selfenroll_types','selfenroll_start_date','selfenroll_end_date') {
                   9172:                             if (exists($changes{'internal.'.$item})) {
1.398     raeburn  9173:                                 $crsinfo{$cid}{$item} = $changes{'internal.'.$item};
1.237     raeburn  9174:                             }
                   9175:                         }
                   9176:                         my $crsputresult =
                   9177:                             &Apache::lonnet::courseidput($cdom,\%crsinfo,
                   9178:                                                          $chome,'notime');
                   9179:                     }
                   9180:                 }
                   9181:                 $r->print(&mt('The following changes were made to self-enrollment settings:').'<ul>');
                   9182:                 foreach my $item (@{$row}) {
                   9183:                     my $title = $item;
                   9184:                     if (ref($lt) eq 'HASH') {
                   9185:                         $title = $lt->{$item};
                   9186:                     }
                   9187:                     if ($item eq 'enroll_dates') {
                   9188:                         foreach my $type ('start','end') {
                   9189:                             if (exists($changes{'internal.selfenroll_'.$type.'_date'})) {
                   9190:                                 my $newdate = &Apache::lonlocal::locallocaltime($changes{'internal.selfenroll_'.$type.'_date'});
1.244     bisitz   9191:                                 $r->print('<li>'.&mt('[_1]: "[_2]" set to "[_3]".',
1.237     raeburn  9192:                                           $title,$type,$newdate).'</li>');
                   9193:                             }
                   9194:                         }
                   9195:                     } elsif ($item eq 'access_dates') {
                   9196:                         foreach my $type ('start','end') {
                   9197:                             if (exists($changes{'internal.selfenroll_'.$type.'_access'})) {
                   9198:                                 my $newdate = &Apache::lonlocal::locallocaltime($changes{'internal.selfenroll_'.$type.'_access'});
1.244     bisitz   9199:                                 $r->print('<li>'.&mt('[_1]: "[_2]" set to "[_3]".',
1.237     raeburn  9200:                                           $title,$type,$newdate).'</li>');
                   9201:                             }
                   9202:                         }
1.276     raeburn  9203:                     } elsif ($item eq 'limit') {
                   9204:                         if ((exists($changes{'internal.selfenroll_limit'})) ||
                   9205:                             (exists($changes{'internal.selfenroll_cap'}))) {
                   9206:                             my ($newval,$newcap);
                   9207:                             if ($changes{'internal.selfenroll_cap'} ne '') {
                   9208:                                 $newcap = $changes{'internal.selfenroll_cap'}
                   9209:                             } else {
1.398     raeburn  9210:                                 $newcap = $currsettings->{'selfenroll_cap'};
1.276     raeburn  9211:                             }
                   9212:                             if ($changes{'internal.selfenroll_limit'} eq 'none') {
                   9213:                                 $newval = &mt('No limit');
                   9214:                             } elsif ($changes{'internal.selfenroll_limit'} eq 
                   9215:                                      'allstudents') {
                   9216:                                 $newval = &mt('New self-enrollment no longer allowed when total (all students) reaches [_1].',$newcap);
                   9217:                             } elsif ($changes{'internal.selfenroll_limit'} eq 'selfenrolled') {
                   9218:                                 $newval = &mt('New self-enrollment no longer allowed when total number of self-enrolled students reaches [_1].',$newcap);
                   9219:                             } else {
1.398     raeburn  9220:                                 my $currlimit =  $currsettings->{'selfenroll_limit'};
1.276     raeburn  9221:                                 if ($currlimit eq 'allstudents') {
                   9222:                                     $newval = &mt('New self-enrollment no longer allowed when total (all students) reaches [_1].',$newcap);
                   9223:                                 } elsif ($changes{'internal.selfenroll_limit'} eq 'selfenrolled') {
1.308     raeburn  9224:                                     $newval =  &mt('New self-enrollment no longer allowed when total number of self-enrolled students reaches [_1].',$newcap);
1.276     raeburn  9225:                                 }
                   9226:                             }
                   9227:                             $r->print('<li>'.&mt('"[_1]" set to "[_2]".',$title,$newval).'</li>'."\n");
                   9228:                         }
                   9229:                     } elsif ($item eq 'approval') {
                   9230:                         if ((exists($changes{'internal.selfenroll_approval'})) ||
                   9231:                             (exists($changes{'internal.selfenroll_notifylist'}))) {
1.398     raeburn  9232:                             my %selfdescs = &Apache::lonuserutils::selfenroll_default_descs();
1.276     raeburn  9233:                             my ($newval,$newnotify);
                   9234:                             if (exists($changes{'internal.selfenroll_notifylist'})) {
                   9235:                                 $newnotify = $changes{'internal.selfenroll_notifylist'};
                   9236:                             } else {   
1.398     raeburn  9237:                                 $newnotify = $currsettings->{'selfenroll_notifylist'};
1.276     raeburn  9238:                             }
1.398     raeburn  9239:                             if (exists($changes{'internal.selfenroll_approval'})) {
                   9240:                                 if ($changes{'internal.selfenroll_approval'} !~ /^[012]$/) {
                   9241:                                     $changes{'internal.selfenroll_approval'} = '0';
                   9242:                                 }
                   9243:                                 $newval = $selfdescs{'approval'}{$changes{'internal.selfenroll_approval'}};
1.276     raeburn  9244:                             } else {
1.398     raeburn  9245:                                 my $currapproval = $currsettings->{'selfenroll_approval'}; 
                   9246:                                 if ($currapproval !~ /^[012]$/) {
                   9247:                                     $currapproval = 0;
1.276     raeburn  9248:                                 }
1.398     raeburn  9249:                                 $newval = $selfdescs{'approval'}{$currapproval};
1.276     raeburn  9250:                             }
                   9251:                             $r->print('<li>'.&mt('"[_1]" set to "[_2]".',$title,$newval));
                   9252:                             if ($newnotify) {
1.277     raeburn  9253:                                 $r->print('<br />'.&mt('The following will be notified when an enrollment request needs approval, or has been approved: [_1].',$newnotify));
1.276     raeburn  9254:                             } else {
1.277     raeburn  9255:                                 $r->print('<br />'.&mt('No notifications sent when an enrollment request needs approval, or has been approved.'));
1.276     raeburn  9256:                             }
                   9257:                             $r->print('</li>'."\n");
                   9258:                         }
1.237     raeburn  9259:                     } else {
                   9260:                         if (exists($changes{'internal.selfenroll_'.$item})) {
1.241     raeburn  9261:                             my $newval = $changes{'internal.selfenroll_'.$item};
                   9262:                             if ($item eq 'types') {
                   9263:                                 if ($newval eq '') {
                   9264:                                     $newval = &mt('None');
                   9265:                                 } elsif ($newval eq '*') {
                   9266:                                     $newval = &mt('Any user in any domain');
                   9267:                                 }
1.245     raeburn  9268:                             } elsif ($item eq 'registered') {
                   9269:                                 if ($newval eq '1') {
                   9270:                                     $newval = &mt('Yes');
                   9271:                                 } elsif ($newval eq '0') {
                   9272:                                     $newval = &mt('No');
                   9273:                                 }
1.241     raeburn  9274:                             }
1.244     bisitz   9275:                             $r->print('<li>'.&mt('"[_1]" set to "[_2]".',$title,$newval).'</li>'."\n");
1.237     raeburn  9276:                         }
                   9277:                     }
                   9278:                 }
                   9279:                 $r->print('</ul>');
1.398     raeburn  9280:                 if ($env{'course.'.$cid.'.description'} ne '') {
                   9281:                     my %newenvhash;
                   9282:                     foreach my $key (keys(%changes)) {
                   9283:                         $newenvhash{'course.'.$cid.'.'.$key} = $changes{$key};
                   9284:                     }
                   9285:                     &Apache::lonnet::appenv(\%newenvhash);
1.237     raeburn  9286:                 }
                   9287:             } else {
1.398     raeburn  9288:                 $r->print(&mt('An error occurred when saving changes to self-enrollment settings in this course.').'<br />'.
                   9289:                           &mt('The error was: [_1].',$putresult));
1.237     raeburn  9290:             }
                   9291:         } else {
1.249     raeburn  9292:             $r->print(&mt('No changes were made to the existing self-enrollment settings in this course.'));
1.237     raeburn  9293:         }
                   9294:     } else {
1.249     raeburn  9295:         $r->print(&mt('No changes were made to the existing self-enrollment settings in this course.'));
1.241     raeburn  9296:     }
1.400     raeburn  9297:     my $visactions = &cat_visibility();
                   9298:     my ($cathash,%cattype);
                   9299:     my %domconfig = &Apache::lonnet::get_dom('configuration',['coursecategories'],$cdom);
                   9300:     if (ref($domconfig{'coursecategories'}) eq 'HASH') {
                   9301:         $cathash = $domconfig{'coursecategories'}{'cats'};
                   9302:         $cattype{'auth'} = $domconfig{'coursecategories'}{'auth'};
                   9303:         $cattype{'unauth'} = $domconfig{'coursecategories'}{'unauth'};
                   9304:     } else {
                   9305:         $cathash = {};
                   9306:         $cattype{'auth'} = 'std';
                   9307:         $cattype{'unauth'} = 'std';
                   9308:     }
                   9309:     if (($cattype{'auth'} eq 'none') && ($cattype{'unauth'} eq 'none')) {
                   9310:         $r->print('<br /><span class="LC_warning">'.$visactions->{'miss'}.'</span><br />'.$visactions->{'yous'}.
                   9311:                   '<br />'.
                   9312:                   '<br />'.$visactions->{'take'}.'<ul>'.
                   9313:                   '<li>'.$visactions->{'dc_chgconf'}.'</li>'.
                   9314:                   '</ul>');
                   9315:     } elsif (($cattype{'auth'} !~ /^(std|domonly)$/) && ($cattype{'unauth'} !~ /^(std|domonly)$/)) {
                   9316:         if ($currsettings->{'uniquecode'}) {
                   9317:             $r->print('<span class="LC_info">'.$visactions->{'vis'}.'</span>');
                   9318:         } else {
1.366     bisitz   9319:             $r->print('<br /><span class="LC_warning">'.$visactions->{'miss'}.'</span><br />'.$visactions->{'yous'}.
1.400     raeburn  9320:                   '<br />'.
                   9321:                   '<br />'.$visactions->{'take'}.'<ul>'.
                   9322:                   '<li>'.$visactions->{'dc_setcode'}.'</li>'.
                   9323:                   '</ul><br />');
                   9324:         }
                   9325:     } else {
                   9326:         my ($visible,$cansetvis,$vismsgs) = &visible_in_stdcat($cdom,$cnum,\%domconfig);
                   9327:         if (ref($visactions) eq 'HASH') {
                   9328:             if (!$visible) {
                   9329:                 $r->print('<br /><span class="LC_warning">'.$visactions->{'miss'}.'</span><br />'.$visactions->{'yous'}.
                   9330:                           '<br />');
                   9331:                 if (ref($vismsgs) eq 'ARRAY') {
                   9332:                     $r->print('<br />'.$visactions->{'take'}.'<ul>');
                   9333:                     foreach my $item (@{$vismsgs}) {
                   9334:                         $r->print('<li>'.$visactions->{$item}.'</li>');
                   9335:                     }
                   9336:                     $r->print('</ul>');
1.256     raeburn  9337:                 }
1.400     raeburn  9338:                 $r->print($cansetvis);
1.256     raeburn  9339:             }
                   9340:         }
                   9341:     } 
1.237     raeburn  9342:     return;
                   9343: }
                   9344: 
1.27      matthew  9345: #---------------------------------------------- end functions for &phase_two
1.29      matthew  9346: 
                   9347: #--------------------------------- functions for &phase_two and &phase_three
                   9348: 
                   9349: #--------------------------end of functions for &phase_two and &phase_three
1.372     raeburn  9350: 
1.1       www      9351: 1;
                   9352: __END__
1.2       www      9353: 
                   9354: 

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