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

1.20      harris41    1: # The LearningOnline Network with CAPA
1.1       www         2: # Create a user
                      3: #
1.373   ! bisitz      4: # $Id: loncreateuser.pm,v 1.372 2013/01/01 19:53:26 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: 
                    125: sub portfolio_quota {
                    126:     my ($ccuname,$ccdomain) = @_;
                    127:     my %lt = &Apache::lonlocal::texthash(
1.267     raeburn   128:                    'usrt'      => "User Tools",
                    129:                    'disk'      => "Disk space allocated to user's portfolio files",
                    130:                    'cuqu'      => "Current quota",
                    131:                    'cust'      => "Custom quota",
                    132:                    'defa'      => "Default",
                    133:                    'chqu'      => "Change quota",
1.134     raeburn   134:     );
1.149     raeburn   135:     my ($currquota,$quotatype,$inststatus,$defquota) = 
                    136:         &Apache::loncommon::get_user_quota($ccuname,$ccdomain);
                    137:     my ($usertypes,$order) = &Apache::lonnet::retrieve_inst_usertypes($ccdomain);
                    138:     my ($longinsttype,$showquota,$custom_on,$custom_off,$defaultinfo);
                    139:     if ($inststatus ne '') {
                    140:         if ($usertypes->{$inststatus} ne '') {
                    141:             $longinsttype = $usertypes->{$inststatus};
                    142:         }
                    143:     }
                    144:     $custom_on = ' ';
                    145:     $custom_off = ' checked="checked" ';
                    146:     my $quota_javascript = <<"END_SCRIPT";
                    147: <script type="text/javascript">
1.301     bisitz    148: // <![CDATA[
1.149     raeburn   149: function quota_changes(caller) {
                    150:     if (caller == "custom") {
                    151:         if (document.cu.customquota[0].checked) {
                    152:             document.cu.portfolioquota.value = "";
                    153:         }
                    154:     }
                    155:     if (caller == "quota") {
                    156:         document.cu.customquota[1].checked = true;
                    157:     }
                    158: }
1.301     bisitz    159: // ]]>
1.149     raeburn   160: </script>
                    161: END_SCRIPT
                    162:     if ($quotatype eq 'custom') {
                    163:         $custom_on = $custom_off;
                    164:         $custom_off = ' ';
                    165:         $showquota = $currquota;
                    166:         if ($longinsttype eq '') {
1.230     bisitz    167:             $defaultinfo = &mt('For this user, the default quota would be [_1]'
                    168:                             .' Mb.',$defquota);
1.149     raeburn   169:         } else {
1.231     raeburn   170:             $defaultinfo = &mt("For this user, the default quota would be [_1]".
                    171:                                " Mb, as determined by the user's institutional".
                    172:                                " affiliation ([_2]).",$defquota,$longinsttype);
1.149     raeburn   173:         }
                    174:     } else {
                    175:         if ($longinsttype eq '') {
1.230     bisitz    176:             $defaultinfo = &mt('For this user, the default quota is [_1]'
                    177:                             .' Mb.',$defquota);
1.149     raeburn   178:         } else {
1.231     raeburn   179:             $defaultinfo = &mt("For this user, the default quota of [_1]".
                    180:                                " Mb, is determined by the user's institutional".
                    181:                                " affiliation ([_2]).",$defquota,$longinsttype);
1.149     raeburn   182:         }
                    183:     }
1.267     raeburn   184: 
                    185:     my $output = $quota_javascript."\n".
                    186:                  '<h3>'.$lt{'usrt'}.'</h3>'."\n".
                    187:                  &Apache::loncommon::start_data_table();
                    188: 
                    189:     if (&Apache::lonnet::allowed('mut',$ccdomain)) {
1.275     raeburn   190:         $output .= &build_tools_display($ccuname,$ccdomain,'tools');
1.267     raeburn   191:     }
                    192:     if (&Apache::lonnet::allowed('mpq',$ccdomain)) {
                    193:         $output .= '<tr class="LC_info_row">'."\n".
                    194:                    '    <td>'.$lt{'disk'}.'</td>'."\n".
                    195:                    '  </tr>'."\n".
                    196:                    &Apache::loncommon::start_data_table_row()."\n".
                    197:                    '  <td>'.$lt{'cuqu'}.': '.
                    198:                    $currquota.'&nbsp;Mb.&nbsp;&nbsp;'.
                    199:                    $defaultinfo.'</td>'."\n".
                    200:                    &Apache::loncommon::end_data_table_row()."\n".
                    201:                    &Apache::loncommon::start_data_table_row()."\n".
                    202:                    '  <td><span class="LC_nobreak">'.$lt{'chqu'}.
                    203:                    ': <label>'.
                    204:                    '<input type="radio" name="customquota" value="0" '.
                    205:                    $custom_off.' onchange="javascript:quota_changes('."'custom'".')"'.
                    206:                    ' />'.$lt{'defa'}.'&nbsp;('.$defquota.' Mb).</label>&nbsp;'.
                    207:                    '&nbsp;<label><input type="radio" name="customquota" value="1" '. 
                    208:                    $custom_on.'  onchange="javascript:quota_changes('."'custom'".')" />'.
                    209:                    $lt{'cust'}.':</label>&nbsp;'.
                    210:                    '<input type="text" name="portfolioquota" size ="5" value="'.
                    211:                    $showquota.'" onfocus="javascript:quota_changes('."'quota'".')" '.
                    212:                    '/>&nbsp;Mb</span></td>'."\n".
                    213:                    &Apache::loncommon::end_data_table_row()."\n";
                    214:     }  
                    215:     $output .= &Apache::loncommon::end_data_table();
1.134     raeburn   216:     return $output;
                    217: }
                    218: 
1.275     raeburn   219: sub build_tools_display {
                    220:     my ($ccuname,$ccdomain,$context) = @_;
1.306     raeburn   221:     my (@usertools,%userenv,$output,@options,%validations,%reqtitles,%reqdisplay,
1.332     raeburn   222:         $colspan,$isadv,%domconfig);
1.275     raeburn   223:     my %lt = &Apache::lonlocal::texthash (
                    224:                    'blog'       => "Personal User Blog",
                    225:                    'aboutme'    => "Personal Information Page",
1.361     raeburn   226:                    'webdav'     => "WebDAV access to authoring spaces (if SSL and author/co-author)",
1.275     raeburn   227:                    'portfolio'  => "Personal User Portfolio",
                    228:                    'avai'       => "Available",
                    229:                    'cusa'       => "availability",
                    230:                    'chse'       => "Change setting",
                    231:                    'usde'       => "Use default",
                    232:                    'uscu'       => "Use custom",
                    233:                    'official'   => 'Can request creation of official courses',
1.299     raeburn   234:                    'unofficial' => 'Can request creation of unofficial courses',
                    235:                    'community'  => 'Can request creation of communities',
1.362     raeburn   236:                    'requestauthor'  => 'Can request author space',
1.275     raeburn   237:     );
1.279     raeburn   238:     if ($context eq 'requestcourses') {
1.275     raeburn   239:         %userenv = &Apache::lonnet::userenvironment($ccdomain,$ccuname,
1.299     raeburn   240:                       'requestcourses.official','requestcourses.unofficial',
                    241:                       'requestcourses.community');
                    242:         @usertools = ('official','unofficial','community');
1.309     raeburn   243:         @options =('norequest','approval','autolimit','validate');
1.306     raeburn   244:         %validations = &Apache::lonnet::auto_courserequest_checks($ccdomain);
                    245:         %reqtitles = &courserequest_titles();
                    246:         %reqdisplay = &courserequest_display();
                    247:         $colspan = ' colspan="2"';
1.332     raeburn   248:         %domconfig =
                    249:             &Apache::lonnet::get_dom('configuration',['requestcourses'],$ccdomain);
                    250:         $isadv = &Apache::lonnet::is_advanced_user($ccuname,$ccdomain);
1.362     raeburn   251:     } elsif ($context eq 'requestauthor') {
                    252:         %userenv = &Apache::lonnet::userenvironment($ccdomain,$ccuname,
                    253:                                                     'requestauthor');
                    254:         @usertools = ('requestauthor');
                    255:         @options =('norequest','approval','automatic');
                    256:         %reqtitles = &requestauthor_titles();
                    257:         %reqdisplay = &requestauthor_display();
                    258:         $colspan = ' colspan="2"';
                    259:         %domconfig =
                    260:             &Apache::lonnet::get_dom('configuration',['requestauthor'],$ccdomain);
1.275     raeburn   261:     } else {
                    262:         %userenv = &Apache::lonnet::userenvironment($ccdomain,$ccuname,
1.361     raeburn   263:                           'tools.aboutme','tools.portfolio','tools.blog',
                    264:                           'tools.webdav');
                    265:         @usertools = ('aboutme','blog','webdav','portfolio');
1.275     raeburn   266:     }
                    267:     foreach my $item (@usertools) {
1.306     raeburn   268:         my ($custom_access,$curr_access,$cust_on,$cust_off,$tool_on,$tool_off,
                    269:             $currdisp,$custdisp,$custradio);
1.275     raeburn   270:         $cust_off = 'checked="checked" ';
                    271:         $tool_on = 'checked="checked" ';
                    272:         $curr_access =  
                    273:             &Apache::lonnet::usertools_access($ccuname,$ccdomain,$item,undef,
                    274:                                               $context);
1.362     raeburn   275:         if ($context eq 'requestauthor') {
                    276:             if ($userenv{$context} ne '') {
                    277:                 $cust_on = ' checked="checked" ';
                    278:                 $cust_off = '';
                    279:             }  
                    280:         } elsif ($userenv{$context.'.'.$item} ne '') {
1.306     raeburn   281:             $cust_on = ' checked="checked" ';
                    282:             $cust_off = '';
                    283:         }
                    284:         if ($context eq 'requestcourses') {
                    285:             if ($userenv{$context.'.'.$item} eq '') {
1.314     raeburn   286:                 $custom_access = &mt('Currently from default setting.');
1.306     raeburn   287:             } else {
                    288:                 $custom_access = &mt('Currently from custom setting.');
1.275     raeburn   289:             }
1.362     raeburn   290:         } elsif ($context eq 'requestauthor') {
                    291:             if ($userenv{$context} eq '') {
                    292:                 $custom_access = &mt('Currently from default setting.');
                    293:             } else {
                    294:                 $custom_access = &mt('Currently from custom setting.');
                    295:             }
1.275     raeburn   296:         } else {
1.306     raeburn   297:             if ($userenv{$context.'.'.$item} eq '') {
1.314     raeburn   298:                 $custom_access =
1.306     raeburn   299:                     &mt('Availability determined currently from default setting.');
                    300:                 if (!$curr_access) {
                    301:                     $tool_off = 'checked="checked" ';
                    302:                     $tool_on = '';
                    303:                 }
                    304:             } else {
1.314     raeburn   305:                 $custom_access =
1.306     raeburn   306:                     &mt('Availability determined currently from custom setting.');
                    307:                 if ($userenv{$context.'.'.$item} == 0) {
                    308:                     $tool_off = 'checked="checked" ';
                    309:                     $tool_on = '';
                    310:                 }
1.275     raeburn   311:             }
                    312:         }
                    313:         $output .= '  <tr class="LC_info_row">'."\n".
1.306     raeburn   314:                    '   <td'.$colspan.'>'.$lt{$item}.'</td>'."\n".
1.275     raeburn   315:                    '  </tr>'."\n".
1.306     raeburn   316:                    &Apache::loncommon::start_data_table_row()."\n";
1.362     raeburn   317:         if (($context eq 'requestcourses') || ($context eq 'requestauthor')) {
1.306     raeburn   318:             my ($curroption,$currlimit);
1.362     raeburn   319:             my $envkey = $context.'.'.$item;
                    320:             if ($context eq 'requestauthor') {
                    321:                 $envkey = $context;
                    322:             }
                    323:             if ($userenv{$envkey} ne '') {
                    324:                 $curroption = $userenv{$envkey};
1.332     raeburn   325:             } else {
                    326:                 my (@inststatuses);
1.362     raeburn   327:                 if ($context eq 'requestcourses') {
                    328:                     $curroption =
                    329:                         &Apache::loncoursequeueadmin::get_processtype('course',$ccuname,$ccdomain,
                    330:                                                                       $isadv,$ccdomain,$item,
                    331:                                                                       \@inststatuses,\%domconfig);
                    332:                 } else {
                    333:                      $curroption = 
                    334:                          &Apache::loncoursequeueadmin::get_processtype('requestauthor',$ccuname,$ccdomain,
                    335:                                                                        $isadv,$ccdomain,undef,
                    336:                                                                        \@inststatuses,\%domconfig);
                    337:                 }
1.332     raeburn   338:             }
1.306     raeburn   339:             if (!$curroption) {
                    340:                 $curroption = 'norequest';
                    341:             }
                    342:             if ($curroption =~ /^autolimit=(\d*)$/) {
                    343:                 $currlimit = $1;
1.314     raeburn   344:                 if ($currlimit eq '') {
                    345:                     $currdisp = &mt('Yes, automatic creation');
                    346:                 } else {
                    347:                     $currdisp = &mt('Yes, up to [quant,_1,request]/user',$currlimit);
                    348:                 }
1.306     raeburn   349:             } else {
                    350:                 $currdisp = $reqdisplay{$curroption};
                    351:             }
                    352:             $custdisp = '<table>';
                    353:             foreach my $option (@options) {
                    354:                 my $val = $option;
                    355:                 if ($option eq 'norequest') {
                    356:                     $val = 0;
                    357:                 }
                    358:                 if ($option eq 'validate') {
                    359:                     my $canvalidate = 0;
                    360:                     if (ref($validations{$item}) eq 'HASH') {
                    361:                         if ($validations{$item}{'_custom_'}) {
                    362:                             $canvalidate = 1;
                    363:                         }
                    364:                     }
                    365:                     next if (!$canvalidate);
                    366:                 }
                    367:                 my $checked = '';
                    368:                 if ($option eq $curroption) {
                    369:                     $checked = ' checked="checked"';
                    370:                 } elsif ($option eq 'autolimit') {
                    371:                     if ($curroption =~ /^autolimit/) {
                    372:                         $checked = ' checked="checked"';
                    373:                     }
                    374:                 }
1.362     raeburn   375:                 my $name = 'crsreq_'.$item;
                    376:                 if ($context eq 'requestauthor') {
                    377:                     $name = $item;
                    378:                 }
1.306     raeburn   379:                 $custdisp .= '<tr><td><span class="LC_nobreak"><label>'.
1.362     raeburn   380:                              '<input type="radio" name="'.$name.'" '.
                    381:                              'value="'.$val.'"'.$checked.' />'.
1.306     raeburn   382:                              $reqtitles{$option}.'</label>&nbsp;';
                    383:                 if ($option eq 'autolimit') {
1.362     raeburn   384:                     $custdisp .= '<input type="text" name="'.$name.
                    385:                                  '_limit" size="1" '.
1.314     raeburn   386:                                  'value="'.$currlimit.'" /></span><br />'.
                    387:                                  $reqtitles{'unlimited'};
1.362     raeburn   388:                 } else {
                    389:                     $custdisp .= '</span>';
                    390:                 }
                    391:                 $custdisp .= '</td></tr>';
1.306     raeburn   392:             }
                    393:             $custdisp .= '</table>';
                    394:             $custradio = '</span></td><td>'.&mt('Custom setting').'<br />'.$custdisp;
                    395:         } else {
                    396:             $currdisp = ($curr_access?&mt('Yes'):&mt('No'));
1.362     raeburn   397:             my $name = $context.'_'.$item;
                    398:             if ($context eq 'requestauthor') {
                    399:                 $name = $context;
                    400:             }
1.306     raeburn   401:             $custdisp = '<span class="LC_nobreak"><label>'.
1.362     raeburn   402:                         '<input type="radio" name="'.$name.'"'.
1.361     raeburn   403:                         ' value="1" '.$tool_on.'/>'.&mt('On').'</label>&nbsp;<label>'.
1.362     raeburn   404:                         '<input type="radio" name="'.$name.'" value="0" '.
1.306     raeburn   405:                         $tool_off.'/>'.&mt('Off').'</label></span>';
                    406:             $custradio = ('&nbsp;'x2).'--'.$lt{'cusa'}.':&nbsp;'.$custdisp.
                    407:                           '</span>';
                    408:         }
                    409:         $output .= '  <td'.$colspan.'>'.$custom_access.('&nbsp;'x4).
                    410:                    $lt{'avai'}.': '.$currdisp.'</td>'."\n".
1.275     raeburn   411:                    &Apache::loncommon::end_data_table_row()."\n".
                    412:                    &Apache::loncommon::start_data_table_row()."\n".
1.306     raeburn   413:                    '  <td style="vertical-align:top;"><span class="LC_nobreak">'.
                    414:                    $lt{'chse'}.': <label>'.
1.275     raeburn   415:                    '<input type="radio" name="custom'.$item.'" value="0" '.
1.306     raeburn   416:                    $cust_off.'/>'.$lt{'usde'}.'</label>'.('&nbsp;' x3).
                    417:                    '<label><input type="radio" name="custom'.$item.'" value="1" '.
                    418:                    $cust_on.'/>'.$lt{'uscu'}.'</label>'.$custradio.'</td>'.
1.275     raeburn   419:                    &Apache::loncommon::end_data_table_row()."\n";
                    420:     }
                    421:     return $output;
                    422: }
                    423: 
1.300     raeburn   424: sub coursereq_externaluser {
                    425:     my ($ccuname,$ccdomain,$cdom) = @_;
1.306     raeburn   426:     my (@usertools,@options,%validations,%userenv,$output);
1.300     raeburn   427:     my %lt = &Apache::lonlocal::texthash (
                    428:                    'official'   => 'Can request creation of official courses',
                    429:                    'unofficial' => 'Can request creation of unofficial courses',
                    430:                    'community'  => 'Can request creation of communities',
                    431:     );
                    432: 
                    433:     %userenv = &Apache::lonnet::userenvironment($ccdomain,$ccuname,
                    434:                       'reqcrsotherdom.official','reqcrsotherdom.unofficial',
                    435:                       'reqcrsotherdom.community');
                    436:     @usertools = ('official','unofficial','community');
1.309     raeburn   437:     @options = ('approval','validate','autolimit');
1.306     raeburn   438:     %validations = &Apache::lonnet::auto_courserequest_checks($cdom);
                    439:     my $optregex = join('|',@options);
                    440:     my %reqtitles = &courserequest_titles();
1.300     raeburn   441:     foreach my $item (@usertools) {
1.306     raeburn   442:         my ($curroption,$currlimit,$tooloff);
1.300     raeburn   443:         if ($userenv{'reqcrsotherdom.'.$item} ne '') {
                    444:             my @curr = split(',',$userenv{'reqcrsotherdom.'.$item});
1.314     raeburn   445:             foreach my $req (@curr) {
                    446:                 if ($req =~ /^\Q$cdom\E\:($optregex)=?(\d*)$/) {
                    447:                     $curroption = $1;
                    448:                     $currlimit = $2;
                    449:                     last;
1.306     raeburn   450:                 }
                    451:             }
1.314     raeburn   452:             if (!$curroption) {
                    453:                 $curroption = 'norequest';
                    454:                 $tooloff = ' checked="checked"';
                    455:             }
1.306     raeburn   456:         } else {
                    457:             $curroption = 'norequest';
                    458:             $tooloff = ' checked="checked"';
                    459:         }
                    460:         $output.= &Apache::loncommon::start_data_table_row()."\n".
1.314     raeburn   461:                   '  <td><span class="LC_nobreak">'.$lt{$item}.': </span></td><td>'.
                    462:                   '<table><tr><td valign="top">'."\n".
1.306     raeburn   463:                   '<label><input type="radio" name="reqcrsotherdom_'.$item.
1.314     raeburn   464:                   '" value=""'.$tooloff.' />'.$reqtitles{'norequest'}.
                    465:                   '</label></td>';
1.306     raeburn   466:         foreach my $option (@options) {
                    467:             if ($option eq 'validate') {
                    468:                 my $canvalidate = 0;
                    469:                 if (ref($validations{$item}) eq 'HASH') {
                    470:                     if ($validations{$item}{'_external_'}) {
                    471:                         $canvalidate = 1;
                    472:                     }
                    473:                 }
                    474:                 next if (!$canvalidate);
                    475:             }
                    476:             my $checked = '';
                    477:             if ($option eq $curroption) {
                    478:                 $checked = ' checked="checked"';
                    479:             }
1.314     raeburn   480:             $output .= '<td valign="top"><span class="LC_nobreak"><label>'.
1.306     raeburn   481:                        '<input type="radio" name="reqcrsotherdom_'.$item.
                    482:                        '" value="'.$option.'"'.$checked.' />'.
1.314     raeburn   483:                        $reqtitles{$option}.'</label>';
1.306     raeburn   484:             if ($option eq 'autolimit') {
1.314     raeburn   485:                 $output .= '&nbsp;<input type="text" name="reqcrsotherdom_'.
1.306     raeburn   486:                            $item.'_limit" size="1" '.
1.314     raeburn   487:                            'value="'.$currlimit.'" /></span>'.
                    488:                            '<br />'.$reqtitles{'unlimited'};
                    489:             } else {
                    490:                 $output .= '</span>';
1.300     raeburn   491:             }
1.314     raeburn   492:             $output .= '</td>';
1.300     raeburn   493:         }
1.314     raeburn   494:         $output .= '</td></tr></table></td>'."\n".
1.300     raeburn   495:                    &Apache::loncommon::end_data_table_row()."\n";
                    496:     }
                    497:     return $output;
                    498: }
                    499: 
1.362     raeburn   500: sub domainrole_req {
                    501:     my ($ccuname,$ccdomain) = @_;
                    502:     return '<br /><h3>'.
                    503:            &mt('User Can Request Assignment of Domain Roles?').
                    504:            '</h3>'."\n".
                    505:            &Apache::loncommon::start_data_table().
                    506:            &build_tools_display($ccuname,$ccdomain,
                    507:                                 'requestauthor').
                    508:            &Apache::loncommon::end_data_table();
                    509: }
                    510: 
1.306     raeburn   511: sub courserequest_titles {
                    512:     my %titles = &Apache::lonlocal::texthash (
                    513:                                    official   => 'Official',
                    514:                                    unofficial => 'Unofficial',
                    515:                                    community  => 'Communities',
                    516:                                    norequest  => 'Not allowed',
1.309     raeburn   517:                                    approval   => 'Approval by Dom. Coord.',
1.306     raeburn   518:                                    validate   => 'With validation',
                    519:                                    autolimit  => 'Numerical limit',
1.314     raeburn   520:                                    unlimited  => '(blank for unlimited)',
1.306     raeburn   521:                  );
                    522:     return %titles;
                    523: }
                    524: 
                    525: sub courserequest_display {
                    526:     my %titles = &Apache::lonlocal::texthash (
1.309     raeburn   527:                                    approval   => 'Yes, need approval',
1.306     raeburn   528:                                    validate   => 'Yes, with validation',
                    529:                                    norequest  => 'No',
                    530:    );
                    531:    return %titles;
                    532: }
                    533: 
1.362     raeburn   534: sub requestauthor_titles {
                    535:     my %titles = &Apache::lonlocal::texthash (
                    536:                                    norequest  => 'Not allowed',
                    537:                                    approval   => 'Approval by Dom. Coord.',
                    538:                                    automatic  => 'Automatic approval',
                    539:                  );
                    540:     return %titles;
                    541: 
                    542: }
                    543: 
                    544: sub requestauthor_display {
                    545:     my %titles = &Apache::lonlocal::texthash (
                    546:                                    approval   => 'Yes, need approval',
                    547:                                    automatic  => 'Yes, automatic approval',
                    548:                                    norequest  => 'No',
                    549:    );
                    550:    return %titles;
                    551: }
                    552: 
                    553: sub curr_requestauthor {
                    554:     my ($uname,$udom,$isadv,$inststatuses,$domconfig) = @_;
                    555:     return unless ((ref($inststatuses) eq 'ARRAY') && (ref($domconfig) eq 'HASH'));
                    556:     if ($uname eq '' || $udom eq '') {
                    557:         $uname = $env{'user.name'};
                    558:         $udom = $env{'user.domain'};
                    559:         $isadv = $env{'user.adv'};
                    560:     }
                    561:     my (%userenv,%settings,$val);
                    562:     my @options = ('automatic','approval');
                    563:     %userenv =
                    564:         &Apache::lonnet::userenvironment($udom,$uname,'requestauthor','inststatus');
                    565:     if ($userenv{'requestauthor'}) {
                    566:         $val = $userenv{'requestauthor'};
                    567:         @{$inststatuses} = ('_custom_');
                    568:     } else {
                    569:         my %alltasks;
                    570:         if (ref($domconfig->{'requestauthor'}) eq 'HASH') {
                    571:             %settings = %{$domconfig->{'requestauthor'}};
                    572:             if (($isadv) && ($settings{'_LC_adv'} ne '')) {
                    573:                 $val = $settings{'_LC_adv'};
                    574:                 @{$inststatuses} = ('_LC_adv_');
                    575:             } else {
                    576:                 if ($userenv{'inststatus'} ne '') {
                    577:                     @{$inststatuses} = split(',',$userenv{'inststatus'});
                    578:                 } else {
                    579:                     @{$inststatuses} = ('default');
                    580:                 }
                    581:                 foreach my $status (@{$inststatuses}) {
                    582:                     if (exists($settings{$status})) {
                    583:                         my $value = $settings{$status};
                    584:                         next unless ($value);
                    585:                         unless (exists($alltasks{$value})) {
                    586:                             if (ref($alltasks{$value}) eq 'ARRAY') {
                    587:                                 unless(grep(/^\Q$status\E$/,@{$alltasks{$value}})) {
                    588:                                     push(@{$alltasks{$value}},$status);
                    589:                                 }
                    590:                             } else {
                    591:                                 @{$alltasks{$value}} = ($status);
                    592:                             }
                    593:                         }
                    594:                     }
                    595:                 }
                    596:                 foreach my $option (@options) {
                    597:                     if ($alltasks{$option}) {
                    598:                         $val = $option;
                    599:                         last;
                    600:                     }
                    601:                 }
                    602:             }
                    603:         }
                    604:     }
                    605:     return $val;
                    606: }
                    607: 
1.2       www       608: # =================================================================== Phase one
1.1       www       609: 
1.42      matthew   610: sub print_username_entry_form {
1.351     raeburn   611:     my ($r,$context,$response,$srch,$forcenewuser,$crstype,$brcrum) = @_;
1.101     albertel  612:     my $defdom=$env{'request.role.domain'};
1.160     raeburn   613:     my $formtoset = 'crtuser';
                    614:     if (exists($env{'form.startrolename'})) {
                    615:         $formtoset = 'docustom';
                    616:         $env{'form.rolename'} = $env{'form.startrolename'};
1.207     raeburn   617:     } elsif ($env{'form.origform'} eq 'crtusername') {
                    618:         $formtoset =  $env{'form.origform'};
1.160     raeburn   619:     }
                    620: 
                    621:     my ($jsback,$elements) = &crumb_utilities();
                    622: 
                    623:     my $jscript = &Apache::loncommon::studentbrowser_javascript()."\n".
1.165     albertel  624:         '<script type="text/javascript">'."\n".
1.301     bisitz    625:         '// <![CDATA['."\n".
                    626:         &Apache::lonhtmlcommon::set_form_elements($elements->{$formtoset})."\n".
                    627:         '// ]]>'."\n".
1.162     raeburn   628:         '</script>'."\n";
1.160     raeburn   629: 
1.324     raeburn   630:     my %existingroles=&Apache::lonuserutils::my_custom_roles($crstype);
                    631:     if (($env{'form.action'} eq 'custom') && (keys(%existingroles) > 0)
                    632:         && (&Apache::lonnet::allowed('mcr','/'))) {
                    633:         $jscript .= &customrole_javascript();
                    634:     }
1.224     raeburn   635:     my $helpitem = 'Course_Change_Privileges';
                    636:     if ($env{'form.action'} eq 'custom') {
                    637:         $helpitem = 'Course_Editing_Custom_Roles';
                    638:     } elsif ($env{'form.action'} eq 'singlestudent') {
                    639:         $helpitem = 'Course_Add_Student';
                    640:     }
1.351     raeburn   641:     my %breadcrumb_text = &singleuser_breadcrumb($crstype);
                    642:     if ($env{'form.action'} eq 'custom') {
                    643:         push(@{$brcrum},
                    644:                  {href=>"javascript:backPage(document.crtuser)",       
                    645:                   text=>"Pick custom role",
                    646:                   help => $helpitem,}
                    647:                  );
                    648:     } else {
                    649:         push (@{$brcrum},
                    650:                   {href => "javascript:backPage(document.crtuser)",
                    651:                    text => $breadcrumb_text{'search'},
                    652:                    help => $helpitem,
                    653:                    faq  => 282,
                    654:                    bug  => 'Instructor Interface',}
                    655:                   );
                    656:     }
                    657:     my %loaditems = (
                    658:                 'onload' => "javascript:setFormElements(document.$formtoset)",
                    659:                     );
                    660:     my $args = {bread_crumbs           => $brcrum,
                    661:                 bread_crumbs_component => 'User Management',
                    662:                 add_entries            => \%loaditems,};
                    663:     $r->print(&Apache::loncommon::start_page('User Management',$jscript,$args));
                    664: 
1.71      sakharuk  665:     my %lt=&Apache::lonlocal::texthash(
1.229     raeburn   666:                     'srst' => 'Search for a user and enroll as a student',
1.318     raeburn   667:                     'srme' => 'Search for a user and enroll as a member',
1.229     raeburn   668:                     'srad' => 'Search for a user and modify/add user information or roles',
1.71      sakharuk  669: 		    'usr'  => "Username",
                    670:                     'dom'  => "Domain",
1.324     raeburn   671:                     'ecrp' => "Define or Edit Custom Role",
                    672:                     'nr'   => "role name",
1.282     schafran  673:                     'cre'  => "Next",
1.71      sakharuk  674: 				       );
1.351     raeburn   675: 
1.214     raeburn   676:     if ($env{'form.action'} eq 'custom') {
1.190     raeburn   677:         if (&Apache::lonnet::allowed('mcr','/')) {
1.324     raeburn   678:             my $newroletext = &mt('Define new custom role:');
                    679:             $r->print('<form action="/adm/createuser" method="post" name="docustom">'.
                    680:                       '<input type="hidden" name="action" value="'.$env{'form.action'}.'" />'.
                    681:                       '<input type="hidden" name="phase" value="selected_custom_edit" />'.
                    682:                       '<h3>'.$lt{'ecrp'}.'</h3>'.
                    683:                       &Apache::loncommon::start_data_table().
                    684:                       &Apache::loncommon::start_data_table_row().
                    685:                       '<td>');
                    686:             if (keys(%existingroles) > 0) {
                    687:                 $r->print('<br /><label><input type="radio" name="customroleaction" value="new" checked="checked" onclick="setCustomFields();" /><b>'.$newroletext.'</b></label>');
                    688:             } else {
                    689:                 $r->print('<br /><input type="hidden" name="customroleaction" value="new" /><b>'.$newroletext.'</b>');
                    690:             }
                    691:             $r->print('</td><td align="center">'.$lt{'nr'}.'<br /><input type="text" size="15" name="newrolename" onfocus="setCustomAction('."'new'".');" /></td>'.
                    692:                       &Apache::loncommon::end_data_table_row());
                    693:             if (keys(%existingroles) > 0) {
                    694:                 $r->print(&Apache::loncommon::start_data_table_row().'<td><br />'.
                    695:                           '<label><input type="radio" name="customroleaction" value="edit" onclick="setCustomFields();"/><b>'.
                    696:                           &mt('View/Modify existing role:').'</b></label></td>'.
                    697:                           '<td align="center"><br />'.
                    698:                           '<select name="rolename" onchange="setCustomAction('."'edit'".');">'.
1.326     raeburn   699:                           '<option value="" selected="selected">'.
1.324     raeburn   700:                           &mt('Select'));
                    701:                 foreach my $role (sort(keys(%existingroles))) {
1.326     raeburn   702:                     $r->print('<option value="'.$role.'">'.$role.'</option>');
1.324     raeburn   703:                 }
                    704:                 $r->print('</select>'.
                    705:                           '</td>'.
                    706:                           &Apache::loncommon::end_data_table_row());
                    707:             }
                    708:             $r->print(&Apache::loncommon::end_data_table().'<p>'.
                    709:                       '<input name="customeditor" type="submit" value="'.
                    710:                       $lt{'cre'}.'" /></p>'.
                    711:                       '</form>');
1.190     raeburn   712:         }
1.213     raeburn   713:     } else {
1.229     raeburn   714:         my $actiontext = $lt{'srad'};
1.213     raeburn   715:         if ($env{'form.action'} eq 'singlestudent') {
1.318     raeburn   716:             if ($crstype eq 'Community') {
                    717:                 $actiontext = $lt{'srme'};
                    718:             } else {
                    719:                 $actiontext = $lt{'srst'};
                    720:             }
1.213     raeburn   721:         }
1.324     raeburn   722:         $r->print("<h3>$actiontext</h3>");
1.213     raeburn   723:         if ($env{'form.origform'} ne 'crtusername') {
                    724:             $r->print("\n".$response);
                    725:         }
1.318     raeburn   726:         $r->print(&entry_form($defdom,$srch,$forcenewuser,$context,$response,$crstype));
1.107     www       727:     }
1.110     albertel  728: }
                    729: 
1.324     raeburn   730: sub customrole_javascript {
                    731:     my $js = <<"END";
                    732: <script type="text/javascript">
                    733: // <![CDATA[
                    734: 
                    735: function setCustomFields() {
                    736:     if (document.docustom.customroleaction.length > 0) {
                    737:         for (var i=0; i<document.docustom.customroleaction.length; i++) {
                    738:             if (document.docustom.customroleaction[i].checked) {
                    739:                 if (document.docustom.customroleaction[i].value == 'new') {
                    740:                     document.docustom.rolename.selectedIndex = 0;
                    741:                 } else {
                    742:                     document.docustom.newrolename.value = '';
                    743:                 }
                    744:             }
                    745:         }
                    746:     }
                    747:     return;
                    748: }
                    749: 
                    750: function setCustomAction(caller) {
                    751:     if (document.docustom.customroleaction.length > 0) {
                    752:         for (var i=0; i<document.docustom.customroleaction.length; i++) {
                    753:             if (document.docustom.customroleaction[i].value == caller) {
                    754:                 document.docustom.customroleaction[i].checked = true;
                    755:             }
                    756:         }
                    757:     }
                    758:     setCustomFields();
                    759:     return;
                    760: }
                    761: 
                    762: // ]]>
                    763: </script>
                    764: END
                    765:     return $js;
                    766: }
                    767: 
1.160     raeburn   768: sub entry_form {
1.318     raeburn   769:     my ($dom,$srch,$forcenewuser,$context,$responsemsg,$crstype) = @_;
1.229     raeburn   770:     my ($usertype,$inexact);
1.214     raeburn   771:     if (ref($srch) eq 'HASH') {
                    772:         if (($srch->{'srchin'} eq 'dom') &&
                    773:             ($srch->{'srchby'} eq 'uname') &&
                    774:             ($srch->{'srchtype'} eq 'exact') &&
                    775:             ($srch->{'srchdomain'} ne '') &&
                    776:             ($srch->{'srchterm'} ne '')) {
1.353     raeburn   777:             my (%curr_rules,%got_rules);
1.214     raeburn   778:             my ($rules,$ruleorder) =
                    779:                 &Apache::lonnet::inst_userrules($srch->{'srchdomain'},'username');
1.353     raeburn   780:             $usertype = &Apache::lonuserutils::check_usertype($srch->{'srchdomain'},$srch->{'srchterm'},$rules,\%curr_rules,\%got_rules);
1.229     raeburn   781:         } else {
                    782:             $inexact = 1;
1.214     raeburn   783:         }
1.207     raeburn   784:     }
1.214     raeburn   785:     my $cancreate =
                    786:         &Apache::lonuserutils::can_create_user($dom,$context,$usertype);
1.160     raeburn   787:     my $userpicker = 
1.179     raeburn   788:        &Apache::loncommon::user_picker($dom,$srch,$forcenewuser,
1.214     raeburn   789:                                        'document.crtuser',$cancreate,$usertype);
1.160     raeburn   790:     my $srchbutton = &mt('Search');
1.229     raeburn   791:     if ($env{'form.action'} eq 'singlestudent') {
                    792:         $srchbutton = &mt('Search and Enroll');
                    793:     } elsif ($cancreate && $responsemsg ne '' && $inexact) {
                    794:         $srchbutton = &mt('Search or Add New User');
                    795:     }
1.207     raeburn   796:     my $output = <<"ENDBLOCK";
1.160     raeburn   797: <form action="/adm/createuser" method="post" name="crtuser">
1.190     raeburn   798: <input type="hidden" name="action" value="$env{'form.action'}" />
1.160     raeburn   799: <input type="hidden" name="phase" value="get_user_info" />
                    800: $userpicker
1.179     raeburn   801: <input name="userrole" type="button" value="$srchbutton" onclick="javascript:validateEntry(document.crtuser)" />
1.160     raeburn   802: </form>
1.207     raeburn   803: ENDBLOCK
1.229     raeburn   804:     if ($env{'form.phase'} eq '') {
1.207     raeburn   805:         my $defdom=$env{'request.role.domain'};
                    806:         my $domform = &Apache::loncommon::select_dom_form($defdom,'srchdomain');
                    807:         my %lt=&Apache::lonlocal::texthash(
1.229     raeburn   808:                   'enro' => 'Enroll one student',
1.318     raeburn   809:                   'enrm' => 'Enroll one member',
1.229     raeburn   810:                   'admo' => 'Add/modify a single user',
                    811:                   'crea' => 'create new user if required',
                    812:                   'uskn' => "username is known",
1.207     raeburn   813:                   'crnu' => 'Create a new user',
                    814:                   'usr'  => 'Username',
                    815:                   'dom'  => 'in domain',
1.229     raeburn   816:                   'enrl' => 'Enroll',
                    817:                   'cram'  => 'Create/Modify user',
1.207     raeburn   818:         );
1.229     raeburn   819:         my $sellink=&Apache::loncommon::selectstudent_link('crtusername','srchterm','srchdomain');
                    820:         my ($title,$buttontext,$showresponse);
1.318     raeburn   821:         if ($env{'form.action'} eq 'singlestudent') {
                    822:             if ($crstype eq 'Community') {
                    823:                 $title = $lt{'enrm'};
                    824:             } else {
                    825:                 $title = $lt{'enro'};
                    826:             }
1.229     raeburn   827:             $buttontext = $lt{'enrl'};
                    828:         } else {
                    829:             $title = $lt{'admo'};
                    830:             $buttontext = $lt{'cram'};
                    831:         }
                    832:         if ($cancreate) {
                    833:             $title .= ' <span class="LC_cusr_subheading">('.$lt{'crea'}.')</span>';
                    834:         } else {
                    835:             $title .= ' <span class="LC_cusr_subheading">('.$lt{'uskn'}.')</span>';
                    836:         }
                    837:         if ($env{'form.origform'} eq 'crtusername') {
                    838:             $showresponse = $responsemsg;
                    839:         }
1.207     raeburn   840:         $output .= <<"ENDDOCUMENT";
1.229     raeburn   841: <br />
1.207     raeburn   842: <form action="/adm/createuser" method="post" name="crtusername">
                    843: <input type="hidden" name="action" value="$env{'form.action'}" />
                    844: <input type="hidden" name="phase" value="createnewuser" />
                    845: <input type="hidden" name="srchtype" value="exact" />
1.233     raeburn   846: <input type="hidden" name="srchby" value="uname" />
1.207     raeburn   847: <input type="hidden" name="srchin" value="dom" />
                    848: <input type="hidden" name="forcenewuser" value="1" />
                    849: <input type="hidden" name="origform" value="crtusername" />
1.229     raeburn   850: <h3>$title</h3>
                    851: $showresponse
1.207     raeburn   852: <table>
                    853:  <tr>
                    854:   <td>$lt{'usr'}:</td>
                    855:   <td><input type="text" size="15" name="srchterm" /></td>
                    856:   <td>&nbsp;$lt{'dom'}:</td><td>$domform</td>
1.229     raeburn   857:   <td>&nbsp;$sellink&nbsp;</td>
                    858:   <td>&nbsp;<input name="userrole" type="submit" value="$buttontext" /></td>
1.207     raeburn   859:  </tr>
                    860: </table>
                    861: </form>
1.160     raeburn   862: ENDDOCUMENT
1.207     raeburn   863:     }
1.160     raeburn   864:     return $output;
                    865: }
1.110     albertel  866: 
                    867: sub user_modification_js {
1.113     raeburn   868:     my ($pjump_def,$dc_setcourse_code,$nondc_setsection_code,$groupslist)=@_;
                    869:     
1.110     albertel  870:     return <<END;
                    871: <script type="text/javascript" language="Javascript">
1.301     bisitz    872: // <![CDATA[
1.314     raeburn   873: 
1.110     albertel  874:     $pjump_def
                    875:     $dc_setcourse_code
                    876: 
                    877:     function dateset() {
                    878:         eval("document.cu."+document.cu.pres_marker.value+
                    879:             ".value=document.cu.pres_value.value");
1.359     www       880:         modalWindow.close();
1.110     albertel  881:     }
                    882: 
1.113     raeburn   883:     $nondc_setsection_code
1.301     bisitz    884: // ]]>
1.110     albertel  885: </script>
                    886: END
1.2       www       887: }
                    888: 
                    889: # =================================================================== Phase two
1.160     raeburn   890: sub print_user_selection_page {
1.351     raeburn   891:     my ($r,$response,$srch,$srch_results,$srcharray,$context,$opener_elements,$crstype,$brcrum) = @_;
1.160     raeburn   892:     my @fields = ('username','domain','lastname','firstname','permanentemail');
                    893:     my $sortby = $env{'form.sortby'};
                    894: 
                    895:     if (!grep(/^\Q$sortby\E$/,@fields)) {
                    896:         $sortby = 'lastname';
                    897:     }
                    898: 
                    899:     my ($jsback,$elements) = &crumb_utilities();
                    900: 
                    901:     my $jscript = (<<ENDSCRIPT);
                    902: <script type="text/javascript">
1.301     bisitz    903: // <![CDATA[
1.160     raeburn   904: function pickuser(uname,udom) {
                    905:     document.usersrchform.seluname.value=uname;
                    906:     document.usersrchform.seludom.value=udom;
                    907:     document.usersrchform.phase.value="userpicked";
                    908:     document.usersrchform.submit();
                    909: }
                    910: 
                    911: $jsback
1.301     bisitz    912: // ]]>
1.160     raeburn   913: </script>
                    914: ENDSCRIPT
                    915: 
                    916:     my %lt=&Apache::lonlocal::texthash(
1.179     raeburn   917:                                        'usrch'          => "User Search to add/modify roles",
                    918:                                        'stusrch'        => "User Search to enroll student",
1.318     raeburn   919:                                        'memsrch'        => "User Search to enroll member",
1.179     raeburn   920:                                        'usel'           => "Select a user to add/modify roles",
1.318     raeburn   921:                                        'stusel'         => "Select a user to enroll as a student",
                    922:                                        'memsel'         => "Select a user to enroll as a member",
1.160     raeburn   923:                                        'username'       => "username",
                    924:                                        'domain'         => "domain",
                    925:                                        'lastname'       => "last name",
                    926:                                        'firstname'      => "first name",
                    927:                                        'permanentemail' => "permanent e-mail",
                    928:                                       );
1.302     raeburn   929:     if ($context eq 'requestcrs') {
                    930:         $r->print('<div>');
                    931:     } else {
1.318     raeburn   932:         my %breadcrumb_text = &singleuser_breadcrumb($crstype);
1.351     raeburn   933:         my $helpitem;
                    934:         if ($env{'form.action'} eq 'singleuser') {
                    935:             $helpitem = 'Course_Change_Privileges';
                    936:         } elsif ($env{'form.action'} eq 'singlestudent') {
                    937:             $helpitem = 'Course_Add_Student';
                    938:         }
                    939:         push (@{$brcrum},
                    940:                   {href => "javascript:backPage(document.usersrchform,'','')",
                    941:                    text => $breadcrumb_text{'search'},
                    942:                    faq  => 282,
                    943:                    bug  => 'Instructor Interface',},
                    944:                   {href => "javascript:backPage(document.usersrchform,'get_user_info','select')",
                    945:                    text => $breadcrumb_text{'userpicked'},
                    946:                    faq  => 282,
                    947:                    bug  => 'Instructor Interface',
                    948:                    help => $helpitem}
                    949:                   );
                    950:         $r->print(&Apache::loncommon::start_page('User Management',$jscript,{bread_crumbs => $brcrum}));
1.302     raeburn   951:         if ($env{'form.action'} eq 'singleuser') {
                    952:             $r->print("<b>$lt{'usrch'}</b><br />");
1.318     raeburn   953:             $r->print(&entry_form($srch->{'srchdomain'},$srch,undef,$context,undef,$crstype));
1.302     raeburn   954:             $r->print('<h3>'.$lt{'usel'}.'</h3>');
                    955:         } elsif ($env{'form.action'} eq 'singlestudent') {
1.318     raeburn   956:             $r->print($jscript."<b>");
                    957:             if ($crstype eq 'Community') {
                    958:                 $r->print($lt{'memsrch'});
                    959:             } else {
                    960:                 $r->print($lt{'stusrch'});
                    961:             }
                    962:             $r->print("</b><br />");
                    963:             $r->print(&entry_form($srch->{'srchdomain'},$srch,undef,$context,undef,$crstype));
                    964:             $r->print('</form><h3>');
                    965:             if ($crstype eq 'Community') {
                    966:                 $r->print($lt{'memsel'});
                    967:             } else {
                    968:                 $r->print($lt{'stusel'});
                    969:             }
                    970:             $r->print('</h3>');
1.302     raeburn   971:         }
1.179     raeburn   972:     }
1.160     raeburn   973:     $r->print('<form name="usersrchform" method="post">'.
                    974:               &Apache::loncommon::start_data_table()."\n".
                    975:               &Apache::loncommon::start_data_table_header_row()."\n".
                    976:               ' <th> </th>'."\n");
                    977:     foreach my $field (@fields) {
                    978:         $r->print(' <th><a href="javascript:document.usersrchform.sortby.value='.
                    979:                   "'".$field."'".';document.usersrchform.submit();">'.
                    980:                   $lt{$field}.'</a></th>'."\n");
                    981:     }
                    982:     $r->print(&Apache::loncommon::end_data_table_header_row());
                    983: 
                    984:     my @sorted_users = sort {
1.167     albertel  985:         lc($srch_results->{$a}->{$sortby})   cmp lc($srch_results->{$b}->{$sortby})
1.160     raeburn   986:             ||
1.167     albertel  987:         lc($srch_results->{$a}->{lastname})  cmp lc($srch_results->{$b}->{lastname})
1.160     raeburn   988:             ||
                    989:         lc($srch_results->{$a}->{firstname}) cmp lc($srch_results->{$b}->{firstname})
1.167     albertel  990: 	    ||
                    991: 	lc($a) cmp lc($b)
1.160     raeburn   992:         } (keys(%$srch_results));
                    993: 
                    994:     foreach my $user (@sorted_users) {
                    995:         my ($uname,$udom) = split(/:/,$user);
1.302     raeburn   996:         my $onclick;
                    997:         if ($context eq 'requestcrs') {
1.314     raeburn   998:             $onclick =
1.302     raeburn   999:                 'onclick="javascript:gochoose('."'$uname','$udom',".
                   1000:                                                "'$srch_results->{$user}->{firstname}',".
                   1001:                                                "'$srch_results->{$user}->{lastname}',".
                   1002:                                                "'$srch_results->{$user}->{permanentemail}'".');"';
                   1003:         } else {
1.314     raeburn  1004:             $onclick =
1.302     raeburn  1005:                 ' onclick="javascript:pickuser('."'".$uname."'".','."'".$udom."'".');"';
                   1006:         }
1.160     raeburn  1007:         $r->print(&Apache::loncommon::start_data_table_row().
1.302     raeburn  1008:                   '<td><input type="button" name="seluser" value="'.&mt('Select').'" '.
                   1009:                   $onclick.' /></td>'.
1.160     raeburn  1010:                   '<td><tt>'.$uname.'</tt></td>'.
                   1011:                   '<td><tt>'.$udom.'</tt></td>');
                   1012:         foreach my $field ('lastname','firstname','permanentemail') {
                   1013:             $r->print('<td>'.$srch_results->{$user}->{$field}.'</td>');
                   1014:         }
                   1015:         $r->print(&Apache::loncommon::end_data_table_row());
                   1016:     }
                   1017:     $r->print(&Apache::loncommon::end_data_table().'<br /><br />');
1.179     raeburn  1018:     if (ref($srcharray) eq 'ARRAY') {
                   1019:         foreach my $item (@{$srcharray}) {
                   1020:             $r->print('<input type="hidden" name="'.$item.'" value="'.$env{'form.'.$item}.'" />'."\n");
                   1021:         }
                   1022:     }
1.160     raeburn  1023:     $r->print(' <input type="hidden" name="sortby" value="'.$sortby.'" />'."\n".
                   1024:               ' <input type="hidden" name="seluname" value="" />'."\n".
                   1025:               ' <input type="hidden" name="seludom" value="" />'."\n".
1.179     raeburn  1026:               ' <input type="hidden" name="currstate" value="select" />'."\n".
1.190     raeburn  1027:               ' <input type="hidden" name="phase" value="get_user_info" />'."\n".
1.214     raeburn  1028:               ' <input type="hidden" name="action" value="'.$env{'form.action'}.'" />'."\n");
1.302     raeburn  1029:     if ($context eq 'requestcrs') {
                   1030:         $r->print($opener_elements.'</form></div>');
                   1031:     } else {
1.351     raeburn  1032:         $r->print($response.'</form>');
1.302     raeburn  1033:     }
1.160     raeburn  1034: }
                   1035: 
                   1036: sub print_user_query_page {
1.351     raeburn  1037:     my ($r,$caller,$brcrum) = @_;
1.160     raeburn  1038: # FIXME - this is for a network-wide name search (similar to catalog search)
                   1039: # To use frames with similar behavior to catalog/portfolio search.
                   1040: # To be implemented. 
                   1041:     return;
                   1042: }
                   1043: 
1.42      matthew  1044: sub print_user_modification_page {
1.351     raeburn  1045:     my ($r,$ccuname,$ccdomain,$srch,$response,$context,$permission,$crstype,$brcrum) = @_;
1.185     raeburn  1046:     if (($ccuname eq '') || ($ccdomain eq '')) {
1.215     raeburn  1047:         my $usermsg = &mt('No username and/or domain provided.');
                   1048:         $env{'form.phase'} = '';
1.351     raeburn  1049: 	&print_username_entry_form($r,$context,$usermsg,'','',$crstype,$brcrum);
1.58      www      1050:         return;
                   1051:     }
1.213     raeburn  1052:     my ($form,$formname);
                   1053:     if ($env{'form.action'} eq 'singlestudent') {
                   1054:         $form = 'document.enrollstudent';
                   1055:         $formname = 'enrollstudent';
                   1056:     } else {
                   1057:         $form = 'document.cu';
                   1058:         $formname = 'cu';
                   1059:     }
1.188     raeburn  1060:     my %abv_auth = &auth_abbrev();
1.227     raeburn  1061:     my (%rulematch,%inst_results,$newuser,%alerts,%curr_rules,%got_rules);
1.185     raeburn  1062:     my $uhome=&Apache::lonnet::homeserver($ccuname,$ccdomain);
                   1063:     if ($uhome eq 'no_host') {
1.215     raeburn  1064:         my $usertype;
                   1065:         my ($rules,$ruleorder) =
                   1066:             &Apache::lonnet::inst_userrules($ccdomain,'username');
                   1067:             $usertype =
1.353     raeburn  1068:                 &Apache::lonuserutils::check_usertype($ccdomain,$ccuname,$rules,
1.362     raeburn  1069:                                                       \%curr_rules,\%got_rules);
1.215     raeburn  1070:         my $cancreate =
                   1071:             &Apache::lonuserutils::can_create_user($ccdomain,$context,
                   1072:                                                    $usertype);
                   1073:         if (!$cancreate) {
1.292     bisitz   1074:             my $helplink = 'javascript:helpMenu('."'display'".')';
1.215     raeburn  1075:             my %usertypetext = (
                   1076:                 official   => 'institutional',
                   1077:                 unofficial => 'non-institutional',
                   1078:             );
                   1079:             my $response;
                   1080:             if ($env{'form.origform'} eq 'crtusername') {
1.362     raeburn  1081:                 $response = '<span class="LC_warning">'.
                   1082:                             &mt('No match found for the username [_1] in LON-CAPA domain: [_2]',
                   1083:                                 '<b>'.$ccuname.'</b>',$ccdomain).
1.215     raeburn  1084:                             '</span><br />';
                   1085:             }
1.292     bisitz   1086:             $response .= '<p class="LC_warning">'
                   1087:                         .&mt("You are not authorized to create new $usertypetext{$usertype} users in this domain.")
                   1088:                         .' '
                   1089:                         .&mt('Please contact the [_1]helpdesk[_2] for assistance.'
                   1090:                             ,'<a href="'.$helplink.'">','</a>')
                   1091:                         .'</p><br />';
1.215     raeburn  1092:             $env{'form.phase'} = '';
1.351     raeburn  1093:             &print_username_entry_form($r,$context,$response,undef,undef,$crstype,$brcrum);
1.215     raeburn  1094:             return;
                   1095:         }
1.188     raeburn  1096:         $newuser = 1;
1.193     raeburn  1097:         my $checkhash;
                   1098:         my $checks = { 'username' => 1 };
1.196     raeburn  1099:         $checkhash->{$ccuname.':'.$ccdomain} = { 'newuser' => $newuser };
1.193     raeburn  1100:         &Apache::loncommon::user_rule_check($checkhash,$checks,
1.196     raeburn  1101:             \%alerts,\%rulematch,\%inst_results,\%curr_rules,\%got_rules);
                   1102:         if (ref($alerts{'username'}) eq 'HASH') {
                   1103:             if (ref($alerts{'username'}{$ccdomain}) eq 'HASH') {
                   1104:                 my $domdesc =
1.193     raeburn  1105:                     &Apache::lonnet::domain($ccdomain,'description');
1.196     raeburn  1106:                 if ($alerts{'username'}{$ccdomain}{$ccuname}) {
                   1107:                     my $userchkmsg;
                   1108:                     if (ref($curr_rules{$ccdomain}) eq 'HASH') {  
                   1109:                         $userchkmsg = 
                   1110:                             &Apache::loncommon::instrule_disallow_msg('username',
1.193     raeburn  1111:                                                                  $domdesc,1).
                   1112:                         &Apache::loncommon::user_rule_formats($ccdomain,
                   1113:                             $domdesc,$curr_rules{$ccdomain}{'username'},
                   1114:                             'username');
1.196     raeburn  1115:                     }
1.215     raeburn  1116:                     $env{'form.phase'} = '';
1.351     raeburn  1117:                     &print_username_entry_form($r,$context,$userchkmsg,undef,undef,$crstype,$brcrum);
1.196     raeburn  1118:                     return;
1.215     raeburn  1119:                 }
1.193     raeburn  1120:             }
1.185     raeburn  1121:         }
1.187     raeburn  1122:     } else {
1.188     raeburn  1123:         $newuser = 0;
1.185     raeburn  1124:     }
1.160     raeburn  1125:     if ($response) {
1.215     raeburn  1126:         $response = '<br />'.$response;
1.160     raeburn  1127:     }
1.149     raeburn  1128: 
1.52      matthew  1129:     my $pjump_def = &Apache::lonhtmlcommon::pjump_javascript_definition();
1.88      raeburn  1130:     my $dc_setcourse_code = '';
1.119     raeburn  1131:     my $nondc_setsection_code = '';                                        
1.112     albertel 1132:     my %loaditem;
1.114     albertel 1133: 
1.216     raeburn  1134:     my $groupslist = &Apache::lonuserutils::get_groupslist();
1.88      raeburn  1135: 
1.216     raeburn  1136:     my $js = &validation_javascript($context,$ccdomain,$pjump_def,
                   1137:                                $groupslist,$newuser,$formname,\%loaditem);
1.318     raeburn  1138:     my %breadcrumb_text = &singleuser_breadcrumb($crstype);
1.224     raeburn  1139:     my $helpitem = 'Course_Change_Privileges';
                   1140:     if ($env{'form.action'} eq 'singlestudent') {
                   1141:         $helpitem = 'Course_Add_Student';
                   1142:     }
1.351     raeburn  1143:     push (@{$brcrum},
                   1144:         {href => "javascript:backPage($form)",
                   1145:          text => $breadcrumb_text{'search'},
                   1146:          faq  => 282,
                   1147:          bug  => 'Instructor Interface',});
                   1148:     if ($env{'form.phase'} eq 'userpicked') {
                   1149:        push(@{$brcrum},
                   1150:               {href => "javascript:backPage($form,'get_user_info','select')",
                   1151:                text => $breadcrumb_text{'userpicked'},
                   1152:                faq  => 282,
                   1153:                bug  => 'Instructor Interface',});
                   1154:     }
                   1155:     push(@{$brcrum},
                   1156:             {href => "javascript:backPage($form,'$env{'form.phase'}','modify')",
                   1157:              text => $breadcrumb_text{'modify'},
                   1158:              faq  => 282,
                   1159:              bug  => 'Instructor Interface',
                   1160:              help => $helpitem});
                   1161:     my $args = {'add_entries'           => \%loaditem,
                   1162:                 'bread_crumbs'          => $brcrum,
                   1163:                 'bread_crumbs_component' => 'User Management'};
                   1164:     if ($env{'form.popup'}) {
                   1165:         $args->{'no_nav_bar'} = 1;
                   1166:     }
                   1167:     my $start_page =
                   1168:         &Apache::loncommon::start_page('User Management',$js,$args);
1.3       www      1169: 
1.25      matthew  1170:     my $forminfo =<<"ENDFORMINFO";
1.216     raeburn  1171: <form action="/adm/createuser" method="post" name="$formname">
1.190     raeburn  1172: <input type="hidden" name="phase" value="update_user_data" />
1.188     raeburn  1173: <input type="hidden" name="ccuname" value="$ccuname" />
                   1174: <input type="hidden" name="ccdomain" value="$ccdomain" />
1.157     albertel 1175: <input type="hidden" name="pres_value"  value="" />
                   1176: <input type="hidden" name="pres_type"   value="" />
                   1177: <input type="hidden" name="pres_marker" value="" />
1.25      matthew  1178: ENDFORMINFO
1.329     raeburn  1179:     my (%inccourses,$roledom);
                   1180:     if ($context eq 'course') {
                   1181:         $inccourses{$env{'request.course.id'}}=1;
                   1182:         $roledom = $env{'course.'.$env{'request.course.id'}.'.domain'};
                   1183:     } elsif ($context eq 'author') {
                   1184:         $roledom = $env{'request.role.domain'};
                   1185:     } elsif ($context eq 'domain') {
                   1186:         foreach my $key (keys(%env)) {
                   1187:             $roledom = $env{'request.role.domain'};
                   1188:             if ($key=~/^user\.priv\.cm\.\/($roledom)\/($match_username)/) {
                   1189:                 $inccourses{$1.'_'.$2}=1;
                   1190:             }
                   1191:         }
                   1192:     } else {
                   1193:         foreach my $key (keys(%env)) {
                   1194: 	    if ($key=~/^user\.priv\.cm\.\/($match_domain)\/($match_username)/) {
                   1195: 	        $inccourses{$1.'_'.$2}=1;
                   1196:             }
1.2       www      1197:         }
1.24      matthew  1198:     }
1.216     raeburn  1199:     if ($newuser) {
1.362     raeburn  1200:         my ($portfolioform,$domroleform);
1.267     raeburn  1201:         if ((&Apache::lonnet::allowed('mpq',$env{'request.role.domain'})) ||
                   1202:             (&Apache::lonnet::allowed('mut',$env{'request.role.domain'}))) {
                   1203:             # Current user has quota or user tools modification privileges
1.188     raeburn  1204:             $portfolioform = '<br />'.&portfolio_quota($ccuname,$ccdomain);
1.134     raeburn  1205:         }
1.362     raeburn  1206:         if (&Apache::lonnet::allowed('cau',$env{'request.role.domain'})) {
                   1207:             $domroleform = '<br />'.&domainrole_req($ccuname,$ccdomain);
                   1208:         }
1.227     raeburn  1209:         &initialize_authen_forms($ccdomain,$formname);
1.188     raeburn  1210:         my %lt=&Apache::lonlocal::texthash(
                   1211:                 'cnu'            => 'Create New User',
1.213     raeburn  1212:                 'ast'            => 'as a student',
1.318     raeburn  1213:                 'ame'            => 'as a member',
1.188     raeburn  1214:                 'ind'            => 'in domain',
                   1215:                 'lg'             => 'Login Data',
1.190     raeburn  1216:                 'hs'             => "Home Server",
1.188     raeburn  1217:         );
1.185     raeburn  1218: 	$r->print(<<ENDTITLE);
1.110     albertel 1219: $start_page
1.160     raeburn  1220: $response
1.25      matthew  1221: $forminfo
1.31      matthew  1222: <script type="text/javascript" language="Javascript">
1.301     bisitz   1223: // <![CDATA[
1.20      harris41 1224: $loginscript
1.301     bisitz   1225: // ]]>
1.31      matthew  1226: </script>
1.20      harris41 1227: <input type='hidden' name='makeuser' value='1' />
1.216     raeburn  1228: <h2>$lt{'cnu'} "$ccuname" $lt{'ind'} $ccdomain
1.185     raeburn  1229: ENDTITLE
1.213     raeburn  1230:         if ($env{'form.action'} eq 'singlestudent') {
1.318     raeburn  1231:             if ($crstype eq 'Community') {
                   1232:                 $r->print(' ('.$lt{'ame'}.')');
                   1233:             } else {
                   1234:                 $r->print(' ('.$lt{'ast'}.')');
                   1235:             }
1.213     raeburn  1236:         }
                   1237:         $r->print('</h2>'."\n".'<div class="LC_left_float">');
1.206     raeburn  1238:         my $personal_table = 
1.210     raeburn  1239:             &personal_data_display($ccuname,$ccdomain,$newuser,$context,
                   1240:                                    $inst_results{$ccuname.':'.$ccdomain});
1.206     raeburn  1241:         $r->print($personal_table);
1.187     raeburn  1242:         my ($home_server_pick,$numlib) = 
                   1243:             &Apache::loncommon::home_server_form_item($ccdomain,'hserver',
                   1244:                                                       'default','hide');
                   1245:         if ($numlib > 1) {
                   1246:             $r->print("
1.185     raeburn  1247: <br />
1.187     raeburn  1248: $lt{'hs'}: $home_server_pick
                   1249: <br />");
                   1250:         } else {
                   1251:             $r->print($home_server_pick);
                   1252:         }
1.304     raeburn  1253:         if (&Apache::lonnet::allowed('ccc',$env{'request.role.domain'})) {
1.362     raeburn  1254:             $r->print('<br /><h3>'.
                   1255:                       &mt('User Can Request Creation of Courses/Communities in this Domain?').'</h3>'.
1.304     raeburn  1256:                       &Apache::loncommon::start_data_table().
                   1257:                       &build_tools_display($ccuname,$ccdomain,
                   1258:                                            'requestcourses').
                   1259:                       &Apache::loncommon::end_data_table());
                   1260:         }
1.188     raeburn  1261:         $r->print('</div>'."\n".'<div class="LC_left_float"><h3>'.
                   1262:                   $lt{'lg'}.'</h3>');
1.185     raeburn  1263:         my ($fixedauth,$varauth,$authmsg); 
1.193     raeburn  1264:         if (ref($rulematch{$ccuname.':'.$ccdomain}) eq 'HASH') {
                   1265:             my $matchedrule = $rulematch{$ccuname.':'.$ccdomain}{'username'};
                   1266:             my ($rules,$ruleorder) = 
                   1267:                 &Apache::lonnet::inst_userrules($ccdomain,'username');
1.185     raeburn  1268:             if (ref($rules) eq 'HASH') {
1.193     raeburn  1269:                 if (ref($rules->{$matchedrule}) eq 'HASH') {
                   1270:                     my $authtype = $rules->{$matchedrule}{'authtype'};
1.185     raeburn  1271:                     if ($authtype !~ /^(krb4|krb5|int|fsys|loc)$/) {
1.190     raeburn  1272:                         $r->print(&Apache::lonuserutils::set_login($ccdomain,$authformkrb,$authformint,$authformloc));
1.275     raeburn  1273:                     } else { 
1.193     raeburn  1274:                         my $authparm = $rules->{$matchedrule}{'authparm'};
1.273     raeburn  1275:                         $authmsg = $rules->{$matchedrule}{'authmsg'};
1.185     raeburn  1276:                         if ($authtype =~ /^krb(4|5)$/) {
                   1277:                             my $ver = $1;
                   1278:                             if ($authparm ne '') {
                   1279:                                 $fixedauth = <<"KERB"; 
                   1280: <input type="hidden" name="login" value="krb" />
                   1281: <input type="hidden" name="krbver" value="$ver" />
                   1282: <input type="hidden" name="krbarg" value="$authparm" />
                   1283: KERB
                   1284:                             }
                   1285:                         } else {
                   1286:                             $fixedauth = 
                   1287: '<input type="hidden" name="login" value="'.$authtype.'" />'."\n";
1.193     raeburn  1288:                             if ($rules->{$matchedrule}{'authparmfixed'}) {
1.185     raeburn  1289:                                 $fixedauth .=    
                   1290: '<input type="hidden" name="'.$authtype.'arg" value="'.$authparm.'" />'."\n";
                   1291:                             } else {
1.273     raeburn  1292:                                 if ($authtype eq 'int') {
                   1293:                                     $varauth = '<br />'.
1.301     bisitz   1294: &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  1295:                                 } elsif ($authtype eq 'loc') {
                   1296:                                     $varauth = '<br />'.
                   1297: &mt('[_1] Local Authentication with argument [_2]','','<input type="text" name="'.$authtype.'arg" value="" />')."\n";
                   1298:                                 } else {
                   1299:                                     $varauth =
1.185     raeburn  1300: '<input type="text" name="'.$authtype.'arg" value="" />'."\n";
1.273     raeburn  1301:                                 }
1.185     raeburn  1302:                             }
                   1303:                         }
                   1304:                     }
                   1305:                 } else {
1.190     raeburn  1306:                     $r->print(&Apache::lonuserutils::set_login($ccdomain,$authformkrb,$authformint,$authformloc));
1.185     raeburn  1307:                 }
                   1308:             }
                   1309:             if ($authmsg) {
                   1310:                 $r->print(<<ENDAUTH);
                   1311: $fixedauth
                   1312: $authmsg
                   1313: $varauth
                   1314: ENDAUTH
                   1315:             }
                   1316:         } else {
1.190     raeburn  1317:             $r->print(&Apache::lonuserutils::set_login($ccdomain,$authformkrb,$authformint,$authformloc)); 
1.187     raeburn  1318:         }
1.362     raeburn  1319:         $r->print($portfolioform.$domroleform);
1.215     raeburn  1320:         if ($env{'form.action'} eq 'singlestudent') {
                   1321:             $r->print(&date_sections_select($context,$newuser,$formname,
                   1322:                                             $permission));
                   1323:         }
                   1324:         $r->print('</div><div class="LC_clear_float_footer"></div>');
1.216     raeburn  1325:     } else { # user already exists
1.79      albertel 1326: 	my %lt=&Apache::lonlocal::texthash(
1.191     raeburn  1327:                     'cup'  => "Modify existing user: ",
1.213     raeburn  1328:                     'ens'  => "Enroll one student: ",
1.318     raeburn  1329:                     'enm'  => "Enroll one member: ",
1.72      sakharuk 1330:                     'id'   => "in domain",
                   1331: 				       );
1.26      matthew  1332: 	$r->print(<<ENDCHANGEUSER);
1.110     albertel 1333: $start_page
1.25      matthew  1334: $forminfo
1.213     raeburn  1335: <h2>
1.26      matthew  1336: ENDCHANGEUSER
1.213     raeburn  1337:         if ($env{'form.action'} eq 'singlestudent') {
1.318     raeburn  1338:             if ($crstype eq 'Community') {
                   1339:                 $r->print($lt{'enm'});
                   1340:             } else {
                   1341:                 $r->print($lt{'ens'});
                   1342:             }
1.213     raeburn  1343:         } else {
                   1344:             $r->print($lt{'cup'});
                   1345:         }
                   1346:         $r->print(' "'.$ccuname.'" '.$lt{'id'}.' "'.$ccdomain.'"</h2>'.
                   1347:                   "\n".'<div class="LC_left_float">');
1.206     raeburn  1348:         my ($personal_table,$showforceid) = 
1.210     raeburn  1349:             &personal_data_display($ccuname,$ccdomain,$newuser,$context,
                   1350:                                    $inst_results{$ccuname.':'.$ccdomain});
1.206     raeburn  1351:         $r->print($personal_table);
                   1352:         if ($showforceid) {
1.362     raeburn  1353:             $r->print('<table>'.&Apache::lonuserutils::forceid_change($context).'</table>');
1.199     raeburn  1354:         }
1.275     raeburn  1355:         if (&Apache::lonnet::allowed('ccc',$env{'request.role.domain'})) {
1.362     raeburn  1356:             $r->print('<br /><h3>'.&mt('User Can Request Creation of Courses/Communities in this Domain?').'</h3>'.
1.300     raeburn  1357:                       &Apache::loncommon::start_data_table());
1.314     raeburn  1358:             if ($env{'request.role.domain'} eq $ccdomain) {
1.300     raeburn  1359:                 $r->print(&build_tools_display($ccuname,$ccdomain,'requestcourses'));
                   1360:             } else {
                   1361:                 $r->print(&coursereq_externaluser($ccuname,$ccdomain,
                   1362:                                                   $env{'request.role.domain'}));
                   1363:             }
                   1364:             $r->print(&Apache::loncommon::end_data_table());
1.275     raeburn  1365:         }
1.199     raeburn  1366:         $r->print('</div>');
1.362     raeburn  1367:         my @order = ('auth','quota','tools','requestauthor');
                   1368:         my %user_text;
                   1369:         my ($isadv,$isauthor) = 
                   1370:             &Apache::lonnet::is_advanced_user($ccuname,$ccdomain);
                   1371:         if ((!$isauthor) && 
                   1372:             (&Apache::lonnet::allowed('cau',$env{'request.role.domain'}))) {
                   1373:             $user_text{'requestauthor'} = &domainrole_req($ccuname,$ccdomain);
                   1374:         }
                   1375:         $user_text{'auth'} =  &user_authentication($ccuname,$ccdomain,$formname);
1.267     raeburn  1376:         if ((&Apache::lonnet::allowed('mpq',$ccdomain)) ||
                   1377:             (&Apache::lonnet::allowed('mut',$ccdomain))) {
1.188     raeburn  1378:             # Current user has quota modification privileges
1.362     raeburn  1379:             $user_text{'quota'} = &portfolio_quota($ccuname,$ccdomain);
1.267     raeburn  1380:         }
                   1381:         if (!&Apache::lonnet::allowed('mpq',$ccdomain)) {
                   1382:             if (&Apache::lonnet::allowed('mpq',$env{'request.role.domain'})) {
                   1383:                 # Get the user's portfolio information
                   1384:                 my %portq = &Apache::lonnet::get('environment',['portfolioquota'],
                   1385:                                                  $ccdomain,$ccuname);
                   1386:                 my %lt=&Apache::lonlocal::texthash(
                   1387:                     'dska'  => "Disk space allocated to user's portfolio files",
                   1388:                     'youd'  => "You do not have privileges to modify the portfolio quota for this user.",
                   1389:                     'ichr'  => "If a change is required, contact a domain coordinator for the domain",
                   1390:                 );
1.362     raeburn  1391:                 $user_text{'quota'} = <<ENDNOPORTPRIV;
1.188     raeburn  1392: <h3>$lt{'dska'}</h3>
                   1393: $lt{'youd'} $lt{'ichr'}: $ccdomain
                   1394: ENDNOPORTPRIV
1.267     raeburn  1395:             }
                   1396:         }
                   1397:         if (!&Apache::lonnet::allowed('mut',$ccdomain)) {
                   1398:             if (&Apache::lonnet::allowed('mut',$env{'request.role.domain'})) {
                   1399:                 my %lt=&Apache::lonlocal::texthash(
                   1400:                     'utav'  => "User Tools Availability",
1.361     raeburn  1401:                     'yodo'  => "You do not have privileges to modify Portfolio, Blog, WebDAV, or Personal Information Page settings for this user.",
1.267     raeburn  1402:                     'ifch'  => "If a change is required, contact a domain coordinator for the domain",
                   1403:                 );
1.362     raeburn  1404:                 $user_text{'tools'} = <<ENDNOTOOLSPRIV;
1.267     raeburn  1405: <h3>$lt{'utav'}</h3>
                   1406: $lt{'yodo'} $lt{'ifch'}: $ccdomain
                   1407: ENDNOTOOLSPRIV
                   1408:             }
1.188     raeburn  1409:         }
1.362     raeburn  1410:         my $gotdiv = 0; 
                   1411:         foreach my $item (@order) {
                   1412:             if ($user_text{$item} ne '') {
                   1413:                 unless ($gotdiv) {
                   1414:                     $r->print('<div class="LC_left_float">');
                   1415:                     $gotdiv = 1;
                   1416:                 }
                   1417:                 $r->print('<br />'.$user_text{$item});
                   1418:             }
                   1419:         }
                   1420:         if ($env{'form.action'} eq 'singlestudent') {
                   1421:             unless ($gotdiv) {
                   1422:                 $r->print('<div class="LC_left_float">');
1.213     raeburn  1423:             }
1.362     raeburn  1424:             $r->print(&date_sections_select($context,$newuser,$formname));
                   1425:         } 
                   1426:         if ($gotdiv) {
                   1427:             $r->print('</div><div class="LC_clear_float_footer"></div>');
1.188     raeburn  1428:         }
1.217     raeburn  1429:         if ($env{'form.action'} ne 'singlestudent') {
1.329     raeburn  1430:             &display_existing_roles($r,$ccuname,$ccdomain,\%inccourses,$context,
                   1431:                                     $roledom,$crstype);
1.217     raeburn  1432:         }
1.25      matthew  1433:     } ## End of new user/old user logic
1.218     raeburn  1434:     if ($env{'form.action'} eq 'singlestudent') {
1.318     raeburn  1435:         my $btntxt;
                   1436:         if ($crstype eq 'Community') {
                   1437:             $btntxt = &mt('Enroll Member');
                   1438:         } else {
                   1439:             $btntxt = &mt('Enroll Student');
                   1440:         }
                   1441:         $r->print('<br /><input type="button" value="'.$btntxt.'" onclick="setSections(this.form)" />'."\n");
1.218     raeburn  1442:     } else {
                   1443:         $r->print('<h3>'.&mt('Add Roles').'</h3>');
                   1444:         my $addrolesdisplay = 0;
                   1445:         if ($context eq 'domain' || $context eq 'author') {
                   1446:             $addrolesdisplay = &new_coauthor_roles($r,$ccuname,$ccdomain);
                   1447:         }
                   1448:         if ($context eq 'domain') {
1.357     raeburn  1449:             my $add_domainroles = &new_domain_roles($r,$ccdomain);
1.218     raeburn  1450:             if (!$addrolesdisplay) {
                   1451:                 $addrolesdisplay = $add_domainroles;
1.2       www      1452:             }
1.218     raeburn  1453:             $r->print(&course_level_dc($env{'request.role.domain'},'Course'));
1.301     bisitz   1454:             $r->print('<br /><input type="button" value="'.&mt('Save').'" onclick="setCourse()" />'."\n");
1.218     raeburn  1455:         } elsif ($context eq 'author') {
                   1456:             if ($addrolesdisplay) {
1.262     schafran 1457:                 $r->print('<br /><input type="button" value="'.&mt('Save').'"');
1.218     raeburn  1458:                 if ($newuser) {
1.301     bisitz   1459:                     $r->print(' onclick="auth_check()" \>'."\n");
1.218     raeburn  1460:                 } else {
1.301     bisitz   1461:                     $r->print('onclick="this.form.submit()" \>'."\n");
1.218     raeburn  1462:                 }
1.188     raeburn  1463:             } else {
1.218     raeburn  1464:                 $r->print('<br /><a href="javascript:backPage(document.cu)">'.
                   1465:                           &mt('Back to previous page').'</a>');
1.188     raeburn  1466:             }
                   1467:         } else {
1.218     raeburn  1468:             $r->print(&course_level_table(%inccourses));
1.301     bisitz   1469:             $r->print('<br /><input type="button" value="'.&mt('Save').'" onclick="setSections(this.form)" />'."\n");
1.188     raeburn  1470:         }
1.88      raeburn  1471:     }
1.188     raeburn  1472:     $r->print(&Apache::lonhtmlcommon::echo_form_input(['phase','userrole','ccdomain','prevphase','currstate','ccuname','ccdomain']));
1.179     raeburn  1473:     $r->print('<input type="hidden" name="currstate" value="" />');
1.352     raeburn  1474:     $r->print('<input type="hidden" name="prevphase" value="'.$env{'form.phase'}.'" /></form>');
1.218     raeburn  1475:     return;
1.2       www      1476: }
1.1       www      1477: 
1.213     raeburn  1478: sub singleuser_breadcrumb {
1.318     raeburn  1479:     my ($crstype) = @_;
1.213     raeburn  1480:     my %breadcrumb_text;
                   1481:     if ($env{'form.action'} eq 'singlestudent') {
1.318     raeburn  1482:         if ($crstype eq 'Community') {
                   1483:             $breadcrumb_text{'search'} = 'Enroll a member';
                   1484:         } else {
                   1485:             $breadcrumb_text{'search'} = 'Enroll a student';
                   1486:         }
1.213     raeburn  1487:         $breadcrumb_text{'userpicked'} = 'Select a user',
                   1488:         $breadcrumb_text{'modify'} = 'Set section/dates',
                   1489:     } else {
1.229     raeburn  1490:         $breadcrumb_text{'search'} = 'Create/modify a user';
1.213     raeburn  1491:         $breadcrumb_text{'userpicked'} = 'Select a user',
                   1492:         $breadcrumb_text{'modify'} = 'Set user role',
                   1493:     }
                   1494:     return %breadcrumb_text;
                   1495: }
                   1496: 
                   1497: sub date_sections_select {
                   1498:     my ($context,$newuser,$formname,$permission) = @_;
                   1499:     my $cid = $env{'request.course.id'};
                   1500:     my ($cnum,$cdom) = &Apache::lonuserutils::get_course_identity($cid);
                   1501:     my $date_table = '<h3>'.&mt('Starting and Ending Dates').'</h3>'."\n".
                   1502:         &Apache::lonuserutils::date_setting_table(undef,undef,$context,
                   1503:                                                   undef,$formname,$permission);
                   1504:     my $rowtitle = 'Section';
                   1505:     my $secbox = '<h3>'.&mt('Section').'</h3>'."\n".
                   1506:         &Apache::lonuserutils::section_picker($cdom,$cnum,'st',$rowtitle,
                   1507:                                               $permission);
                   1508:     my $output = $date_table.$secbox;
                   1509:     return $output;
                   1510: }
                   1511: 
1.216     raeburn  1512: sub validation_javascript {
                   1513:     my ($context,$ccdomain,$pjump_def,$groupslist,$newuser,$formname,
                   1514:         $loaditem) = @_;
                   1515:     my $dc_setcourse_code = '';
                   1516:     my $nondc_setsection_code = '';
                   1517:     if ($context eq 'domain') {
                   1518:         my $dcdom = $env{'request.role.domain'};
                   1519:         $loaditem->{'onload'} = "document.cu.coursedesc.value='';";
1.227     raeburn  1520:         $dc_setcourse_code = 
                   1521:             &Apache::lonuserutils::dc_setcourse_js('cu','singleuser',$context);
1.216     raeburn  1522:     } else {
1.227     raeburn  1523:         my $checkauth; 
                   1524:         if (($newuser) || (&Apache::lonnet::allowed('mau',$ccdomain))) {
                   1525:             $checkauth = 1;
                   1526:         }
                   1527:         if ($context eq 'course') {
                   1528:             $nondc_setsection_code =
                   1529:                 &Apache::lonuserutils::setsections_javascript($formname,$groupslist,
                   1530:                                                               undef,$checkauth);
                   1531:         }
                   1532:         if ($checkauth) {
                   1533:             $nondc_setsection_code .= 
                   1534:                 &Apache::lonuserutils::verify_authen($formname,$context);
                   1535:         }
1.216     raeburn  1536:     }
                   1537:     my $js = &user_modification_js($pjump_def,$dc_setcourse_code,
                   1538:                                    $nondc_setsection_code,$groupslist);
                   1539:     my ($jsback,$elements) = &crumb_utilities();
                   1540:     $js .= "\n".
1.301     bisitz   1541:            '<script type="text/javascript">'."\n".
                   1542:            '// <![CDATA['."\n".
                   1543:            $jsback."\n".
                   1544:            '// ]]>'."\n".
                   1545:            '</script>'."\n";
1.216     raeburn  1546:     return $js;
                   1547: }
                   1548: 
1.217     raeburn  1549: sub display_existing_roles {
1.329     raeburn  1550:     my ($r,$ccuname,$ccdomain,$inccourses,$context,$roledom,$crstype) = @_;
                   1551:     my $now=time;
                   1552:     my %lt=&Apache::lonlocal::texthash(
1.217     raeburn  1553:                     'rer'  => "Existing Roles",
                   1554:                     'rev'  => "Revoke",
                   1555:                     'del'  => "Delete",
                   1556:                     'ren'  => "Re-Enable",
                   1557:                     'rol'  => "Role",
                   1558:                     'ext'  => "Extent",
                   1559:                     'sta'  => "Start",
                   1560:                     'end'  => "End",
                   1561:                                        );
1.329     raeburn  1562:     my (%rolesdump,%roletext,%sortrole,%roleclass,%rolepriv);
                   1563:     if ($context eq 'course' || $context eq 'author') {
                   1564:         my @roles = &Apache::lonuserutils::roles_by_context($context,1,$crstype);
                   1565:         my %roleshash = 
                   1566:             &Apache::lonnet::get_my_roles($ccuname,$ccdomain,'userroles',
                   1567:                               ['active','previous','future'],\@roles,$roledom,1);
                   1568:         foreach my $key (keys(%roleshash)) {
                   1569:             my ($start,$end) = split(':',$roleshash{$key});
                   1570:             next if ($start eq '-1' || $end eq '-1');
                   1571:             my ($rnum,$rdom,$role,$sec) = split(':',$key);
                   1572:             if ($context eq 'course') {
                   1573:                 next unless (($rnum eq $env{'course.'.$env{'request.course.id'}.'.num'})
                   1574:                              && ($rdom eq $env{'course.'.$env{'request.course.id'}.'.domain'}));
                   1575:             } elsif ($context eq 'author') {
                   1576:                 next unless (($rnum eq $env{'user.name'}) && ($rdom eq $env{'request.role.domain'}));
                   1577:             }
                   1578:             my ($newkey,$newvalue,$newrole);
                   1579:             $newkey = '/'.$rdom.'/'.$rnum;
                   1580:             if ($sec ne '') {
                   1581:                 $newkey .= '/'.$sec;
                   1582:             }
                   1583:             $newvalue = $role;
                   1584:             if ($role =~ /^cr/) {
                   1585:                 $newrole = 'cr';
                   1586:             } else {
                   1587:                 $newrole = $role;
                   1588:             }
                   1589:             $newkey .= '_'.$newrole;
                   1590:             if ($start ne '' && $end ne '') {
                   1591:                 $newvalue .= '_'.$end.'_'.$start;
1.335     raeburn  1592:             } elsif ($end ne '') {
                   1593:                 $newvalue .= '_'.$end;
1.329     raeburn  1594:             }
                   1595:             $rolesdump{$newkey} = $newvalue;
                   1596:         }
                   1597:     } else {
1.360     raeburn  1598:         %rolesdump=&Apache::lonnet::dump('roles',$ccdomain,$ccuname);
1.329     raeburn  1599:     }
                   1600:     # Build up table of user roles to allow revocation and re-enabling of roles.
                   1601:     my ($tmp) = keys(%rolesdump);
                   1602:     return if ($tmp =~ /^(con_lost|error)/i);
                   1603:     foreach my $area (sort { my $a1=join('_',(split('_',$a))[1,0]);
                   1604:                                 my $b1=join('_',(split('_',$b))[1,0]);
                   1605:                                 return $a1 cmp $b1;
                   1606:                             } keys(%rolesdump)) {
                   1607:         next if ($area =~ /^rolesdef/);
                   1608:         my $envkey=$area;
                   1609:         my $role = $rolesdump{$area};
                   1610:         my $thisrole=$area;
                   1611:         $area =~ s/\_\w\w$//;
                   1612:         my ($role_code,$role_end_time,$role_start_time) =
                   1613:             split(/_/,$role);
1.217     raeburn  1614: # Is this a custom role? Get role owner and title.
1.329     raeburn  1615:         my ($croleudom,$croleuname,$croletitle)=
                   1616:             ($role_code=~m{^cr/($match_domain)/($match_username)/(\w+)$});
                   1617:         my $allowed=0;
                   1618:         my $delallowed=0;
                   1619:         my $sortkey=$role_code;
                   1620:         my $class='Unknown';
                   1621:         if ($area =~ m{^/($match_domain)/($match_courseid)} ) {
                   1622:             $class='Course';
                   1623:             my ($coursedom,$coursedir) = ($1,$2);
                   1624:             my $cid = $1.'_'.$2;
                   1625:             # $1.'_'.$2 is the course id (eg. 103_12345abcef103l3).
                   1626:             my %coursedata=
                   1627:                 &Apache::lonnet::coursedescription($cid);
                   1628:             if ($coursedir =~ /^$match_community$/) {
                   1629:                 $class='Community';
                   1630:             }
                   1631:             $sortkey.="\0$coursedom";
                   1632:             my $carea;
                   1633:             if (defined($coursedata{'description'})) {
                   1634:                 $carea=$coursedata{'description'}.
                   1635:                     '<br />'.&mt('Domain').': '.$coursedom.('&nbsp;'x8).
                   1636:     &Apache::loncommon::syllabuswrapper(&mt('Syllabus'),$coursedir,$coursedom);
                   1637:                 $sortkey.="\0".$coursedata{'description'};
                   1638:             } else {
                   1639:                 if ($class eq 'Community') {
                   1640:                     $carea=&mt('Unavailable community').': '.$area;
                   1641:                     $sortkey.="\0".&mt('Unavailable community').': '.$area;
1.217     raeburn  1642:                 } else {
                   1643:                     $carea=&mt('Unavailable course').': '.$area;
                   1644:                     $sortkey.="\0".&mt('Unavailable course').': '.$area;
                   1645:                 }
1.329     raeburn  1646:             }
                   1647:             $sortkey.="\0$coursedir";
                   1648:             $inccourses->{$cid}=1;
                   1649:             if ((&Apache::lonnet::allowed('c'.$role_code,$coursedom.'/'.$coursedir)) ||
                   1650:                 (&Apache::lonnet::allowed('c'.$role_code,$ccdomain))) {
                   1651:                 $allowed=1;
                   1652:             }
                   1653:             unless ($allowed) {
1.365     raeburn  1654:                 my $isowner = &Apache::lonuserutils::is_courseowner($cid,$coursedata{'internal.courseowner'});
1.329     raeburn  1655:                 if ($isowner) {
                   1656:                     if (($role_code eq 'co') && ($class eq 'Community')) {
                   1657:                         $allowed = 1;
                   1658:                     } elsif (($role_code eq 'cc') && ($class eq 'Course')) {
                   1659:                         $allowed = 1;
                   1660:                     }
1.217     raeburn  1661:                 }
1.329     raeburn  1662:             } 
                   1663:             if ((&Apache::lonnet::allowed('dro',$coursedom)) ||
                   1664:                 (&Apache::lonnet::allowed('dro',$ccdomain))) {
                   1665:                 $delallowed=1;
                   1666:             }
1.217     raeburn  1667: # - custom role. Needs more info, too
1.329     raeburn  1668:             if ($croletitle) {
                   1669:                 if (&Apache::lonnet::allowed('ccr',$coursedom.'/'.$coursedir)) {
                   1670:                     $allowed=1;
                   1671:                     $thisrole.='.'.$role_code;
1.217     raeburn  1672:                 }
1.329     raeburn  1673:             }
                   1674:             if ($area=~m{^/($match_domain)/($match_courseid)/(\w+)}) {
1.373   ! bisitz   1675:                 $carea.='<br />'.&mt('Section: [_1]',$3);
1.329     raeburn  1676:                 $sortkey.="\0$3";
                   1677:                 if (!$allowed) {
                   1678:                     if ($env{'request.course.sec'} eq $3) {
                   1679:                         if (&Apache::lonnet::allowed('c'.$role_code,$1.'/'.$2.'/'.$3)) {
                   1680:                             $allowed = 1;
1.217     raeburn  1681:                         }
                   1682:                     }
                   1683:                 }
1.329     raeburn  1684:             }
                   1685:             $area=$carea;
                   1686:         } else {
                   1687:             $sortkey.="\0".$area;
                   1688:             # Determine if current user is able to revoke privileges
                   1689:             if ($area=~m{^/($match_domain)/}) {
                   1690:                 if ((&Apache::lonnet::allowed('c'.$role_code,$1)) ||
                   1691:                    (&Apache::lonnet::allowed('c'.$role_code,$ccdomain))) {
                   1692:                    $allowed=1;
1.217     raeburn  1693:                 }
1.329     raeburn  1694:                 if (((&Apache::lonnet::allowed('dro',$1))  ||
                   1695:                     (&Apache::lonnet::allowed('dro',$ccdomain))) &&
                   1696:                     ($role_code ne 'dc')) {
                   1697:                     $delallowed=1;
1.217     raeburn  1698:                 }
1.329     raeburn  1699:             } else {
                   1700:                 if (&Apache::lonnet::allowed('c'.$role_code,'/')) {
1.217     raeburn  1701:                     $allowed=1;
                   1702:                 }
                   1703:             }
1.363     raeburn  1704:             if ($role_code eq 'ca' || $role_code eq 'au' || $role_code eq 'aa') {
1.329     raeburn  1705:                 $class='Construction Space';
                   1706:             } elsif ($role_code eq 'su') {
                   1707:                 $class='System';
1.217     raeburn  1708:             } else {
1.329     raeburn  1709:                 $class='Domain';
1.217     raeburn  1710:             }
1.329     raeburn  1711:         }
                   1712:         if (($role_code eq 'ca') || ($role_code eq 'aa')) {
                   1713:             $area=~m{/($match_domain)/($match_username)};
                   1714:             if (&Apache::lonuserutils::authorpriv($2,$1)) {
                   1715:                 $allowed=1;
1.217     raeburn  1716:             } else {
1.329     raeburn  1717:                 $allowed=0;
1.217     raeburn  1718:             }
1.329     raeburn  1719:         }
                   1720:         my $row = '';
                   1721:         $row.= '<td>';
                   1722:         my $active=1;
                   1723:         $active=0 if (($role_end_time) && ($now>$role_end_time));
                   1724:         if (($active) && ($allowed)) {
                   1725:             $row.= '<input type="checkbox" name="rev:'.$thisrole.'" />';
                   1726:         } else {
                   1727:             if ($active) {
                   1728:                $row.='&nbsp;';
1.217     raeburn  1729:             } else {
1.329     raeburn  1730:                $row.=&mt('expired or revoked');
1.217     raeburn  1731:             }
1.329     raeburn  1732:         }
                   1733:         $row.='</td><td>';
                   1734:         if ($allowed && !$active) {
                   1735:             $row.= '<input type="checkbox" name="ren:'.$thisrole.'" />';
                   1736:         } else {
                   1737:             $row.='&nbsp;';
                   1738:         }
                   1739:         $row.='</td><td>';
                   1740:         if ($delallowed) {
                   1741:             $row.= '<input type="checkbox" name="del:'.$thisrole.'" />';
                   1742:         } else {
                   1743:             $row.='&nbsp;';
                   1744:         }
                   1745:         my $plaintext='';
                   1746:         if (!$croletitle) {
                   1747:             $plaintext=&Apache::lonnet::plaintext($role_code,$class)
                   1748:         } else {
                   1749:             $plaintext=
1.346     bisitz   1750:                 &mt('Customrole [_1][_2]defined by [_3]',
                   1751:                         '"'.$croletitle.'"',
                   1752:                         '<br />',
                   1753:                         $croleuname.':'.$croleudom);
1.329     raeburn  1754:         }
                   1755:         $row.= '</td><td>'.$plaintext.
                   1756:                '</td><td>'.$area.
                   1757:                '</td><td>'.($role_start_time?&Apache::lonlocal::locallocaltime($role_start_time)
                   1758:                                             : '&nbsp;' ).
                   1759:                '</td><td>'.($role_end_time  ?&Apache::lonlocal::locallocaltime($role_end_time)
                   1760:                                             : '&nbsp;' )
                   1761:                ."</td>";
                   1762:         $sortrole{$sortkey}=$envkey;
                   1763:         $roletext{$envkey}=$row;
                   1764:         $roleclass{$envkey}=$class;
                   1765:         $rolepriv{$envkey}=$allowed;
                   1766:     } # end of foreach        (table building loop)
                   1767: 
                   1768:     my $rolesdisplay = 0;
                   1769:     my %output = ();
                   1770:     foreach my $type ('Construction Space','Course','Community','Domain','System','Unknown') {
                   1771:         $output{$type} = '';
                   1772:         foreach my $which (sort {uc($a) cmp uc($b)} (keys(%sortrole))) {
                   1773:             if ( ($roleclass{$sortrole{$which}} =~ /^\Q$type\E/ ) && ($rolepriv{$sortrole{$which}}) ) {
                   1774:                  $output{$type}.=
                   1775:                       &Apache::loncommon::start_data_table_row().
                   1776:                       $roletext{$sortrole{$which}}.
                   1777:                       &Apache::loncommon::end_data_table_row();
1.217     raeburn  1778:             }
1.329     raeburn  1779:         }
                   1780:         unless($output{$type} eq '') {
                   1781:             $output{$type} = '<tr class="LC_info_row">'.
                   1782:                       "<td align='center' colspan='7'>".&mt($type)."</td></tr>".
                   1783:                       $output{$type};
                   1784:             $rolesdisplay = 1;
                   1785:         }
                   1786:     }
                   1787:     if ($rolesdisplay == 1) {
                   1788:         my $contextrole='';
                   1789:         if ($env{'request.course.id'}) {
                   1790:             if (&Apache::loncommon::course_type() eq 'Community') {
                   1791:                 $contextrole = &mt('Existing Roles in this Community');
1.290     bisitz   1792:             } else {
1.329     raeburn  1793:                 $contextrole = &mt('Existing Roles in this Course');
1.290     bisitz   1794:             }
1.329     raeburn  1795:         } elsif ($env{'request.role'} =~ /^au\./) {
                   1796:             $contextrole = &mt('Existing Co-Author Roles in your Construction Space');
                   1797:         } else {
                   1798:             $contextrole = &mt('Existing Roles in this Domain');
                   1799:         }
                   1800:         $r->print('
1.217     raeburn  1801: <h3>'.$lt{'rer'}.'</h3>'.
1.329     raeburn  1802: '<div>'.$contextrole.'</div>'.
1.217     raeburn  1803: &Apache::loncommon::start_data_table("LC_createuser").
                   1804: &Apache::loncommon::start_data_table_header_row().
                   1805: '<th>'.$lt{'rev'}.'</th><th>'.$lt{'ren'}.'</th><th>'.$lt{'del'}.
                   1806: '</th><th>'.$lt{'rol'}.'</th><th>'.$lt{'ext'}.
                   1807: '</th><th>'.$lt{'sta'}.'</th><th>'.$lt{'end'}.'</th>'.
                   1808: &Apache::loncommon::end_data_table_header_row());
1.329     raeburn  1809:         foreach my $type ('Construction Space','Course','Community','Domain','System','Unknown') {
                   1810:             if ($output{$type}) {
                   1811:                 $r->print($output{$type}."\n");
1.217     raeburn  1812:             }
                   1813:         }
1.329     raeburn  1814:         $r->print(&Apache::loncommon::end_data_table());
                   1815:     }
1.217     raeburn  1816:     return;
                   1817: }
                   1818: 
1.218     raeburn  1819: sub new_coauthor_roles {
                   1820:     my ($r,$ccuname,$ccdomain) = @_;
                   1821:     my $addrolesdisplay = 0;
                   1822:     #
                   1823:     # Co-Author
                   1824:     #
                   1825:     if (&Apache::lonuserutils::authorpriv($env{'user.name'},
                   1826:                                           $env{'request.role.domain'}) &&
                   1827:         ($env{'user.name'} ne $ccuname || $env{'user.domain'} ne $ccdomain)) {
                   1828:         # No sense in assigning co-author role to yourself
                   1829:         $addrolesdisplay = 1;
                   1830:         my $cuname=$env{'user.name'};
                   1831:         my $cudom=$env{'request.role.domain'};
                   1832:         my %lt=&Apache::lonlocal::texthash(
                   1833:                     'cs'   => "Construction Space",
                   1834:                     'act'  => "Activate",
                   1835:                     'rol'  => "Role",
                   1836:                     'ext'  => "Extent",
                   1837:                     'sta'  => "Start",
                   1838:                     'end'  => "End",
                   1839:                     'cau'  => "Co-Author",
                   1840:                     'caa'  => "Assistant Co-Author",
                   1841:                     'ssd'  => "Set Start Date",
                   1842:                     'sed'  => "Set End Date"
                   1843:                                        );
                   1844:         $r->print('<h4>'.$lt{'cs'}.'</h4>'."\n".
                   1845:                   &Apache::loncommon::start_data_table()."\n".
                   1846:                   &Apache::loncommon::start_data_table_header_row()."\n".
                   1847:                   '<th>'.$lt{'act'}.'</th><th>'.$lt{'rol'}.'</th>'.
                   1848:                   '<th>'.$lt{'ext'}.'</th><th>'.$lt{'sta'}.'</th>'.
                   1849:                   '<th>'.$lt{'end'}.'</th>'."\n".
                   1850:                   &Apache::loncommon::end_data_table_header_row()."\n".
                   1851:                   &Apache::loncommon::start_data_table_row().'
                   1852:            <td>
1.291     bisitz   1853:             <input type="checkbox" name="act_'.$cudom.'_'.$cuname.'_ca" />
1.218     raeburn  1854:            </td>
                   1855:            <td>'.$lt{'cau'}.'</td>
                   1856:            <td>'.$cudom.'_'.$cuname.'</td>
                   1857:            <td><input type="hidden" name="start_'.$cudom.'_'.$cuname.'_ca" value="" />
                   1858:              <a href=
                   1859: "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>
                   1860: <td><input type="hidden" name="end_'.$cudom.'_'.$cuname.'_ca" value="" />
                   1861: <a href=
                   1862: "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".
                   1863:               &Apache::loncommon::end_data_table_row()."\n".
                   1864:               &Apache::loncommon::start_data_table_row()."\n".
1.291     bisitz   1865: '<td><input type="checkbox" name="act_'.$cudom.'_'.$cuname.'_aa" /></td>
1.218     raeburn  1866: <td>'.$lt{'caa'}.'</td>
                   1867: <td>'.$cudom.'_'.$cuname.'</td>
                   1868: <td><input type="hidden" name="start_'.$cudom.'_'.$cuname.'_aa" value="" />
                   1869: <a href=
                   1870: "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>
                   1871: <td><input type="hidden" name="end_'.$cudom.'_'.$cuname.'_aa" value="" />
                   1872: <a href=
                   1873: "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".
                   1874:              &Apache::loncommon::end_data_table_row()."\n".
                   1875:              &Apache::loncommon::end_data_table());
                   1876:     } elsif ($env{'request.role'} =~ /^au\./) {
                   1877:         if (!(&Apache::lonuserutils::authorpriv($env{'user.name'},
                   1878:                                                 $env{'request.role.domain'}))) {
                   1879:             $r->print('<span class="LC_error">'.
                   1880:                       &mt('You do not have privileges to assign co-author roles.').
                   1881:                       '</span>');
                   1882:         } elsif (($env{'user.name'} eq $ccuname) &&
                   1883:              ($env{'user.domain'} eq $ccdomain)) {
                   1884:             $r->print(&mt('Assigning yourself a co-author or assistant co-author role in your own author area in Construction Space is not permitted'));
                   1885:         }
                   1886:     }
                   1887:     return $addrolesdisplay;;
                   1888: }
                   1889: 
                   1890: sub new_domain_roles {
1.357     raeburn  1891:     my ($r,$ccdomain) = @_;
1.218     raeburn  1892:     my $addrolesdisplay = 0;
                   1893:     #
                   1894:     # Domain level
                   1895:     #
                   1896:     my $num_domain_level = 0;
                   1897:     my $domaintext =
                   1898:     '<h4>'.&mt('Domain Level').'</h4>'.
                   1899:     &Apache::loncommon::start_data_table().
                   1900:     &Apache::loncommon::start_data_table_header_row().
                   1901:     '<th>'.&mt('Activate').'</th><th>'.&mt('Role').'</th><th>'.
                   1902:     &mt('Extent').'</th>'.
                   1903:     '<th>'.&mt('Start').'</th><th>'.&mt('End').'</th>'.
                   1904:     &Apache::loncommon::end_data_table_header_row();
1.312     raeburn  1905:     my @allroles = &Apache::lonuserutils::roles_by_context('domain');
1.218     raeburn  1906:     foreach my $thisdomain (sort(&Apache::lonnet::all_domains())) {
1.312     raeburn  1907:         foreach my $role (@allroles) {
                   1908:             next if ($role eq 'ad');
1.357     raeburn  1909:             next if (($role eq 'au') && ($ccdomain ne $thisdomain));
1.218     raeburn  1910:             if (&Apache::lonnet::allowed('c'.$role,$thisdomain)) {
                   1911:                my $plrole=&Apache::lonnet::plaintext($role);
                   1912:                my %lt=&Apache::lonlocal::texthash(
                   1913:                     'ssd'  => "Set Start Date",
                   1914:                     'sed'  => "Set End Date"
                   1915:                                        );
                   1916:                $num_domain_level ++;
                   1917:                $domaintext .=
                   1918: &Apache::loncommon::start_data_table_row().
1.291     bisitz   1919: '<td><input type="checkbox" name="act_'.$thisdomain.'_'.$role.'" /></td>
1.218     raeburn  1920: <td>'.$plrole.'</td>
                   1921: <td>'.$thisdomain.'</td>
                   1922: <td><input type="hidden" name="start_'.$thisdomain.'_'.$role.'" value="" />
                   1923: <a href=
                   1924: "javascript:pjump('."'date_start','Start Date $plrole',document.cu.start_$thisdomain\_$role.value,'start_$thisdomain\_$role','cu.pres','dateset'".')">'.$lt{'ssd'}.'</a></td>
                   1925: <td><input type="hidden" name="end_'.$thisdomain.'_'.$role.'" value="" />
                   1926: <a href=
                   1927: "javascript:pjump('."'date_end','End Date $plrole',document.cu.end_$thisdomain\_$role.value,'end_$thisdomain\_$role','cu.pres','dateset'".')">'.$lt{'sed'}.'</a></td>'.
                   1928: &Apache::loncommon::end_data_table_row();
                   1929:             }
                   1930:         }
                   1931:     }
                   1932:     $domaintext.= &Apache::loncommon::end_data_table();
                   1933:     if ($num_domain_level > 0) {
                   1934:         $r->print($domaintext);
                   1935:         $addrolesdisplay = 1;
                   1936:     }
                   1937:     return $addrolesdisplay;
                   1938: }
                   1939: 
1.188     raeburn  1940: sub user_authentication {
1.227     raeburn  1941:     my ($ccuname,$ccdomain,$formname) = @_;
1.188     raeburn  1942:     my $currentauth=&Apache::lonnet::queryauthenticate($ccuname,$ccdomain);
1.227     raeburn  1943:     my $outcome;
1.188     raeburn  1944:     # Check for a bad authentication type
                   1945:     if ($currentauth !~ /^(krb4|krb5|unix|internal|localauth):/) {
                   1946:         # bad authentication scheme
                   1947:         my %lt=&Apache::lonlocal::texthash(
                   1948:                        'err'   => "ERROR",
                   1949:                        'uuas'  => "This user has an unrecognized authentication scheme",
                   1950:                        'adcs'  => "Please alert a domain coordinator of this situation",
                   1951:                        'sldb'  => "Please specify login data below",
                   1952:                        'ld'    => "Login Data"
                   1953:         );
                   1954:         if (&Apache::lonnet::allowed('mau',$ccdomain)) {
1.227     raeburn  1955:             &initialize_authen_forms($ccdomain,$formname);
                   1956: 
1.190     raeburn  1957:             my $choices = &Apache::lonuserutils::set_login($ccdomain,$authformkrb,$authformint,$authformloc);
1.188     raeburn  1958:             $outcome = <<ENDBADAUTH;
                   1959: <script type="text/javascript" language="Javascript">
1.301     bisitz   1960: // <![CDATA[
1.188     raeburn  1961: $loginscript
1.301     bisitz   1962: // ]]>
1.188     raeburn  1963: </script>
                   1964: <span class="LC_error">$lt{'err'}:
                   1965: $lt{'uuas'} ($currentauth). $lt{'sldb'}.</span>
                   1966: <h3>$lt{'ld'}</h3>
                   1967: $choices
                   1968: ENDBADAUTH
                   1969:         } else {
                   1970:             # This user is not allowed to modify the user's
                   1971:             # authentication scheme, so just notify them of the problem
                   1972:             $outcome = <<ENDBADAUTH;
                   1973: <span class="LC_error"> $lt{'err'}: 
                   1974: $lt{'uuas'} ($currentauth). $lt{'adcs'}.
                   1975: </span>
                   1976: ENDBADAUTH
                   1977:         }
                   1978:     } else { # Authentication type is valid
1.227     raeburn  1979:         &initialize_authen_forms($ccdomain,$formname,$currentauth,'modifyuser');
1.205     raeburn  1980:         my ($authformcurrent,$can_modify,@authform_others) =
1.188     raeburn  1981:             &modify_login_block($ccdomain,$currentauth);
                   1982:         if (&Apache::lonnet::allowed('mau',$ccdomain)) {
                   1983:             # Current user has login modification privileges
                   1984:             my %lt=&Apache::lonlocal::texthash (
                   1985:                            'ld'    => "Login Data",
                   1986:                            'ccld'  => "Change Current Login Data",
                   1987:                            'enld'  => "Enter New Login Data"
                   1988:                                                );
                   1989:             $outcome =
                   1990:                        '<script type="text/javascript" language="Javascript">'."\n".
1.301     bisitz   1991:                        '// <![CDATA['."\n".
1.188     raeburn  1992:                        $loginscript."\n".
1.301     bisitz   1993:                        '// ]]>'."\n".
1.188     raeburn  1994:                        '</script>'."\n".
                   1995:                        '<h3>'.$lt{'ld'}.'</h3>'.
                   1996:                        &Apache::loncommon::start_data_table().
1.205     raeburn  1997:                        &Apache::loncommon::start_data_table_row().
1.188     raeburn  1998:                        '<td>'.$authformnop;
                   1999:             if ($can_modify) {
                   2000:                 $outcome .= '</td>'."\n".
                   2001:                             &Apache::loncommon::end_data_table_row().
                   2002:                             &Apache::loncommon::start_data_table_row().
                   2003:                             '<td>'.$authformcurrent.'</td>'.
                   2004:                             &Apache::loncommon::end_data_table_row()."\n";
                   2005:             } else {
1.200     raeburn  2006:                 $outcome .= '&nbsp;('.$authformcurrent.')</td>'.
                   2007:                             &Apache::loncommon::end_data_table_row()."\n";
1.188     raeburn  2008:             }
1.205     raeburn  2009:             foreach my $item (@authform_others) { 
                   2010:                 $outcome .= &Apache::loncommon::start_data_table_row().
                   2011:                             '<td>'.$item.'</td>'.
                   2012:                             &Apache::loncommon::end_data_table_row()."\n";
1.188     raeburn  2013:             }
1.205     raeburn  2014:             $outcome .= &Apache::loncommon::end_data_table();
1.188     raeburn  2015:         } else {
                   2016:             if (&Apache::lonnet::allowed('mau',$env{'request.role.domain'})) {
                   2017:                 my %lt=&Apache::lonlocal::texthash(
                   2018:                            'ccld'  => "Change Current Login Data",
                   2019:                            'yodo'  => "You do not have privileges to modify the authentication configuration for this user.",
                   2020:                            'ifch'  => "If a change is required, contact a domain coordinator for the domain",
                   2021:                 );
                   2022:                 $outcome .= <<ENDNOPRIV;
                   2023: <h3>$lt{'ccld'}</h3>
                   2024: $lt{'yodo'} $lt{'ifch'}: $ccdomain
1.235     raeburn  2025: <input type="hidden" name="login" value="nochange" />
1.188     raeburn  2026: ENDNOPRIV
                   2027:             }
                   2028:         }
                   2029:     }  ## End of "check for bad authentication type" logic
                   2030:     return $outcome;
                   2031: }
                   2032: 
1.187     raeburn  2033: sub modify_login_block {
                   2034:     my ($dom,$currentauth) = @_;
                   2035:     my %domconfig = &Apache::lonnet::get_dom('configuration',['usercreation'],$dom);
                   2036:     my ($authnum,%can_assign) =
                   2037:         &Apache::loncommon::get_assignable_auth($dom);
1.205     raeburn  2038:     my ($authformcurrent,@authform_others,$show_override_msg);
1.187     raeburn  2039:     if ($currentauth=~/^krb(4|5):/) {
                   2040:         $authformcurrent=$authformkrb;
                   2041:         if ($can_assign{'int'}) {
1.205     raeburn  2042:             push(@authform_others,$authformint);
1.187     raeburn  2043:         }
                   2044:         if ($can_assign{'loc'}) {
1.205     raeburn  2045:             push(@authform_others,$authformloc);
1.187     raeburn  2046:         }
                   2047:         if (($can_assign{'krb4'}) || ($can_assign{'krb5'})) {
                   2048:             $show_override_msg = 1;
                   2049:         }
                   2050:     } elsif ($currentauth=~/^internal:/) {
                   2051:         $authformcurrent=$authformint;
                   2052:         if (($can_assign{'krb4'}) || ($can_assign{'krb5'})) {
1.205     raeburn  2053:             push(@authform_others,$authformkrb);
1.187     raeburn  2054:         }
                   2055:         if ($can_assign{'loc'}) {
1.205     raeburn  2056:             push(@authform_others,$authformloc);
1.187     raeburn  2057:         }
                   2058:         if ($can_assign{'int'}) {
                   2059:             $show_override_msg = 1;
                   2060:         }
                   2061:     } elsif ($currentauth=~/^unix:/) {
                   2062:         $authformcurrent=$authformfsys;
                   2063:         if (($can_assign{'krb4'}) || ($can_assign{'krb5'})) {
1.205     raeburn  2064:             push(@authform_others,$authformkrb);
1.187     raeburn  2065:         }
                   2066:         if ($can_assign{'int'}) {
1.205     raeburn  2067:             push(@authform_others,$authformint);
1.187     raeburn  2068:         }
                   2069:         if ($can_assign{'loc'}) {
1.205     raeburn  2070:             push(@authform_others,$authformloc);
1.187     raeburn  2071:         }
                   2072:         if ($can_assign{'fsys'}) {
                   2073:             $show_override_msg = 1;
                   2074:         }
                   2075:     } elsif ($currentauth=~/^localauth:/) {
                   2076:         $authformcurrent=$authformloc;
                   2077:         if (($can_assign{'krb4'}) || ($can_assign{'krb5'})) {
1.205     raeburn  2078:             push(@authform_others,$authformkrb);
1.187     raeburn  2079:         }
                   2080:         if ($can_assign{'int'}) {
1.205     raeburn  2081:             push(@authform_others,$authformint);
1.187     raeburn  2082:         }
                   2083:         if ($can_assign{'loc'}) {
                   2084:             $show_override_msg = 1;
                   2085:         }
                   2086:     }
                   2087:     if ($show_override_msg) {
1.205     raeburn  2088:         $authformcurrent = '<table><tr><td colspan="3">'.$authformcurrent.
                   2089:                            '</td></tr>'."\n".
                   2090:                            '<tr><td>&nbsp;&nbsp;&nbsp;</td>'.
                   2091:                            '<td><b>'.&mt('Currently in use').'</b></td>'.
                   2092:                            '<td align="right"><span class="LC_cusr_emph">'.
1.187     raeburn  2093:                             &mt('will override current values').
1.205     raeburn  2094:                             '</span></td></tr></table>';
1.187     raeburn  2095:     }
1.205     raeburn  2096:     return ($authformcurrent,$show_override_msg,@authform_others); 
1.187     raeburn  2097: }
                   2098: 
1.188     raeburn  2099: sub personal_data_display {
1.252     raeburn  2100:     my ($ccuname,$ccdomain,$newuser,$context,$inst_results,$rolesarray) = @_;
1.286     raeburn  2101:     my ($output,$showforceid,%userenv,%canmodify,%canmodify_status);
1.219     raeburn  2102:     my @userinfo = ('firstname','middlename','lastname','generation',
                   2103:                     'permanentemail','id');
1.252     raeburn  2104:     my $rowcount = 0;
                   2105:     my $editable = 0;
1.286     raeburn  2106:     %canmodify_status = 
                   2107:         &Apache::lonuserutils::can_modify_userinfo($context,$ccdomain,
                   2108:                                                    ['inststatus'],$rolesarray);
1.253     raeburn  2109:     if (!$newuser) {
1.188     raeburn  2110:         # Get the users information
                   2111:         %userenv = &Apache::lonnet::get('environment',
                   2112:                    ['firstname','middlename','lastname','generation',
1.286     raeburn  2113:                     'permanentemail','id','inststatus'],$ccdomain,$ccuname);
1.219     raeburn  2114:         %canmodify =
                   2115:             &Apache::lonuserutils::can_modify_userinfo($context,$ccdomain,
1.252     raeburn  2116:                                                        \@userinfo,$rolesarray);
1.257     raeburn  2117:     } elsif ($context eq 'selfcreate') {
                   2118:         %canmodify = &selfcreate_canmodify($context,$ccdomain,\@userinfo,
                   2119:                                            $inst_results,$rolesarray);
1.188     raeburn  2120:     }
                   2121:     my %lt=&Apache::lonlocal::texthash(
                   2122:                 'pd'             => "Personal Data",
                   2123:                 'firstname'      => "First Name",
                   2124:                 'middlename'     => "Middle Name",
                   2125:                 'lastname'       => "Last Name",
                   2126:                 'generation'     => "Generation",
                   2127:                 'permanentemail' => "Permanent e-mail address",
1.259     bisitz   2128:                 'id'             => "Student/Employee ID",
1.286     raeburn  2129:                 'lg'             => "Login Data",
                   2130:                 'inststatus'     => "Affiliation",
1.188     raeburn  2131:     );
                   2132:     my %textboxsize = (
                   2133:                        firstname      => '15',
                   2134:                        middlename     => '15',
                   2135:                        lastname       => '15',
                   2136:                        generation     => '5',
                   2137:                        permanentemail => '25',
                   2138:                        id             => '15',
                   2139:                       );
                   2140:     my $genhelp=&Apache::loncommon::help_open_topic('Generation');
                   2141:     $output = '<h3>'.$lt{'pd'}.'</h3>'.
                   2142:               &Apache::lonhtmlcommon::start_pick_box();
                   2143:     foreach my $item (@userinfo) {
                   2144:         my $rowtitle = $lt{$item};
1.252     raeburn  2145:         my $hiderow = 0;
1.188     raeburn  2146:         if ($item eq 'generation') {
                   2147:             $rowtitle = $genhelp.$rowtitle;
                   2148:         }
1.252     raeburn  2149:         my $row = &Apache::lonhtmlcommon::row_title($rowtitle,undef,'LC_oddrow_value')."\n";
1.188     raeburn  2150:         if ($newuser) {
1.210     raeburn  2151:             if (ref($inst_results) eq 'HASH') {
                   2152:                 if ($inst_results->{$item} ne '') {
1.252     raeburn  2153:                     $row .= '<input type="hidden" name="c'.$item.'" value="'.$inst_results->{$item}.'" />'.$inst_results->{$item};
1.210     raeburn  2154:                 } else {
1.252     raeburn  2155:                     if ($context eq 'selfcreate') {
                   2156:                         if ($canmodify{$item}) { 
                   2157:                             $row .= '<input type="text" name="c'.$item.'" size="'.$textboxsize{$item}.'" value="" />';
                   2158:                             $editable ++;
                   2159:                         } else {
                   2160:                             $hiderow = 1;
                   2161:                         }
1.253     raeburn  2162:                     } else {
                   2163:                         $row .= '<input type="text" name="c'.$item.'" size="'.$textboxsize{$item}.'" value="" />';
1.252     raeburn  2164:                     }
1.210     raeburn  2165:                 }
1.188     raeburn  2166:             } else {
1.252     raeburn  2167:                 if ($context eq 'selfcreate') {
1.287     raeburn  2168:                     if (($item eq 'permanentemail') && ($newuser eq 'email')) {
                   2169:                         $row .= $ccuname;
1.252     raeburn  2170:                     } else {
1.287     raeburn  2171:                         if ($canmodify{$item}) {
                   2172:                             $row .= '<input type="text" name="c'.$item.'" size="'.$textboxsize{$item}.'" value="" />';
                   2173:                             $editable ++;
                   2174:                         } else {
                   2175:                             $hiderow = 1;
                   2176:                         }
1.252     raeburn  2177:                     }
1.253     raeburn  2178:                 } else {
                   2179:                     $row .= '<input type="text" name="c'.$item.'" size="'.$textboxsize{$item}.'" value="" />';
1.252     raeburn  2180:                 }
1.188     raeburn  2181:             }
                   2182:         } else {
1.219     raeburn  2183:             if ($canmodify{$item}) {
1.252     raeburn  2184:                 $row .= '<input type="text" name="c'.$item.'" size="'.$textboxsize{$item}.'" value="'.$userenv{$item}.'" />';
1.188     raeburn  2185:             } else {
1.252     raeburn  2186:                 $row .= $userenv{$item};
1.188     raeburn  2187:             }
1.206     raeburn  2188:             if ($item eq 'id') {
1.219     raeburn  2189:                 $showforceid = $canmodify{$item};
                   2190:             }
1.188     raeburn  2191:         }
1.252     raeburn  2192:         $row .= &Apache::lonhtmlcommon::row_closure(1);
                   2193:         if (!$hiderow) {
                   2194:             $output .= $row;
                   2195:             $rowcount ++;
                   2196:         }
1.188     raeburn  2197:     }
1.286     raeburn  2198:     if (($canmodify_status{'inststatus'}) || ($context ne 'selfcreate')) {
                   2199:         my ($othertitle,$usertypes,$types) = &Apache::loncommon::sorted_inst_types($ccdomain);
                   2200:         if (ref($types) eq 'ARRAY') {
                   2201:             if (@{$types} > 0) {
                   2202:                 my ($hiderow,$shown);
                   2203:                 if ($canmodify_status{'inststatus'}) {
                   2204:                     $shown = &pick_inst_statuses($userenv{'inststatus'},$usertypes,$types);
                   2205:                 } else {
                   2206:                     if ($userenv{'inststatus'} eq '') {
                   2207:                         $hiderow = 1;
1.334     raeburn  2208:                     } else {
                   2209:                         my @showitems;
                   2210:                         foreach my $item ( map { &unescape($_); } split(':',$userenv{'inststatus'})) {
                   2211:                             if (exists($usertypes->{$item})) {
                   2212:                                 push(@showitems,$usertypes->{$item});
                   2213:                             } else {
                   2214:                                 push(@showitems,$item);
                   2215:                             }
                   2216:                         }
                   2217:                         if (@showitems) {
                   2218:                             $shown = join(', ',@showitems);
                   2219:                         } else {
                   2220:                             $hiderow = 1;
                   2221:                         }
1.286     raeburn  2222:                     }
                   2223:                 }
                   2224:                 if (!$hiderow) {
                   2225:                     my $row = &Apache::lonhtmlcommon::row_title(&mt('Affliations'),undef,'LC_oddrow_value')."\n".
                   2226:                               $shown.&Apache::lonhtmlcommon::row_closure(1); 
                   2227:                     if ($context eq 'selfcreate') {
                   2228:                         $rowcount ++;
                   2229:                     }
                   2230:                     $output .= $row;
                   2231:                 }
                   2232:             }
                   2233:         }
                   2234:     }
1.188     raeburn  2235:     $output .= &Apache::lonhtmlcommon::end_pick_box();
1.206     raeburn  2236:     if (wantarray) {
1.252     raeburn  2237:         if ($context eq 'selfcreate') {
                   2238:             return($output,$rowcount,$editable);
                   2239:         } else {
                   2240:             return ($output,$showforceid);
                   2241:         }
1.206     raeburn  2242:     } else {
                   2243:         return $output;
                   2244:     }
1.188     raeburn  2245: }
                   2246: 
1.286     raeburn  2247: sub pick_inst_statuses {
                   2248:     my ($curr,$usertypes,$types) = @_;
                   2249:     my ($output,$rem,@currtypes);
                   2250:     if ($curr ne '') {
                   2251:         @currtypes = map { &unescape($_); } split(/:/,$curr);
                   2252:     }
                   2253:     my $numinrow = 2;
                   2254:     if (ref($types) eq 'ARRAY') {
                   2255:         $output = '<table>';
                   2256:         my $lastcolspan; 
                   2257:         for (my $i=0; $i<@{$types}; $i++) {
                   2258:             if (defined($usertypes->{$types->[$i]})) {
                   2259:                 my $rem = $i%($numinrow);
                   2260:                 if ($rem == 0) {
                   2261:                     if ($i<@{$types}-1) {
                   2262:                         if ($i > 0) { 
                   2263:                             $output .= '</tr>';
                   2264:                         }
                   2265:                         $output .= '<tr>';
                   2266:                     }
                   2267:                 } elsif ($i==@{$types}-1) {
                   2268:                     my $colsleft = $numinrow - $rem;
                   2269:                     if ($colsleft > 1) {
                   2270:                         $lastcolspan = ' colspan="'.$colsleft.'"';
                   2271:                     }
                   2272:                 }
                   2273:                 my $check = ' ';
                   2274:                 if (grep(/^\Q$types->[$i]\E$/,@currtypes)) {
                   2275:                     $check = ' checked="checked" ';
                   2276:                 }
                   2277:                 $output .= '<td class="LC_left_item"'.$lastcolspan.'>'.
                   2278:                            '<span class="LC_nobreak"><label>'.
                   2279:                            '<input type="checkbox" name="inststatus" '.
                   2280:                            'value="'.$types->[$i].'"'.$check.'/>'.
                   2281:                            $usertypes->{$types->[$i]}.'</label></span></td>';
                   2282:             }
                   2283:         }
                   2284:         $output .= '</tr></table>';
                   2285:     }
                   2286:     return $output;
                   2287: }
                   2288: 
1.257     raeburn  2289: sub selfcreate_canmodify {
                   2290:     my ($context,$dom,$userinfo,$inst_results,$rolesarray) = @_;
                   2291:     if (ref($inst_results) eq 'HASH') {
                   2292:         my @inststatuses = &get_inststatuses($inst_results);
                   2293:         if (@inststatuses == 0) {
                   2294:             @inststatuses = ('default');
                   2295:         }
                   2296:         $rolesarray = \@inststatuses;
                   2297:     }
                   2298:     my %canmodify =
                   2299:         &Apache::lonuserutils::can_modify_userinfo($context,$dom,$userinfo,
                   2300:                                                    $rolesarray);
                   2301:     return %canmodify;
                   2302: }
                   2303: 
1.252     raeburn  2304: sub get_inststatuses {
                   2305:     my ($insthashref) = @_;
                   2306:     my @inststatuses = ();
                   2307:     if (ref($insthashref) eq 'HASH') {
                   2308:         if (ref($insthashref->{'inststatus'}) eq 'ARRAY') {
                   2309:             @inststatuses = @{$insthashref->{'inststatus'}};
                   2310:         }
                   2311:     }
                   2312:     return @inststatuses;
                   2313: }
                   2314: 
1.4       www      2315: # ================================================================= Phase Three
1.42      matthew  2316: sub update_user_data {
1.351     raeburn  2317:     my ($r,$context,$crstype,$brcrum) = @_; 
1.101     albertel 2318:     my $uhome=&Apache::lonnet::homeserver($env{'form.ccuname'},
                   2319:                                           $env{'form.ccdomain'});
1.27      matthew  2320:     # Error messages
1.188     raeburn  2321:     my $error     = '<span class="LC_error">'.&mt('Error').': ';
1.193     raeburn  2322:     my $end       = '</span><br /><br />';
                   2323:     my $rtnlink   = '<a href="javascript:backPage(document.userupdate,'.
1.188     raeburn  2324:                     "'$env{'form.prevphase'}','modify')".'" />'.
1.219     raeburn  2325:                     &mt('Return to previous page').'</a>'.
                   2326:                     &Apache::loncommon::end_page();
                   2327:     my $now = time;
1.40      www      2328:     my $title;
1.101     albertel 2329:     if (exists($env{'form.makeuser'})) {
1.40      www      2330: 	$title='Set Privileges for New User';
                   2331:     } else {
                   2332:         $title='Modify User Privileges';
                   2333:     }
1.213     raeburn  2334:     my $newuser = 0;
1.160     raeburn  2335:     my ($jsback,$elements) = &crumb_utilities();
                   2336:     my $jscript = '<script type="text/javascript">'."\n".
1.301     bisitz   2337:                   '// <![CDATA['."\n".
                   2338:                   $jsback."\n".
                   2339:                   '// ]]>'."\n".
                   2340:                   '</script>'."\n";
1.318     raeburn  2341:     my %breadcrumb_text = &singleuser_breadcrumb($crstype);
1.351     raeburn  2342:     push (@{$brcrum},
                   2343:              {href => "javascript:backPage(document.userupdate)",
                   2344:               text => $breadcrumb_text{'search'},
                   2345:               faq  => 282,
                   2346:               bug  => 'Instructor Interface',}
                   2347:              );
                   2348:     if ($env{'form.prevphase'} eq 'userpicked') {
                   2349:         push(@{$brcrum},
                   2350:                {href => "javascript:backPage(document.userupdate,'get_user_info','select')",
                   2351:                 text => $breadcrumb_text{'userpicked'},
                   2352:                 faq  => 282,
                   2353:                 bug  => 'Instructor Interface',});
1.233     raeburn  2354:     }
1.224     raeburn  2355:     my $helpitem = 'Course_Change_Privileges';
                   2356:     if ($env{'form.action'} eq 'singlestudent') {
                   2357:         $helpitem = 'Course_Add_Student';
                   2358:     }
1.351     raeburn  2359:     push(@{$brcrum}, 
                   2360:             {href => "javascript:backPage(document.userupdate,'$env{'form.prevphase'}','modify')",
                   2361:              text => $breadcrumb_text{'modify'},
                   2362:              faq  => 282,
                   2363:              bug  => 'Instructor Interface',},
                   2364:             {href => "/adm/createuser",
                   2365:              text => "Result",
                   2366:              faq  => 282,
                   2367:              bug  => 'Instructor Interface',
                   2368:              help => $helpitem});
                   2369:     my $args = {bread_crumbs          => $brcrum,
                   2370:                 bread_crumbs_component => 'User Management'};
                   2371:     if ($env{'form.popup'}) {
                   2372:         $args->{'no_nav_bar'} = 1;
                   2373:     }
                   2374:     $r->print(&Apache::loncommon::start_page($title,$jscript,$args));
1.188     raeburn  2375:     $r->print(&update_result_form($uhome));
1.27      matthew  2376:     # Check Inputs
1.101     albertel 2377:     if (! $env{'form.ccuname'} ) {
1.193     raeburn  2378: 	$r->print($error.&mt('No login name specified').'.'.$end.$rtnlink);
1.27      matthew  2379: 	return;
                   2380:     }
1.138     albertel 2381:     if (  $env{'form.ccuname'} ne 
                   2382: 	  &LONCAPA::clean_username($env{'form.ccuname'}) ) {
1.281     bisitz   2383: 	$r->print($error.&mt('Invalid login name.').'  '.
                   2384: 		  &mt('Only letters, numbers, periods, dashes, @, and underscores are valid.').
1.193     raeburn  2385: 		  $end.$rtnlink);
1.27      matthew  2386: 	return;
                   2387:     }
1.101     albertel 2388:     if (! $env{'form.ccdomain'}       ) {
1.193     raeburn  2389: 	$r->print($error.&mt('No domain specified').'.'.$end.$rtnlink);
1.27      matthew  2390: 	return;
                   2391:     }
1.138     albertel 2392:     if (  $env{'form.ccdomain'} ne
                   2393: 	  &LONCAPA::clean_domain($env{'form.ccdomain'}) ) {
1.281     bisitz   2394: 	$r->print($error.&mt('Invalid domain name.').'  '.
                   2395: 		  &mt('Only letters, numbers, periods, dashes, and underscores are valid.').
1.193     raeburn  2396: 		  $end.$rtnlink);
1.27      matthew  2397: 	return;
                   2398:     }
1.219     raeburn  2399:     if ($uhome eq 'no_host') {
                   2400:         $newuser = 1;
                   2401:     }
1.101     albertel 2402:     if (! exists($env{'form.makeuser'})) {
1.29      matthew  2403:         # Modifying an existing user, so check the validity of the name
                   2404:         if ($uhome eq 'no_host') {
1.73      sakharuk 2405:             $r->print($error.&mt('Unable to determine home server for ').
1.101     albertel 2406:                       $env{'form.ccuname'}.&mt(' in domain ').
                   2407:                       $env{'form.ccdomain'}.'.');
1.29      matthew  2408:             return;
                   2409:         }
                   2410:     }
1.27      matthew  2411:     # Determine authentication method and password for the user being modified
                   2412:     my $amode='';
                   2413:     my $genpwd='';
1.101     albertel 2414:     if ($env{'form.login'} eq 'krb') {
1.41      albertel 2415: 	$amode='krb';
1.101     albertel 2416: 	$amode.=$env{'form.krbver'};
                   2417: 	$genpwd=$env{'form.krbarg'};
                   2418:     } elsif ($env{'form.login'} eq 'int') {
1.27      matthew  2419: 	$amode='internal';
1.101     albertel 2420: 	$genpwd=$env{'form.intarg'};
                   2421:     } elsif ($env{'form.login'} eq 'fsys') {
1.27      matthew  2422: 	$amode='unix';
1.101     albertel 2423: 	$genpwd=$env{'form.fsysarg'};
                   2424:     } elsif ($env{'form.login'} eq 'loc') {
1.27      matthew  2425: 	$amode='localauth';
1.101     albertel 2426: 	$genpwd=$env{'form.locarg'};
1.27      matthew  2427: 	$genpwd=" " if (!$genpwd);
1.101     albertel 2428:     } elsif (($env{'form.login'} eq 'nochange') ||
                   2429:              ($env{'form.login'} eq ''        )) { 
1.34      matthew  2430:         # There is no need to tell the user we did not change what they
                   2431:         # did not ask us to change.
1.35      matthew  2432:         # If they are creating a new user but have not specified login
                   2433:         # information this will be caught below.
1.30      matthew  2434:     } else {
1.367     golterma 2435:             $r->print($error.&mt('Invalid login mode or password').$end.$rtnlink);
                   2436:             return;
1.27      matthew  2437:     }
1.164     albertel 2438: 
1.188     raeburn  2439:     $r->print('<h3>'.&mt('User [_1] in domain [_2]',
1.367     golterma 2440:                         $env{'form.ccuname'}.' ('.&Apache::loncommon::plainname($env{'form.ccuname'},
                   2441:                         $env{'form.ccdomain'}).')', $env{'form.ccdomain'}).'</h3>');
                   2442:     my %prog_state = &Apache::lonhtmlcommon::Create_PrgWin($r,2);
1.344     bisitz   2443: 
1.193     raeburn  2444:     my (%alerts,%rulematch,%inst_results,%curr_rules);
1.334     raeburn  2445:     my @userinfo = ('firstname','middlename','lastname','generation','permanentemail','id');
1.361     raeburn  2446:     my @usertools = ('aboutme','blog','webdav','portfolio');
1.299     raeburn  2447:     my @requestcourses = ('official','unofficial','community');
1.362     raeburn  2448:     my @requestauthor = ('requestauthor');
1.286     raeburn  2449:     my ($othertitle,$usertypes,$types) = 
                   2450:         &Apache::loncommon::sorted_inst_types($env{'form.ccdomain'});
1.334     raeburn  2451:     my %canmodify_status =
                   2452:         &Apache::lonuserutils::can_modify_userinfo($context,$env{'form.ccdomain'},
                   2453:                                                    ['inststatus']);
1.101     albertel 2454:     if ($env{'form.makeuser'}) {
1.164     albertel 2455: 	$r->print('<h3>'.&mt('Creating new account.').'</h3>');
1.27      matthew  2456:         # Check for the authentication mode and password
                   2457:         if (! $amode || ! $genpwd) {
1.193     raeburn  2458: 	    $r->print($error.&mt('Invalid login mode or password').$end.$rtnlink);    
1.27      matthew  2459: 	    return;
1.18      albertel 2460: 	}
1.29      matthew  2461:         # Determine desired host
1.101     albertel 2462:         my $desiredhost = $env{'form.hserver'};
1.29      matthew  2463:         if (lc($desiredhost) eq 'default') {
                   2464:             $desiredhost = undef;
                   2465:         } else {
1.147     albertel 2466:             my %home_servers = 
                   2467: 		&Apache::lonnet::get_servers($env{'form.ccdomain'},'library');
1.29      matthew  2468:             if (! exists($home_servers{$desiredhost})) {
1.193     raeburn  2469:                 $r->print($error.&mt('Invalid home server specified').$end.$rtnlink);
                   2470:                 return;
                   2471:             }
                   2472:         }
                   2473:         # Check ID format
                   2474:         my %checkhash;
                   2475:         my %checks = ('id' => 1);
                   2476:         %{$checkhash{$env{'form.ccuname'}.':'.$env{'form.ccdomain'}}} = (
1.219     raeburn  2477:             'newuser' => $newuser, 
1.196     raeburn  2478:             'id' => $env{'form.cid'},
1.193     raeburn  2479:         );
1.196     raeburn  2480:         if ($env{'form.cid'} ne '') {
                   2481:             &Apache::loncommon::user_rule_check(\%checkhash,\%checks,\%alerts,
                   2482:                                           \%rulematch,\%inst_results,\%curr_rules);
                   2483:             if (ref($alerts{'id'}) eq 'HASH') {
                   2484:                 if (ref($alerts{'id'}{$env{'form.ccdomain'}}) eq 'HASH') {
                   2485:                     my $domdesc =
                   2486:                         &Apache::lonnet::domain($env{'form.ccdomain'},'description');
                   2487:                     if ($alerts{'id'}{$env{'form.ccdomain'}}{$env{'form.cid'}}) {
                   2488:                         my $userchkmsg;
                   2489:                         if (ref($curr_rules{$env{'form.ccdomain'}}) eq 'HASH') {
                   2490:                             $userchkmsg  = 
                   2491:                                 &Apache::loncommon::instrule_disallow_msg('id',
                   2492:                                                                     $domdesc,1).
                   2493:                                 &Apache::loncommon::user_rule_formats($env{'form.ccdomain'},
                   2494:                                     $domdesc,$curr_rules{$env{'form.ccdomain'}}{'id'},'id');
                   2495:                         }
                   2496:                         $r->print($error.&mt('Invalid ID format').$end.
                   2497:                                   $userchkmsg.$rtnlink);
                   2498:                         return;
                   2499:                     }
                   2500:                 }
1.29      matthew  2501:             }
                   2502:         }
1.367     golterma 2503:         &Apache::lonhtmlcommon::Increment_PrgWin($r, \%prog_state);
1.27      matthew  2504: 	# Call modifyuser
                   2505: 	my $result = &Apache::lonnet::modifyuser
1.193     raeburn  2506: 	    ($env{'form.ccdomain'},$env{'form.ccuname'},$env{'form.cid'},
1.188     raeburn  2507:              $amode,$genpwd,$env{'form.cfirstname'},
                   2508:              $env{'form.cmiddlename'},$env{'form.clastname'},
                   2509:              $env{'form.cgeneration'},undef,$desiredhost,
                   2510:              $env{'form.cpermanentemail'});
1.77      www      2511: 	$r->print(&mt('Generating user').': '.$result);
1.219     raeburn  2512:         $uhome = &Apache::lonnet::homeserver($env{'form.ccuname'},
1.101     albertel 2513:                                                $env{'form.ccdomain'});
1.334     raeburn  2514:         my (%changeHash,%newcustom,%changed,%changedinfo);
1.267     raeburn  2515:         if ($uhome ne 'no_host') {
1.334     raeburn  2516:             if ($context eq 'domain') {
                   2517:                 if ($env{'form.customquota'} == 1) {
                   2518:                     if ($env{'form.portfolioquota'} eq '') {
                   2519:                         $newcustom{'quota'} = 0;
                   2520:                     } else {
                   2521:                         $newcustom{'quota'} = $env{'form.portfolioquota'};
                   2522:                         $newcustom{'quota'} =~ s/[^\d\.]//g;
                   2523:                     }
                   2524:                     $changed{'quota'} = &quota_admin($newcustom{'quota'},\%changeHash);
                   2525:                 }
                   2526:                 foreach my $item (@usertools) {
                   2527:                     if ($env{'form.custom'.$item} == 1) {
                   2528:                         $newcustom{$item} = $env{'form.tools_'.$item};
                   2529:                         $changed{$item} = &tool_admin($item,$newcustom{$item},
                   2530:                                                      \%changeHash,'tools');
                   2531:                     }
1.267     raeburn  2532:                 }
1.334     raeburn  2533:                 foreach my $item (@requestcourses) {
1.341     raeburn  2534:                     if ($env{'form.custom'.$item} == 1) {
                   2535:                         $newcustom{$item} = $env{'form.crsreq_'.$item};
                   2536:                         if ($env{'form.crsreq_'.$item} eq 'autolimit') {
                   2537:                             $newcustom{$item} .= '=';
                   2538:                             unless ($env{'form.crsreq_'.$item.'_limit'} =~ /\D/) {
                   2539:                                 $newcustom{$item} .= $env{'form.crsreq_'.$item.'_limit'};
                   2540:                             }
1.334     raeburn  2541:                         }
1.341     raeburn  2542:                         $changed{$item} = &tool_admin($item,$newcustom{$item},
                   2543:                                                       \%changeHash,'requestcourses');
1.334     raeburn  2544:                     }
1.275     raeburn  2545:                 }
1.362     raeburn  2546:                 if ($env{'form.customrequestauthor'} == 1) {
                   2547:                     $newcustom{'requestauthor'} = $env{'form.requestauthor'};
                   2548:                     $changed{'requestauthor'} = &tool_admin('requestauthor',
                   2549:                                                     $newcustom{'requestauthor'},
                   2550:                                                     \%changeHash,'requestauthor');
                   2551:                 }
1.275     raeburn  2552:             }
1.334     raeburn  2553:             if ($canmodify_status{'inststatus'}) {
                   2554:                 if (exists($env{'form.inststatus'})) {
                   2555:                     my @inststatuses = &Apache::loncommon::get_env_multiple('form.inststatus');
                   2556:                     if (@inststatuses > 0) {
                   2557:                         $changeHash{'inststatus'} = join(',',@inststatuses);
                   2558:                         $changed{'inststatus'} = $changeHash{'inststatus'};
1.306     raeburn  2559:                     }
                   2560:                 }
1.232     raeburn  2561:             }
1.334     raeburn  2562:             if (keys(%changed)) {
                   2563:                 foreach my $item (@userinfo) {
                   2564:                     $changeHash{$item}  = $env{'form.c'.$item};
1.286     raeburn  2565:                 }
1.267     raeburn  2566:                 my $chgresult =
                   2567:                      &Apache::lonnet::put('environment',\%changeHash,
                   2568:                                           $env{'form.ccdomain'},$env{'form.ccuname'});
                   2569:             } 
1.232     raeburn  2570:         }
1.219     raeburn  2571:         $r->print('<br />'.&mt('Home server').': '.$uhome.' '.
                   2572:                   &Apache::lonnet::hostname($uhome));
1.101     albertel 2573:     } elsif (($env{'form.login'} ne 'nochange') &&
                   2574:              ($env{'form.login'} ne ''        )) {
1.27      matthew  2575: 	# Modify user privileges
                   2576:         if (! $amode || ! $genpwd) {
1.193     raeburn  2577: 	    $r->print($error.'Invalid login mode or password'.$end.$rtnlink);    
1.27      matthew  2578: 	    return;
1.20      harris41 2579: 	}
1.27      matthew  2580: 	# Only allow authentification modification if the person has authority
1.101     albertel 2581: 	if (&Apache::lonnet::allowed('mau',$env{'form.ccdomain'})) {
1.20      harris41 2582: 	    $r->print('Modifying authentication: '.
1.31      matthew  2583:                       &Apache::lonnet::modifyuserauth(
1.101     albertel 2584: 		       $env{'form.ccdomain'},$env{'form.ccuname'},
1.21      harris41 2585:                        $amode,$genpwd));
1.102     albertel 2586:             $r->print('<br />'.&mt('Home server').': '.&Apache::lonnet::homeserver
1.101     albertel 2587: 		  ($env{'form.ccuname'},$env{'form.ccdomain'}));
1.4       www      2588: 	} else {
1.27      matthew  2589: 	    # Okay, this is a non-fatal error.
1.193     raeburn  2590: 	    $r->print($error.&mt('You do not have the authority to modify this users authentification information').'.'.$end);    
1.27      matthew  2591: 	}
1.28      matthew  2592:     }
1.344     bisitz   2593:     $r->rflush(); # Finish display of header before time consuming actions start
1.367     golterma 2594:     &Apache::lonhtmlcommon::Increment_PrgWin($r,\%prog_state);
1.28      matthew  2595:     ##
1.343     raeburn  2596:     my (@userroles,%userupdate,$cnum,$cdom,%namechanged);
1.213     raeburn  2597:     if ($context eq 'course') {
                   2598:         ($cnum,$cdom) = &Apache::lonuserutils::get_course_identity();
1.318     raeburn  2599:         $crstype = &Apache::loncommon::course_type($cdom.'_'.$cnum);
1.213     raeburn  2600:     }
1.101     albertel 2601:     if (! $env{'form.makeuser'} ) {
1.28      matthew  2602:         # Check for need to change
                   2603:         my %userenv = &Apache::lonnet::get
1.134     raeburn  2604:             ('environment',['firstname','middlename','lastname','generation',
1.267     raeburn  2605:              'id','permanentemail','portfolioquota','inststatus','tools.aboutme',
1.361     raeburn  2606:              'tools.blog','tools.webdav','tools.portfolio',
                   2607:              'requestcourses.official','requestcourses.unofficial',
                   2608:              'requestcourses.community','reqcrsotherdom.official',
1.362     raeburn  2609:              'reqcrsotherdom.unofficial','reqcrsotherdom.community',
                   2610:              'requestauthor'],
1.160     raeburn  2611:               $env{'form.ccdomain'},$env{'form.ccuname'});
1.28      matthew  2612:         my ($tmp) = keys(%userenv);
                   2613:         if ($tmp =~ /^(con_lost|error)/i) { 
                   2614:             %userenv = ();
                   2615:         }
1.206     raeburn  2616:         my $no_forceid_alert;
                   2617:         # Check to see if user information can be changed
                   2618:         my %domconfig =
                   2619:             &Apache::lonnet::get_dom('configuration',['usermodification'],
                   2620:                                      $env{'form.ccdomain'});
1.213     raeburn  2621:         my @statuses = ('active','future');
                   2622:         my %roles = &Apache::lonnet::get_my_roles($env{'form.ccuname'},$env{'form.ccdomain'},'userroles',\@statuses,undef,$env{'request.role.domain'});
                   2623:         my ($auname,$audom);
1.220     raeburn  2624:         if ($context eq 'author') {
1.206     raeburn  2625:             $auname = $env{'user.name'};
                   2626:             $audom = $env{'user.domain'};     
                   2627:         }
                   2628:         foreach my $item (keys(%roles)) {
1.220     raeburn  2629:             my ($rolenum,$roledom,$role) = split(/:/,$item,-1);
1.206     raeburn  2630:             if ($context eq 'course') {
                   2631:                 if ($cnum ne '' && $cdom ne '') {
                   2632:                     if ($rolenum eq $cnum && $roledom eq $cdom) {
                   2633:                         if (!grep(/^\Q$role\E$/,@userroles)) {
                   2634:                             push(@userroles,$role);
                   2635:                         }
                   2636:                     }
                   2637:                 }
                   2638:             } elsif ($context eq 'author') {
                   2639:                 if ($rolenum eq $auname && $roledom eq $audom) {
                   2640:                     if (!grep(/^\Q$role\E$/,@userroles)) { 
                   2641:                         push(@userroles,$role);
                   2642:                     }
                   2643:                 }
                   2644:             }
                   2645:         }
1.220     raeburn  2646:         if ($env{'form.action'} eq 'singlestudent') {
                   2647:             if (!grep(/^st$/,@userroles)) {
                   2648:                 push(@userroles,'st');
                   2649:             }
                   2650:         } else {
                   2651:             # Check for course or co-author roles being activated or re-enabled
                   2652:             if ($context eq 'author' || $context eq 'course') {
                   2653:                 foreach my $key (keys(%env)) {
                   2654:                     if ($context eq 'author') {
                   2655:                         if ($key=~/^form\.act_\Q$audom\E_\Q$auname\E_([^_]+)/) {
                   2656:                             if (!grep(/^\Q$1\E$/,@userroles)) {
                   2657:                                 push(@userroles,$1);
                   2658:                             }
                   2659:                         } elsif ($key =~/^form\.ren\:\Q$audom\E\/\Q$auname\E_([^_]+)/) {
                   2660:                             if (!grep(/^\Q$1\E$/,@userroles)) {
                   2661:                                 push(@userroles,$1);
                   2662:                             }
1.206     raeburn  2663:                         }
1.220     raeburn  2664:                     } elsif ($context eq 'course') {
                   2665:                         if ($key=~/^form\.act_\Q$cdom\E_\Q$cnum\E_([^_]+)/) {
                   2666:                             if (!grep(/^\Q$1\E$/,@userroles)) {
                   2667:                                 push(@userroles,$1);
                   2668:                             }
                   2669:                         } elsif ($key =~/^form\.ren\:\Q$cdom\E\/\Q$cnum\E(\/?\w*)_([^_]+)/) {
                   2670:                             if (!grep(/^\Q$1\E$/,@userroles)) {
                   2671:                                 push(@userroles,$1);
                   2672:                             }
1.206     raeburn  2673:                         }
                   2674:                     }
                   2675:                 }
                   2676:             }
                   2677:         }
                   2678:         #Check to see if we can change personal data for the user 
                   2679:         my (@mod_disallowed,@longroles);
                   2680:         foreach my $role (@userroles) {
                   2681:             if ($role eq 'cr') {
                   2682:                 push(@longroles,'Custom');
                   2683:             } else {
1.318     raeburn  2684:                 push(@longroles,&Apache::lonnet::plaintext($role,$crstype)); 
1.206     raeburn  2685:             }
                   2686:         }
1.219     raeburn  2687:         my %canmodify = &Apache::lonuserutils::can_modify_userinfo($context,$env{'form.ccdomain'},\@userinfo,\@userroles);
                   2688:         foreach my $item (@userinfo) {
1.28      matthew  2689:             # Strip leading and trailing whitespace
1.203     raeburn  2690:             $env{'form.c'.$item} =~ s/(\s+$|^\s+)//g;
1.219     raeburn  2691:             if (!$canmodify{$item}) {
1.207     raeburn  2692:                 if (defined($env{'form.c'.$item})) {
                   2693:                     if ($env{'form.c'.$item} ne $userenv{$item}) {
                   2694:                         push(@mod_disallowed,$item);
                   2695:                     }
1.206     raeburn  2696:                 }
                   2697:                 $env{'form.c'.$item} = $userenv{$item};
                   2698:             }
1.28      matthew  2699:         }
1.259     bisitz   2700:         # Check to see if we can change the Student/Employee ID
1.196     raeburn  2701:         my $forceid = $env{'form.forceid'};
                   2702:         my $recurseid = $env{'form.recurseid'};
                   2703:         my (%alerts,%rulematch,%idinst_results,%curr_rules,%got_rules);
1.203     raeburn  2704:         my %uidhash = &Apache::lonnet::idrget($env{'form.ccdomain'},
                   2705:                                             $env{'form.ccuname'});
                   2706:         if (($uidhash{$env{'form.ccuname'}}) && 
                   2707:             ($uidhash{$env{'form.ccuname'}}!~/error\:/) && 
                   2708:             (!$forceid)) {
                   2709:             if ($env{'form.cid'} ne $uidhash{$env{'form.ccuname'}}) {
                   2710:                 $env{'form.cid'} = $userenv{'id'};
1.293     bisitz   2711:                 $no_forceid_alert = &mt('New student/employee ID does not match existing ID for this user.')
1.259     bisitz   2712:                                    .'<br />'
                   2713:                                    .&mt("Change is not permitted without checking the 'Force ID change' checkbox on the previous page.")
                   2714:                                    .'<br />'."\n";
1.203     raeburn  2715:             }
                   2716:         }
                   2717:         if ($env{'form.cid'} ne $userenv{'id'}) {
1.196     raeburn  2718:             my $checkhash;
                   2719:             my $checks = { 'id' => 1 };
                   2720:             $checkhash->{$env{'form.ccuname'}.':'.$env{'form.ccdomain'}} = 
                   2721:                    { 'newuser' => $newuser,
                   2722:                      'id'  => $env{'form.cid'}, 
                   2723:                    };
                   2724:             &Apache::loncommon::user_rule_check($checkhash,$checks,
                   2725:                 \%alerts,\%rulematch,\%idinst_results,\%curr_rules,\%got_rules);
                   2726:             if (ref($alerts{'id'}) eq 'HASH') {
                   2727:                 if (ref($alerts{'id'}{$env{'form.ccdomain'}}) eq 'HASH') {
1.203     raeburn  2728:                    $env{'form.cid'} = $userenv{'id'};
1.196     raeburn  2729:                 }
                   2730:             }
                   2731:         }
1.286     raeburn  2732:         my ($quotachanged,$oldportfolioquota,$newportfolioquota,$oldinststatus,
1.334     raeburn  2733:             $newinststatus,$oldisdefault,$newisdefault,%oldsettings,
1.339     raeburn  2734:             %oldsettingstext,%newsettings,%newsettingstext,@disporder,
                   2735:             $olddefquota,$oldsettingstatus,$newdefquota,$newsettingstatus);
1.334     raeburn  2736:         @disporder = ('inststatus');
                   2737:         if ($env{'request.role.domain'} eq $env{'form.ccdomain'}) {
1.362     raeburn  2738:             push(@disporder,'requestcourses','requestauthor');
1.334     raeburn  2739:         } else {
                   2740:             push(@disporder,'reqcrsotherdom');
                   2741:         }
                   2742:         push(@disporder,('quota','tools'));
1.338     raeburn  2743:         $oldinststatus = $userenv{'inststatus'};
1.339     raeburn  2744:         ($olddefquota,$oldsettingstatus) = 
1.334     raeburn  2745:             &Apache::loncommon::default_quota($env{'form.ccdomain'},$oldinststatus);
1.339     raeburn  2746:         ($newdefquota,$newsettingstatus) = ($olddefquota,$oldsettingstatus);
1.334     raeburn  2747:         my %canshow;
1.220     raeburn  2748:         if (&Apache::lonnet::allowed('mpq',$env{'form.ccdomain'})) {
1.334     raeburn  2749:             $canshow{'quota'} = 1;
1.220     raeburn  2750:         }
1.267     raeburn  2751:         if (&Apache::lonnet::allowed('mut',$env{'form.ccdomain'})) {
1.334     raeburn  2752:             $canshow{'tools'} = 1;
1.267     raeburn  2753:         }
1.275     raeburn  2754:         if (&Apache::lonnet::allowed('ccc',$env{'form.ccdomain'})) {
1.334     raeburn  2755:             $canshow{'requestcourses'} = 1;
1.300     raeburn  2756:         } elsif (&Apache::lonnet::allowed('ccc',$env{'request.role.domain'})) {
1.334     raeburn  2757:             $canshow{'reqcrsotherdom'} = 1;
1.275     raeburn  2758:         }
1.286     raeburn  2759:         if (&Apache::lonnet::allowed('mau',$env{'form.ccdomain'})) {
1.334     raeburn  2760:             $canshow{'inststatus'} = 1;
1.286     raeburn  2761:         }
1.362     raeburn  2762:         if (&Apache::lonnet::allowed('cau',$env{'form.ccdomain'})) {
                   2763:             $canshow{'requestauthor'} = 1;
                   2764:         }
1.267     raeburn  2765:         my (%changeHash,%changed);
1.286     raeburn  2766:         if ($oldinststatus eq '') {
1.334     raeburn  2767:             $oldsettings{'inststatus'} = $othertitle; 
1.286     raeburn  2768:         } else {
                   2769:             if (ref($usertypes) eq 'HASH') {
1.334     raeburn  2770:                 $oldsettings{'inststatus'} = join(', ',map{ $usertypes->{ &unescape($_) }; } (split(/:/,$userenv{'inststatus'})));
1.286     raeburn  2771:             } else {
1.334     raeburn  2772:                 $oldsettings{'inststatus'} = join(', ',map{ &unescape($_); } (split(/:/,$userenv{'inststatus'})));
1.286     raeburn  2773:             }
                   2774:         }
                   2775:         $changeHash{'inststatus'} = $userenv{'inststatus'};
1.334     raeburn  2776:         if ($canmodify_status{'inststatus'}) {
                   2777:             $canshow{'inststatus'} = 1;
1.286     raeburn  2778:             if (exists($env{'form.inststatus'})) {
                   2779:                 my @inststatuses = &Apache::loncommon::get_env_multiple('form.inststatus');
                   2780:                 if (@inststatuses > 0) {
                   2781:                     $newinststatus = join(':',map { &escape($_); } @inststatuses);
                   2782:                     $changeHash{'inststatus'} = $newinststatus;
                   2783:                     if ($newinststatus ne $oldinststatus) {
                   2784:                         $changed{'inststatus'} = $newinststatus;
1.339     raeburn  2785:                         ($newdefquota,$newsettingstatus) =
                   2786:                             &Apache::loncommon::default_quota($env{'form.ccdomain'},$newinststatus);
1.286     raeburn  2787:                     }
                   2788:                     if (ref($usertypes) eq 'HASH') {
1.334     raeburn  2789:                         $newsettings{'inststatus'} = join(', ',map{ $usertypes->{$_}; } (@inststatuses)); 
1.286     raeburn  2790:                     } else {
1.337     raeburn  2791:                         $newsettings{'inststatus'} = join(', ',@inststatuses);
1.286     raeburn  2792:                     }
1.334     raeburn  2793:                 }
                   2794:             } else {
                   2795:                 $newinststatus = '';
                   2796:                 $changeHash{'inststatus'} = $newinststatus;
                   2797:                 $newsettings{'inststatus'} = $othertitle;
                   2798:                 if ($newinststatus ne $oldinststatus) {
                   2799:                     $changed{'inststatus'} = $changeHash{'inststatus'};
1.339     raeburn  2800:                     ($newdefquota,$newsettingstatus) =
                   2801:                         &Apache::loncommon::default_quota($env{'form.ccdomain'},$newinststatus);
1.286     raeburn  2802:                 }
                   2803:             }
1.334     raeburn  2804:         } elsif ($context ne 'selfcreate') {
                   2805:             $canshow{'inststatus'} = 1;
1.337     raeburn  2806:             $newsettings{'inststatus'} = $oldsettings{'inststatus'};
1.286     raeburn  2807:         }
1.204     raeburn  2808:         $changeHash{'portfolioquota'} = $userenv{'portfolioquota'};
1.334     raeburn  2809:         if ($context eq 'domain') {
                   2810:             if ($userenv{'portfolioquota'} ne '') {
                   2811:                 $oldportfolioquota = $userenv{'portfolioquota'};
                   2812:                 if ($env{'form.customquota'} == 1) {
                   2813:                     if ($env{'form.portfolioquota'} eq '') {
                   2814:                         $newportfolioquota = 0;
                   2815:                     } else {
                   2816:                         $newportfolioquota = $env{'form.portfolioquota'};
                   2817:                         $newportfolioquota =~ s/[^\d\.]//g;
                   2818:                     }
                   2819:                     if ($newportfolioquota != $oldportfolioquota) {
                   2820:                         $changed{'quota'} = &quota_admin($newportfolioquota,\%changeHash);
                   2821:                     }
1.149     raeburn  2822:                 } else {
1.334     raeburn  2823:                     $changed{'quota'} = &quota_admin('',\%changeHash);
1.339     raeburn  2824:                     $newportfolioquota = $newdefquota;
1.334     raeburn  2825:                     $newisdefault = 1;
1.149     raeburn  2826:                 }
1.334     raeburn  2827:             } else {
                   2828:                 $oldisdefault = 1;
1.339     raeburn  2829:                 $oldportfolioquota = $olddefquota;
1.334     raeburn  2830:                 if ($env{'form.customquota'} == 1) {
                   2831:                     if ($env{'form.portfolioquota'} eq '') {
                   2832:                         $newportfolioquota = 0;
                   2833:                     } else {
                   2834:                         $newportfolioquota = $env{'form.portfolioquota'};
                   2835:                         $newportfolioquota =~ s/[^\d\.]//g;
                   2836:                     }
1.267     raeburn  2837:                     $changed{'quota'} = &quota_admin($newportfolioquota,\%changeHash);
1.334     raeburn  2838:                 } else {
1.339     raeburn  2839:                     $newportfolioquota = $newdefquota;
1.334     raeburn  2840:                     $newisdefault = 1;
1.134     raeburn  2841:                 }
                   2842:             }
1.334     raeburn  2843:             if ($oldisdefault) {
1.339     raeburn  2844:                 $oldsettingstext{'quota'} = &get_defaultquota_text($oldsettingstatus);
1.334     raeburn  2845:             }
                   2846:             if ($newisdefault) {
1.339     raeburn  2847:                 $newsettingstext{'quota'} = &get_defaultquota_text($newsettingstatus);
1.334     raeburn  2848:             }
                   2849:             &tool_changes('tools',\@usertools,\%oldsettings,\%oldsettingstext,\%userenv,
                   2850:                           \%changeHash,\%changed,\%newsettings,\%newsettingstext);
                   2851:             if ($env{'form.ccdomain'} eq $env{'request.role.domain'}) {
                   2852:                 &tool_changes('requestcourses',\@requestcourses,\%oldsettings,\%oldsettingstext,
                   2853:                               \%userenv,\%changeHash,\%changed,\%newsettings,\%newsettingstext);
1.362     raeburn  2854:                 &tool_changes('requestauthor',\@requestauthor,\%oldsettings,\%oldsettingstext,\%userenv,\%changeHash,\%changed,\%newsettings,\%newsettingstext);
1.149     raeburn  2855:             } else {
1.334     raeburn  2856:                 &tool_changes('reqcrsotherdom',\@requestcourses,\%oldsettings,\%oldsettingstext,
                   2857:                               \%userenv,\%changeHash,\%changed,\%newsettings,\%newsettingstext);
1.149     raeburn  2858:             }
                   2859:         }
1.334     raeburn  2860:         foreach my $item (@userinfo) {
                   2861:             if ($env{'form.c'.$item} ne $userenv{$item}) {
                   2862:                 $namechanged{$item} = 1;
                   2863:             }
1.204     raeburn  2864:         }
1.334     raeburn  2865:         $oldsettings{'quota'} = $oldportfolioquota.' Mb';
                   2866:         $newsettings{'quota'} = $newportfolioquota.' Mb';
                   2867:         if ((keys(%namechanged) > 0) || (keys(%changed) > 0)) {
1.267     raeburn  2868:             my ($chgresult,$namechgresult);
                   2869:             if (keys(%changed) > 0) {
                   2870:                 $chgresult = 
1.204     raeburn  2871:                     &Apache::lonnet::put('environment',\%changeHash,
                   2872:                                   $env{'form.ccdomain'},$env{'form.ccuname'});
1.267     raeburn  2873:                 if ($chgresult eq 'ok') {
                   2874:                     if (($env{'user.name'} eq $env{'form.ccuname'}) &&
                   2875:                         ($env{'user.domain'} eq $env{'form.ccdomain'})) {
1.270     raeburn  2876:                         my %newenvhash;
                   2877:                         foreach my $key (keys(%changed)) {
1.299     raeburn  2878:                             if (($key eq 'official') || ($key eq 'unofficial')
                   2879:                                 || ($key eq 'community')) {
1.279     raeburn  2880:                                 $newenvhash{'environment.requestcourses.'.$key} =
                   2881:                                     $changeHash{'requestcourses.'.$key};
1.362     raeburn  2882:                                 if ($changeHash{'requestcourses.'.$key}) {
1.332     raeburn  2883:                                     $newenvhash{'environment.canrequest.'.$key} = 1;
1.279     raeburn  2884:                                 } else {
                   2885:                                     $newenvhash{'environment.canrequest.'.$key} =
                   2886:           &Apache::lonnet::usertools_access($env{'user.name'},$env{'user.domain'},
                   2887:                                             $key,'reload','requestcourses');
                   2888:                                 }
1.362     raeburn  2889:                             } elsif ($key eq 'requestauthor') {
                   2890:                                 $newenvhash{'environment.'.$key} = $changeHash{$key};
                   2891:                                 if ($changeHash{$key}) {
                   2892:                                     $newenvhash{'environment.canrequest.author'} = 1;
                   2893:                                 } else {
                   2894:                                     $newenvhash{'environment.canrequest.author'} =
                   2895:           &Apache::lonnet::usertools_access($env{'user.name'},$env{'user.domain'},
                   2896:                                             $key,'reload','requestauthor');
                   2897:                                 }
1.275     raeburn  2898:                             } elsif ($key ne 'quota') {
1.270     raeburn  2899:                                 $newenvhash{'environment.tools.'.$key} = 
                   2900:                                     $changeHash{'tools.'.$key};
1.279     raeburn  2901:                                 if ($changeHash{'tools.'.$key} ne '') {
                   2902:                                     $newenvhash{'environment.availabletools.'.$key} =
                   2903:                                         $changeHash{'tools.'.$key};
                   2904:                                 } else {
                   2905:                                     $newenvhash{'environment.availabletools.'.$key} =
1.367     golterma 2906:           &Apache::lonnet::usertools_access($env{'user.name'},$env{'user.domain'},
                   2907:           $key,'reload','tools');
1.279     raeburn  2908:                                 }
1.270     raeburn  2909:                             }
                   2910:                         }
1.271     raeburn  2911:                         if (keys(%newenvhash)) {
                   2912:                             &Apache::lonnet::appenv(\%newenvhash);
                   2913:                         }
1.267     raeburn  2914:                     }
                   2915:                 }
1.204     raeburn  2916:             }
1.334     raeburn  2917:             if (keys(%namechanged) > 0) {
1.337     raeburn  2918:                 foreach my $field (@userinfo) {
                   2919:                     $changeHash{$field}  = $env{'form.c'.$field};
                   2920:                 }
                   2921: # Make the change
1.204     raeburn  2922:                 $namechgresult =
                   2923:                     &Apache::lonnet::modifyuser($env{'form.ccdomain'},
                   2924:                         $env{'form.ccuname'},$changeHash{'id'},undef,undef,
                   2925:                         $changeHash{'firstname'},$changeHash{'middlename'},
                   2926:                         $changeHash{'lastname'},$changeHash{'generation'},
1.337     raeburn  2927:                         $changeHash{'id'},undef,$changeHash{'permanentemail'},undef,\@userinfo);
1.220     raeburn  2928:                 %userupdate = (
                   2929:                                lastname   => $env{'form.clastname'},
                   2930:                                middlename => $env{'form.cmiddlename'},
                   2931:                                firstname  => $env{'form.cfirstname'},
                   2932:                                generation => $env{'form.cgeneration'},
                   2933:                                id         => $env{'form.cid'},
                   2934:                              );
1.204     raeburn  2935:             }
1.334     raeburn  2936:             if (((keys(%namechanged) > 0) && $namechgresult eq 'ok') || 
1.267     raeburn  2937:                 ((keys(%changed) > 0) && $chgresult eq 'ok')) {
1.28      matthew  2938:             # Tell the user we changed the name
1.334     raeburn  2939:                 &display_userinfo($r,1,\@disporder,\%canshow,\@requestcourses,
1.362     raeburn  2940:                                   \@usertools,\@requestauthor,\%userenv,\%changed,\%namechanged,
1.334     raeburn  2941:                                   \%oldsettings, \%oldsettingstext,\%newsettings,
                   2942:                                   \%newsettingstext);
1.203     raeburn  2943:                 if ($env{'form.cid'} ne $userenv{'id'}) {
                   2944:                     &Apache::lonnet::idput($env{'form.ccdomain'},
                   2945:                          ($env{'form.ccuname'} => $env{'form.cid'}));
                   2946:                     if (($recurseid) &&
                   2947:                         (&Apache::lonnet::allowed('mau',$env{'form.ccdomain'}))) {
                   2948:                         my $idresult = 
                   2949:                             &Apache::lonuserutils::propagate_id_change(
                   2950:                                 $env{'form.ccuname'},$env{'form.ccdomain'},
                   2951:                                 \%userupdate);
                   2952:                         $r->print('<br />'.$idresult.'<br />');
                   2953:                     }
1.196     raeburn  2954:                 }
1.149     raeburn  2955:                 if (($env{'form.ccdomain'} eq $env{'user.domain'}) && 
                   2956:                     ($env{'form.ccuname'} eq $env{'user.name'})) {
                   2957:                     my %newenvhash;
                   2958:                     foreach my $key (keys(%changeHash)) {
                   2959:                         $newenvhash{'environment.'.$key} = $changeHash{$key};
                   2960:                     }
1.238     raeburn  2961:                     &Apache::lonnet::appenv(\%newenvhash);
1.149     raeburn  2962:                 }
1.28      matthew  2963:             } else { # error occurred
1.188     raeburn  2964:                 $r->print('<span class="LC_error">'.&mt('Unable to successfully change environment for').' '.
                   2965:                       $env{'form.ccuname'}.' '.&mt('in domain').' '.
1.206     raeburn  2966:                       $env{'form.ccdomain'}.'</span><br />');
1.28      matthew  2967:             }
1.334     raeburn  2968:         } else { # End of if ($env ... ) logic
1.275     raeburn  2969:             # They did not want to change the users name, quota, tool availability,
                   2970:             # or ability to request creation of courses, 
1.267     raeburn  2971:             # but we can still tell them what the name and quota and availabilities are  
1.334     raeburn  2972:             &display_userinfo($r,undef,\@disporder,\%canshow,\@requestcourses,
1.362     raeburn  2973:                               \@usertools,\@requestauthor,\%userenv,\%changed,\%namechanged,\%oldsettings,
1.334     raeburn  2974:                               \%oldsettingstext,\%newsettings,\%newsettingstext);
1.28      matthew  2975:         }
1.206     raeburn  2976:         if (@mod_disallowed) {
                   2977:             my ($rolestr,$contextname);
                   2978:             if (@longroles > 0) {
                   2979:                 $rolestr = join(', ',@longroles);
                   2980:             } else {
                   2981:                 $rolestr = &mt('No roles');
                   2982:             }
                   2983:             if ($context eq 'course') {
                   2984:                 $contextname = &mt('course');
                   2985:             } elsif ($context eq 'author') {
                   2986:                 $contextname = &mt('co-author');
                   2987:             }
                   2988:             $r->print(&mt('The following fields were not updated: ').'<ul>');
                   2989:             my %fieldtitles = &Apache::loncommon::personal_data_fieldtitles();
                   2990:             foreach my $field (@mod_disallowed) {
                   2991:                 $r->print('<li>'.$fieldtitles{$field}.'</li>'."\n"); 
                   2992:             }
1.207     raeburn  2993:             $r->print('</ul>');
                   2994:             if (@mod_disallowed == 1) {
                   2995:                 $r->print(&mt("You do not have the authority to change this field given the user's current set of active/future [_1] roles:",$contextname));
                   2996:             } else {
                   2997:                 $r->print(&mt("You do not have the authority to change these fields given the user's current set of active/future [_1] roles:",$contextname));
                   2998:             }
1.292     bisitz   2999:             my $helplink = 'javascript:helpMenu('."'display'".')';
                   3000:             $r->print('<span class="LC_cusr_emph">'.$rolestr.'</span><br />'
                   3001:                      .&mt('Please contact your [_1]helpdesk[_2] for more information.'
                   3002:                          ,'<a href="'.$helplink.'">','</a>')
                   3003:                       .'<br />');
1.206     raeburn  3004:         }
1.259     bisitz   3005:         $r->print('<span class="LC_warning">'
                   3006:                   .$no_forceid_alert
                   3007:                   .&Apache::lonuserutils::print_namespacing_alerts($env{'form.ccdomain'},\%alerts,\%curr_rules)
                   3008:                   .'</span>');
1.4       www      3009:     }
1.367     golterma 3010:     &Apache::lonhtmlcommon::Close_PrgWin($r,\%prog_state);
1.220     raeburn  3011:     if ($env{'form.action'} eq 'singlestudent') {
1.318     raeburn  3012:         &enroll_single_student($r,$uhome,$amode,$genpwd,$now,$newuser,$context,$crstype);
                   3013:         $r->print('<p><a href="javascript:backPage(document.userupdate)">');
                   3014:         if ($crstype eq 'Community') {
                   3015:             $r->print(&mt('Enroll Another Member'));
                   3016:         } else {
                   3017:             $r->print(&mt('Enroll Another Student'));
                   3018:         }
                   3019:         $r->print('</a></p>');
1.220     raeburn  3020:     } else {
1.239     raeburn  3021:         my @rolechanges = &update_roles($r,$context);
1.334     raeburn  3022:         if (keys(%namechanged) > 0) {
1.220     raeburn  3023:             if ($context eq 'course') {
                   3024:                 if (@userroles > 0) {
1.225     raeburn  3025:                     if ((@rolechanges == 0) || 
                   3026:                         (!(grep(/^st$/,@rolechanges)))) {
                   3027:                         if (grep(/^st$/,@userroles)) {
                   3028:                             my $classlistupdated =
                   3029:                                 &Apache::lonuserutils::update_classlist($cdom,
1.220     raeburn  3030:                                               $cnum,$env{'form.ccdomain'},
                   3031:                                        $env{'form.ccuname'},\%userupdate);
1.225     raeburn  3032:                         }
1.220     raeburn  3033:                     }
                   3034:                 }
                   3035:             }
                   3036:         }
1.226     raeburn  3037:         my $userinfo = &Apache::loncommon::plainname($env{'form.ccuname'},
1.233     raeburn  3038:                                                      $env{'form.ccdomain'});
                   3039:         if ($env{'form.popup'}) {
                   3040:             $r->print('<p><a href="javascript:window.close()">'.&mt('Close window').'</a></p>');
                   3041:         } else {
1.367     golterma 3042:             $r->print('<br />'.&Apache::lonhtmlcommon::actionbox(['<a href="javascript:backPage(document.userupdate,'."'$env{'form.prevphase'}','modify'".')">'
                   3043:                      .&mt('Modify this user: [_1]','<span class="LC_cusr_emph">'.$env{'form.ccuname'}.':'.$env{'form.ccdomain'}.' ('.$userinfo.')</span>').'</a>',
                   3044:                      '<a href="javascript:backPage(document.userupdate)">'.&mt('Create/Modify Another User').'</a>']));
1.233     raeburn  3045:         }
1.220     raeburn  3046:     }
                   3047: }
                   3048: 
1.334     raeburn  3049: sub display_userinfo {
1.362     raeburn  3050:     my ($r,$changed,$order,$canshow,$requestcourses,$usertools,$requestauthor,
                   3051:         $userenv,$changedhash,$namechangedhash,$oldsetting,$oldsettingtext,
1.334     raeburn  3052:         $newsetting,$newsettingtext) = @_;
                   3053:     return unless (ref($order) eq 'ARRAY' &&
                   3054:                    ref($canshow) eq 'HASH' && 
                   3055:                    ref($requestcourses) eq 'ARRAY' && 
1.362     raeburn  3056:                    ref($requestauthor) eq 'ARRAY' &&
1.334     raeburn  3057:                    ref($usertools) eq 'ARRAY' && 
                   3058:                    ref($userenv) eq 'HASH' &&
                   3059:                    ref($changedhash) eq 'HASH' &&
                   3060:                    ref($oldsetting) eq 'HASH' &&
                   3061:                    ref($oldsettingtext) eq 'HASH' &&
                   3062:                    ref($newsetting) eq 'HASH' &&
                   3063:                    ref($newsettingtext) eq 'HASH');
                   3064:     my %lt=&Apache::lonlocal::texthash(
1.372     raeburn  3065:          'ui'             => 'User Information',
1.334     raeburn  3066:          'uic'            => 'User Information Changed',
                   3067:          'firstname'      => 'First Name',
                   3068:          'middlename'     => 'Middle Name',
                   3069:          'lastname'       => 'Last Name',
                   3070:          'generation'     => 'Generation',
                   3071:          'id'             => 'Student/Employee ID',
                   3072:          'permanentemail' => 'Permanent e-mail address',
                   3073:          'quota'          => 'Disk space allocated to portfolio files',
                   3074:          'blog'           => 'Blog Availability',
1.361     raeburn  3075:          'webdav'         => 'WebDAV Availability',
1.334     raeburn  3076:          'aboutme'        => 'Personal Information Page Availability',
                   3077:          'portfolio'      => 'Portfolio Availability',
                   3078:          'official'       => 'Can Request Official Courses',
                   3079:          'unofficial'     => 'Can Request Unofficial Courses',
                   3080:          'community'      => 'Can Request Communities',
1.362     raeburn  3081:          'requestauthor'  => 'Can Request Author Role',
1.334     raeburn  3082:          'inststatus'     => "Affiliation",
                   3083:          'prvs'           => 'Previous Value:',
                   3084:          'chto'           => 'Changed To:'
                   3085:     );
                   3086:     if ($changed) {
1.372     raeburn  3087:         $r->print('<h3>'.$lt{'uic'}.'</h3>'.
1.367     golterma 3088:                 &Apache::loncommon::start_data_table().
                   3089:                 &Apache::loncommon::start_data_table_header_row());
1.334     raeburn  3090:         $r->print("<th>&nbsp;</th>\n");
1.367     golterma 3091:         $r->print('<th><b>'.$lt{'prvs'}.'</b></th>');
                   3092:         $r->print('<th><span class="LC_nobreak"><b>'.$lt{'chto'}.'</b></span></th>');
                   3093:         $r->print(&Apache::loncommon::end_data_table_header_row());
                   3094:         my @userinfo = ('firstname','middlename','lastname','generation','permanentemail','id');
                   3095:         
                   3096: 
1.334     raeburn  3097:         foreach my $item (@userinfo) {
                   3098:             my $value = $env{'form.c'.$item};
1.367     golterma 3099:             #show changes only:
                   3100:             unless($value eq $userenv->{$item}){
                   3101:                 $r->print(&Apache::loncommon::start_data_table_row());
                   3102: 
                   3103:                 $r->print("<td>$lt{$item}</td>\n");
                   3104:                 $r->print('<td>'.$userenv->{$item}.' </td>');
                   3105:                 $r->print("<td>$value </td>\n");
                   3106: 
                   3107:                 $r->print(&Apache::loncommon::end_data_table_row());
1.334     raeburn  3108:             }
                   3109:         }
                   3110:         foreach my $entry (@{$order}) {
1.367     golterma 3111:             if ($canshow->{$entry} && ($newsetting->{$entry} ne $newsetting->{$entry})) {
                   3112:                 $r->print(&Apache::loncommon::start_data_table_row());
1.334     raeburn  3113:                 if (($entry eq 'requestcourses') || ($entry eq 'reqcrsotherdom')) {
                   3114:                     foreach my $item (@{$requestcourses}) {
1.367     golterma 3115:                         $r->print("<td>$lt{$item}</td>\n");
                   3116:                         $r->print("<td>$oldsetting->{$item} $oldsettingtext->{$item}</td>\n");
1.334     raeburn  3117:                         my $value = $newsetting->{$item}.' '.$newsettingtext->{$item};
                   3118:                         if ($changedhash->{$item}) {
                   3119:                             $value = '<span class="LC_cusr_emph">'.$value.'</span>';
                   3120:                         }
                   3121:                         $r->print("<td>$value </td>\n");
                   3122:                     }
                   3123:                 } elsif ($entry eq 'tools') {
                   3124:                     foreach my $item (@{$usertools}) {
1.367     golterma 3125:                         $r->print("<td>$lt{$item}</td>\n");
                   3126:                         $r->print("<td>$oldsetting->{$item} $oldsettingtext->{$item}</td>\n");
1.334     raeburn  3127:                         my $value = $newsetting->{$item}.' '.$newsettingtext->{$item};
                   3128:                         if ($changedhash->{$item}) {
                   3129:                             $value = '<span class="LC_cusr_emph">'.$value.'</span>';
                   3130:                         }
                   3131:                         $r->print("<td>$value </td>\n");
                   3132:                     }
                   3133:                 } else {
1.367     golterma 3134:                     $r->print("<td>$lt{$entry}</td>\n");
                   3135:                     $r->print("<td>$oldsetting->{$entry} $oldsettingtext->{$entry} </td>\n");
1.334     raeburn  3136:                     my $value = $newsetting->{$entry}.' '.$newsettingtext->{$entry};
                   3137:                     if ($changedhash->{$entry}) {
                   3138:                         $value = '<span class="LC_cusr_emph">'.$value.'</span>';
                   3139:                     }
                   3140:                     $r->print("<td>$value </td>\n");
                   3141:                 }
1.367     golterma 3142:                 $r->print(&Apache::loncommon::end_data_table_row());
1.334     raeburn  3143:             }
                   3144:         }
1.367     golterma 3145:         $r->print(&Apache::loncommon::end_data_table().'<br />');
1.372     raeburn  3146:     } else {
                   3147:         $r->print('<h3>'.$lt{'ui'}.'</h3>'.
                   3148:                   '<p>'.&mt('No changes made to user information').'</p>');
1.334     raeburn  3149:     }
                   3150:     return;
                   3151: }
                   3152: 
1.275     raeburn  3153: sub tool_changes {
                   3154:     my ($context,$usertools,$oldaccess,$oldaccesstext,$userenv,$changeHash,
                   3155:         $changed,$newaccess,$newaccesstext) = @_;
                   3156:     if (!((ref($usertools) eq 'ARRAY') && (ref($oldaccess) eq 'HASH') &&
                   3157:           (ref($oldaccesstext) eq 'HASH') && (ref($userenv) eq 'HASH') &&
                   3158:           (ref($changeHash) eq 'HASH') && (ref($changed) eq 'HASH') &&
                   3159:           (ref($newaccess) eq 'HASH') && (ref($newaccesstext) eq 'HASH'))) {
                   3160:         return;
                   3161:     }
1.300     raeburn  3162:     if ($context eq 'reqcrsotherdom') {
1.309     raeburn  3163:         my @options = ('approval','validate','autolimit');
1.306     raeburn  3164:         my $optregex = join('|',@options);
                   3165:         my %reqdisplay = &courserequest_display();
1.300     raeburn  3166:         my $cdom = $env{'request.role.domain'};
                   3167:         foreach my $tool (@{$usertools}) {
1.314     raeburn  3168:             $oldaccesstext->{$tool} = &mt('No');
                   3169:             $newaccesstext->{$tool} = $oldaccesstext->{$tool};
1.300     raeburn  3170:             $changeHash->{$context.'.'.$tool} = $userenv->{$context.'.'.$tool};
1.314     raeburn  3171:             my $newop;
                   3172:             if ($env{'form.'.$context.'_'.$tool}) {
                   3173:                 $newop = $env{'form.'.$context.'_'.$tool};
                   3174:                 if ($newop eq 'autolimit') {
                   3175:                     my $limit = $env{'form.'.$context.'_'.$tool.'_limit'};
                   3176:                     $limit =~ s/\D+//g;
                   3177:                     $newop .= '='.$limit;
                   3178:                 }
                   3179:             }
1.300     raeburn  3180:             if ($userenv->{$context.'.'.$tool} eq '') {
1.314     raeburn  3181:                 if ($newop) {
                   3182:                     $changed->{$tool}=&tool_admin($tool,$cdom.':'.$newop,
1.300     raeburn  3183:                                                   $changeHash,$context);
                   3184:                     if ($changed->{$tool}) {
1.314     raeburn  3185:                         $newaccesstext->{$tool} = &mt('Yes');
1.300     raeburn  3186:                     } else {
                   3187:                         $newaccesstext->{$tool} = $oldaccesstext->{$tool};
                   3188:                     }
                   3189:                 }
                   3190:             } else {
                   3191:                 my @curr = split(',',$userenv->{$context.'.'.$tool});
                   3192:                 my @new;
                   3193:                 my $changedoms;
1.314     raeburn  3194:                 foreach my $req (@curr) {
                   3195:                     if ($req =~ /^\Q$cdom\E\:($optregex\=?\d*)$/) {
                   3196:                         $oldaccesstext->{$tool} = &mt('Yes');
                   3197:                         my $oldop = $1;
                   3198:                         if ($oldop ne $newop) {
                   3199:                             $changedoms = 1;
                   3200:                             foreach my $item (@curr) {
                   3201:                                 my ($reqdom,$option) = split(':',$item);
                   3202:                                 unless ($reqdom eq $cdom) {
                   3203:                                     push(@new,$item);
                   3204:                                 }
                   3205:                             }
                   3206:                             if ($newop) {
                   3207:                                 push(@new,$cdom.':'.$newop);
1.300     raeburn  3208:                             }
1.314     raeburn  3209:                             @new = sort(@new);
1.300     raeburn  3210:                         }
1.314     raeburn  3211:                         last;
1.300     raeburn  3212:                     }
1.314     raeburn  3213:                 }
                   3214:                 if ((!$changedoms) && ($newop)) {
1.300     raeburn  3215:                     $changedoms = 1;
1.306     raeburn  3216:                     @new = sort(@curr,$cdom.':'.$newop);
1.300     raeburn  3217:                 }
                   3218:                 if ($changedoms) {
1.314     raeburn  3219:                     my $newdomstr;
1.300     raeburn  3220:                     if (@new) {
                   3221:                         $newdomstr = join(',',@new);
                   3222:                     }
                   3223:                     $changed->{$tool}=&tool_admin($tool,$newdomstr,$changeHash,
                   3224:                                                   $context);
                   3225:                     if ($changed->{$tool}) {
                   3226:                         if ($env{'form.'.$context.'_'.$tool}) {
1.306     raeburn  3227:                             if ($env{'form.'.$context.'_'.$tool} eq 'autolimit') {
1.314     raeburn  3228:                                 my $limit = $env{'form.'.$context.'_'.$tool.'_limit'};
                   3229:                                 $limit =~ s/\D+//g;
                   3230:                                 if ($limit) {
                   3231:                                     $newaccesstext->{$tool} = &mt('Yes, up to limit of [quant,_1,request] per user.',$limit);
                   3232:                                 } else {
1.306     raeburn  3233:                                     $newaccesstext->{$tool} = &mt('Yes, processed automatically');
                   3234:                                 }
1.314     raeburn  3235:                             } else {
1.306     raeburn  3236:                                 $newaccesstext->{$tool} = $reqdisplay{$env{'form.'.$context.'_'.$tool}};
                   3237:                             }
1.300     raeburn  3238:                         } else {
1.306     raeburn  3239:                             $newaccesstext->{$tool} = &mt('No');
1.300     raeburn  3240:                         }
                   3241:                     }
                   3242:                 }
                   3243:             }
                   3244:         }
                   3245:         return;
                   3246:     }
1.275     raeburn  3247:     foreach my $tool (@{$usertools}) {
1.362     raeburn  3248:         my ($newval,$envkey);
                   3249:         $envkey = $context.'.'.$tool;
1.306     raeburn  3250:         if ($context eq 'requestcourses') {
                   3251:             $newval = $env{'form.crsreq_'.$tool};
                   3252:             if ($newval eq 'autolimit') {
                   3253:                 $newval .= '='.$env{'form.crsreq_'.$tool.'_limit'};
                   3254:             }
1.362     raeburn  3255:         } elsif ($context eq 'requestauthor') {
                   3256:             $newval = $env{'form.'.$context};
                   3257:             $envkey = $context;
1.314     raeburn  3258:         } else {
1.306     raeburn  3259:             $newval = $env{'form.'.$context.'_'.$tool};
                   3260:         }
1.362     raeburn  3261:         if ($userenv->{$envkey} ne '') {
1.275     raeburn  3262:             $oldaccess->{$tool} = &mt('custom');
1.362     raeburn  3263:             if ($userenv->{$envkey}) {
1.275     raeburn  3264:                 $oldaccesstext->{$tool} = &mt("availability set to 'on'");
                   3265:             } else {
                   3266:                 $oldaccesstext->{$tool} = &mt("availability set to 'off'");
                   3267:             }
1.362     raeburn  3268:             $changeHash->{$envkey} = $userenv->{$envkey};
1.275     raeburn  3269:             if ($env{'form.custom'.$tool} == 1) {
1.362     raeburn  3270:                 if ($newval ne $userenv->{$envkey}) {
1.306     raeburn  3271:                     $changed->{$tool} = &tool_admin($tool,$newval,$changeHash,
                   3272:                                                     $context);
1.275     raeburn  3273:                     if ($changed->{$tool}) {
                   3274:                         $newaccess->{$tool} = &mt('custom');
1.306     raeburn  3275:                         if ($newval) {
1.275     raeburn  3276:                             $newaccesstext->{$tool} = &mt("availability set to 'on'");
                   3277:                         } else {
                   3278:                             $newaccesstext->{$tool} = &mt("availability set to 'off'");
                   3279:                         }
                   3280:                     } else {
                   3281:                         $newaccess->{$tool} = $oldaccess->{$tool};
                   3282:                         if ($userenv->{$context.'.'.$tool}) {
                   3283:                             $newaccesstext->{$tool} = &mt("availability set to 'on'");
                   3284:                         } else {
                   3285:                             $newaccesstext->{$tool} = &mt("availability set to 'off'");
                   3286:                         }
                   3287:                     }
                   3288:                 } else {
                   3289:                     $newaccess->{$tool} = $oldaccess->{$tool};
                   3290:                     $newaccesstext->{$tool} = $oldaccesstext->{$tool};
                   3291:                 }
                   3292:             } else {
                   3293:                 $changed->{$tool} = &tool_admin($tool,'',$changeHash,$context);
                   3294:                 if ($changed->{$tool}) {
                   3295:                     $newaccess->{$tool} = &mt('default');
                   3296:                 } else {
                   3297:                     $newaccess->{$tool} = $oldaccess->{$tool};
                   3298:                     if ($userenv->{$context.'.'.$tool}) {
1.300     raeburn  3299:                         $newaccesstext->{$tool} = &mt("availability set to 'on'");
1.275     raeburn  3300:                     } else {
1.300     raeburn  3301:                         $newaccesstext->{$tool} = &mt("availability set to 'off'");
1.275     raeburn  3302:                     }
                   3303:                 }
                   3304:             }
                   3305:         } else {
                   3306:             $oldaccess->{$tool} = &mt('default');
                   3307:             if ($env{'form.custom'.$tool} == 1) {
1.306     raeburn  3308:                 $changed->{$tool} = &tool_admin($tool,$newval,$changeHash,
                   3309:                                                 $context);
1.275     raeburn  3310:                 if ($changed->{$tool}) {
                   3311:                     $newaccess->{$tool} = &mt('custom');
1.306     raeburn  3312:                     if ($newval) {
1.275     raeburn  3313:                         $newaccesstext->{$tool} = &mt("availability set to 'on'");
                   3314:                     } else {
                   3315:                         $newaccesstext->{$tool} = &mt("availability set to 'off'");
                   3316:                     }
                   3317:                 } else {
                   3318:                     $newaccess->{$tool} = $oldaccess->{$tool};
                   3319:                 }
                   3320:             } else {
                   3321:                 $newaccess->{$tool} = $oldaccess->{$tool};
                   3322:             }
                   3323:         }
                   3324:     }
                   3325:     return;
                   3326: }
                   3327: 
1.220     raeburn  3328: sub update_roles {
1.239     raeburn  3329:     my ($r,$context) = @_;
1.4       www      3330:     my $now=time;
1.225     raeburn  3331:     my @rolechanges;
1.220     raeburn  3332:     my %disallowed;
1.73      sakharuk 3333:     $r->print('<h3>'.&mt('Modifying Roles').'</h3>');
1.135     raeburn  3334:     foreach my $key (keys (%env)) {
                   3335: 	next if (! $env{$key});
1.190     raeburn  3336:         next if ($key eq 'form.action');
1.27      matthew  3337: 	# Revoke roles
1.135     raeburn  3338: 	if ($key=~/^form\.rev/) {
                   3339: 	    if ($key=~/^form\.rev\:([^\_]+)\_([^\_\.]+)$/) {
1.64      www      3340: # Revoke standard role
1.170     albertel 3341: 		my ($scope,$role) = ($1,$2);
                   3342: 		my $result =
                   3343: 		    &Apache::lonnet::revokerole($env{'form.ccdomain'},
                   3344: 						$env{'form.ccuname'},
1.239     raeburn  3345: 						$scope,$role,'','',$context);
1.367     golterma 3346:                 $r->print(&Apache::lonhtmlcommon::confirm_success(
1.369     bisitz   3347:                             &mt('Revoking [_1] in [_2]',
                   3348:                                 &Apache::lonnet::plaintext($role),
1.372     raeburn  3349:                                 &Apache::loncommon::show_role_extent($scope,$context,$role)),
1.369     bisitz   3350:                                 $result ne "ok").'<br />');
                   3351:                 if ($result ne "ok") {
                   3352:                     $r->print(&mt('Error: [_1]',$result).'<br />');
                   3353:                 }
1.170     albertel 3354: 		if ($role eq 'st') {
1.202     raeburn  3355: 		    my $result = 
1.198     raeburn  3356:                         &Apache::lonuserutils::classlist_drop($scope,
                   3357:                             $env{'form.ccuname'},$env{'form.ccdomain'},
1.202     raeburn  3358: 			    $now);
1.367     golterma 3359:                     $r->print(&Apache::lonhtmlcommon::confirm_success($result));
1.53      www      3360: 		}
1.225     raeburn  3361:                 if (!grep(/^\Q$role\E$/,@rolechanges)) {
                   3362:                     push(@rolechanges,$role);
                   3363:                 }
1.196     raeburn  3364: 	    }
1.195     raeburn  3365: 	    if ($key=~m{^form\.rev\:([^_]+)_cr\.cr/($match_domain)/($match_username)/(\w+)$}s) {
1.64      www      3366: # Revoke custom role
1.369     bisitz   3367:                 my $result = &Apache::lonnet::revokecustomrole(
                   3368:                     $env{'form.ccdomain'},$env{'form.ccuname'},$1,$2,$3,$4,'','',$context);
1.367     golterma 3369:                 $r->print(&Apache::lonhtmlcommon::confirm_success(
1.369     bisitz   3370:                             &mt('Revoking custom role [_1] by [_2] in [_3]',
1.372     raeburn  3371:                                 $4,$3.':'.$2,&Apache::loncommon::show_role_extent($1,$context,'cr')),
1.369     bisitz   3372:                             $result ne 'ok').'<br />');
                   3373:                 if ($result ne "ok") {
                   3374:                     $r->print(&mt('Error: [_1]',$result).'<br />');
                   3375:                 }
1.225     raeburn  3376:                 if (!grep(/^cr$/,@rolechanges)) {
                   3377:                     push(@rolechanges,'cr');
                   3378:                 }
1.64      www      3379: 	    }
1.135     raeburn  3380: 	} elsif ($key=~/^form\.del/) {
                   3381: 	    if ($key=~/^form\.del\:([^\_]+)\_([^\_\.]+)$/) {
1.116     raeburn  3382: # Delete standard role
1.170     albertel 3383: 		my ($scope,$role) = ($1,$2);
                   3384: 		my $result =
                   3385: 		    &Apache::lonnet::assignrole($env{'form.ccdomain'},
                   3386: 						$env{'form.ccuname'},
1.239     raeburn  3387: 						$scope,$role,$now,0,1,'',
                   3388:                                                 $context);
1.367     golterma 3389:                 $r->print(&Apache::lonhtmlcommon::confirm_success(
                   3390:                             &mt('Deleting [_1] in [_2]',
1.369     bisitz   3391:                                 &Apache::lonnet::plaintext($role),
1.372     raeburn  3392:                                 &Apache::loncommon::show_role_extent($scope,$context,$role)),
1.369     bisitz   3393:                             $result ne 'ok').'<br />');
                   3394:                 if ($result ne "ok") {
                   3395:                     $r->print(&mt('Error: [_1]',$result).'<br />');
                   3396:                 }
1.367     golterma 3397: 
1.170     albertel 3398: 		if ($role eq 'st') {
1.202     raeburn  3399: 		    my $result = 
1.198     raeburn  3400:                         &Apache::lonuserutils::classlist_drop($scope,
                   3401:                             $env{'form.ccuname'},$env{'form.ccdomain'},
1.202     raeburn  3402: 			    $now);
1.369     bisitz   3403: 		    $r->print(&Apache::lonhtmlcommon::confirm_success($result));
1.81      albertel 3404: 		}
1.225     raeburn  3405:                 if (!grep(/^\Q$role\E$/,@rolechanges)) {
                   3406:                     push(@rolechanges,$role);
                   3407:                 }
1.116     raeburn  3408:             }
1.139     albertel 3409: 	    if ($key=~m{^form\.del\:([^_]+)_cr\.cr/($match_domain)/($match_username)/(\w+)$}) {
1.116     raeburn  3410:                 my ($url,$rdom,$rnam,$rolename) = ($1,$2,$3,$4);
                   3411: # Delete custom role
1.369     bisitz   3412:                 my $result =
                   3413:                     &Apache::lonnet::assigncustomrole($env{'form.ccdomain'},
                   3414:                         $env{'form.ccuname'},$url,$rdom,$rnam,$rolename,$now,
                   3415:                         0,1,$context);
                   3416:                 $r->print(&Apache::lonhtmlcommon::confirm_success(&mt('Deleting custom role [_1] by [_2] in [_3]',
1.372     raeburn  3417:                       $rolename,$rnam.':'.$rdom,&Apache::loncommon::show_role_extent($1,$context,'cr')),
1.369     bisitz   3418:                       $result ne "ok").'<br />');
                   3419:                 if ($result ne "ok") {
                   3420:                     $r->print(&mt('Error: [_1]',$result).'<br />');
                   3421:                 }
1.367     golterma 3422: 
1.225     raeburn  3423:                 if (!grep(/^cr$/,@rolechanges)) {
                   3424:                     push(@rolechanges,'cr');
                   3425:                 }
1.116     raeburn  3426:             }
1.135     raeburn  3427: 	} elsif ($key=~/^form\.ren/) {
1.101     albertel 3428:             my $udom = $env{'form.ccdomain'};
                   3429:             my $uname = $env{'form.ccuname'};
1.116     raeburn  3430: # Re-enable standard role
1.135     raeburn  3431: 	    if ($key=~/^form\.ren\:([^\_]+)\_([^\_\.]+)$/) {
1.89      raeburn  3432:                 my $url = $1;
                   3433:                 my $role = $2;
                   3434:                 my $logmsg;
                   3435:                 my $output;
                   3436:                 if ($role eq 'st') {
1.141     albertel 3437:                     if ($url =~ m-^/($match_domain)/($match_courseid)/?(\w*)$-) {
1.129     albertel 3438:                         my $result = &Apache::loncommon::commit_studentrole(\$logmsg,$udom,$uname,$url,$role,$now,0,$1,$2,$3);
1.220     raeburn  3439:                         if (($result =~ /^error/) || ($result eq 'not_in_class') || ($result eq 'unknown_course') || ($result eq 'refused')) {
1.223     raeburn  3440:                             if ($result eq 'refused' && $logmsg) {
                   3441:                                 $output = $logmsg;
                   3442:                             } else { 
1.369     bisitz   3443:                                 $output = &mt('Error: [_1]',$result)."\n";
1.223     raeburn  3444:                             }
1.89      raeburn  3445:                         } else {
1.372     raeburn  3446:                             $output = &Apache::lonhtmlcommon::confirm_success(&mt('Assigning [_1] in [_2] starting [_3]',
                   3447:                                         &Apache::lonnet::plaintext($role),
                   3448:                                         &Apache::loncommon::show_role_extent($url,$context,'st'),
                   3449:                                         &Apache::lonlocal::locallocaltime($now))).'<br />'.$logmsg.'<br />';
1.89      raeburn  3450:                         }
                   3451:                     }
                   3452:                 } else {
1.101     albertel 3453: 		    my $result=&Apache::lonnet::assignrole($env{'form.ccdomain'},
1.239     raeburn  3454:                                $env{'form.ccuname'},$url,$role,0,$now,'','',
                   3455:                                $context);
1.367     golterma 3456:                         $output = &Apache::lonhtmlcommon::confirm_success(&mt('Re-enabling [_1] in [_2]',
1.372     raeburn  3457:                                         &Apache::lonnet::plaintext($role),
                   3458:                                         &Apache::loncommon::show_role_extent($url,$context,$role)),$result ne "ok").'<br />';
1.369     bisitz   3459:                     if ($result ne "ok") {
                   3460:                         $output .= &mt('Error: [_1]',$result).'<br />';
                   3461:                     }
                   3462:                 }
1.89      raeburn  3463:                 $r->print($output);
1.225     raeburn  3464:                 if (!grep(/^\Q$role\E$/,@rolechanges)) {
                   3465:                     push(@rolechanges,$role);
                   3466:                 }
1.113     raeburn  3467: 	    }
1.116     raeburn  3468: # Re-enable custom role
1.139     albertel 3469: 	    if ($key=~m{^form\.ren\:([^_]+)_cr\.cr/($match_domain)/($match_username)/(\w+)$}) {
1.116     raeburn  3470:                 my ($url,$rdom,$rnam,$rolename) = ($1,$2,$3,$4);
                   3471:                 my $result = &Apache::lonnet::assigncustomrole(
                   3472:                                $env{'form.ccdomain'}, $env{'form.ccuname'},
1.240     raeburn  3473:                                $url,$rdom,$rnam,$rolename,0,$now,undef,$context);
1.369     bisitz   3474:                 $r->print(&Apache::lonhtmlcommon::confirm_success(
                   3475:                     &mt('Re-enabling custom role [_1] by [_2] in [_3]',
1.372     raeburn  3476:                         $rolename,$rnam.':'.$rdom,&Apache::loncommon::show_role_extent($1,$context,'cr')),
1.369     bisitz   3477:                     $result ne "ok").'<br />');
                   3478:                 if ($result ne "ok") {
                   3479:                     $r->print(&mt('Error: [_1]',$result).'<br />');
                   3480:                 }
1.225     raeburn  3481:                 if (!grep(/^cr$/,@rolechanges)) {
                   3482:                     push(@rolechanges,'cr');
                   3483:                 }
1.116     raeburn  3484:             }
1.135     raeburn  3485: 	} elsif ($key=~/^form\.act/) {
1.101     albertel 3486:             my $udom = $env{'form.ccdomain'};
                   3487:             my $uname = $env{'form.ccuname'};
1.141     albertel 3488: 	    if ($key=~/^form\.act\_($match_domain)\_($match_courseid)\_cr_cr_($match_domain)_($match_username)_([^\_]+)$/) {
1.65      www      3489:                 # Activate a custom role
1.83      albertel 3490: 		my ($one,$two,$three,$four,$five)=($1,$2,$3,$4,$5);
                   3491: 		my $url='/'.$one.'/'.$two;
                   3492: 		my $full=$one.'_'.$two.'_cr_cr_'.$three.'_'.$four.'_'.$five;
1.65      www      3493: 
1.101     albertel 3494:                 my $start = ( $env{'form.start_'.$full} ?
                   3495:                               $env{'form.start_'.$full} :
1.88      raeburn  3496:                               $now );
1.101     albertel 3497:                 my $end   = ( $env{'form.end_'.$full} ?
                   3498:                               $env{'form.end_'.$full} :
1.88      raeburn  3499:                               0 );
                   3500:                                                                                      
                   3501:                 # split multiple sections
                   3502:                 my %sections = ();
1.101     albertel 3503:                 my $num_sections = &build_roles($env{'form.sec_'.$full},\%sections,$5);
1.88      raeburn  3504:                 if ($num_sections == 0) {
1.240     raeburn  3505:                     $r->print(&Apache::loncommon::commit_customrole($udom,$uname,$url,$three,$four,$five,$start,$end,$context));
1.88      raeburn  3506:                 } else {
1.114     albertel 3507: 		    my %curr_groups =
1.117     raeburn  3508: 			&Apache::longroup::coursegroups($one,$two);
1.113     raeburn  3509:                     foreach my $sec (sort {$a cmp $b} keys %sections) {
                   3510:                         if (($sec eq 'none') || ($sec eq 'all') || 
                   3511:                             exists($curr_groups{$sec})) {
                   3512:                             $disallowed{$sec} = $url;
                   3513:                             next;
                   3514:                         }
                   3515:                         my $securl = $url.'/'.$sec;
1.240     raeburn  3516: 		        $r->print(&Apache::loncommon::commit_customrole($udom,$uname,$securl,$three,$four,$five,$start,$end,$context));
1.88      raeburn  3517:                     }
                   3518:                 }
1.225     raeburn  3519:                 if (!grep(/^cr$/,@rolechanges)) {
                   3520:                     push(@rolechanges,'cr');
                   3521:                 }
1.142     raeburn  3522: 	    } elsif ($key=~/^form\.act\_($match_domain)\_($match_name)\_([^\_]+)$/) {
1.27      matthew  3523: 		# Activate roles for sections with 3 id numbers
                   3524: 		# set start, end times, and the url for the class
1.83      albertel 3525: 		my ($one,$two,$three)=($1,$2,$3);
1.101     albertel 3526: 		my $start = ( $env{'form.start_'.$one.'_'.$two.'_'.$three} ? 
                   3527: 			      $env{'form.start_'.$one.'_'.$two.'_'.$three} : 
1.27      matthew  3528: 			      $now );
1.101     albertel 3529: 		my $end   = ( $env{'form.end_'.$one.'_'.$two.'_'.$three} ? 
                   3530: 			      $env{'form.end_'.$one.'_'.$two.'_'.$three} :
1.27      matthew  3531: 			      0 );
1.83      albertel 3532: 		my $url='/'.$one.'/'.$two;
1.88      raeburn  3533:                 my $type = 'three';
                   3534:                 # split multiple sections
                   3535:                 my %sections = ();
1.101     albertel 3536:                 my $num_sections = &build_roles($env{'form.sec_'.$one.'_'.$two.'_'.$three},\%sections,$three);
1.88      raeburn  3537:                 if ($num_sections == 0) {
1.240     raeburn  3538:                     $r->print(&Apache::loncommon::commit_standardrole($udom,$uname,$url,$three,$start,$end,$one,$two,'',$context));
1.88      raeburn  3539:                 } else {
1.114     albertel 3540:                     my %curr_groups = 
1.117     raeburn  3541: 			&Apache::longroup::coursegroups($one,$two);
1.88      raeburn  3542:                     my $emptysec = 0;
                   3543:                     foreach my $sec (sort {$a cmp $b} keys %sections) {
                   3544:                         $sec =~ s/\W//g;
1.113     raeburn  3545:                         if ($sec ne '') {
                   3546:                             if (($sec eq 'none') || ($sec eq 'all') || 
                   3547:                                 exists($curr_groups{$sec})) {
                   3548:                                 $disallowed{$sec} = $url;
                   3549:                                 next;
                   3550:                             }
1.88      raeburn  3551:                             my $securl = $url.'/'.$sec;
1.240     raeburn  3552:                             $r->print(&Apache::loncommon::commit_standardrole($udom,$uname,$securl,$three,$start,$end,$one,$two,$sec,$context));
1.88      raeburn  3553:                         } else {
                   3554:                             $emptysec = 1;
                   3555:                         }
                   3556:                     }
                   3557:                     if ($emptysec) {
1.240     raeburn  3558:                         $r->print(&Apache::loncommon::commit_standardrole($udom,$uname,$url,$three,$start,$end,$one,$two,'',$context));
1.88      raeburn  3559:                     }
1.225     raeburn  3560:                 }
                   3561:                 if (!grep(/^\Q$three\E$/,@rolechanges)) {
                   3562:                     push(@rolechanges,$three);
                   3563:                 }
1.135     raeburn  3564: 	    } elsif ($key=~/^form\.act\_([^\_]+)\_([^\_]+)$/) {
1.27      matthew  3565: 		# Activate roles for sections with two id numbers
                   3566: 		# set start, end times, and the url for the class
1.101     albertel 3567: 		my $start = ( $env{'form.start_'.$1.'_'.$2} ? 
                   3568: 			      $env{'form.start_'.$1.'_'.$2} : 
1.27      matthew  3569: 			      $now );
1.101     albertel 3570: 		my $end   = ( $env{'form.end_'.$1.'_'.$2} ? 
                   3571: 			      $env{'form.end_'.$1.'_'.$2} :
1.27      matthew  3572: 			      0 );
1.225     raeburn  3573:                 my $one = $1;
                   3574:                 my $two = $2;
                   3575: 		my $url='/'.$one.'/';
1.88      raeburn  3576:                 # split multiple sections
                   3577:                 my %sections = ();
1.225     raeburn  3578:                 my $num_sections = &build_roles($env{'form.sec_'.$one.'_'.$two},\%sections,$two);
1.88      raeburn  3579:                 if ($num_sections == 0) {
1.240     raeburn  3580:                     $r->print(&Apache::loncommon::commit_standardrole($udom,$uname,$url,$two,$start,$end,$one,undef,'',$context));
1.88      raeburn  3581:                 } else {
                   3582:                     my $emptysec = 0;
                   3583:                     foreach my $sec (sort {$a cmp $b} keys %sections) {
                   3584:                         if ($sec ne '') {
                   3585:                             my $securl = $url.'/'.$sec;
1.240     raeburn  3586:                             $r->print(&Apache::loncommon::commit_standardrole($udom,$uname,$securl,$two,$start,$end,$one,undef,$sec,$context));
1.88      raeburn  3587:                         } else {
                   3588:                             $emptysec = 1;
                   3589:                         }
                   3590:                     }
                   3591:                     if ($emptysec) {
1.240     raeburn  3592:                         $r->print(&Apache::loncommon::commit_standardrole($udom,$uname,$url,$two,$start,$end,$one,undef,'',$context));
1.88      raeburn  3593:                     }
                   3594:                 }
1.225     raeburn  3595:                 if (!grep(/^\Q$two\E$/,@rolechanges)) {
                   3596:                     push(@rolechanges,$two);
                   3597:                 }
1.64      www      3598: 	    } else {
1.190     raeburn  3599: 		$r->print('<p><span class="LC_error">'.&mt('ERROR').': '.&mt('Unknown command').' <tt>'.$key.'</tt></span></p><br />');
1.64      www      3600:             }
1.113     raeburn  3601:             foreach my $key (sort(keys(%disallowed))) {
1.274     bisitz   3602:                 $r->print('<p class="LC_warning">');
1.113     raeburn  3603:                 if (($key eq 'none') || ($key eq 'all')) {  
1.274     bisitz   3604:                     $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  3605:                 } else {
1.274     bisitz   3606:                     $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  3607:                 }
1.274     bisitz   3608:                 $r->print('</p><p>'
                   3609:                          .&mt('Please [_1]go back[_2] and choose a different section name.'
                   3610:                              ,'<a href="javascript:history.go(-1)'
                   3611:                              ,'</a>')
                   3612:                          .'</p><br />'
                   3613:                 );
1.113     raeburn  3614:             }
                   3615: 	}
1.101     albertel 3616:     } # End of foreach (keys(%env))
1.75      www      3617: # Flush the course logs so reverse user roles immediately updated
1.349     raeburn  3618:     $r->register_cleanup(\&Apache::lonnet::flushcourselogs);
1.225     raeburn  3619:     if (@rolechanges == 0) {
1.372     raeburn  3620:         $r->print('<p>'.&mt('No roles to modify').'</p>');
1.193     raeburn  3621:     }
1.225     raeburn  3622:     return @rolechanges;
1.220     raeburn  3623: }
                   3624: 
                   3625: sub enroll_single_student {
1.318     raeburn  3626:     my ($r,$uhome,$amode,$genpwd,$now,$newuser,$context,$crstype) = @_;
                   3627:     $r->print('<h3>');
                   3628:     if ($crstype eq 'Community') {
                   3629:         $r->print(&mt('Enrolling Member'));
                   3630:     } else {
                   3631:         $r->print(&mt('Enrolling Student'));
                   3632:     }
                   3633:     $r->print('</h3>');
1.220     raeburn  3634: 
                   3635:     # Remove non alphanumeric values from section
                   3636:     $env{'form.sections'}=~s/\W//g;
                   3637: 
                   3638:     # Clean out any old student roles the user has in this class.
                   3639:     &Apache::lonuserutils::modifystudent($env{'form.ccdomain'},
                   3640:          $env{'form.ccuname'},$env{'request.course.id'},undef,$uhome);
                   3641:     my ($startdate,$enddate) = &Apache::lonuserutils::get_dates_from_form();
                   3642:     my $enroll_result =
                   3643:         &Apache::lonnet::modify_student_enrollment($env{'form.ccdomain'},
                   3644:             $env{'form.ccuname'},$env{'form.cid'},$env{'form.cfirstname'},
                   3645:             $env{'form.cmiddlename'},$env{'form.clastname'},
                   3646:             $env{'form.generation'},$env{'form.sections'},$enddate,
1.239     raeburn  3647:             $startdate,'manual',undef,$env{'request.course.id'},'',$context);
1.220     raeburn  3648:     if ($enroll_result =~ /^ok/) {
                   3649:         $r->print(&mt('<b>[_1]</b> enrolled',$env{'form.ccuname'}.':'.$env{'form.ccdomain'}));
                   3650:         if ($env{'form.sections'} ne '') {
                   3651:             $r->print(' '.&mt('in section [_1]',$env{'form.sections'}));
                   3652:         }
                   3653:         my ($showstart,$showend);
                   3654:         if ($startdate <= $now) {
                   3655:             $showstart = &mt('Access starts immediately');
                   3656:         } else {
                   3657:             $showstart = &mt('Access starts: ').&Apache::lonlocal::locallocaltime($startdate);
                   3658:         }
                   3659:         if ($enddate == 0) {
                   3660:             $showend = &mt('ends: no ending date');
                   3661:         } else {
                   3662:             $showend = &mt('ends: ').&Apache::lonlocal::locallocaltime($enddate);
                   3663:         }
                   3664:         $r->print('.<br />'.$showstart.'; '.$showend);
                   3665:         if ($startdate <= $now && !$newuser) {
1.318     raeburn  3666:             $r->print('<p> ');
                   3667:             if ($crstype eq 'Community') {
                   3668:                 $r->print(&mt('If the member is currently logged-in to LON-CAPA, the new role will be available when the member next logs in.'));
                   3669:             } else {
                   3670:                 $r->print(&mt('If the student is currently logged-in to LON-CAPA, the new role will be available when the student next logs in.'));
                   3671:            }
                   3672:            $r->print('</p>');
1.220     raeburn  3673:         }
                   3674:     } else {
                   3675:         $r->print(&mt('unable to enroll').": ".$enroll_result);
                   3676:     }
                   3677:     return;
1.188     raeburn  3678: }
                   3679: 
1.204     raeburn  3680: sub get_defaultquota_text {
                   3681:     my ($settingstatus) = @_;
                   3682:     my $defquotatext; 
                   3683:     if ($settingstatus eq '') {
                   3684:         $defquotatext = &mt('(default)');
                   3685:     } else {
                   3686:         my ($usertypes,$order) =
                   3687:             &Apache::lonnet::retrieve_inst_usertypes($env{'form.ccdomain'});
                   3688:         if ($usertypes->{$settingstatus} eq '') {
                   3689:             $defquotatext = &mt('(default)');
                   3690:         } else {
                   3691:             $defquotatext = &mt('(default for [_1])',$usertypes->{$settingstatus});
                   3692:         }
                   3693:     }
                   3694:     return $defquotatext;
                   3695: }
                   3696: 
1.188     raeburn  3697: sub update_result_form {
                   3698:     my ($uhome) = @_;
                   3699:     my $outcome = 
1.367     golterma 3700:     '<form name="userupdate" method="post" action="">'."\n";
1.160     raeburn  3701:     foreach my $item ('srchby','srchin','srchtype','srchterm','srchdomain','ccuname','ccdomain') {
1.188     raeburn  3702:         $outcome .= '<input type="hidden" name="'.$item.'" value="'.$env{'form.'.$item}.'" />'."\n";
1.160     raeburn  3703:     }
1.207     raeburn  3704:     if ($env{'form.origname'} ne '') {
                   3705:         $outcome .= '<input type="hidden" name="origname" value="'.$env{'form.origname'}.'" />'."\n";
                   3706:     }
1.160     raeburn  3707:     foreach my $item ('sortby','seluname','seludom') {
                   3708:         if (exists($env{'form.'.$item})) {
1.188     raeburn  3709:             $outcome .= '<input type="hidden" name="'.$item.'" value="'.$env{'form.'.$item}.'" />'."\n";
1.160     raeburn  3710:         }
                   3711:     }
1.188     raeburn  3712:     if ($uhome eq 'no_host') {
                   3713:         $outcome .= '<input type="hidden" name="forcenewuser" value="1" />'."\n";
                   3714:     }
                   3715:     $outcome .= '<input type="hidden" name="phase" value="" />'."\n".
                   3716:                 '<input type ="hidden" name="currstate" value="" />'."\n".
1.220     raeburn  3717:                 '<input type ="hidden" name="action" value="'.$env{'form.action'}.'" />'."\n".
1.188     raeburn  3718:                 '</form>';
                   3719:     return $outcome;
1.4       www      3720: }
                   3721: 
1.149     raeburn  3722: sub quota_admin {
                   3723:     my ($setquota,$changeHash) = @_;
                   3724:     my $quotachanged;
                   3725:     if (&Apache::lonnet::allowed('mpq',$env{'form.ccdomain'})) {
                   3726:         # Current user has quota modification privileges
1.267     raeburn  3727:         if (ref($changeHash) eq 'HASH') {
                   3728:             $quotachanged = 1;
                   3729:             $changeHash->{'portfolioquota'} = $setquota;
                   3730:         }
1.149     raeburn  3731:     }
                   3732:     return $quotachanged;
                   3733: }
                   3734: 
1.267     raeburn  3735: sub tool_admin {
1.275     raeburn  3736:     my ($tool,$settool,$changeHash,$context) = @_;
                   3737:     my $canchange = 0; 
1.279     raeburn  3738:     if ($context eq 'requestcourses') {
1.275     raeburn  3739:         if (&Apache::lonnet::allowed('ccc',$env{'form.ccdomain'})) {
                   3740:             $canchange = 1;
                   3741:         }
1.300     raeburn  3742:     } elsif ($context eq 'reqcrsotherdom') {
                   3743:         if (&Apache::lonnet::allowed('ccc',$env{'request.role.domain'})) {
                   3744:             $canchange = 1;
                   3745:         }
1.362     raeburn  3746:     } elsif ($context eq 'requestauthor') {
                   3747:         if (&Apache::lonnet::allowed('cau',$env{'request.role.domain'})) {
                   3748:             $canchange = 1;
                   3749:         }
1.275     raeburn  3750:     } elsif (&Apache::lonnet::allowed('mut',$env{'form.ccdomain'})) {
                   3751:         # Current user has quota modification privileges
                   3752:         $canchange = 1;
                   3753:     }
1.267     raeburn  3754:     my $toolchanged;
1.275     raeburn  3755:     if ($canchange) {
1.267     raeburn  3756:         if (ref($changeHash) eq 'HASH') {
                   3757:             $toolchanged = 1;
1.362     raeburn  3758:             if ($tool eq 'requestauthor') {
                   3759:                 $changeHash->{$context} = $settool;
                   3760:             } else {
                   3761:                 $changeHash->{$context.'.'.$tool} = $settool;
                   3762:             }
1.267     raeburn  3763:         }
                   3764:     }
                   3765:     return $toolchanged;
                   3766: }
                   3767: 
1.88      raeburn  3768: sub build_roles {
1.89      raeburn  3769:     my ($sectionstr,$sections,$role) = @_;
1.88      raeburn  3770:     my $num_sections = 0;
                   3771:     if ($sectionstr=~ /,/) {
                   3772:         my @secnums = split/,/,$sectionstr;
1.89      raeburn  3773:         if ($role eq 'st') {
                   3774:             $secnums[0] =~ s/\W//g;
                   3775:             $$sections{$secnums[0]} = 1;
                   3776:             $num_sections = 1;
                   3777:         } else {
                   3778:             foreach my $sec (@secnums) {
                   3779:                 $sec =~ ~s/\W//g;
1.150     banghart 3780:                 if (!($sec eq "")) {
1.89      raeburn  3781:                     if (exists($$sections{$sec})) {
                   3782:                         $$sections{$sec} ++;
                   3783:                     } else {
                   3784:                         $$sections{$sec} = 1;
                   3785:                         $num_sections ++;
                   3786:                     }
1.88      raeburn  3787:                 }
                   3788:             }
                   3789:         }
                   3790:     } else {
                   3791:         $sectionstr=~s/\W//g;
                   3792:         unless ($sectionstr eq '') {
                   3793:             $$sections{$sectionstr} = 1;
                   3794:             $num_sections ++;
                   3795:         }
                   3796:     }
1.129     albertel 3797: 
1.88      raeburn  3798:     return $num_sections;
                   3799: }
                   3800: 
1.58      www      3801: # ========================================================== Custom Role Editor
                   3802: 
                   3803: sub custom_role_editor {
1.351     raeburn  3804:     my ($r,$brcrum) = @_;
1.324     raeburn  3805:     my $action = $env{'form.customroleaction'};
                   3806:     my $rolename; 
                   3807:     if ($action eq 'new') {
                   3808:         $rolename=$env{'form.newrolename'};
                   3809:     } else {
                   3810:         $rolename=$env{'form.rolename'};
1.59      www      3811:     }
                   3812: 
1.324     raeburn  3813:     my ($crstype,$context);
                   3814:     if ($env{'request.course.id'}) {
                   3815:         $crstype = &Apache::loncommon::course_type();
                   3816:         $context = 'course';
                   3817:     } else {
                   3818:         $context = 'domain';
                   3819:         $crstype = $env{'form.templatecrstype'};
                   3820:     }
1.351     raeburn  3821: 
                   3822:     $rolename=~s/[^A-Za-z0-9]//gs;
                   3823:     if (!$rolename || $env{'form.phase'} eq 'pickrole') {
                   3824: 	&print_username_entry_form($r,undef,undef,undef,undef,$crstype,$brcrum);
                   3825:         return;
                   3826:     }
                   3827: 
1.153     banghart 3828: # ------------------------------------------------------- What can be assigned?
                   3829:     my %full=();
                   3830:     my %courselevel=();
                   3831:     my %courselevelcurrent=();
1.61      www      3832:     my $syspriv='';
                   3833:     my $dompriv='';
                   3834:     my $coursepriv='';
1.153     banghart 3835:     my $body_top;
1.59      www      3836:     my ($rdummy,$roledef)=
                   3837: 			 &Apache::lonnet::get('roles',["rolesdef_$rolename"]);
1.60      www      3838: # ------------------------------------------------------- Does this role exist?
1.153     banghart 3839:     $body_top .= '<h2>';
1.59      www      3840:     if (($rdummy ne 'con_lost') && ($roledef ne '')) {
1.153     banghart 3841: 	$body_top .= &mt('Existing Role').' "';
1.61      www      3842: # ------------------------------------------------- Get current role privileges
                   3843: 	($syspriv,$dompriv,$coursepriv)=split(/\_/,$roledef);
1.324     raeburn  3844:         if ($crstype eq 'Community') {
                   3845:             $syspriv =~ s/bre\&S//;   
                   3846:         }
1.59      www      3847:     } else {
1.153     banghart 3848: 	$body_top .= &mt('New Role').' "';
1.59      www      3849: 	$roledef='';
                   3850:     }
1.153     banghart 3851:     $body_top .= $rolename.'"</h2>';
1.135     raeburn  3852:     foreach my $item (split(/\:/,$Apache::lonnet::pr{'cr:c'})) {
                   3853: 	my ($priv,$restrict)=split(/\&/,$item);
1.150     banghart 3854:         if (!$restrict) { $restrict='F'; }
1.60      www      3855:         $courselevel{$priv}=$restrict;
1.61      www      3856:         if ($coursepriv=~/\:$priv/) {
                   3857: 	    $courselevelcurrent{$priv}=1;
                   3858: 	}
1.60      www      3859: 	$full{$priv}=1;
                   3860:     }
                   3861:     my %domainlevel=();
1.61      www      3862:     my %domainlevelcurrent=();
1.135     raeburn  3863:     foreach my $item (split(/\:/,$Apache::lonnet::pr{'cr:d'})) {
                   3864: 	my ($priv,$restrict)=split(/\&/,$item);
1.150     banghart 3865:         if (!$restrict) { $restrict='F'; }
1.60      www      3866:         $domainlevel{$priv}=$restrict;
1.61      www      3867:         if ($dompriv=~/\:$priv/) {
                   3868: 	    $domainlevelcurrent{$priv}=1;
                   3869: 	}
1.60      www      3870: 	$full{$priv}=1;
                   3871:     }
1.61      www      3872:     my %systemlevel=();
                   3873:     my %systemlevelcurrent=();
1.135     raeburn  3874:     foreach my $item (split(/\:/,$Apache::lonnet::pr{'cr:s'})) {
                   3875: 	my ($priv,$restrict)=split(/\&/,$item);
1.150     banghart 3876:         if (!$restrict) { $restrict='F'; }
1.61      www      3877:         $systemlevel{$priv}=$restrict;
                   3878:         if ($syspriv=~/\:$priv/) {
                   3879: 	    $systemlevelcurrent{$priv}=1;
                   3880: 	}
                   3881: 	$full{$priv}=1;
                   3882:     }
1.160     raeburn  3883:     my ($jsback,$elements) = &crumb_utilities();
1.154     banghart 3884:     my $button_code = "\n";
1.153     banghart 3885:     my $head_script = "\n";
1.301     bisitz   3886:     $head_script .= '<script type="text/javascript">'."\n"
                   3887:                    .'// <![CDATA['."\n";
1.324     raeburn  3888:     my @template_roles = ("in","ta","ep");
                   3889:     if ($context eq 'domain') {
                   3890:         push(@template_roles,"ad");
1.318     raeburn  3891:     }
1.324     raeburn  3892:     push(@template_roles,"st");
1.318     raeburn  3893:     if ($crstype eq 'Community') {
                   3894:         unshift(@template_roles,'co');
                   3895:     } else {
                   3896:         unshift(@template_roles,'cc');
                   3897:     }
1.154     banghart 3898:     foreach my $role (@template_roles) {
1.324     raeburn  3899:         $head_script .= &make_script_template($role,$crstype);
1.318     raeburn  3900:         $button_code .= &make_button_code($role,$crstype).' ';
1.154     banghart 3901:     }
1.324     raeburn  3902:     my $context_code;
                   3903:     if ($context eq 'domain') {
                   3904:         my $checkedCommunity = '';
                   3905:         my $checkedCourse = ' checked="checked"';
                   3906:         if ($env{'form.templatecrstype'} eq 'Community') {
                   3907:             $checkedCommunity = $checkedCourse;
                   3908:             $checkedCourse = '';
                   3909:         }
                   3910:         $context_code = '<label>'.
                   3911:                         '<input type="radio" name="templatecrstype" value="Course"'.$checkedCourse.' onclick="this.form.submit();">'.
                   3912:                         &mt('Course').
                   3913:                         '</label>'.('&nbsp;' x2).
                   3914:                         '<label>'.
                   3915:                         '<input type="radio" name="templatecrstype" value="Community"'.$checkedCommunity.' onclick="this.form.submit();">'.
                   3916:                         &mt('Community').
                   3917:                         '</label>'.
                   3918:                         '</fieldset>'.
                   3919:                         '<input type="hidden" name="customroleaction" value="'.
                   3920:                         $action.'" />';
                   3921:         if ($env{'form.customroleaction'} eq 'new') {
                   3922:             $context_code .= '<input type="hidden" name="newrolename" value="'.
                   3923:                              $rolename.'" />';
                   3924:         } else {
                   3925:             $context_code .= '<input type="hidden" name="rolename" value="'.
                   3926:                              $rolename.'" />';
                   3927:         }
                   3928:         $context_code .= '<input type="hidden" name="action" value="custom" />'.
                   3929:                          '<input type="hidden" name="phase" value="selected_custom_edit" />';
                   3930:     }
                   3931: 
1.301     bisitz   3932:     $head_script .= "\n".$jsback."\n"
                   3933:                    .'// ]]>'."\n"
                   3934:                    .'</script>'."\n";
1.351     raeburn  3935:     push (@{$brcrum},
                   3936:               {href => "javascript:backPage(document.form1,'pickrole','')",
                   3937:                text => "Pick custom role",
                   3938:                faq  => 282,bug=>'Instructor Interface',},
                   3939:               {href => "javascript:backPage(document.form1,'','')",
                   3940:                text => "Edit custom role",
                   3941:                faq  => 282,
                   3942:                bug  => 'Instructor Interface',
                   3943:                help => 'Course_Editing_Custom_Roles'}
                   3944:               );
                   3945:     my $args = { bread_crumbs          => $brcrum,
                   3946:                  bread_crumbs_component => 'User Management'};
                   3947:  
                   3948:     $r->print(&Apache::loncommon::start_page('Custom Role Editor',
                   3949:                                              $head_script,$args).
                   3950:               $body_top);
1.73      sakharuk 3951:     my %lt=&Apache::lonlocal::texthash(
                   3952: 		    'prv'  => "Privilege",
1.131     raeburn  3953: 		    'crl'  => "Course Level",
1.73      sakharuk 3954:                     'dml'  => "Domain Level",
1.150     banghart 3955:                     'ssl'  => "System Level");
1.264     bisitz   3956: 
1.324     raeburn  3957:     $r->print('<div class="LC_left_float">'
1.264     bisitz   3958:              .'<form action=""><fieldset>'
                   3959:              .'<legend>'.&mt('Select a Template').'</legend>'
                   3960:              .$button_code
1.324     raeburn  3961:              .'</fieldset></form></div>');
                   3962:     if ($context_code) {
                   3963:         $r->print('<div class="LC_left_float">'
                   3964:                  .'<form action="/adm/createuser" method="post"><fieldset>'
                   3965:                  .'<legend>'.&mt('Context').'</legend>'
                   3966:                  .$context_code
                   3967:                  .'</form>'
                   3968:                  .'</div>'
                   3969:         );
                   3970:     }
                   3971:     $r->print('<br clear="all" />');
1.264     bisitz   3972: 
1.61      www      3973:     $r->print(<<ENDCCF);
1.160     raeburn  3974: <form name="form1" method="post">
1.61      www      3975: <input type="hidden" name="phase" value="set_custom_roles" />
                   3976: <input type="hidden" name="rolename" value="$rolename" />
                   3977: ENDCCF
1.135     raeburn  3978:     $r->print(&Apache::loncommon::start_data_table().
                   3979:               &Apache::loncommon::start_data_table_header_row(). 
                   3980: '<th>'.$lt{'prv'}.'</th><th>'.$lt{'crl'}.'</th><th>'.$lt{'dml'}.
                   3981: '</th><th>'.$lt{'ssl'}.'</th>'.
                   3982:               &Apache::loncommon::end_data_table_header_row());
1.324     raeburn  3983:     foreach my $priv (sort(keys(%full))) {
1.318     raeburn  3984:         my $privtext = &Apache::lonnet::plaintext($priv,$crstype);
1.135     raeburn  3985:         $r->print(&Apache::loncommon::start_data_table_row().
                   3986: 	          '<td>'.$privtext.'</td><td>'.
1.288     bisitz   3987:     ($courselevel{$priv}?'<input type="checkbox" name="'.$priv.'_c"'.
                   3988:     ($courselevelcurrent{$priv}?' checked="checked"':'').' />':'&nbsp;').
1.61      www      3989:     '</td><td>'.
1.288     bisitz   3990:     ($domainlevel{$priv}?'<input type="checkbox" name="'.$priv.'_d"'.
                   3991:     ($domainlevelcurrent{$priv}?' checked="checked"':'').' />':'&nbsp;').
1.324     raeburn  3992:     '</td><td>');
                   3993:         if ($priv eq 'bre' && $crstype eq 'Community') {
                   3994:             $r->print('&nbsp;');  
                   3995:         } else {
                   3996:             $r->print($systemlevel{$priv}?'<input type="checkbox" name="'.$priv.'_s"'.
                   3997:                       ($systemlevelcurrent{$priv}?' checked="checked"':'').' />':'&nbsp;');
                   3998:         }
                   3999:         $r->print('</td>'.
                   4000:                   &Apache::loncommon::end_data_table_row());
1.60      www      4001:     }
1.135     raeburn  4002:     $r->print(&Apache::loncommon::end_data_table().
1.190     raeburn  4003:    '<input type="hidden" name="action" value="'.$env{'form.action'}.'" />'.
1.160     raeburn  4004:    '<input type="hidden" name="startrolename" value="'.$env{'form.rolename'}.
1.179     raeburn  4005:    '" />'."\n".'<input type="hidden" name="currstate" value="" />'."\n".   
1.160     raeburn  4006:    '<input type="reset" value="'.&mt("Reset").'" />'."\n".
1.351     raeburn  4007:    '<input type="submit" value="'.&mt('Save').'" /></form>');
1.61      www      4008: }
1.153     banghart 4009: # --------------------------------------------------------
                   4010: sub make_script_template {
1.324     raeburn  4011:     my ($role,$crstype) = @_;
1.153     banghart 4012:     my %full_c=();
                   4013:     my %full_d=();
                   4014:     my %full_s=();
                   4015:     my $return_script;
                   4016:     foreach my $item (split(/\:/,$Apache::lonnet::pr{'cr:c'})) {
                   4017:         my ($priv,$restrict)=split(/\&/,$item);
                   4018:         $full_c{$priv}=1;
                   4019:     }
                   4020:     foreach my $item (split(/\:/,$Apache::lonnet::pr{'cr:d'})) {
                   4021:         my ($priv,$restrict)=split(/\&/,$item);
                   4022:         $full_d{$priv}=1;
                   4023:     }
1.154     banghart 4024:     foreach my $item (split(/\:/,$Apache::lonnet::pr{'cr:s'})) {
1.324     raeburn  4025:         next if (($crstype eq 'Community') && ($item eq 'bre&S'));
1.153     banghart 4026:         my ($priv,$restrict)=split(/\&/,$item);
                   4027:         $full_s{$priv}=1;
                   4028:     }
                   4029:     $return_script .= 'function set_'.$role.'() {'."\n";
                   4030:     my @temp = split(/:/,$Apache::lonnet::pr{$role.':c'});
                   4031:     my %role_c;
1.155     banghart 4032:     foreach my $priv (@temp) {
1.153     banghart 4033:         my ($priv_item, $dummy) = split(/\&/,$priv);
                   4034:         $role_c{$priv_item} = 1;
                   4035:     }
1.269     raeburn  4036:     my %role_d;
                   4037:     @temp = split(/:/,$Apache::lonnet::pr{$role.':d'});
                   4038:     foreach my $priv(@temp) {
                   4039:         my ($priv_item, $dummy) = split(/\&/,$priv);
                   4040:         $role_d{$priv_item} = 1;
                   4041:     }
                   4042:     my %role_s;
                   4043:     @temp = split(/:/,$Apache::lonnet::pr{$role.':s'});
                   4044:     foreach my $priv(@temp) {
                   4045:         my ($priv_item, $dummy) = split(/\&/,$priv);
                   4046:         $role_s{$priv_item} = 1;
                   4047:     }
1.153     banghart 4048:     foreach my $priv_item (keys(%full_c)) {
                   4049:         my ($priv, $dummy) = split(/\&/,$priv_item);
1.269     raeburn  4050:         if ((exists($role_c{$priv})) || (exists($role_d{$priv})) || 
                   4051:             (exists($role_s{$priv}))) {
1.153     banghart 4052:             $return_script .= "document.form1.$priv"."_c.checked = true;\n";
                   4053:         } else {
                   4054:             $return_script .= "document.form1.$priv"."_c.checked = false;\n";
                   4055:         }
                   4056:     }
1.154     banghart 4057:     foreach my $priv_item (keys(%full_d)) {
                   4058:         my ($priv, $dummy) = split(/\&/,$priv_item);
1.269     raeburn  4059:         if ((exists($role_d{$priv})) || (exists($role_s{$priv}))) {
1.154     banghart 4060:             $return_script .= "document.form1.$priv"."_d.checked = true;\n";
                   4061:         } else {
                   4062:             $return_script .= "document.form1.$priv"."_d.checked = false;\n";
                   4063:         }
                   4064:     }
                   4065:     foreach my $priv_item (keys(%full_s)) {
1.153     banghart 4066:         my ($priv, $dummy) = split(/\&/,$priv_item);
1.154     banghart 4067:         if (exists($role_s{$priv})) {
                   4068:             $return_script .= "document.form1.$priv"."_s.checked = true;\n";
                   4069:         } else {
                   4070:             $return_script .= "document.form1.$priv"."_s.checked = false;\n";
                   4071:         }
1.153     banghart 4072:     }
                   4073:     $return_script .= '}'."\n";
1.154     banghart 4074:     return ($return_script);
                   4075: }
                   4076: # ----------------------------------------------------------
                   4077: sub make_button_code {
1.318     raeburn  4078:     my ($role,$crstype) = @_;
                   4079:     my $label = &Apache::lonnet::plaintext($role,$crstype);
1.301     bisitz   4080:     my $button_code = '<input type="button" onclick="set_'.$role.'()" value="'.$label.'" />';
1.154     banghart 4081:     return ($button_code);
1.153     banghart 4082: }
1.61      www      4083: # ---------------------------------------------------------- Call to definerole
                   4084: sub set_custom_role {
1.351     raeburn  4085:     my ($r,$context,$brcrum) = @_;
1.101     albertel 4086:     my $rolename=$env{'form.rolename'};
1.63      www      4087:     $rolename=~s/[^A-Za-z0-9]//gs;
1.150     banghart 4088:     if (!$rolename) {
1.351     raeburn  4089: 	&custom_role_editor($r,$brcrum);
1.61      www      4090:         return;
                   4091:     }
1.160     raeburn  4092:     my ($jsback,$elements) = &crumb_utilities();
1.301     bisitz   4093:     my $jscript = '<script type="text/javascript">'
                   4094:                  .'// <![CDATA['."\n"
                   4095:                  .$jsback."\n"
                   4096:                  .'// ]]>'."\n"
                   4097:                  .'</script>'."\n";
1.352     raeburn  4098:     push(@{$brcrum},
                   4099:         {href => "javascript:backPage(document.customresult,'pickrole','')",
                   4100:          text => "Pick custom role",
                   4101:          faq  => 282,
                   4102:          bug  => 'Instructor Interface',},
                   4103:         {href => "javascript:backPage(document.customresult,'selected_custom_edit','')",
                   4104:          text => "Edit custom role",
                   4105:          faq  => 282,
                   4106:          bug  => 'Instructor Interface',},
                   4107:         {href => "javascript:backPage(document.customresult,'set_custom_roles','')",
                   4108:          text => "Result",
                   4109:          faq  => 282,
                   4110:          bug  => 'Instructor Interface',
                   4111:          help => 'Course_Editing_Custom_Roles'},
                   4112:         );
                   4113:     my $args = { bread_crumbs           => $brcrum,
1.351     raeburn  4114:                  bread_crumbs_component => 'User Management'}; 
                   4115:     $r->print(&Apache::loncommon::start_page('Save Custom Role',$jscript,$args));
1.160     raeburn  4116: 
1.61      www      4117:     my ($rdummy,$roledef)=
1.110     albertel 4118: 	&Apache::lonnet::get('roles',["rolesdef_$rolename"]);
                   4119: 
1.61      www      4120: # ------------------------------------------------------- Does this role exist?
1.188     raeburn  4121:     $r->print('<h3>');
1.61      www      4122:     if (($rdummy ne 'con_lost') && ($roledef ne '')) {
1.73      sakharuk 4123: 	$r->print(&mt('Existing Role').' "');
1.61      www      4124:     } else {
1.73      sakharuk 4125: 	$r->print(&mt('New Role').' "');
1.61      www      4126: 	$roledef='';
                   4127:     }
1.188     raeburn  4128:     $r->print($rolename.'"</h3>');
1.61      www      4129: # ------------------------------------------------------- What can be assigned?
                   4130:     my $sysrole='';
                   4131:     my $domrole='';
                   4132:     my $courole='';
                   4133: 
1.135     raeburn  4134:     foreach my $item (split(/\:/,$Apache::lonnet::pr{'cr:c'})) {
                   4135: 	my ($priv,$restrict)=split(/\&/,$item);
1.150     banghart 4136:         if (!$restrict) { $restrict=''; }
                   4137:         if ($env{'form.'.$priv.'_c'}) {
1.135     raeburn  4138: 	    $courole.=':'.$item;
1.61      www      4139: 	}
                   4140:     }
                   4141: 
1.135     raeburn  4142:     foreach my $item (split(/\:/,$Apache::lonnet::pr{'cr:d'})) {
                   4143: 	my ($priv,$restrict)=split(/\&/,$item);
1.150     banghart 4144:         if (!$restrict) { $restrict=''; }
                   4145:         if ($env{'form.'.$priv.'_d'}) {
1.135     raeburn  4146: 	    $domrole.=':'.$item;
1.61      www      4147: 	}
                   4148:     }
                   4149: 
1.135     raeburn  4150:     foreach my $item (split(/\:/,$Apache::lonnet::pr{'cr:s'})) {
                   4151: 	my ($priv,$restrict)=split(/\&/,$item);
1.150     banghart 4152:         if (!$restrict) { $restrict=''; }
                   4153:         if ($env{'form.'.$priv.'_s'}) {
1.135     raeburn  4154: 	    $sysrole.=':'.$item;
1.61      www      4155: 	}
                   4156:     }
1.63      www      4157:     $r->print('<br />Defining Role: '.
1.61      www      4158: 	   &Apache::lonnet::definerole($rolename,$sysrole,$domrole,$courole));
1.101     albertel 4159:     if ($env{'request.course.id'}) {
                   4160:         my $url='/'.$env{'request.course.id'};
1.63      www      4161:         $url=~s/\_/\//g;
1.73      sakharuk 4162: 	$r->print('<br />'.&mt('Assigning Role to Self').': '.
1.101     albertel 4163: 	      &Apache::lonnet::assigncustomrole($env{'user.domain'},
                   4164: 						$env{'user.name'},
1.63      www      4165: 						$url,
1.101     albertel 4166: 						$env{'user.domain'},
                   4167: 						$env{'user.name'},
1.240     raeburn  4168: 						$rolename,undef,undef,undef,$context));
1.63      www      4169:     }
1.190     raeburn  4170:     $r->print('<p><a href="javascript:backPage(document.customresult,'."'pickrole'".')">'.&mt('Create or edit another custom role').'</a></p><form name="customresult" method="post">');
1.160     raeburn  4171:     $r->print(&Apache::lonhtmlcommon::echo_form_input([]).'</form>');
1.58      www      4172: }
                   4173: 
1.2       www      4174: # ================================================================ Main Handler
                   4175: sub handler {
                   4176:     my $r = shift;
                   4177:     if ($r->header_only) {
1.68      www      4178:        &Apache::loncommon::content_type($r,'text/html');
1.2       www      4179:        $r->send_http_header;
                   4180:        return OK;
                   4181:     }
1.318     raeburn  4182:     my ($context,$crstype);
1.190     raeburn  4183:     if ($env{'request.course.id'}) {
                   4184:         $context = 'course';
1.318     raeburn  4185:         $crstype = &Apache::loncommon::course_type();
1.190     raeburn  4186:     } elsif ($env{'request.role'} =~ /^au\./) {
1.206     raeburn  4187:         $context = 'author';
1.190     raeburn  4188:     } else {
                   4189:         $context = 'domain';
                   4190:     }
                   4191:     &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},
1.233     raeburn  4192:         ['action','state','callingform','roletype','showrole','bulkaction','popup','phase',
                   4193:          'username','domain','srchterm','srchdomain','srchin','srchby','srchtype']);
1.190     raeburn  4194:     &Apache::lonhtmlcommon::clear_breadcrumbs();
1.351     raeburn  4195:     my $args;
                   4196:     my $brcrum = [];
                   4197:     my $bread_crumbs_component = 'User Management';
1.202     raeburn  4198:     if ($env{'form.action'} ne 'dateselect') {
1.351     raeburn  4199:         $brcrum = [{href=>"/adm/createuser",
                   4200:                     text=>"User Management",
                   4201:                     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'}
                   4202:                   ];
1.202     raeburn  4203:     }
1.289     droeschl 4204:     #SD Following files not added to help, because the corresponding .tex-files seem to
                   4205:     #be missing: Course_Approve_Selfenroll,Course_User_Logs,
1.209     raeburn  4206:     my ($permission,$allowed) = 
1.318     raeburn  4207:         &Apache::lonuserutils::get_permission($context,$crstype);
1.190     raeburn  4208:     if (!$allowed) {
1.358     raeburn  4209:         if ($context eq 'course') {
                   4210:             $r->internal_redirect('/adm/viewclasslist');
                   4211:             return OK;
                   4212:         }
1.190     raeburn  4213:         $env{'user.error.msg'}=
                   4214:             "/adm/createuser:cst:0:0:Cannot create/modify user data ".
                   4215:                                  "or view user status.";
                   4216:         return HTTP_NOT_ACCEPTABLE;
                   4217:     }
                   4218: 
                   4219:     &Apache::loncommon::content_type($r,'text/html');
                   4220:     $r->send_http_header;
                   4221: 
                   4222:     # Main switch on form.action and form.state, as appropriate
                   4223:     if (! exists($env{'form.action'})) {
1.351     raeburn  4224:         $args = {bread_crumbs => $brcrum,
                   4225:                  bread_crumbs_component => $bread_crumbs_component}; 
                   4226:         $r->print(&header(undef,$args));
1.318     raeburn  4227:         $r->print(&print_main_menu($permission,$context,$crstype));
1.190     raeburn  4228:     } elsif ($env{'form.action'} eq 'upload' && $permission->{'cusr'}) {
1.351     raeburn  4229:         push(@{$brcrum},
                   4230:               { href => '/adm/createuser?action=upload&state=',
                   4231:                 text => 'Upload Users List',
                   4232:                 help => 'Course_Create_Class_List',
                   4233:               });
                   4234:         $bread_crumbs_component = 'Upload Users List';
                   4235:         $args = {bread_crumbs           => $brcrum,
                   4236:                  bread_crumbs_component => $bread_crumbs_component};
                   4237:         $r->print(&header(undef,$args));
1.190     raeburn  4238:         $r->print('<form name="studentform" method="post" '.
                   4239:                   'enctype="multipart/form-data" '.
                   4240:                   ' action="/adm/createuser">'."\n");
                   4241:         if (! exists($env{'form.state'})) {
                   4242:             &Apache::lonuserutils::print_first_users_upload_form($r,$context);
                   4243:         } elsif ($env{'form.state'} eq 'got_file') {
1.221     raeburn  4244:             &Apache::lonuserutils::print_upload_manager_form($r,$context,
1.318     raeburn  4245:                                                              $permission,$crstype);
1.190     raeburn  4246:         } elsif ($env{'form.state'} eq 'enrolling') {
                   4247:             if ($env{'form.datatoken'}) {
1.221     raeburn  4248:                 &Apache::lonuserutils::upfile_drop_add($r,$context,$permission);
1.190     raeburn  4249:             }
                   4250:         } else {
                   4251:             &Apache::lonuserutils::print_first_users_upload_form($r,$context);
                   4252:         }
1.213     raeburn  4253:     } elsif ((($env{'form.action'} eq 'singleuser') || ($env{'form.action'}
                   4254:              eq 'singlestudent')) && ($permission->{'cusr'})) {
1.190     raeburn  4255:         my $phase = $env{'form.phase'};
                   4256:         my @search = ('srchterm','srchby','srchin','srchtype','srchdomain');
1.192     albertel 4257: 	&Apache::loncreateuser::restore_prev_selections();
                   4258: 	my $srch;
                   4259: 	foreach my $item (@search) {
                   4260: 	    $srch->{$item} = $env{'form.'.$item};
                   4261: 	}
1.207     raeburn  4262:         if (($phase eq 'get_user_info') || ($phase eq 'userpicked') ||
                   4263:             ($phase eq 'createnewuser')) {
                   4264:             if ($env{'form.phase'} eq 'createnewuser') {
                   4265:                 my $response;
                   4266:                 if ($env{'form.srchterm'} !~ /^$match_username$/) {
1.366     bisitz   4267:                     my $response =
                   4268:                         '<span class="LC_warning">'
                   4269:                        .&mt('You must specify a valid username. Only the following are allowed:'
                   4270:                            .' letters numbers - . @')
                   4271:                        .'</span>';
1.221     raeburn  4272:                     $env{'form.phase'} = '';
1.351     raeburn  4273:                     &print_username_entry_form($r,$context,$response,$srch,undef,$crstype,$brcrum);
1.207     raeburn  4274:                 } else {
                   4275:                     my $ccuname =&LONCAPA::clean_username($srch->{'srchterm'});
                   4276:                     my $ccdomain=&LONCAPA::clean_domain($srch->{'srchdomain'});
                   4277:                     &print_user_modification_page($r,$ccuname,$ccdomain,
1.221     raeburn  4278:                                                   $srch,$response,$context,
1.351     raeburn  4279:                                                   $permission,$crstype,$brcrum);
1.207     raeburn  4280:                 }
                   4281:             } elsif ($env{'form.phase'} eq 'get_user_info') {
1.190     raeburn  4282:                 my ($currstate,$response,$forcenewuser,$results) = 
1.221     raeburn  4283:                     &user_search_result($context,$srch);
1.190     raeburn  4284:                 if ($env{'form.currstate'} eq 'modify') {
                   4285:                     $currstate = $env{'form.currstate'};
                   4286:                 }
                   4287:                 if ($currstate eq 'select') {
                   4288:                     &print_user_selection_page($r,$response,$srch,$results,
1.351     raeburn  4289:                                                \@search,$context,undef,$crstype,
                   4290:                                                $brcrum);
1.190     raeburn  4291:                 } elsif ($currstate eq 'modify') {
                   4292:                     my ($ccuname,$ccdomain);
                   4293:                     if (($srch->{'srchby'} eq 'uname') && 
                   4294:                         ($srch->{'srchtype'} eq 'exact')) {
                   4295:                         $ccuname = $srch->{'srchterm'};
                   4296:                         $ccdomain= $srch->{'srchdomain'};
                   4297:                     } else {
                   4298:                         my @matchedunames = keys(%{$results});
                   4299:                         ($ccuname,$ccdomain) = split(/:/,$matchedunames[0]);
                   4300:                     }
                   4301:                     $ccuname =&LONCAPA::clean_username($ccuname);
                   4302:                     $ccdomain=&LONCAPA::clean_domain($ccdomain);
                   4303:                     if ($env{'form.forcenewuser'}) {
                   4304:                         $response = '';
                   4305:                     }
                   4306:                     &print_user_modification_page($r,$ccuname,$ccdomain,
1.221     raeburn  4307:                                                   $srch,$response,$context,
1.351     raeburn  4308:                                                   $permission,$crstype,$brcrum);
1.190     raeburn  4309:                 } elsif ($currstate eq 'query') {
1.351     raeburn  4310:                     &print_user_query_page($r,'createuser',$brcrum);
1.190     raeburn  4311:                 } else {
1.229     raeburn  4312:                     $env{'form.phase'} = '';
1.207     raeburn  4313:                     &print_username_entry_form($r,$context,$response,$srch,
1.351     raeburn  4314:                                                $forcenewuser,$crstype,$brcrum);
1.190     raeburn  4315:                 }
                   4316:             } elsif ($env{'form.phase'} eq 'userpicked') {
                   4317:                 my $ccuname = &LONCAPA::clean_username($env{'form.seluname'});
                   4318:                 my $ccdomain = &LONCAPA::clean_domain($env{'form.seludom'});
1.196     raeburn  4319:                 &print_user_modification_page($r,$ccuname,$ccdomain,$srch,'',
1.351     raeburn  4320:                                               $context,$permission,$crstype,
                   4321:                                               $brcrum);
1.190     raeburn  4322:             }
                   4323:         } elsif ($env{'form.phase'} eq 'update_user_data') {
1.351     raeburn  4324:             &update_user_data($r,$context,$crstype,$brcrum);
1.190     raeburn  4325:         } else {
1.351     raeburn  4326:             &print_username_entry_form($r,$context,undef,$srch,undef,$crstype,
                   4327:                                        $brcrum);
1.190     raeburn  4328:         }
                   4329:     } elsif ($env{'form.action'} eq 'custom' && $permission->{'custom'}) {
                   4330:         if ($env{'form.phase'} eq 'set_custom_roles') {
1.351     raeburn  4331:             &set_custom_role($r,$context,$brcrum);
1.190     raeburn  4332:         } else {
1.351     raeburn  4333:             &custom_role_editor($r,$brcrum);
1.190     raeburn  4334:         }
1.362     raeburn  4335:     } elsif (($env{'form.action'} eq 'processauthorreq') &&
                   4336:              ($permission->{'cusr'}) && 
                   4337:              (&Apache::lonnet::allowed('cau',$env{'request.role.domain'}))) {
                   4338:         push(@{$brcrum},
                   4339:                  {href => '/adm/createuser?action=processauthorreq',
                   4340:                   text => 'Authoring space requests',
                   4341:                   help => 'Domain_Role_Approvals'});
                   4342:         $bread_crumbs_component = 'Authoring requests';
                   4343:         if ($env{'form.state'} eq 'done') {
                   4344:             push(@{$brcrum},
                   4345:                      {href => '/adm/createuser?action=authorreqqueue',
                   4346:                       text => 'Result',
                   4347:                       help => 'Domain_Role_Approvals'});
                   4348:             $bread_crumbs_component = 'Authoring request result';
                   4349:         }
                   4350:         $args = { bread_crumbs           => $brcrum,
                   4351:                   bread_crumbs_component => $bread_crumbs_component};
                   4352:         $r->print(&header(undef,$args));
                   4353:         if (!exists($env{'form.state'})) {
                   4354:             $r->print(&Apache::loncoursequeueadmin::display_queued_requests('requestauthor',
                   4355:                                                                             $env{'request.role.domain'}));
                   4356:         } elsif ($env{'form.state'} eq 'done') {
                   4357:             $r->print('<h3>'.&mt('Authoring request processing').'</h3>'."\n");
                   4358:             $r->print(&Apache::loncoursequeueadmin::update_request_queue('requestauthor',
                   4359:                                                                          $env{'request.role.domain'}));
                   4360:         }
1.207     raeburn  4361:     } elsif (($env{'form.action'} eq 'listusers') && 
                   4362:              ($permission->{'view'} || $permission->{'cusr'})) {
1.202     raeburn  4363:         if ($env{'form.phase'} eq 'bulkchange') {
1.351     raeburn  4364:             push(@{$brcrum},
                   4365:                     {href => '/adm/createuser?action=listusers',
                   4366:                      text => "List Users"},
                   4367:                     {href => "/adm/createuser",
                   4368:                      text => "Result",
                   4369:                      help => 'Course_View_Class_List'});
                   4370:             $bread_crumbs_component = 'Update Users';
                   4371:             $args = {bread_crumbs           => $brcrum,
                   4372:                      bread_crumbs_component => $bread_crumbs_component};
                   4373:             $r->print(&header(undef,$args));
1.202     raeburn  4374:             my $setting = $env{'form.roletype'};
                   4375:             my $choice = $env{'form.bulkaction'};
                   4376:             if ($permission->{'cusr'}) {
1.336     raeburn  4377:                 &Apache::lonuserutils::update_user_list($r,$context,$setting,$choice,$crstype);
1.221     raeburn  4378:             } else {
                   4379:                 $r->print(&mt('You are not authorized to make bulk changes to user roles'));
1.223     raeburn  4380:                 $r->print('<p><a href="/adm/createuser?action=listusers">'.&mt('Display User Lists').'</a>');
1.202     raeburn  4381:             }
                   4382:         } else {
1.351     raeburn  4383:             push(@{$brcrum},
                   4384:                     {href => '/adm/createuser?action=listusers',
                   4385:                      text => "List Users",
                   4386:                      help => 'Course_View_Class_List'});
                   4387:             $bread_crumbs_component = 'List Users';
                   4388:             $args = {bread_crumbs           => $brcrum,
                   4389:                      bread_crumbs_component => $bread_crumbs_component};
1.202     raeburn  4390:             my ($cb_jscript,$jscript,$totcodes,$codetitles,$idlist,$idlist_titles);
                   4391:             my $formname = 'studentform';
1.364     raeburn  4392:             my $hidecall = "hide_searching();";
1.321     raeburn  4393:             if (($context eq 'domain') && (($env{'form.roletype'} eq 'course') ||
                   4394:                 ($env{'form.roletype'} eq 'community'))) {
                   4395:                 if ($env{'form.roletype'} eq 'course') {
                   4396:                     ($cb_jscript,$jscript,$totcodes,$codetitles,$idlist,$idlist_titles) = 
                   4397:                         &Apache::lonuserutils::courses_selector($env{'request.role.domain'},
                   4398:                                                                 $formname);
                   4399:                 } elsif ($env{'form.roletype'} eq 'community') {
                   4400:                     $cb_jscript = 
                   4401:                         &Apache::loncommon::coursebrowser_javascript($env{'request.role.domain'});
                   4402:                     my %elements = (
                   4403:                                       coursepick => 'radio',
                   4404:                                       coursetotal => 'text',
                   4405:                                       courselist => 'text',
                   4406:                                    );
                   4407:                     $jscript = &Apache::lonhtmlcommon::set_form_elements(\%elements);
                   4408:                 }
1.364     raeburn  4409:                 $jscript .= &verify_user_display($context)."\n".
                   4410:                             &Apache::loncommon::check_uncheck_jscript();
1.202     raeburn  4411:                 my $js = &add_script($jscript).$cb_jscript;
                   4412:                 my $loadcode = 
                   4413:                     &Apache::lonuserutils::course_selector_loadcode($formname);
                   4414:                 if ($loadcode ne '') {
1.364     raeburn  4415:                     $args->{add_entries} = {onload => "$loadcode;$hidecall"};
                   4416:                 } else {
                   4417:                     $args->{add_entries} = {onload => $hidecall};
1.202     raeburn  4418:                 }
1.351     raeburn  4419:                 $r->print(&header($js,$args));
1.191     raeburn  4420:             } else {
1.364     raeburn  4421:                 $args->{add_entries} = {onload => $hidecall};
                   4422:                 $jscript = &verify_user_display($context).
                   4423:                            &Apache::loncommon::check_uncheck_jscript(); 
                   4424:                 $r->print(&header(&add_script($jscript),$args));
1.191     raeburn  4425:             }
1.202     raeburn  4426:             &Apache::lonuserutils::print_userlist($r,undef,$permission,$context,
                   4427:                          $formname,$totcodes,$codetitles,$idlist,$idlist_titles);
1.191     raeburn  4428:         }
1.213     raeburn  4429:     } elsif ($env{'form.action'} eq 'drop' && $permission->{'cusr'}) {
1.318     raeburn  4430:         my $brtext;
                   4431:         if ($crstype eq 'Community') {
                   4432:             $brtext = 'Drop Members';
                   4433:         } else {
                   4434:             $brtext = 'Drop Students';
                   4435:         }
1.351     raeburn  4436:         push(@{$brcrum},
                   4437:                 {href => '/adm/createuser?action=drop',
                   4438:                  text => $brtext,
                   4439:                  help => 'Course_Drop_Student'});
                   4440:         if ($env{'form.state'} eq 'done') {
                   4441:             push(@{$brcrum},
                   4442:                      {href=>'/adm/createuser?action=drop',
                   4443:                       text=>"Result"});
                   4444:         }
                   4445:         $bread_crumbs_component = $brtext;
                   4446:         $args = {bread_crumbs           => $brcrum,
                   4447:                  bread_crumbs_component => $bread_crumbs_component}; 
                   4448:         $r->print(&header(undef,$args));
1.213     raeburn  4449:         if (!exists($env{'form.state'})) {
1.318     raeburn  4450:             &Apache::lonuserutils::print_drop_menu($r,$context,$permission,$crstype);
1.213     raeburn  4451:         } elsif ($env{'form.state'} eq 'done') {
                   4452:             &Apache::lonuserutils::update_user_list($r,$context,undef,
                   4453:                                                     $env{'form.action'});
                   4454:         }
1.202     raeburn  4455:     } elsif ($env{'form.action'} eq 'dateselect') {
                   4456:         if ($permission->{'cusr'}) {
1.351     raeburn  4457:             $r->print(&header(undef,{'no_nav_bar' => 1}).
1.221     raeburn  4458:                       &Apache::lonuserutils::date_section_selector($context,
1.351     raeburn  4459:                                                                    $permission,$crstype));
1.202     raeburn  4460:         } else {
1.351     raeburn  4461:             $r->print(&header(undef,{'no_nav_bar' => 1}).
                   4462:                      '<span class="LC_error">'.&mt('You do not have permission to modify dates or sections for users').'</span>'); 
1.202     raeburn  4463:         }
1.237     raeburn  4464:     } elsif ($env{'form.action'} eq 'selfenroll') {
1.351     raeburn  4465:         push(@{$brcrum},
                   4466:                 {href => '/adm/createuser?action=selfenroll',
                   4467:                  text => "Configure Self-enrollment",
                   4468:                  help => 'Course_Self_Enrollment'});
1.237     raeburn  4469:         if (!exists($env{'form.state'})) {
1.351     raeburn  4470:             $args = { bread_crumbs           => $brcrum,
                   4471:                       bread_crumbs_component => 'Configure Self-enrollment'};
                   4472:             $r->print(&header(undef,$args));
1.241     raeburn  4473:             $r->print('<h3>'.&mt('Self-enrollment with a student role').'</h3>'."\n");
1.237     raeburn  4474:             &print_selfenroll_menu($r,$context,$permission);
                   4475:         } elsif ($env{'form.state'} eq 'done') {
1.351     raeburn  4476:             push (@{$brcrum},
                   4477:                       {href=>'/adm/createuser?action=selfenroll',
                   4478:                        text=>"Result"});
                   4479:             $args = { bread_crumbs           => $brcrum,
                   4480:                       bread_crumbs_component => 'Self-enrollment result'};
                   4481:             $r->print(&header(undef,$args));
1.241     raeburn  4482:             $r->print('<h3>'.&mt('Self-enrollment with a student role').'</h3>'."\n");
                   4483:             &update_selfenroll_config($r,$context,$permission);
1.237     raeburn  4484:         }
1.277     raeburn  4485:     } elsif ($env{'form.action'} eq 'selfenrollqueue') {
1.351     raeburn  4486:         push(@{$brcrum},
                   4487:                  {href => '/adm/createuser?action=selfenrollqueue',
                   4488:                   text => 'Enrollment requests',
                   4489:                   help => 'Course_Self_Enrollment'});
                   4490:         $bread_crumbs_component = 'Enrollment requests';
                   4491:         if ($env{'form.state'} eq 'done') {
                   4492:             push(@{$brcrum},
                   4493:                      {href => '/adm/createuser?action=selfenrollqueue',
                   4494:                       text => 'Result',
                   4495:                       help => 'Course_Self_Enrollment'});
                   4496:             $bread_crumbs_component = 'Enrollment result';
                   4497:         }
                   4498:         $args = { bread_crumbs           => $brcrum,
                   4499:                   bread_crumbs_component => $bread_crumbs_component};
                   4500:         $r->print(&header(undef,$args));
1.277     raeburn  4501:         my $cid = $env{'request.course.id'};
                   4502:         my $cdom = $env{'course.'.$cid.'.domain'};
                   4503:         my $cnum = $env{'course.'.$cid.'.num'};
1.307     raeburn  4504:         my $coursedesc = $env{'course.'.$cid.'.description'};
1.277     raeburn  4505:         if (!exists($env{'form.state'})) {
                   4506:             $r->print('<h3>'.&mt('Pending enrollment requests').'</h3>'."\n");
1.307     raeburn  4507:             $r->print(&Apache::loncoursequeueadmin::display_queued_requests($context,
                   4508:                                                                        $cdom,$cnum));
1.277     raeburn  4509:         } elsif ($env{'form.state'} eq 'done') {
                   4510:             $r->print('<h3>'.&mt('Enrollment request processing').'</h3>'."\n");
1.307     raeburn  4511:             $r->print(&Apache::loncoursequeueadmin::update_request_queue($context,
                   4512:                           $cdom,$cnum,$coursedesc));
1.277     raeburn  4513:         }
1.239     raeburn  4514:     } elsif ($env{'form.action'} eq 'changelogs') {
1.363     raeburn  4515:         my $helpitem;
                   4516:         if ($context eq 'course') {
                   4517:             $helpitem = 'Course_User_Logs';
                   4518:         }
1.351     raeburn  4519:         push (@{$brcrum},
                   4520:                  {href => '/adm/createuser?action=changelogs',
                   4521:                   text => 'User Management Logs',
1.363     raeburn  4522:                   help => $helpitem});
1.351     raeburn  4523:         $bread_crumbs_component = 'User Changes';
                   4524:         $args = { bread_crumbs           => $brcrum,
                   4525:                   bread_crumbs_component => $bread_crumbs_component};
                   4526:         $r->print(&header(undef,$args));
                   4527:         &print_userchangelogs_display($r,$context,$permission);
1.190     raeburn  4528:     } else {
1.351     raeburn  4529:         $bread_crumbs_component = 'User Management';
                   4530:         $args = { bread_crumbs           => $brcrum,
                   4531:                   bread_crumbs_component => $bread_crumbs_component};
                   4532:         $r->print(&header(undef,$args));
1.318     raeburn  4533:         $r->print(&print_main_menu($permission,$context,$crstype));
1.190     raeburn  4534:     }
1.351     raeburn  4535:     $r->print(&Apache::loncommon::end_page());
1.190     raeburn  4536:     return OK;
                   4537: }
                   4538: 
                   4539: sub header {
1.351     raeburn  4540:     my ($jscript,$args) = @_;
1.190     raeburn  4541:     my $start_page;
1.351     raeburn  4542:     if (ref($args) eq 'HASH') {
                   4543:         $start_page=&Apache::loncommon::start_page('User Management',$jscript,$args);
1.190     raeburn  4544:     } else {
1.351     raeburn  4545:         $start_page=&Apache::loncommon::start_page('User Management',$jscript);
1.190     raeburn  4546:     }
                   4547:     return $start_page;
                   4548: }
1.2       www      4549: 
1.191     raeburn  4550: sub add_script {
                   4551:     my ($js) = @_;
1.301     bisitz   4552:     return '<script type="text/javascript">'."\n"
                   4553:           .'// <![CDATA['."\n"
                   4554:           .$js."\n"
                   4555:           .'// ]]>'."\n"
                   4556:           .'</script>'."\n";
1.191     raeburn  4557: }
                   4558: 
1.202     raeburn  4559: sub verify_user_display {
1.364     raeburn  4560:     my ($context) = @_;
                   4561:     my $photos;
                   4562:     if (($context eq 'course') && $env{'request.course.id'}) {
                   4563:         $photos = $env{'course.'.$env{'request.course.id'}.'.internal.showphoto'};
                   4564:     }
1.202     raeburn  4565:     my $output = <<"END";
                   4566: 
1.364     raeburn  4567: function hide_searching() {
                   4568:     if (document.getElementById('searching')) {
                   4569:         document.getElementById('searching').style.display = 'none';
                   4570:     }
                   4571:     return;
                   4572: }
                   4573: 
1.202     raeburn  4574: function display_update() {
                   4575:     document.studentform.action.value = 'listusers';
                   4576:     document.studentform.phase.value = 'display';
                   4577:     document.studentform.submit();
                   4578: }
                   4579: 
1.364     raeburn  4580: function updateCols(caller) {
                   4581:     var context = '$context';
                   4582:     var photos = '$photos';
                   4583:     if (caller == 'Status') {
                   4584:         if (document.studentform.Status.options[document.studentform.Status.selectedIndex].value == 'Any') {
                   4585:             document.getElementById('showcolstatus').checked = true;
                   4586:             document.getElementById('showcolstatus').disabled = '';
                   4587:             document.getElementById('showcolstart').checked = true;
                   4588:             document.getElementById('showcolend').checked = true;
                   4589:         } else {
                   4590:             document.getElementById('showcolstatus').checked = false;
                   4591:             document.getElementById('showcolstatus').disabled = 'disabled';
                   4592:             document.getElementById('showcolstart').checked = false;
                   4593:             document.getElementById('showcolend').checked = false;
                   4594:         }
                   4595:     }
                   4596:     if (caller == 'output') {
                   4597:         if (photos == 1) {
                   4598:             if (document.getElementById('showcolphoto')) {
                   4599:                 var photoitem = document.getElementById('showcolphoto');
                   4600:                 if (document.studentform.output.options[document.studentform.output.selectedIndex].value == 'html') {
                   4601:                     photoitem.checked = true;
                   4602:                     photoitem.disabled = '';
                   4603:                 } else {
                   4604:                     photoitem.checked = false;
                   4605:                     photoitem.disabled = 'disabled';
                   4606:                 }
                   4607:             }
                   4608:         }
                   4609:     }
                   4610:     if (caller == 'showrole') {
1.371     raeburn  4611:         if ((document.studentform.showrole.options[document.studentform.showrole.selectedIndex].value == 'Any') ||
                   4612:             (document.studentform.showrole.options[document.studentform.showrole.selectedIndex].value == 'cr')) {
1.364     raeburn  4613:             document.getElementById('showcolrole').checked = true;
                   4614:             document.getElementById('showcolrole').disabled = '';
                   4615:         } else {
                   4616:             document.getElementById('showcolrole').checked = false;
                   4617:             document.getElementById('showcolrole').disabled = 'disabled';
                   4618:         }
                   4619:     }
                   4620:     return;
                   4621: }
                   4622: 
1.202     raeburn  4623: END
                   4624:     return $output;
                   4625: 
                   4626: }
                   4627: 
1.190     raeburn  4628: ###############################################################
                   4629: ###############################################################
                   4630: #  Menu Phase One
                   4631: sub print_main_menu {
1.318     raeburn  4632:     my ($permission,$context,$crstype) = @_;
                   4633:     my $linkcontext = $context;
                   4634:     my $stuterm = lc(&Apache::lonnet::plaintext('st',$crstype));
                   4635:     if (($context eq 'course') && ($crstype eq 'Community')) {
                   4636:         $linkcontext = lc($crstype);
                   4637:         $stuterm = 'Members';
                   4638:     }
1.208     raeburn  4639:     my %links = (
1.298     droeschl 4640:                 domain => {
                   4641:                             upload     => 'Upload a File of Users',
                   4642:                             singleuser => 'Add/Modify a User',
                   4643:                             listusers  => 'Manage Users',
                   4644:                             },
                   4645:                 author => {
                   4646:                             upload     => 'Upload a File of Co-authors',
                   4647:                             singleuser => 'Add/Modify a Co-author',
                   4648:                             listusers  => 'Manage Co-authors',
                   4649:                             },
                   4650:                 course => {
                   4651:                             upload     => 'Upload a File of Course Users',
                   4652:                             singleuser => 'Add/Modify a Course User',
1.354     www      4653:                             listusers  => 'List and Modify Multiple Course Users',
1.298     droeschl 4654:                             },
1.318     raeburn  4655:                 community => {
                   4656:                             upload     => 'Upload a File of Community Users',
                   4657:                             singleuser => 'Add/Modify a Community User',
1.354     www      4658:                             listusers  => 'List and Modify Multiple Community Users',
1.318     raeburn  4659:                            },
                   4660:                 );
                   4661:      my %linktitles = (
                   4662:                 domain => {
                   4663:                             singleuser => 'Add a user to the domain, and/or a course or community in the domain.',
                   4664:                             listusers  => 'Show and manage users in this domain.',
                   4665:                             },
                   4666:                 author => {
                   4667:                             singleuser => 'Add a user with a co- or assistant author role.',
                   4668:                             listusers  => 'Show and manage co- or assistant authors.',
                   4669:                             },
                   4670:                 course => {
                   4671:                             singleuser => 'Add a user with a certain role to this course.',
                   4672:                             listusers  => 'Show and manage users in this course.',
                   4673:                             },
                   4674:                 community => {
                   4675:                             singleuser => 'Add a user with a certain role to this community.',
                   4676:                             listusers  => 'Show and manage users in this community.',
                   4677:                            },
1.298     droeschl 4678:                 );
                   4679:   my @menu = ( {categorytitle => 'Single Users', 
                   4680:          items =>
                   4681:          [
                   4682:             {
1.318     raeburn  4683:              linktext => $links{$linkcontext}{'singleuser'},
1.298     droeschl 4684:              icon => 'edit-redo.png',
                   4685:              #help => 'Course_Change_Privileges',
                   4686:              url => '/adm/createuser?action=singleuser',
                   4687:              permission => $permission->{'cusr'},
1.318     raeburn  4688:              linktitle => $linktitles{$linkcontext}{'singleuser'},
1.298     droeschl 4689:             },
                   4690:          ]},
                   4691: 
                   4692:          {categorytitle => 'Multiple Users',
                   4693:          items => 
                   4694:          [
                   4695:             {
1.318     raeburn  4696:              linktext => $links{$linkcontext}{'upload'},
1.340     wenzelju 4697:              icon => 'uplusr.png',
1.298     droeschl 4698:              #help => 'Course_Create_Class_List',
                   4699:              url => '/adm/createuser?action=upload',
                   4700:              permission => $permission->{'cusr'},
                   4701:              linktitle => 'Upload a CSV or a text file containing users.',
                   4702:             },
                   4703:             {
1.318     raeburn  4704:              linktext => $links{$linkcontext}{'listusers'},
1.340     wenzelju 4705:              icon => 'mngcu.png',
1.298     droeschl 4706:              #help => 'Course_View_Class_List',
                   4707:              url => '/adm/createuser?action=listusers',
                   4708:              permission => ($permission->{'view'} || $permission->{'cusr'}),
1.318     raeburn  4709:              linktitle => $linktitles{$linkcontext}{'listusers'}, 
1.298     droeschl 4710:             },
                   4711: 
                   4712:          ]},
                   4713: 
                   4714:          {categorytitle => 'Administration',
                   4715:          items => [ ]},
                   4716:        );
                   4717:             
1.265     mielkec  4718:     if ($context eq 'domain'){
1.298     droeschl 4719:         
                   4720:         push(@{ $menu[2]->{items} }, #Category: Administration
                   4721:             {
                   4722:              linktext => 'Custom Roles',
                   4723:              icon => 'emblem-photos.png',
                   4724:              #help => 'Course_Editing_Custom_Roles',
                   4725:              url => '/adm/createuser?action=custom',
                   4726:              permission => $permission->{'custom'},
                   4727:              linktitle => 'Configure a custom role.',
                   4728:             },
1.362     raeburn  4729:             {
                   4730:              linktext => 'Authoring Space Requests',
                   4731:              icon => 'selfenrl-queue.png',
                   4732:              #help => 'Domain_Role_Approvals',
                   4733:              url => '/adm/createuser?action=processauthorreq',
                   4734:              permission => $permission->{'cusr'},
                   4735:              linktitle => 'Approve or reject author role requests',
                   4736:             },
1.363     raeburn  4737:             {
                   4738:              linktext => 'Change Log',
                   4739:              icon => 'document-properties.png',
                   4740:              #help => 'Course_User_Logs',
                   4741:              url => '/adm/createuser?action=changelogs',
                   4742:              permission => $permission->{'cusr'},
                   4743:              linktitle => 'View change log.',
                   4744:             },
1.298     droeschl 4745:         );
                   4746:         
1.265     mielkec  4747:     }elsif ($context eq 'course'){
1.298     droeschl 4748:         my ($cnum,$cdom) = &Apache::lonuserutils::get_course_identity();
1.318     raeburn  4749: 
                   4750:         my %linktext = (
                   4751:                          'Course'    => {
                   4752:                                           single => 'Add/Modify a Student', 
                   4753:                                           drop   => 'Drop Students',
                   4754:                                           groups => 'Course Groups',
                   4755:                                         },
                   4756:                          'Community' => {
                   4757:                                           single => 'Add/Modify a Member', 
                   4758:                                           drop   => 'Drop Members',
                   4759:                                           groups => 'Community Groups',
                   4760:                                         },
                   4761:                        );
                   4762: 
                   4763:         my %linktitle = (
                   4764:             'Course' => {
                   4765:                   single => 'Add a user with the role of student to this course',
                   4766:                   drop   => 'Remove a student from this course.',
                   4767:                   groups => 'Manage course groups',
                   4768:                         },
                   4769:             'Community' => {
                   4770:                   single => 'Add a user with the role of member to this community',
                   4771:                   drop   => 'Remove a member from this community.',
                   4772:                   groups => 'Manage community groups',
                   4773:                            },
                   4774:         );
                   4775: 
1.298     droeschl 4776:         push(@{ $menu[0]->{items} }, #Category: Single Users
                   4777:             {   
1.318     raeburn  4778:              linktext => $linktext{$crstype}{'single'},
1.298     droeschl 4779:              #help => 'Course_Add_Student',
                   4780:              icon => 'list-add.png',
                   4781:              url => '/adm/createuser?action=singlestudent',
                   4782:              permission => $permission->{'cusr'},
1.318     raeburn  4783:              linktitle => $linktitle{$crstype}{'single'},
1.298     droeschl 4784:             },
                   4785:         );
                   4786:         
                   4787:         push(@{ $menu[1]->{items} }, #Category: Multiple Users 
                   4788:             {
1.318     raeburn  4789:              linktext => $linktext{$crstype}{'drop'},
1.298     droeschl 4790:              icon => 'edit-undo.png',
                   4791:              #help => 'Course_Drop_Student',
                   4792:              url => '/adm/createuser?action=drop',
                   4793:              permission => $permission->{'cusr'},
1.318     raeburn  4794:              linktitle => $linktitle{$crstype}{'drop'},
1.298     droeschl 4795:             },
                   4796:         );
                   4797:         push(@{ $menu[2]->{items} }, #Category: Administration
                   4798:             {    
                   4799:              linktext => 'Custom Roles',
                   4800:              icon => 'emblem-photos.png',
                   4801:              #help => 'Course_Editing_Custom_Roles',
                   4802:              url => '/adm/createuser?action=custom',
                   4803:              permission => $permission->{'custom'},
                   4804:              linktitle => 'Configure a custom role.',
                   4805:             },
                   4806:             {
1.318     raeburn  4807:              linktext => $linktext{$crstype}{'groups'},
1.333     wenzelju 4808:              icon => 'grps.png',
1.298     droeschl 4809:              #help => 'Course_Manage_Group',
                   4810:              url => '/adm/coursegroups?refpage=cusr',
                   4811:              permission => $permission->{'grp_manage'},
1.318     raeburn  4812:              linktitle => $linktitle{$crstype}{'groups'},
1.298     droeschl 4813:             },
                   4814:             {
1.328     wenzelju 4815:              linktext => 'Change Log',
1.298     droeschl 4816:              icon => 'document-properties.png',
                   4817:              #help => 'Course_User_Logs',
                   4818:              url => '/adm/createuser?action=changelogs',
                   4819:              permission => $permission->{'cusr'},
                   4820:              linktitle => 'View change log.',
                   4821:             },
                   4822:         );
1.277     raeburn  4823:         if ($env{'course.'.$env{'request.course.id'}.'.internal.selfenroll_approval'}) {
1.298     droeschl 4824:             push(@{ $menu[2]->{items} },
                   4825:                     {   
                   4826:                      linktext => 'Enrollment Requests',
                   4827:                      icon => 'selfenrl-queue.png',
                   4828:                      #help => 'Course_Approve_Selfenroll',
                   4829:                      url => '/adm/createuser?action=selfenrollqueue',
                   4830:                      permission => $permission->{'cusr'},
                   4831:                      linktitle =>'Approve or reject enrollment requests.',
                   4832:                     },
                   4833:             );
1.277     raeburn  4834:         }
1.298     droeschl 4835:         
1.265     mielkec  4836:         if (!exists($permission->{'cusr_section'})){
1.320     raeburn  4837:             if ($crstype ne 'Community') {
                   4838:                 push(@{ $menu[2]->{items} },
                   4839:                     {
                   4840:                      linktext => 'Automated Enrollment',
                   4841:                      icon => 'roles.png',
                   4842:                      #help => 'Course_Automated_Enrollment',
                   4843:                      permission => (&Apache::lonnet::auto_run($cnum,$cdom)
                   4844:                                          && $permission->{'cusr'}),
                   4845:                      url  => '/adm/populate',
                   4846:                      linktitle => 'Automated enrollment manager.',
                   4847:                     }
                   4848:                 );
                   4849:             }
                   4850:             push(@{ $menu[2]->{items} }, 
1.298     droeschl 4851:                 {
                   4852:                  linktext => 'User Self-Enrollment',
1.342     wenzelju 4853:                  icon => 'self_enroll.png',
1.298     droeschl 4854:                  #help => 'Course_Self_Enrollment',
                   4855:                  url => '/adm/createuser?action=selfenroll',
                   4856:                  permission => $permission->{'cusr'},
1.317     bisitz   4857:                  linktitle => 'Configure user self-enrollment.',
1.298     droeschl 4858:                 },
                   4859:             );
                   4860:         }
1.363     raeburn  4861:     } elsif ($context eq 'author') {
1.370     raeburn  4862:         push(@{ $menu[2]->{items} }, #Category: Administration
1.363     raeburn  4863:             {
                   4864:              linktext => 'Change Log',
                   4865:              icon => 'document-properties.png',
                   4866:              #help => 'Course_User_Logs',
                   4867:              url => '/adm/createuser?action=changelogs',
                   4868:              permission => $permission->{'cusr'},
                   4869:              linktitle => 'View change log.',
                   4870:             },
1.370     raeburn  4871:         );
1.363     raeburn  4872:     }
                   4873:     return Apache::lonhtmlcommon::generate_menu(@menu);
1.250     raeburn  4874: #               { text => 'View Log-in History',
                   4875: #                 help => 'Course_User_Logins',
                   4876: #                 action => 'logins',
                   4877: #                 permission => $permission->{'cusr'},
                   4878: #               });
1.190     raeburn  4879: }
                   4880: 
1.189     albertel 4881: sub restore_prev_selections {
                   4882:     my %saveable_parameters = ('srchby'   => 'scalar',
                   4883: 			       'srchin'   => 'scalar',
                   4884: 			       'srchtype' => 'scalar',
                   4885: 			       );
                   4886:     &Apache::loncommon::store_settings('user','user_picker',
                   4887: 				       \%saveable_parameters);
                   4888:     &Apache::loncommon::restore_settings('user','user_picker',
                   4889: 					 \%saveable_parameters);
                   4890: }
                   4891: 
1.237     raeburn  4892: sub print_selfenroll_menu {
                   4893:     my ($r,$context,$permission) = @_;
1.322     raeburn  4894:     my $crstype = &Apache::loncommon::course_type();
1.237     raeburn  4895:     my $formname = 'enrollstudent';
                   4896:     my $nolink = 1;
                   4897:     my ($row,$lt) = &get_selfenroll_titles();
                   4898:     my $groupslist = &Apache::lonuserutils::get_groupslist();
                   4899:     my $setsec_js = 
                   4900:         &Apache::lonuserutils::setsections_javascript($formname,$groupslist);
1.249     raeburn  4901:     my %alerts = &Apache::lonlocal::texthash(
                   4902:         acto => 'Activation of self-enrollment was selected for the following domain(s)',
                   4903:         butn => 'but no user types have been checked.',
                   4904:         wilf => "Please uncheck 'activate' or check at least one type.",
                   4905:     );
                   4906:     my $selfenroll_js = <<"ENDSCRIPT";
                   4907: function update_types(caller,num) {
                   4908:     var delidx = getIndexByName('selfenroll_delete');
                   4909:     var actidx = getIndexByName('selfenroll_activate');
                   4910:     if (caller == 'selfenroll_all') {
                   4911:         var selall;
                   4912:         for (var i=0; i<document.$formname.selfenroll_all.length; i++) {
                   4913:             if (document.$formname.selfenroll_all[i].checked) {
                   4914:                 selall = document.$formname.selfenroll_all[i].value;
                   4915:             }
                   4916:         }
                   4917:         if (selall == 1) {
                   4918:             if (delidx != -1) {
                   4919:                 if (document.$formname.selfenroll_delete.length) {
                   4920:                     for (var j=0; j<document.$formname.selfenroll_delete.length; j++) {
                   4921:                         document.$formname.selfenroll_delete[j].checked = true;
                   4922:                     }
                   4923:                 } else {
                   4924:                     document.$formname.elements[delidx].checked = true;
                   4925:                 }
                   4926:             }
                   4927:             if (actidx != -1) {
                   4928:                 if (document.$formname.selfenroll_activate.length) {
                   4929:                     for (var j=0; j<document.$formname.selfenroll_activate.length; j++) {
                   4930:                         document.$formname.selfenroll_activate[j].checked = false;
                   4931:                     }
                   4932:                 } else {
                   4933:                     document.$formname.elements[actidx].checked = false;
                   4934:                 }
                   4935:             }
                   4936:             document.$formname.selfenroll_newdom.selectedIndex = 0; 
                   4937:         }
                   4938:     }
                   4939:     if (caller == 'selfenroll_activate') {
                   4940:         if (document.$formname.selfenroll_activate.length) {
                   4941:             for (var j=0; j<document.$formname.selfenroll_activate.length; j++) {
                   4942:                 if (document.$formname.selfenroll_activate[j].value == num) {
                   4943:                     if (document.$formname.selfenroll_activate[j].checked) {
                   4944:                         for (var i=0; i<document.$formname.selfenroll_all.length; i++) {
                   4945:                             if (document.$formname.selfenroll_all[i].value == '1') {
                   4946:                                 document.$formname.selfenroll_all[i].checked = false;
                   4947:                             }
                   4948:                             if (document.$formname.selfenroll_all[i].value == '0') {
                   4949:                                 document.$formname.selfenroll_all[i].checked = true;
                   4950:                             }
                   4951:                         }
                   4952:                     }
                   4953:                 }
                   4954:             }
                   4955:         } else {
                   4956:             for (var i=0; i<document.$formname.selfenroll_all.length; i++) {
                   4957:                 if (document.$formname.selfenroll_all[i].value == '1') {
                   4958:                     document.$formname.selfenroll_all[i].checked = false;
                   4959:                 }
                   4960:                 if (document.$formname.selfenroll_all[i].value == '0') {
                   4961:                     document.$formname.selfenroll_all[i].checked = true;
                   4962:                 }
                   4963:             }
                   4964:         }
                   4965:     }
                   4966:     if (caller == 'selfenroll_delete') {
                   4967:         if (document.$formname.selfenroll_delete.length) {
                   4968:             for (var j=0; j<document.$formname.selfenroll_delete.length; j++) {
                   4969:                 if (document.$formname.selfenroll_delete[j].value == num) {
                   4970:                     if (document.$formname.selfenroll_delete[j].checked) {
                   4971:                         var delindex = getIndexByName('selfenroll_types_'+num);
                   4972:                         if (delindex != -1) { 
                   4973:                             if (document.$formname.elements[delindex].length) {
                   4974:                                 for (var k=0; k<document.$formname.elements[delindex].length; k++) {
                   4975:                                     document.$formname.elements[delindex][k].checked = false;
                   4976:                                 }
                   4977:                             } else {
                   4978:                                 document.$formname.elements[delindex].checked = false;
                   4979:                             }
                   4980:                         }
                   4981:                     }
                   4982:                 }
                   4983:             }
                   4984:         } else {
                   4985:             if (document.$formname.selfenroll_delete.checked) {
                   4986:                 var delindex = getIndexByName('selfenroll_types_'+num);
                   4987:                 if (delindex != -1) {
                   4988:                     if (document.$formname.elements[delindex].length) {
                   4989:                         for (var k=0; k<document.$formname.elements[delindex].length; k++) {
                   4990:                             document.$formname.elements[delindex][k].checked = false;
                   4991:                         }
                   4992:                     } else {
                   4993:                         document.$formname.elements[delindex].checked = false;
                   4994:                     }
                   4995:                 }
                   4996:             }
                   4997:         }
                   4998:     }
                   4999:     return;
                   5000: }
                   5001: 
                   5002: function validate_types(form) {
                   5003:     var needaction = new Array();
                   5004:     var countfail = 0;
                   5005:     var actidx = getIndexByName('selfenroll_activate');
                   5006:     if (actidx != -1) {
                   5007:         if (document.$formname.selfenroll_activate.length) {
                   5008:             for (var j=0; j<document.$formname.selfenroll_activate.length; j++) {
                   5009:                 var num = document.$formname.selfenroll_activate[j].value;
                   5010:                 if (document.$formname.selfenroll_activate[j].checked) {
                   5011:                     countfail = check_types(num,countfail,needaction)
                   5012:                 }
                   5013:             }
                   5014:         } else {
                   5015:             if (document.$formname.selfenroll_activate.checked) {
                   5016:                 var num = document.enrollstudent.selfenroll_activate.value;
                   5017:                 countfail = check_types(num,countfail,needaction)
                   5018:             }
                   5019:         }
                   5020:     }
                   5021:     if (countfail > 0) {
                   5022:         var msg = "$alerts{'acto'}\\n";
                   5023:         var loopend = needaction.length -1;
                   5024:         if (loopend > 0) {
                   5025:             for (var m=0; m<loopend; m++) {
                   5026:                 msg += needaction[m]+", ";
                   5027:             }
                   5028:         }
                   5029:         msg += needaction[loopend]+"\\n$alerts{'butn'}\\n$alerts{'wilf'}";
                   5030:         alert(msg);
                   5031:         return; 
                   5032:     }
                   5033:     setSections(form);
                   5034: }
                   5035: 
                   5036: function check_types(num,countfail,needaction) {
                   5037:     var typeidx = getIndexByName('selfenroll_types_'+num);
                   5038:     var count = 0;
                   5039:     if (typeidx != -1) {
                   5040:         if (document.$formname.elements[typeidx].length) {
                   5041:             for (var k=0; k<document.$formname.elements[typeidx].length; k++) {
                   5042:                 if (document.$formname.elements[typeidx][k].checked) {
                   5043:                     count ++;
                   5044:                 }
                   5045:             }
                   5046:         } else {
                   5047:             if (document.$formname.elements[typeidx].checked) {
                   5048:                 count ++;
                   5049:             }
                   5050:         }
                   5051:         if (count == 0) {
                   5052:             var domidx = getIndexByName('selfenroll_dom_'+num);
                   5053:             if (domidx != -1) {
                   5054:                 var domname = document.$formname.elements[domidx].value;
                   5055:                 needaction[countfail] = domname;
                   5056:                 countfail ++;
                   5057:             }
                   5058:         }
                   5059:     }
                   5060:     return countfail;
                   5061: }
                   5062: 
                   5063: function getIndexByName(item) {
                   5064:     for (var i=0;i<document.$formname.elements.length;i++) {
                   5065:         if (document.$formname.elements[i].name == item) {
                   5066:             return i;
                   5067:         }
                   5068:     }
                   5069:     return -1;
                   5070: }
                   5071: ENDSCRIPT
1.256     raeburn  5072:     my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
                   5073:     my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
                   5074: 
1.237     raeburn  5075:     my $output = '<script type="text/javascript">'."\n".
1.301     bisitz   5076:                  '// <![CDATA['."\n".
1.249     raeburn  5077:                  $setsec_js."\n".$selfenroll_js."\n".
1.301     bisitz   5078:                  '// ]]>'."\n".
1.237     raeburn  5079:                  '</script>'."\n".
1.256     raeburn  5080:                  '<h3>'.$lt->{'selfenroll'}.'</h3>'."\n";
                   5081:     my ($visible,$cansetvis,$vismsgs,$visactions) = &visible_in_cat($cdom,$cnum);
                   5082:     if (ref($visactions) eq 'HASH') {
                   5083:         if ($visible) {
1.283     bisitz   5084:             $output .= '<p class="LC_info">'.$visactions->{'vis'}.'</p>';
1.256     raeburn  5085:         } else {
1.283     bisitz   5086:             $output .= '<p class="LC_warning">'.$visactions->{'miss'}.'</p>'
                   5087:                       .$visactions->{'yous'}.
1.256     raeburn  5088:                        '<p>'.$visactions->{'gen'}.'<br />'.$visactions->{'coca'};
                   5089:             if (ref($vismsgs) eq 'ARRAY') {
                   5090:                 $output .= '<br />'.$visactions->{'make'}.'<ul>';
                   5091:                 foreach my $item (@{$vismsgs}) {
                   5092:                     $output .= '<li>'.$visactions->{$item}.'</li>';
                   5093:                 }
                   5094:                 $output .= '</ul>';
                   5095:             }
                   5096:             $output .= '</p>';
                   5097:         }
                   5098:     }
                   5099:     $output .= '<form name="'.$formname.'" method="post" action="/adm/createuser">'."\n".
                   5100:                &Apache::lonhtmlcommon::start_pick_box();
1.237     raeburn  5101:     if (ref($row) eq 'ARRAY') {
                   5102:         foreach my $item (@{$row}) {
                   5103:             my $title = $item; 
                   5104:             if (ref($lt) eq 'HASH') {
                   5105:                 $title = $lt->{$item};
                   5106:             }
1.297     bisitz   5107:             $output .= &Apache::lonhtmlcommon::row_title($title);
1.237     raeburn  5108:             if ($item eq 'types') {
                   5109:                 my $curr_types = $env{'course.'.$env{'request.course.id'}.'.internal.selfenroll_types'};
1.241     raeburn  5110:                 my $showdomdesc = 1;
                   5111:                 my $includeempty = 1;
                   5112:                 my $num = 0;
                   5113:                 $output .= &Apache::loncommon::start_data_table().
                   5114:                            &Apache::loncommon::start_data_table_row()
                   5115:                            .'<td colspan="2"><span class="LC_nobreak"><label>'
                   5116:                            .&mt('Any user in any domain:')
                   5117:                            .'&nbsp;<input type="radio" name="selfenroll_all" value="1" ';
                   5118:                 if ($curr_types eq '*') {
                   5119:                     $output .= ' checked="checked" '; 
                   5120:                 }
1.249     raeburn  5121:                 $output .= 'onchange="javascript:update_types('.
                   5122:                            "'selfenroll_all'".');" />'.&mt('Yes').'</label>'.
                   5123:                            '&nbsp;&nbsp;<input type="radio" name="selfenroll_all" value="0" ';
1.241     raeburn  5124:                 if ($curr_types ne '*') {
                   5125:                     $output .= ' checked="checked" ';
                   5126:                 }
1.249     raeburn  5127:                 $output .= ' onchange="javascript:update_types('.
                   5128:                            "'selfenroll_all'".');"/>'.&mt('No').'</label></td>'.
                   5129:                            &Apache::loncommon::end_data_table_row().
                   5130:                            &Apache::loncommon::end_data_table().
                   5131:                            &mt('Or').'<br />'.
                   5132:                            &Apache::loncommon::start_data_table();
1.241     raeburn  5133:                 my %currdoms;
1.249     raeburn  5134:                 if ($curr_types eq '') {
1.241     raeburn  5135:                     $output .= &new_selfenroll_dom_row($cdom,'0');
                   5136:                 } elsif ($curr_types ne '*') {
                   5137:                     my @entries = split(/;/,$curr_types);
                   5138:                     if (@entries > 0) {
                   5139:                         foreach my $entry (@entries) {
                   5140:                             my ($currdom,$typestr) = split(/:/,$entry);
                   5141:                             $currdoms{$currdom} = 1;
                   5142:                             my $domdesc = &Apache::lonnet::domain($currdom);
1.249     raeburn  5143:                             my @currinsttypes = split(',',$typestr);
1.241     raeburn  5144:                             $output .= &Apache::loncommon::start_data_table_row()
                   5145:                                        .'<td valign="top"><span class="LC_nobreak">'.&mt('Domain:').'<b>'
                   5146:                                        .'&nbsp;'.$domdesc.' ('.$currdom.')'
                   5147:                                        .'</b><input type="hidden" name="selfenroll_dom_'.$num
                   5148:                                        .'" value="'.$currdom.'" /></span><br />'
                   5149:                                        .'<span class="LC_nobreak"><label><input type="checkbox" '
1.249     raeburn  5150:                                        .'name="selfenroll_delete" value="'.$num.'" onchange="javascript:update_types('."'selfenroll_delete','$num'".');" />'
1.241     raeburn  5151:                                        .&mt('Delete').'</label></span></td>';
1.249     raeburn  5152:                             $output .= '<td valign="top">&nbsp;&nbsp;'.&mt('User types:').'<br />'
1.241     raeburn  5153:                                        .&selfenroll_inst_types($num,$currdom,\@currinsttypes).'</td>'
                   5154:                                        .&Apache::loncommon::end_data_table_row();
                   5155:                             $num ++;
                   5156:                         }
                   5157:                     }
                   5158:                 }
1.249     raeburn  5159:                 my $add_domtitle = &mt('Users in additional domain:');
1.241     raeburn  5160:                 if ($curr_types eq '*') { 
1.249     raeburn  5161:                     $add_domtitle = &mt('Users in specific domain:');
1.241     raeburn  5162:                 } elsif ($curr_types eq '') {
1.249     raeburn  5163:                     $add_domtitle = &mt('Users in other domain:');
1.241     raeburn  5164:                 }
                   5165:                 $output .= &Apache::loncommon::start_data_table_row()
                   5166:                            .'<td colspan="2"><span class="LC_nobreak">'.$add_domtitle.'</span><br />'
                   5167:                            .&Apache::loncommon::select_dom_form('','selfenroll_newdom',
                   5168:                                                                 $includeempty,$showdomdesc)
                   5169:                            .'<input type="hidden" name="selfenroll_types_total" value="'.$num.'" />'
                   5170:                            .'</td>'.&Apache::loncommon::end_data_table_row()
                   5171:                            .&Apache::loncommon::end_data_table();
1.237     raeburn  5172:             } elsif ($item eq 'registered') {
                   5173:                 my ($regon,$regoff);
                   5174:                 if ($env{'course.'.$env{'request.course.id'}.'.internal.selfenroll_registered'}) {
                   5175:                     $regon = ' checked="checked" ';
                   5176:                     $regoff = ' ';
                   5177:                 } else {
                   5178:                     $regon = ' ';
                   5179:                     $regoff = ' checked="checked" ';
                   5180:                 }
                   5181:                 $output .= '<label>'.
1.245     raeburn  5182:                            '<input type="radio" name="selfenroll_registered" value="1"'.$regon.'/>'.
1.244     bisitz   5183:                            &mt('Yes').'</label>&nbsp;&nbsp;<label>'.
1.245     raeburn  5184:                            '<input type="radio" name="selfenroll_registered" value="0"'.$regoff.'/>'.
1.244     bisitz   5185:                            &mt('No').'</label>';
1.237     raeburn  5186:             } elsif ($item eq 'enroll_dates') {
                   5187:                 my $starttime = $env{'course.'.$env{'request.course.id'}.'.internal.selfenroll_start_date'};
                   5188:                 my $endtime = $env{'course.'.$env{'request.course.id'}.'.internal.selfenroll_end_date'};
                   5189:                 if ($starttime eq '') {
                   5190:                     $starttime = $env{'course.'.$env{'request.course.id'}.'.default_enrollment_start_date'};
                   5191:                 }
                   5192:                 if ($endtime eq '') {
                   5193:                     $endtime = $env{'course.'.$env{'request.course.id'}.'.default_enrollment_end_date'};
                   5194:                 }
                   5195:                 my $startform =
                   5196:                     &Apache::lonhtmlcommon::date_setter($formname,'selfenroll_start_date',$starttime,
                   5197:                                       undef,undef,undef,undef,undef,undef,undef,$nolink);
                   5198:                 my $endform =
                   5199:                     &Apache::lonhtmlcommon::date_setter($formname,'selfenroll_end_date',$endtime,
                   5200:                                       undef,undef,undef,undef,undef,undef,undef,$nolink);
                   5201:                 $output .= &selfenroll_date_forms($startform,$endform);
                   5202:             } elsif ($item eq 'access_dates') {
                   5203:                 my $starttime = $env{'course.'.$env{'request.course.id'}.'.internal.selfenroll_start_access'};
                   5204:                 my $endtime = $env{'course.'.$env{'request.course.id'}.'.internal.selfenroll_end_access'};
                   5205:                 if ($starttime eq '') {
                   5206:                     $starttime = $env{'course.'.$env{'request.course.id'}.'.default_enrollment_start_date'};
                   5207:                 }
                   5208:                 if ($endtime eq '') {
                   5209:                     $endtime = $env{'course.'.$env{'request.course.id'}.'.default_enrollment_end_date'};
                   5210:                 }
                   5211:                 my $startform =
                   5212:                     &Apache::lonhtmlcommon::date_setter($formname,'selfenroll_start_access',$starttime,
                   5213:                                       undef,undef,undef,undef,undef,undef,undef,$nolink);
                   5214:                 my $endform =
                   5215:                     &Apache::lonhtmlcommon::date_setter($formname,'selfenroll_end_access',$endtime,
                   5216:                                       undef,undef,undef,undef,undef,undef,undef,$nolink);
                   5217:                 $output .= &selfenroll_date_forms($startform,$endform);
                   5218:             } elsif ($item eq 'section') {
                   5219:                 my $currsec = $env{'course.'.$env{'request.course.id'}.'.internal.selfenroll_section'}; 
                   5220:                 my %sections_count = &Apache::loncommon::get_sections($cdom,$cnum);
                   5221:                 my $newsecval;
                   5222:                 if ($currsec ne 'none' && $currsec ne '') {
                   5223:                     if (!defined($sections_count{$currsec})) {
                   5224:                         $newsecval = $currsec;
                   5225:                     }
                   5226:                 }
                   5227:                 my $sections_select = 
                   5228:                     &Apache::lonuserutils::course_sections(\%sections_count,'st',$currsec);
                   5229:                 $output .= '<table class="LC_createuser">'."\n".
                   5230:                            '<tr class="LC_section_row">'."\n".
                   5231:                            '<td align="center">'.&mt('Existing sections')."\n".
                   5232:                            '<br />'.$sections_select.'</td><td align="center">'.
                   5233:                            &mt('New section').'<br />'."\n".
                   5234:                            '<input type="text" name="newsec" size="15" value="'.$newsecval.'" />'."\n".
                   5235:                            '<input type="hidden" name="sections" value="" />'."\n".
                   5236:                            '<input type="hidden" name="state" value="done" />'."\n".
                   5237:                            '</td></tr></table>'."\n";
1.276     raeburn  5238:             } elsif ($item eq 'approval') {
                   5239:                 my ($appon,$appoff);
                   5240:                 my $cid = $env{'request.course.id'};
                   5241:                 my $currnotified = $env{'course.'.$cid.'.internal.selfenroll_notifylist'};
                   5242:                 if ($env{'course.'.$cid.'.internal.selfenroll_approval'}) {
                   5243:                     $appon = ' checked="checked" ';
                   5244:                     $appoff = ' ';
                   5245:                 } else {
                   5246:                     $appon = ' ';
                   5247:                     $appoff = ' checked="checked" ';
                   5248:                 }
                   5249:                 $output .= '<label>'.
                   5250:                            '<input type="radio" name="selfenroll_approval" value="1"'.$appon.'/>'.
                   5251:                            &mt('Yes').'</label>&nbsp;&nbsp;<label>'.
                   5252:                            '<input type="radio" name="selfenroll_approval" value="0"'.$appoff.'/>'.
                   5253:                            &mt('No').'</label>';
                   5254:                 my %advhash = &Apache::lonnet::get_course_adv_roles($cid,1);
                   5255:                 my (@ccs,%notified);
1.322     raeburn  5256:                 my $ccrole = 'cc';
                   5257:                 if ($crstype eq 'Community') {
                   5258:                     $ccrole = 'co';
                   5259:                 }
                   5260:                 if ($advhash{$ccrole}) {
                   5261:                     @ccs = split(/,/,$advhash{$ccrole});
1.276     raeburn  5262:                 }
                   5263:                 if ($currnotified) {
                   5264:                     foreach my $current (split(/,/,$currnotified)) {
                   5265:                         $notified{$current} = 1;
                   5266:                         if (!grep(/^\Q$current\E$/,@ccs)) {
                   5267:                             push(@ccs,$current);
                   5268:                         }
                   5269:                     }
                   5270:                 }
                   5271:                 if (@ccs) {
1.277     raeburn  5272:                     $output .= '<br />'.&mt('Personnel to be notified when an enrollment request needs approval, or has been approved:').'&nbsp;'.&Apache::loncommon::start_data_table().
1.276     raeburn  5273:                                &Apache::loncommon::start_data_table_row();
                   5274:                     my $count = 0;
                   5275:                     my $numcols = 4;
                   5276:                     foreach my $cc (sort(@ccs)) {
                   5277:                         my $notifyon;
                   5278:                         my ($ccuname,$ccudom) = split(/:/,$cc);
                   5279:                         if ($notified{$cc}) {
                   5280:                             $notifyon = ' checked="checked" ';
                   5281:                         }
                   5282:                         if ($count && !$count%$numcols) {
                   5283:                             $output .= &Apache::loncommon::end_data_table_row().
                   5284:                                        &Apache::loncommon::start_data_table_row()
                   5285:                         }
                   5286:                         $output .= '<td><span class="LC_nobreak"><label>'.
                   5287:                                    '<input type="checkbox" name="selfenroll_notify"'.$notifyon.' value="'.$cc.'" />'.
                   5288:                                    &Apache::loncommon::plainname($ccuname,$ccudom).
                   5289:                                    '</label></span></td>';
1.343     raeburn  5290:                         $count ++;
1.276     raeburn  5291:                     }
                   5292:                     my $rem = $count%$numcols;
                   5293:                     if ($rem) {
                   5294:                         my $emptycols = $numcols - $rem;
                   5295:                         for (my $i=0; $i<$emptycols; $i++) { 
                   5296:                             $output .= '<td>&nbsp;</td>';
                   5297:                         }
                   5298:                     }
                   5299:                     $output .= &Apache::loncommon::end_data_table_row().
                   5300:                                &Apache::loncommon::end_data_table();
                   5301:                 }
                   5302:             } elsif ($item eq 'limit') {
                   5303:                 my ($crslimit,$selflimit,$nolimit);
                   5304:                 my $cid = $env{'request.course.id'};
                   5305:                 my $currlim = $env{'course.'.$cid.'.internal.selfenroll_limit'};
                   5306:                 my $currcap = $env{'course.'.$cid.'.internal.selfenroll_cap'};
1.343     raeburn  5307:                 $nolimit = ' checked="checked" ';
1.276     raeburn  5308:                 if ($currlim eq 'allstudents') {
                   5309:                     $crslimit = ' checked="checked" ';
                   5310:                     $selflimit = ' ';
                   5311:                     $nolimit = ' ';
                   5312:                 } elsif ($currlim eq 'selfenrolled') {
                   5313:                     $crslimit = ' ';
                   5314:                     $selflimit = ' checked="checked" ';
                   5315:                     $nolimit = ' '; 
                   5316:                 } else {
                   5317:                     $crslimit = ' ';
                   5318:                     $selflimit = ' ';
                   5319:                 }
                   5320:                 $output .= '<table><tr><td><label>'.
1.278     raeburn  5321:                            '<input type="radio" name="selfenroll_limit" value="none"'.$nolimit.'/>'.
1.276     raeburn  5322:                            &mt('No limit').'</label></td><td><label>'.
                   5323:                            '<input type="radio" name="selfenroll_limit" value="allstudents"'.$crslimit.'/>'.
                   5324:                            &mt('Limit by total students').'</label></td><td><label>'.
                   5325:                            '<input type="radio" name="selfenroll_limit" value="selfenrolled"'.$selflimit.'/>'.
                   5326:                            &mt('Limit by total self-enrolled students').
                   5327:                            '</td></tr><tr>'.
                   5328:                            '<td>&nbsp;</td><td colspan="2"><span class="LC_nobreak">'.
                   5329:                            ('&nbsp;'x3).&mt('Maximum number allowed: ').
                   5330:                            '<input type="text" name="selfenroll_cap" size = "5" value="'.$currcap.'" /></td></tr></table>';
1.237     raeburn  5331:             }
                   5332:             $output .= &Apache::lonhtmlcommon::row_closure(1);
                   5333:         }
                   5334:     }
                   5335:     $output .= &Apache::lonhtmlcommon::end_pick_box().
1.241     raeburn  5336:                '<br /><input type="button" name="selfenrollconf" value="'
1.282     schafran 5337:                .&mt('Save').'" onclick="validate_types(this.form);" />'
1.241     raeburn  5338:                .'<input type="hidden" name="action" value="selfenroll" /></form>';
1.237     raeburn  5339:     $r->print($output);
                   5340:     return;
                   5341: }
                   5342: 
1.256     raeburn  5343: sub visible_in_cat {
                   5344:     my ($cdom,$cnum) = @_;
                   5345:     my %domconf = &Apache::lonnet::get_dom('configuration',['coursecategories'],$cdom);
                   5346:     my ($cathash,%settable,@vismsgs,$cansetvis);
                   5347:     my %visactions = &Apache::lonlocal::texthash(
1.316     bisitz   5348:                    vis => 'Your course/community currently appears in the Course/Community Catalog for this domain.',
1.256     raeburn  5349:                    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.',
1.316     bisitz   5350:                    miss => 'Your course/community does not currently appear in the Course/Community Catalog for this domain.',
1.256     raeburn  5351:                    yous => 'You should remedy this if you plan to allow self-enrollment, otherwise students will have difficulty finding your course.',
                   5352:                    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.',
1.282     schafran 5353:                    make => 'Make any changes to self-enrollment settings below, click "Save", then take action to include the course in the Catalog:',
1.256     raeburn  5354:                    take => 'Take the following action to ensure the course appears in the Catalog:',
                   5355:                    dc_unhide  => 'Ask a domain coordinator to change the "Exclude from course catalog" setting.',
                   5356:                    dc_addinst => 'Ask a domain coordinator to enable display the catalog of "Official courses (with institutional codes)".',
                   5357:                    dc_instcode => 'Ask a domain coordinator to assign an institutional code (if this is an official course).',
                   5358:                    dc_catalog  => 'Ask a domain coordinator to enable or create at least one course category in the domain.',
                   5359:                    dc_categories => 'Ask a domain coordinator to create a hierarchy of categories and sub categories for courses in the domain.',
                   5360:                    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',
                   5361:                    dc_addcat => 'Ask a domain coordinator to assign a category to the course.',
                   5362:     );
1.347     raeburn  5363:     $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>"');
                   5364:     $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>"');
                   5365:     $visactions{'addcat'} = &mt('Use [_1]Categorize course[_2] to assign a category to the course.','"<a href="/adm/courseprefs?phase=display&actions=courseinfo">','</a>"');
1.256     raeburn  5366:     if (ref($domconf{'coursecategories'}) eq 'HASH') {
                   5367:         if ($domconf{'coursecategories'}{'togglecats'} eq 'crs') {
                   5368:             $settable{'togglecats'} = 1;
                   5369:         }
                   5370:         if ($domconf{'coursecategories'}{'categorize'} eq 'crs') {
                   5371:             $settable{'categorize'} = 1;
                   5372:         }
                   5373:         $cathash = $domconf{'coursecategories'}{'cats'};
                   5374:     }
1.260     raeburn  5375:     if ($settable{'togglecats'} && $settable{'categorize'}) {
1.256     raeburn  5376:         $cansetvis = &mt('You are able to both assign a course category and choose to exclude this course from the catalog.');   
                   5377:     } elsif ($settable{'togglecats'}) {
                   5378:         $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  5379:     } elsif ($settable{'categorize'}) {
1.256     raeburn  5380:         $cansetvis = &mt('You may assign a course category, but only a Domain Coordinator may choose to exclude this course from the catalog.');  
                   5381:     } else {
                   5382:         $cansetvis = &mt('Only a Domain Coordinator may assign a course category or choose to exclude this course from the catalog.'); 
                   5383:     }
                   5384:      
                   5385:     my %currsettings =
                   5386:         &Apache::lonnet::get('environment',['hidefromcat','categories','internal.coursecode'],
                   5387:                              $cdom,$cnum);
                   5388:     my $visible = 0;
                   5389:     if ($currsettings{'internal.coursecode'} ne '') {
                   5390:         if (ref($domconf{'coursecategories'}) eq 'HASH') {
                   5391:             $cathash = $domconf{'coursecategories'}{'cats'};
                   5392:             if (ref($cathash) eq 'HASH') {
                   5393:                 if ($cathash->{'instcode::0'} eq '') {
                   5394:                     push(@vismsgs,'dc_addinst'); 
                   5395:                 } else {
                   5396:                     $visible = 1;
                   5397:                 }
                   5398:             } else {
                   5399:                 $visible = 1;
                   5400:             }
                   5401:         } else {
                   5402:             $visible = 1;
                   5403:         }
                   5404:     } else {
                   5405:         if (ref($cathash) eq 'HASH') {
                   5406:             if ($cathash->{'instcode::0'} ne '') {
                   5407:                 push(@vismsgs,'dc_instcode');
                   5408:             }
                   5409:         } else {
                   5410:             push(@vismsgs,'dc_instcode');
                   5411:         }
                   5412:     }
                   5413:     if ($currsettings{'categories'} ne '') {
                   5414:         my $cathash;
                   5415:         if (ref($domconf{'coursecategories'}) eq 'HASH') {
                   5416:             $cathash = $domconf{'coursecategories'}{'cats'};
                   5417:             if (ref($cathash) eq 'HASH') {
                   5418:                 if (keys(%{$cathash}) == 0) {
                   5419:                     push(@vismsgs,'dc_catalog');
                   5420:                 } elsif ((keys(%{$cathash}) == 1) && ($cathash->{'instcode::0'} ne '')) {
                   5421:                     push(@vismsgs,'dc_categories');
                   5422:                 } else {
                   5423:                     my @currcategories = split('&',$currsettings{'categories'});
                   5424:                     my $matched = 0;
                   5425:                     foreach my $cat (@currcategories) {
                   5426:                         if ($cathash->{$cat} ne '') {
                   5427:                             $visible = 1;
                   5428:                             $matched = 1;
                   5429:                             last;
                   5430:                         }
                   5431:                     }
                   5432:                     if (!$matched) {
1.260     raeburn  5433:                         if ($settable{'categorize'}) { 
1.256     raeburn  5434:                             push(@vismsgs,'chgcat');
                   5435:                         } else {
                   5436:                             push(@vismsgs,'dc_chgcat');
                   5437:                         }
                   5438:                     }
                   5439:                 }
                   5440:             }
                   5441:         }
                   5442:     } else {
                   5443:         if (ref($cathash) eq 'HASH') {
                   5444:             if ((keys(%{$cathash}) > 1) || 
                   5445:                 (keys(%{$cathash}) == 1) && ($cathash->{'instcode::0'} eq '')) {
1.260     raeburn  5446:                 if ($settable{'categorize'}) {
1.256     raeburn  5447:                     push(@vismsgs,'addcat');
                   5448:                 } else {
                   5449:                     push(@vismsgs,'dc_addcat');
                   5450:                 }
                   5451:             }
                   5452:         }
                   5453:     }
                   5454:     if ($currsettings{'hidefromcat'} eq 'yes') {
                   5455:         $visible = 0;
                   5456:         if ($settable{'togglecats'}) {
                   5457:             unshift(@vismsgs,'unhide');
                   5458:         } else {
                   5459:             unshift(@vismsgs,'dc_unhide')
                   5460:         }
                   5461:     }
                   5462:     return ($visible,$cansetvis,\@vismsgs,\%visactions);
                   5463: }
                   5464: 
1.241     raeburn  5465: sub new_selfenroll_dom_row {
                   5466:     my ($newdom,$num) = @_;
                   5467:     my $domdesc = &Apache::lonnet::domain($newdom);
                   5468:     my $output;
                   5469:     if ($domdesc ne '') {
                   5470:         $output .= &Apache::loncommon::start_data_table_row()
                   5471:                    .'<td valign="top"><span class="LC_nobreak">'.&mt('Domain:').'&nbsp;<b>'.$domdesc
                   5472:                    .' ('.$newdom.')</b><input type="hidden" name="selfenroll_dom_'.$num
1.249     raeburn  5473:                    .'" value="'.$newdom.'" /></span><br />'
                   5474:                    .'<span class="LC_nobreak"><label><input type="checkbox" '
                   5475:                    .'name="selfenroll_activate" value="'.$num.'" '
                   5476:                    .'onchange="javascript:update_types('
                   5477:                    ."'selfenroll_activate','$num'".');" />'
                   5478:                    .&mt('Activate').'</label></span></td>';
1.241     raeburn  5479:         my @currinsttypes;
                   5480:         $output .= '<td>'.&mt('User types:').'<br />'
                   5481:                    .&selfenroll_inst_types($num,$newdom,\@currinsttypes).'</td>'
                   5482:                    .&Apache::loncommon::end_data_table_row();
                   5483:     }
                   5484:     return $output;
                   5485: }
                   5486: 
                   5487: sub selfenroll_inst_types {
                   5488:     my ($num,$currdom,$currinsttypes) = @_;
                   5489:     my $output;
                   5490:     my $numinrow = 4;
                   5491:     my $count = 0;
                   5492:     my ($othertitle,$usertypes,$types) = &Apache::loncommon::sorted_inst_types($currdom);
1.247     raeburn  5493:     my $othervalue = 'any';
1.241     raeburn  5494:     if ((ref($types) eq 'ARRAY') && (ref($usertypes) eq 'HASH')) {
1.251     raeburn  5495:         if (keys(%{$usertypes}) > 0) {
1.247     raeburn  5496:             $othervalue = 'other';
                   5497:         }
1.241     raeburn  5498:         $output .= '<table><tr>';
                   5499:         foreach my $type (@{$types}) {
                   5500:             if (($count > 0) && ($count%$numinrow == 0)) {
                   5501:                 $output .= '</tr><tr>';
                   5502:             }
                   5503:             if (defined($usertypes->{$type})) {
1.257     raeburn  5504:                 my $esc_type = &escape($type);
1.241     raeburn  5505:                 $output .= '<td><span class="LC_nobreak"><label><input type = "checkbox" value="'.
1.257     raeburn  5506:                            $esc_type.'" ';
1.241     raeburn  5507:                 if (ref($currinsttypes) eq 'ARRAY') {
                   5508:                     if (@{$currinsttypes} > 0) {
1.249     raeburn  5509:                         if (grep(/^any$/,@{$currinsttypes})) {
                   5510:                             $output .= 'checked="checked"';
1.257     raeburn  5511:                         } elsif (grep(/^\Q$esc_type\E$/,@{$currinsttypes})) {
1.241     raeburn  5512:                             $output .= 'checked="checked"';
                   5513:                         }
1.249     raeburn  5514:                     } else {
                   5515:                         $output .= 'checked="checked"';
1.241     raeburn  5516:                     }
                   5517:                 }
                   5518:                 $output .= ' name="selfenroll_types_'.$num.'" />'.$usertypes->{$type}.'</label></span></td>';
                   5519:             }
                   5520:             $count ++;
                   5521:         }
                   5522:         if (($count > 0) && ($count%$numinrow == 0)) {
                   5523:             $output .= '</tr><tr>';
                   5524:         }
1.249     raeburn  5525:         $output .= '<td><span class="LC_nobreak"><label><input type = "checkbox" value="'.$othervalue.'"';
1.241     raeburn  5526:         if (ref($currinsttypes) eq 'ARRAY') {
                   5527:             if (@{$currinsttypes} > 0) {
1.249     raeburn  5528:                 if (grep(/^any$/,@{$currinsttypes})) { 
                   5529:                     $output .= ' checked="checked"';
                   5530:                 } elsif ($othervalue eq 'other') {
                   5531:                     if (grep(/^\Q$othervalue\E$/,@{$currinsttypes})) {
                   5532:                         $output .= ' checked="checked"';
                   5533:                     }
1.241     raeburn  5534:                 }
1.249     raeburn  5535:             } else {
                   5536:                 $output .= ' checked="checked"';
1.241     raeburn  5537:             }
1.249     raeburn  5538:         } else {
                   5539:             $output .= ' checked="checked"';
1.241     raeburn  5540:         }
                   5541:         $output .= ' name="selfenroll_types_'.$num.'" />'.$othertitle.'</label></span></td></tr></table>';
                   5542:     }
                   5543:     return $output;
                   5544: }
                   5545: 
1.237     raeburn  5546: sub selfenroll_date_forms {
                   5547:     my ($startform,$endform) = @_;
                   5548:     my $output .= &Apache::lonhtmlcommon::start_pick_box()."\n".
1.244     bisitz   5549:                   &Apache::lonhtmlcommon::row_title(&mt('Start date'),
1.237     raeburn  5550:                                                     'LC_oddrow_value')."\n".
                   5551:                   $startform."\n".
                   5552:                   &Apache::lonhtmlcommon::row_closure(1).
1.244     bisitz   5553:                   &Apache::lonhtmlcommon::row_title(&mt('End date'),
1.237     raeburn  5554:                                                    'LC_oddrow_value')."\n".
                   5555:                   $endform."\n".
                   5556:                   &Apache::lonhtmlcommon::row_closure(1).
                   5557:                   &Apache::lonhtmlcommon::end_pick_box();
                   5558:     return $output;
                   5559: }
                   5560: 
1.239     raeburn  5561: sub print_userchangelogs_display {
                   5562:     my ($r,$context,$permission) = @_;
1.363     raeburn  5563:     my $formname = 'rolelog';
                   5564:     my ($username,$domain,$crstype,%roleslog);
                   5565:     if ($context eq 'domain') {
                   5566:         $domain = $env{'request.role.domain'};
                   5567:         %roleslog=&Apache::lonnet::dump_dom('nohist_rolelog',$domain);
                   5568:     } else {
                   5569:         if ($context eq 'course') { 
                   5570:             $domain = $env{'course.'.$env{'request.course.id'}.'.domain'};
                   5571:             $username = $env{'course.'.$env{'request.course.id'}.'.num'};
                   5572:             $crstype = &Apache::loncommon::course_type();
                   5573:             my %saveable_parameters = ('show' => 'scalar',);
                   5574:             &Apache::loncommon::store_course_settings('roles_log',
                   5575:                                                       \%saveable_parameters);
                   5576:             &Apache::loncommon::restore_course_settings('roles_log',
                   5577:                                                         \%saveable_parameters);
                   5578:         } elsif ($context eq 'author') {
                   5579:             $domain = $env{'user.domain'}; 
                   5580:             if ($env{'request.role'} =~ m{^au\./\Q$domain\E/$}) {
                   5581:                 $username = $env{'user.name'};
                   5582:             } else {
                   5583:                 undef($domain);
                   5584:             }
                   5585:         }
                   5586:         if ($domain ne '' && $username ne '') { 
                   5587:             %roleslog=&Apache::lonnet::dump('nohist_rolelog',$domain,$username);
                   5588:         }
                   5589:     }
1.239     raeburn  5590:     if ((keys(%roleslog))[0]=~/^error\:/) { undef(%roleslog); }
                   5591: 
                   5592:     # set defaults
                   5593:     my $now = time();
                   5594:     my $defstart = $now - (7*24*3600); #7 days ago 
                   5595:     my %defaults = (
                   5596:                      page               => '1',
                   5597:                      show               => '10',
                   5598:                      role               => 'any',
                   5599:                      chgcontext         => 'any',
                   5600:                      rolelog_start_date => $defstart,
                   5601:                      rolelog_end_date   => $now,
                   5602:                    );
                   5603:     my $more_records = 0;
                   5604: 
                   5605:     # set current
                   5606:     my %curr;
                   5607:     foreach my $item ('show','page','role','chgcontext') {
                   5608:         $curr{$item} = $env{'form.'.$item};
                   5609:     }
                   5610:     my ($startdate,$enddate) = 
                   5611:         &Apache::lonuserutils::get_dates_from_form('rolelog_start_date','rolelog_end_date');
                   5612:     $curr{'rolelog_start_date'} = $startdate;
                   5613:     $curr{'rolelog_end_date'} = $enddate;
                   5614:     foreach my $key (keys(%defaults)) {
                   5615:         if ($curr{$key} eq '') {
                   5616:             $curr{$key} = $defaults{$key};
                   5617:         }
                   5618:     }
1.248     raeburn  5619:     my (%whodunit,%changed,$version);
                   5620:     ($version) = ($r->dir_config('lonVersion') =~ /^([\d\.]+)\-/);
1.239     raeburn  5621:     my ($minshown,$maxshown);
1.255     raeburn  5622:     $minshown = 1;
1.239     raeburn  5623:     my $count = 0;
                   5624:     if ($curr{'show'} ne &mt('all')) { 
                   5625:         $maxshown = $curr{'page'} * $curr{'show'};
                   5626:         if ($curr{'page'} > 1) {
                   5627:             $minshown = 1 + ($curr{'page'} - 1) * $curr{'show'};
                   5628:         }
                   5629:     }
1.301     bisitz   5630: 
1.327     raeburn  5631:     # Form Header
                   5632:     $r->print('<form action="/adm/createuser" method="post" name="'.$formname.'">'.
1.363     raeburn  5633:               &role_display_filter($context,$formname,$domain,$username,\%curr,
                   5634:                                    $version,$crstype));
1.327     raeburn  5635: 
                   5636:     # Create navigation
                   5637:     my ($nav_script,$nav_links) = &userlogdisplay_nav($formname,\%curr,$more_records);
                   5638:     my $showntableheader = 0;
                   5639: 
                   5640:     # Table Header
                   5641:     my $tableheader = 
                   5642:         &Apache::loncommon::start_data_table_header_row()
                   5643:        .'<th>&nbsp;</th>'
                   5644:        .'<th>'.&mt('When').'</th>'
                   5645:        .'<th>'.&mt('Who made the change').'</th>'
                   5646:        .'<th>'.&mt('Changed User').'</th>'
1.363     raeburn  5647:        .'<th>'.&mt('Role').'</th>';
                   5648: 
                   5649:     if ($context eq 'course') {
                   5650:         $tableheader .= '<th>'.&mt('Section').'</th>';
                   5651:     }
                   5652:     $tableheader .=
                   5653:         '<th>'.&mt('Context').'</th>'
1.327     raeburn  5654:        .'<th>'.&mt('Start').'</th>'
                   5655:        .'<th>'.&mt('End').'</th>'
                   5656:        .&Apache::loncommon::end_data_table_header_row();
                   5657: 
                   5658:     # Display user change log data
1.239     raeburn  5659:     foreach my $id (sort { $roleslog{$b}{'exe_time'}<=>$roleslog{$a}{'exe_time'} } (keys(%roleslog))) {
                   5660:         next if (($roleslog{$id}{'exe_time'} < $curr{'rolelog_start_date'}) ||
                   5661:                  ($roleslog{$id}{'exe_time'} > $curr{'rolelog_end_date'}));
                   5662:         if ($curr{'show'} ne &mt('all')) {
                   5663:             if ($count >= $curr{'page'} * $curr{'show'}) {
                   5664:                 $more_records = 1;
                   5665:                 last;
                   5666:             }
                   5667:         }
                   5668:         if ($curr{'role'} ne 'any') {
                   5669:             next if ($roleslog{$id}{'logentry'}{'role'} ne $curr{'role'}); 
                   5670:         }
                   5671:         if ($curr{'chgcontext'} ne 'any') {
                   5672:             if ($curr{'chgcontext'} eq 'selfenroll') {
                   5673:                 next if (!$roleslog{$id}{'logentry'}{'selfenroll'});
                   5674:             } else {
                   5675:                 next if ($roleslog{$id}{'logentry'}{'context'} ne $curr{'chgcontext'});
                   5676:             }
                   5677:         }
                   5678:         $count ++;
                   5679:         next if ($count < $minshown);
1.327     raeburn  5680:         unless ($showntableheader) {
                   5681:             $r->print($nav_script
                   5682:                      .$nav_links
                   5683:                      .&Apache::loncommon::start_data_table()
                   5684:                      .$tableheader);
                   5685:             $r->rflush();
                   5686:             $showntableheader = 1;
                   5687:         }
1.239     raeburn  5688:         if ($whodunit{$roleslog{$id}{'exe_uname'}.':'.$roleslog{$id}{'exe_udom'}} eq '') {
                   5689:             $whodunit{$roleslog{$id}{'exe_uname'}.':'.$roleslog{$id}{'exe_udom'}} =
                   5690:                 &Apache::loncommon::plainname($roleslog{$id}{'exe_uname'},$roleslog{$id}{'exe_udom'});
                   5691:         }
                   5692:         if ($changed{$roleslog{$id}{'uname'}.':'.$roleslog{$id}{'udom'}} eq '') {
                   5693:             $changed{$roleslog{$id}{'uname'}.':'.$roleslog{$id}{'udom'}} =
                   5694:                 &Apache::loncommon::plainname($roleslog{$id}{'uname'},$roleslog{$id}{'udom'});
                   5695:         }
                   5696:         my $sec = $roleslog{$id}{'logentry'}{'section'};
                   5697:         if ($sec eq '') {
                   5698:             $sec = &mt('None');
                   5699:         }
                   5700:         my ($rolestart,$roleend);
                   5701:         if ($roleslog{$id}{'delflag'}) {
                   5702:             $rolestart = &mt('deleted');
                   5703:             $roleend = &mt('deleted');
                   5704:         } else {
                   5705:             $rolestart = $roleslog{$id}{'logentry'}{'start'};
                   5706:             $roleend = $roleslog{$id}{'logentry'}{'end'};
                   5707:             if ($rolestart eq '' || $rolestart == 0) {
                   5708:                 $rolestart = &mt('No start date'); 
                   5709:             } else {
                   5710:                 $rolestart = &Apache::lonlocal::locallocaltime($rolestart);
                   5711:             }
                   5712:             if ($roleend eq '' || $roleend == 0) { 
                   5713:                 $roleend = &mt('No end date');
                   5714:             } else {
                   5715:                 $roleend = &Apache::lonlocal::locallocaltime($roleend);
                   5716:             }
                   5717:         }
                   5718:         my $chgcontext = $roleslog{$id}{'logentry'}{'context'};
                   5719:         if ($roleslog{$id}{'logentry'}{'selfenroll'}) {
                   5720:             $chgcontext = 'selfenroll';
                   5721:         }
1.363     raeburn  5722:         my %lt = &rolechg_contexts($context,$crstype);
1.239     raeburn  5723:         if ($chgcontext ne '' && $lt{$chgcontext} ne '') {
                   5724:             $chgcontext = $lt{$chgcontext};
                   5725:         }
1.327     raeburn  5726:         $r->print(
1.301     bisitz   5727:             &Apache::loncommon::start_data_table_row()
                   5728:            .'<td>'.$count.'</td>'
                   5729:            .'<td>'.&Apache::lonlocal::locallocaltime($roleslog{$id}{'exe_time'}).'</td>'
                   5730:            .'<td>'.$whodunit{$roleslog{$id}{'exe_uname'}.':'.$roleslog{$id}{'exe_udom'}}.'</td>'
                   5731:            .'<td>'.$changed{$roleslog{$id}{'uname'}.':'.$roleslog{$id}{'udom'}}.'</td>'
1.363     raeburn  5732:            .'<td>'.&Apache::lonnet::plaintext($roleslog{$id}{'logentry'}{'role'},$crstype).'</td>');
                   5733:         if ($context eq 'course') { 
                   5734:             $r->print('<td>'.$sec.'</td>');
                   5735:         }
                   5736:         $r->print(
                   5737:             '<td>'.$chgcontext.'</td>'
1.301     bisitz   5738:            .'<td>'.$rolestart.'</td>'
                   5739:            .'<td>'.$roleend.'</td>'
1.327     raeburn  5740:            .&Apache::loncommon::end_data_table_row()."\n");
1.301     bisitz   5741:     }
                   5742: 
1.327     raeburn  5743:     if ($showntableheader) { # Table footer, if content displayed above
                   5744:         $r->print(&Apache::loncommon::end_data_table()
                   5745:                  .$nav_links);
                   5746:     } else { # No content displayed above
1.301     bisitz   5747:         $r->print('<p class="LC_info">'
                   5748:                  .&mt('There are no records to display.')
                   5749:                  .'</p>'
                   5750:         );
1.239     raeburn  5751:     }
1.301     bisitz   5752: 
1.327     raeburn  5753:     # Form Footer
                   5754:     $r->print( 
                   5755:         '<input type="hidden" name="page" value="'.$curr{'page'}.'" />'
                   5756:        .'<input type="hidden" name="action" value="changelogs" />'
                   5757:        .'</form>');
                   5758:     return;
                   5759: }
1.301     bisitz   5760: 
1.327     raeburn  5761: sub userlogdisplay_nav {
                   5762:     my ($formname,$curr,$more_records) = @_;
                   5763:     my ($nav_script,$nav_links);
                   5764:     if (ref($curr) eq 'HASH') {
                   5765:         # Create Navigation:
                   5766:         # Navigation Script
                   5767:         $nav_script = <<"ENDSCRIPT";
1.239     raeburn  5768: <script type="text/javascript">
1.301     bisitz   5769: // <![CDATA[
1.239     raeburn  5770: function chgPage(caller) {
                   5771:     if (caller == 'previous') {
                   5772:         document.$formname.page.value --;
                   5773:     }
                   5774:     if (caller == 'next') {
                   5775:         document.$formname.page.value ++;
                   5776:     }
1.327     raeburn  5777:     document.$formname.submit();
1.239     raeburn  5778:     return;
                   5779: }
1.301     bisitz   5780: // ]]>
1.239     raeburn  5781: </script>
                   5782: ENDSCRIPT
1.327     raeburn  5783:         # Navigation Buttons
                   5784:         $nav_links = '<p>';
                   5785:         if (($curr->{'page'} > 1) || ($more_records)) {
                   5786:             if ($curr->{'page'} > 1) {
                   5787:                 $nav_links .= '<input type="button"'
                   5788:                              .' onclick="javascript:chgPage('."'previous'".');"'
                   5789:                              .' value="'.&mt('Previous [_1] changes',$curr->{'show'})
                   5790:                              .'" /> ';
                   5791:             }
                   5792:             if ($more_records) {
                   5793:                 $nav_links .= '<input type="button"'
                   5794:                              .' onclick="javascript:chgPage('."'next'".');"'
                   5795:                              .' value="'.&mt('Next [_1] changes',$curr->{'show'})
                   5796:                              .'" />';
                   5797:             }
1.301     bisitz   5798:         }
1.327     raeburn  5799:         $nav_links .= '</p>';
1.301     bisitz   5800:     }
1.327     raeburn  5801:     return ($nav_script,$nav_links);
1.239     raeburn  5802: }
                   5803: 
                   5804: sub role_display_filter {
1.363     raeburn  5805:     my ($context,$formname,$cdom,$cnum,$curr,$version,$crstype) = @_;
                   5806:     my $lctype;
                   5807:     if ($context eq 'course') {
                   5808:         $lctype = lc($crstype);
                   5809:     }
1.239     raeburn  5810:     my $nolink = 1;
                   5811:     my $output = '<table><tr><td valign="top">'.
1.301     bisitz   5812:                  '<span class="LC_nobreak"><b>'.&mt('Changes/page:').'</b></span><br />'.
1.239     raeburn  5813:                  &Apache::lonmeta::selectbox('show',$curr->{'show'},undef,
                   5814:                                               (&mt('all'),5,10,20,50,100,1000,10000)).
                   5815:                  '</td><td>&nbsp;&nbsp;</td>';
                   5816:     my $startform =
                   5817:         &Apache::lonhtmlcommon::date_setter($formname,'rolelog_start_date',
                   5818:                                             $curr->{'rolelog_start_date'},undef,
                   5819:                                             undef,undef,undef,undef,undef,undef,$nolink);
                   5820:     my $endform =
                   5821:         &Apache::lonhtmlcommon::date_setter($formname,'rolelog_end_date',
                   5822:                                             $curr->{'rolelog_end_date'},undef,
                   5823:                                             undef,undef,undef,undef,undef,undef,$nolink);
1.363     raeburn  5824:     my %lt = &rolechg_contexts($context,$crstype);
1.301     bisitz   5825:     $output .= '<td valign="top"><b>'.&mt('Window during which changes occurred:').'</b><br />'.
                   5826:                '<table><tr><td>'.&mt('After:').
                   5827:                '</td><td>'.$startform.'</td></tr>'.
                   5828:                '<tr><td>'.&mt('Before:').'</td>'.
                   5829:                '<td>'.$endform.'</td></tr></table>'.
                   5830:                '</td>'.
                   5831:                '<td>&nbsp;&nbsp;</td>'.
1.239     raeburn  5832:                '<td valign="top"><b>'.&mt('Role:').'</b><br />'.
                   5833:                '<select name="role"><option value="any"';
                   5834:     if ($curr->{'role'} eq 'any') {
                   5835:         $output .= ' selected="selected"';
                   5836:     }
                   5837:     $output .=  '>'.&mt('Any').'</option>'."\n";
1.363     raeburn  5838:     my @roles = &Apache::lonuserutils::roles_by_context($context,1,$crstype);
1.239     raeburn  5839:     foreach my $role (@roles) {
                   5840:         my $plrole;
                   5841:         if ($role eq 'cr') {
                   5842:             $plrole = &mt('Custom Role');
                   5843:         } else {
1.318     raeburn  5844:             $plrole=&Apache::lonnet::plaintext($role,$crstype);
1.239     raeburn  5845:         }
                   5846:         my $selstr = '';
                   5847:         if ($role eq $curr->{'role'}) {
                   5848:             $selstr = ' selected="selected"';
                   5849:         }
                   5850:         $output .= '  <option value="'.$role.'"'.$selstr.'>'.$plrole.'</option>';
                   5851:     }
1.301     bisitz   5852:     $output .= '</select></td>'.
                   5853:                '<td>&nbsp;&nbsp;</td>'.
                   5854:                '<td valign="top"><b>'.
1.239     raeburn  5855:                &mt('Context:').'</b><br /><select name="chgcontext">';
1.363     raeburn  5856:     my @posscontexts;
                   5857:     if ($context eq 'course') {
                   5858:         @posscontexts = ('any','auto','updatenow','createcourse','course','domain','selfenroll','requestcourses');
                   5859:     } elsif ($context eq 'domain') {
                   5860:         @posscontexts = ('any','domain','requestauthor','domconfig','server');
                   5861:     } else {
                   5862:         @posscontexts = ('any','author','domain');
                   5863:     } 
                   5864:     foreach my $chgtype (@posscontexts) {
1.239     raeburn  5865:         my $selstr = '';
                   5866:         if ($curr->{'chgcontext'} eq $chgtype) {
1.301     bisitz   5867:             $selstr = ' selected="selected"';
1.239     raeburn  5868:         }
1.363     raeburn  5869:         if ($context eq 'course') {
                   5870:             if (($chgtype eq 'auto') || ($chgtype eq 'updatenow')) {
                   5871:                 next if (!&Apache::lonnet::auto_run($cnum,$cdom));
                   5872:             }
1.239     raeburn  5873:         }
                   5874:         $output .= '<option value="'.$chgtype.'"'.$selstr.'>'.$lt{$chgtype}.'</option>'."\n";
1.248     raeburn  5875:     }
1.303     bisitz   5876:     $output .= '</select></td>'
                   5877:               .'</tr></table>';
                   5878: 
                   5879:     # Update Display button
                   5880:     $output .= '<p>'
                   5881:               .'<input type="submit" value="'.&mt('Update Display').'" />'
                   5882:               .'</p>';
                   5883: 
                   5884:     # Server version info
1.363     raeburn  5885:     my $needsrev = '2.11.0';
                   5886:     if ($context eq 'course') {
                   5887:         $needsrev = '2.7.0';
                   5888:     }
                   5889:     
1.303     bisitz   5890:     $output .= '<p class="LC_info">'
                   5891:               .&mt('Only changes made from servers running LON-CAPA [_1] or later are displayed.'
1.363     raeburn  5892:                   ,$needsrev);
1.248     raeburn  5893:     if ($version) {
1.303     bisitz   5894:         $output .= ' '.&mt('This LON-CAPA server is version [_1]',$version);
                   5895:     }
                   5896:     $output .= '</p><hr />';
1.239     raeburn  5897:     return $output;
                   5898: }
                   5899: 
                   5900: sub rolechg_contexts {
1.363     raeburn  5901:     my ($context,$crstype) = @_;
                   5902:     my %lt;
                   5903:     if ($context eq 'course') {
                   5904:         %lt = &Apache::lonlocal::texthash (
1.239     raeburn  5905:                                              any          => 'Any',
                   5906:                                              auto         => 'Automated enrollment',
                   5907:                                              updatenow    => 'Roster Update',
                   5908:                                              createcourse => 'Course Creation',
                   5909:                                              course       => 'User Management in course',
                   5910:                                              domain       => 'User Management in domain',
1.313     raeburn  5911:                                              selfenroll   => 'Self-enrolled',
1.318     raeburn  5912:                                              requestcourses => 'Course Request',
1.239     raeburn  5913:                                          );
1.363     raeburn  5914:         if ($crstype eq 'Community') {
                   5915:             $lt{'createcourse'} = &mt('Community Creation');
                   5916:             $lt{'course'} = &mt('User Management in community');
                   5917:             $lt{'requestcourses'} = &mt('Community Request');
                   5918:         }
                   5919:     } elsif ($context eq 'domain') {
                   5920:         %lt = &Apache::lonlocal::texthash (
                   5921:                                              any           => 'Any',
                   5922:                                              domain        => 'User Management in domain',
                   5923:                                              requestauthor => 'Authoring Request',
                   5924:                                              server        => 'Command line script (DC role)',
                   5925:                                              domconfig     => 'Self-enrolled',
                   5926:                                          );
                   5927:     } else {
                   5928:         %lt = &Apache::lonlocal::texthash (
                   5929:                                              any    => 'Any',
                   5930:                                              domain => 'User Management in domain',
                   5931:                                              author => 'User Management by author',
                   5932:                                          );
                   5933:     } 
1.239     raeburn  5934:     return %lt;
                   5935: }
                   5936: 
1.27      matthew  5937: #-------------------------------------------------- functions for &phase_two
1.160     raeburn  5938: sub user_search_result {
1.221     raeburn  5939:     my ($context,$srch) = @_;
1.160     raeburn  5940:     my %allhomes;
                   5941:     my %inst_matches;
                   5942:     my %srch_results;
1.181     raeburn  5943:     my ($response,$currstate,$forcenewuser,$dirsrchres);
1.183     raeburn  5944:     $srch->{'srchterm'} =~ s/\s+/ /g;
1.176     raeburn  5945:     if ($srch->{'srchby'} !~ /^(uname|lastname|lastfirst)$/) {
1.160     raeburn  5946:         $response = &mt('Invalid search.');
                   5947:     }
                   5948:     if ($srch->{'srchin'} !~ /^(crs|dom|alc|instd)$/) {
                   5949:         $response = &mt('Invalid search.');
                   5950:     }
1.177     raeburn  5951:     if ($srch->{'srchtype'} !~ /^(exact|contains|begins)$/) {
1.160     raeburn  5952:         $response = &mt('Invalid search.');
                   5953:     }
                   5954:     if ($srch->{'srchterm'} eq '') {
                   5955:         $response = &mt('You must enter a search term.');
                   5956:     }
1.183     raeburn  5957:     if ($srch->{'srchterm'} =~ /^\s+$/) {
                   5958:         $response = &mt('Your search term must contain more than just spaces.');
                   5959:     }
1.160     raeburn  5960:     if (($srch->{'srchin'} eq 'dom') || ($srch->{'srchin'} eq 'instd')) {
                   5961:         if (($srch->{'srchdomain'} eq '') || 
1.163     albertel 5962: 	    ! (&Apache::lonnet::domain($srch->{'srchdomain'}))) {
1.160     raeburn  5963:             $response = &mt('You must specify a valid domain when searching in a domain or institutional directory.')
                   5964:         }
                   5965:     }
                   5966:     if (($srch->{'srchin'} eq 'dom') || ($srch->{'srchin'} eq 'crs') ||
                   5967:         ($srch->{'srchin'} eq 'alc')) {
1.176     raeburn  5968:         if ($srch->{'srchby'} eq 'uname') {
1.243     raeburn  5969:             my $unamecheck = $srch->{'srchterm'};
                   5970:             if ($srch->{'srchtype'} eq 'contains') {
                   5971:                 if ($unamecheck !~ /^\w/) {
                   5972:                     $unamecheck = 'a'.$unamecheck; 
                   5973:                 }
                   5974:             }
                   5975:             if ($unamecheck !~ /^$match_username$/) {
1.176     raeburn  5976:                 $response = &mt('You must specify a valid username. Only the following are allowed: letters numbers - . @');
                   5977:             }
1.160     raeburn  5978:         }
                   5979:     }
1.180     raeburn  5980:     if ($response ne '') {
                   5981:         $response = '<span class="LC_warning">'.$response.'</span>';
                   5982:     }
1.160     raeburn  5983:     if ($srch->{'srchin'} eq 'instd') {
                   5984:         my $instd_chk = &directorysrch_check($srch);
                   5985:         if ($instd_chk ne 'ok') {
1.180     raeburn  5986:             $response = '<span class="LC_warning">'.$instd_chk.'</span>'.
                   5987:                         '<br />'.&mt('You may want to search in the LON-CAPA domain instead of the institutional directory.').'<br /><br />';
1.160     raeburn  5988:         }
                   5989:     }
                   5990:     if ($response ne '') {
1.180     raeburn  5991:         return ($currstate,$response);
1.160     raeburn  5992:     }
                   5993:     if ($srch->{'srchby'} eq 'uname') {
                   5994:         if (($srch->{'srchin'} eq 'dom') || ($srch->{'srchin'} eq 'crs')) {
                   5995:             if ($env{'form.forcenew'}) {
                   5996:                 if ($srch->{'srchdomain'} ne $env{'request.role.domain'}) {
                   5997:                     my $uhome=&Apache::lonnet::homeserver($srch->{'srchterm'},$srch->{'srchdomain'});
                   5998:                     if ($uhome eq 'no_host') {
                   5999:                         my $domdesc = &Apache::lonnet::domain($env{'request.role.domain'},'description');
1.180     raeburn  6000:                         my $showdom = &display_domain_info($env{'request.role.domain'});
                   6001:                         $response = &mt('New users can only be created in the domain to which your current role belongs - [_1].',$showdom);
1.160     raeburn  6002:                     } else {
1.179     raeburn  6003:                         $currstate = 'modify';
1.160     raeburn  6004:                     }
                   6005:                 } else {
1.179     raeburn  6006:                     $currstate = 'modify';
1.160     raeburn  6007:                 }
                   6008:             } else {
                   6009:                 if ($srch->{'srchin'} eq 'dom') {
1.162     raeburn  6010:                     if ($srch->{'srchtype'} eq 'exact') {
                   6011:                         my $uhome=&Apache::lonnet::homeserver($srch->{'srchterm'},$srch->{'srchdomain'});
                   6012:                         if ($uhome eq 'no_host') {
1.179     raeburn  6013:                             ($currstate,$response,$forcenewuser) =
1.221     raeburn  6014:                                 &build_search_response($context,$srch,%srch_results);
1.162     raeburn  6015:                         } else {
1.179     raeburn  6016:                             $currstate = 'modify';
1.310     raeburn  6017:                             my $uname = $srch->{'srchterm'};
                   6018:                             my $udom = $srch->{'srchdomain'};
                   6019:                             $srch_results{$uname.':'.$udom} =
                   6020:                                 { &Apache::lonnet::get('environment',
                   6021:                                                        ['firstname',
                   6022:                                                         'lastname',
                   6023:                                                         'permanentemail'],
                   6024:                                                          $udom,$uname)
                   6025:                                 };
1.162     raeburn  6026:                         }
                   6027:                     } else {
                   6028:                         %srch_results = &Apache::lonnet::usersearch($srch);
1.179     raeburn  6029:                         ($currstate,$response,$forcenewuser) =
1.221     raeburn  6030:                             &build_search_response($context,$srch,%srch_results);
1.160     raeburn  6031:                     }
                   6032:                 } else {
1.167     albertel 6033:                     my $courseusers = &get_courseusers();
1.162     raeburn  6034:                     if ($srch->{'srchtype'} eq 'exact') {
1.167     albertel 6035:                         if (exists($courseusers->{$srch->{'srchterm'}.':'.$srch->{'srchdomain'}})) {
1.179     raeburn  6036:                             $currstate = 'modify';
1.162     raeburn  6037:                         } else {
1.179     raeburn  6038:                             ($currstate,$response,$forcenewuser) =
1.221     raeburn  6039:                                 &build_search_response($context,$srch,%srch_results);
1.162     raeburn  6040:                         }
1.160     raeburn  6041:                     } else {
1.167     albertel 6042:                         foreach my $user (keys(%$courseusers)) {
1.162     raeburn  6043:                             my ($cuname,$cudomain) = split(/:/,$user);
                   6044:                             if ($cudomain eq $srch->{'srchdomain'}) {
1.177     raeburn  6045:                                 my $matched = 0;
                   6046:                                 if ($srch->{'srchtype'} eq 'begins') {
                   6047:                                     if ($cuname =~ /^\Q$srch->{'srchterm'}\E/i) {
                   6048:                                         $matched = 1;
                   6049:                                     }
                   6050:                                 } else {
                   6051:                                     if ($cuname =~ /\Q$srch->{'srchterm'}\E/i) {
                   6052:                                         $matched = 1;
                   6053:                                     }
                   6054:                                 }
                   6055:                                 if ($matched) {
1.167     albertel 6056:                                     $srch_results{$user} = 
                   6057: 					{&Apache::lonnet::get('environment',
                   6058: 							     ['firstname',
                   6059: 							      'lastname',
1.194     albertel 6060: 							      'permanentemail'],
                   6061: 							      $cudomain,$cuname)};
1.162     raeburn  6062:                                 }
                   6063:                             }
                   6064:                         }
1.179     raeburn  6065:                         ($currstate,$response,$forcenewuser) =
1.221     raeburn  6066:                             &build_search_response($context,$srch,%srch_results);
1.160     raeburn  6067:                     }
                   6068:                 }
                   6069:             }
                   6070:         } elsif ($srch->{'srchin'} eq 'alc') {
1.179     raeburn  6071:             $currstate = 'query';
1.160     raeburn  6072:         } elsif ($srch->{'srchin'} eq 'instd') {
1.181     raeburn  6073:             ($dirsrchres,%srch_results) = &Apache::lonnet::inst_directory_query($srch);
                   6074:             if ($dirsrchres eq 'ok') {
                   6075:                 ($currstate,$response,$forcenewuser) = 
1.221     raeburn  6076:                     &build_search_response($context,$srch,%srch_results);
1.181     raeburn  6077:             } else {
                   6078:                 my $showdom = &display_domain_info($srch->{'srchdomain'});
                   6079:                 $response = '<span class="LC_warning">'.
                   6080:                     &mt('Institutional directory search is not available in domain: [_1]',$showdom).
                   6081:                     '</span><br />'.
                   6082:                     &mt('You may want to search in the LON-CAPA domain instead of the institutional directory.').
                   6083:                     '<br /><br />'; 
                   6084:             }
1.160     raeburn  6085:         }
                   6086:     } else {
                   6087:         if ($srch->{'srchin'} eq 'dom') {
                   6088:             %srch_results = &Apache::lonnet::usersearch($srch);
1.179     raeburn  6089:             ($currstate,$response,$forcenewuser) = 
1.221     raeburn  6090:                 &build_search_response($context,$srch,%srch_results); 
1.160     raeburn  6091:         } elsif ($srch->{'srchin'} eq 'crs') {
1.167     albertel 6092:             my $courseusers = &get_courseusers(); 
                   6093:             foreach my $user (keys(%$courseusers)) {
1.160     raeburn  6094:                 my ($uname,$udom) = split(/:/,$user);
                   6095:                 my %names = &Apache::loncommon::getnames($uname,$udom);
                   6096:                 my %emails = &Apache::loncommon::getemails($uname,$udom);
                   6097:                 if ($srch->{'srchby'} eq 'lastname') {
                   6098:                     if ((($srch->{'srchtype'} eq 'exact') && 
                   6099:                          ($names{'lastname'} eq $srch->{'srchterm'})) || 
1.177     raeburn  6100:                         (($srch->{'srchtype'} eq 'begins') &&
                   6101:                          ($names{'lastname'} =~ /^\Q$srch->{'srchterm'}\E/i)) ||
1.160     raeburn  6102:                         (($srch->{'srchtype'} eq 'contains') &&
                   6103:                          ($names{'lastname'} =~ /\Q$srch->{'srchterm'}\E/i))) {
                   6104:                         $srch_results{$user} = {firstname => $names{'firstname'},
                   6105:                                             lastname => $names{'lastname'},
                   6106:                                             permanentemail => $emails{'permanentemail'},
                   6107:                                            };
                   6108:                     }
                   6109:                 } elsif ($srch->{'srchby'} eq 'lastfirst') {
                   6110:                     my ($srchlast,$srchfirst) = split(/,/,$srch->{'srchterm'});
1.177     raeburn  6111:                     $srchlast =~ s/\s+$//;
                   6112:                     $srchfirst =~ s/^\s+//;
1.160     raeburn  6113:                     if ($srch->{'srchtype'} eq 'exact') {
                   6114:                         if (($names{'lastname'} eq $srchlast) &&
                   6115:                             ($names{'firstname'} eq $srchfirst)) {
                   6116:                             $srch_results{$user} = {firstname => $names{'firstname'},
                   6117:                                                 lastname => $names{'lastname'},
                   6118:                                                 permanentemail => $emails{'permanentemail'},
                   6119: 
                   6120:                                            };
                   6121:                         }
1.177     raeburn  6122:                     } elsif ($srch->{'srchtype'} eq 'begins') {
                   6123:                         if (($names{'lastname'} =~ /^\Q$srchlast\E/i) &&
                   6124:                             ($names{'firstname'} =~ /^\Q$srchfirst\E/i)) {
                   6125:                             $srch_results{$user} = {firstname => $names{'firstname'},
                   6126:                                                 lastname => $names{'lastname'},
                   6127:                                                 permanentemail => $emails{'permanentemail'},
                   6128:                                                };
                   6129:                         }
                   6130:                     } else {
1.160     raeburn  6131:                         if (($names{'lastname'} =~ /\Q$srchlast\E/i) && 
                   6132:                             ($names{'firstname'} =~ /\Q$srchfirst\E/i)) {
                   6133:                             $srch_results{$user} = {firstname => $names{'firstname'},
                   6134:                                                 lastname => $names{'lastname'},
                   6135:                                                 permanentemail => $emails{'permanentemail'},
                   6136:                                                };
                   6137:                         }
                   6138:                     }
                   6139:                 }
                   6140:             }
1.179     raeburn  6141:             ($currstate,$response,$forcenewuser) = 
1.221     raeburn  6142:                 &build_search_response($context,$srch,%srch_results); 
1.160     raeburn  6143:         } elsif ($srch->{'srchin'} eq 'alc') {
1.179     raeburn  6144:             $currstate = 'query';
1.160     raeburn  6145:         } elsif ($srch->{'srchin'} eq 'instd') {
1.181     raeburn  6146:             ($dirsrchres,%srch_results) = &Apache::lonnet::inst_directory_query($srch); 
                   6147:             if ($dirsrchres eq 'ok') {
                   6148:                 ($currstate,$response,$forcenewuser) = 
1.221     raeburn  6149:                     &build_search_response($context,$srch,%srch_results);
1.181     raeburn  6150:             } else {
                   6151:                 my $showdom = &display_domain_info($srch->{'srchdomain'});                $response = '<span class="LC_warning">'.
                   6152:                     &mt('Institutional directory search is not available in domain: [_1]',$showdom).
                   6153:                     '</span><br />'.
                   6154:                     &mt('You may want to search in the LON-CAPA domain instead of the institutional directory.').
                   6155:                     '<br /><br />';
                   6156:             }
1.160     raeburn  6157:         }
                   6158:     }
1.179     raeburn  6159:     return ($currstate,$response,$forcenewuser,\%srch_results);
1.160     raeburn  6160: }
                   6161: 
                   6162: sub directorysrch_check {
                   6163:     my ($srch) = @_;
                   6164:     my $can_search = 0;
                   6165:     my $response;
                   6166:     my %dom_inst_srch = &Apache::lonnet::get_dom('configuration',
                   6167:                                              ['directorysrch'],$srch->{'srchdomain'});
1.180     raeburn  6168:     my $showdom = &display_domain_info($srch->{'srchdomain'});
1.160     raeburn  6169:     if (ref($dom_inst_srch{'directorysrch'}) eq 'HASH') {
                   6170:         if (!$dom_inst_srch{'directorysrch'}{'available'}) {
1.180     raeburn  6171:             return &mt('Institutional directory search is not available in domain: [_1]',$showdom); 
1.160     raeburn  6172:         }
                   6173:         if ($dom_inst_srch{'directorysrch'}{'localonly'}) {
                   6174:             if ($env{'request.role.domain'} ne $srch->{'srchdomain'}) {
1.180     raeburn  6175:                 return &mt('Institutional directory search in domain: [_1] is only allowed for users with a current role in the domain.',$showdom); 
1.160     raeburn  6176:             }
                   6177:             my @usertypes = split(/:/,$env{'environment.inststatus'});
                   6178:             if (!@usertypes) {
                   6179:                 push(@usertypes,'default');
                   6180:             }
                   6181:             if (ref($dom_inst_srch{'directorysrch'}{'cansearch'}) eq 'ARRAY') {
                   6182:                 foreach my $type (@usertypes) {
                   6183:                     if (grep(/^\Q$type\E$/,@{$dom_inst_srch{'directorysrch'}{'cansearch'}})) {
                   6184:                         $can_search = 1;
                   6185:                         last;
                   6186:                     }
                   6187:                 }
                   6188:             }
                   6189:             if (!$can_search) {
                   6190:                 my ($insttypes,$order) = &Apache::lonnet::retrieve_inst_usertypes($srch->{'srchdomain'});
                   6191:                 my @longtypes; 
                   6192:                 foreach my $item (@usertypes) {
1.229     raeburn  6193:                     if (defined($insttypes->{$item})) { 
                   6194:                         push (@longtypes,$insttypes->{$item});
                   6195:                     } elsif ($item eq 'default') {
                   6196:                         push (@longtypes,&mt('other')); 
                   6197:                     }
1.160     raeburn  6198:                 }
                   6199:                 my $insttype_str = join(', ',@longtypes); 
1.180     raeburn  6200:                 return &mt('Institutional directory search in domain: [_1] is not available to your user type: ',$showdom).$insttype_str;
1.229     raeburn  6201:             }
1.160     raeburn  6202:         } else {
                   6203:             $can_search = 1;
                   6204:         }
                   6205:     } else {
1.180     raeburn  6206:         return &mt('Institutional directory search has not been configured for domain: [_1]',$showdom);
1.160     raeburn  6207:     }
                   6208:     my %longtext = &Apache::lonlocal::texthash (
1.167     albertel 6209:                        uname     => 'username',
1.160     raeburn  6210:                        lastfirst => 'last name, first name',
1.167     albertel 6211:                        lastname  => 'last name',
1.172     raeburn  6212:                        contains  => 'contains',
1.178     raeburn  6213:                        exact     => 'as exact match to',
                   6214:                        begins    => 'begins with',
1.160     raeburn  6215:                    );
                   6216:     if ($can_search) {
                   6217:         if (ref($dom_inst_srch{'directorysrch'}{'searchby'}) eq 'ARRAY') {
                   6218:             if (!grep(/^\Q$srch->{'srchby'}\E$/,@{$dom_inst_srch{'directorysrch'}{'searchby'}})) {
1.180     raeburn  6219:                 return &mt('Institutional directory search in domain: [_1] is not available for searching by "[_2]"',$showdom,$longtext{$srch->{'srchby'}});
1.160     raeburn  6220:             }
                   6221:         } else {
1.180     raeburn  6222:             return &mt('Institutional directory search in domain: [_1] is not available.', $showdom);
1.160     raeburn  6223:         }
                   6224:     }
                   6225:     if ($can_search) {
1.178     raeburn  6226:         if (ref($dom_inst_srch{'directorysrch'}{'searchtypes'}) eq 'ARRAY') {
                   6227:             if (grep(/^\Q$srch->{'srchtype'}\E/,@{$dom_inst_srch{'directorysrch'}{'searchtypes'}})) {
                   6228:                 return 'ok';
                   6229:             } else {
1.180     raeburn  6230:                 return &mt('Institutional directory search in domain [_1] is not available for the requested search type: "[_2]"',$showdom,$longtext{$srch->{'srchtype'}});
1.178     raeburn  6231:             }
                   6232:         } else {
                   6233:             if ((($dom_inst_srch{'directorysrch'}{'searchtypes'} eq 'specify') &&
                   6234:                  ($srch->{'srchtype'} eq 'exact' || $srch->{'srchtype'} eq 'contains')) ||
                   6235:                 ($dom_inst_srch{'directorysrch'}{'searchtypes'} eq $srch->{'srchtype'})) {
                   6236:                 return 'ok';
                   6237:             } else {
1.180     raeburn  6238:                 return &mt('Institutional directory search in domain [_1] is not available for the requested search type: "[_2]"',$showdom,$longtext{$srch->{'srchtype'}});
1.178     raeburn  6239:             }
1.160     raeburn  6240:         }
                   6241:     }
                   6242: }
                   6243: 
                   6244: sub get_courseusers {
                   6245:     my %advhash;
1.167     albertel 6246:     my $classlist = &Apache::loncoursedata::get_classlist();
1.160     raeburn  6247:     my %coursepersonnel=&Apache::lonnet::get_course_adv_roles();
                   6248:     foreach my $role (sort(keys(%coursepersonnel))) {
                   6249:         foreach my $user (split(/\,/,$coursepersonnel{$role})) {
1.167     albertel 6250: 	    if (!exists($classlist->{$user})) {
                   6251: 		$classlist->{$user} = [];
                   6252: 	    }
1.160     raeburn  6253:         }
                   6254:     }
1.167     albertel 6255:     return $classlist;
1.160     raeburn  6256: }
                   6257: 
                   6258: sub build_search_response {
1.221     raeburn  6259:     my ($context,$srch,%srch_results) = @_;
1.179     raeburn  6260:     my ($currstate,$response,$forcenewuser);
1.160     raeburn  6261:     my %names = (
1.330     bisitz   6262:           'uname'     => 'username',
                   6263:           'lastname'  => 'last name',
1.160     raeburn  6264:           'lastfirst' => 'last name, first name',
1.330     bisitz   6265:           'crs'       => 'this course',
                   6266:           'dom'       => 'LON-CAPA domain',
                   6267:           'instd'     => 'the institutional directory for domain',
1.160     raeburn  6268:     );
                   6269: 
                   6270:     my %single = (
1.180     raeburn  6271:                    begins   => 'A match',
1.160     raeburn  6272:                    contains => 'A match',
1.180     raeburn  6273:                    exact    => 'An exact match',
1.160     raeburn  6274:                  );
                   6275:     my %nomatch = (
1.180     raeburn  6276:                    begins   => 'No match',
1.160     raeburn  6277:                    contains => 'No match',
1.180     raeburn  6278:                    exact    => 'No exact match',
1.160     raeburn  6279:                   );
                   6280:     if (keys(%srch_results) > 1) {
1.179     raeburn  6281:         $currstate = 'select';
1.160     raeburn  6282:     } else {
                   6283:         if (keys(%srch_results) == 1) {
1.179     raeburn  6284:             $currstate = 'modify';
1.180     raeburn  6285:             $response = &mt("$single{$srch->{'srchtype'}} was found for the $names{$srch->{'srchby'}} ([_1]) in $names{$srch->{'srchin'}}.",$srch->{'srchterm'});
                   6286:             if ($srch->{'srchin'} eq 'dom' || $srch->{'srchin'} eq 'instd') {
1.330     bisitz   6287:                 $response .= ': '.&display_domain_info($srch->{'srchdomain'});
1.180     raeburn  6288:             }
1.330     bisitz   6289:         } else { # Search has nothing found. Prepare message to user.
                   6290:             $response = '<span class="LC_warning">';
1.180     raeburn  6291:             if ($srch->{'srchin'} eq 'dom' || $srch->{'srchin'} eq 'instd') {
1.330     bisitz   6292:                 $response .= &mt("$nomatch{$srch->{'srchtype'}} found for the $names{$srch->{'srchby'}} [_1] in $names{$srch->{'srchin'}}: [_2]",
                   6293:                                  '<b>'.$srch->{'srchterm'}.'</b>',
                   6294:                                  &display_domain_info($srch->{'srchdomain'}));
                   6295:             } else {
                   6296:                 $response .= &mt("$nomatch{$srch->{'srchtype'}} found for the $names{$srch->{'srchby'}} [_1] in $names{$srch->{'srchin'}}.",
                   6297:                                  '<b>'.$srch->{'srchterm'}.'</b>');
1.180     raeburn  6298:             }
                   6299:             $response .= '</span>';
1.330     bisitz   6300: 
1.160     raeburn  6301:             if ($srch->{'srchin'} ne 'alc') {
                   6302:                 $forcenewuser = 1;
                   6303:                 my $cansrchinst = 0; 
                   6304:                 if ($srch->{'srchdomain'}) {
                   6305:                     my %domconfig = &Apache::lonnet::get_dom('configuration',['directorysrch'],$srch->{'srchdomain'});
                   6306:                     if (ref($domconfig{'directorysrch'}) eq 'HASH') {
                   6307:                         if ($domconfig{'directorysrch'}{'available'}) {
                   6308:                             $cansrchinst = 1;
                   6309:                         } 
                   6310:                     }
                   6311:                 }
1.180     raeburn  6312:                 if ((($srch->{'srchby'} eq 'lastfirst') || 
                   6313:                      ($srch->{'srchby'} eq 'lastname')) &&
                   6314:                     ($srch->{'srchin'} eq 'dom')) {
                   6315:                     if ($cansrchinst) {
                   6316:                         $response .= '<br />'.&mt('You may want to broaden your search to a search of the institutional directory for the domain.');
1.160     raeburn  6317:                     }
                   6318:                 }
1.180     raeburn  6319:                 if ($srch->{'srchin'} eq 'crs') {
                   6320:                     $response .= '<br />'.&mt('You may want to broaden your search to the selected LON-CAPA domain.');
                   6321:                 }
                   6322:             }
1.305     raeburn  6323:             my $createdom = $env{'request.role.domain'};
                   6324:             if ($context eq 'requestcrs') {
                   6325:                 if ($env{'form.coursedom'} ne '') {
                   6326:                     $createdom = $env{'form.coursedom'};
                   6327:                 }
                   6328:             }
                   6329:             if (!($srch->{'srchby'} eq 'uname' && $srch->{'srchin'} eq 'dom' && $srch->{'srchtype'} eq 'exact' && $srch->{'srchdomain'} eq $createdom)) {
1.221     raeburn  6330:                 my $cancreate =
1.305     raeburn  6331:                     &Apache::lonuserutils::can_create_user($createdom,$context);
                   6332:                 my $targetdom = '<span class="LC_cusr_emph">'.$createdom.'</span>';
1.221     raeburn  6333:                 if ($cancreate) {
1.305     raeburn  6334:                     my $showdom = &display_domain_info($createdom); 
1.266     bisitz   6335:                     $response .= '<br /><br />'
                   6336:                                 .'<b>'.&mt('To add a new user:').'</b>'
1.305     raeburn  6337:                                 .'<br />';
                   6338:                     if ($context eq 'requestcrs') {
                   6339:                         $response .= &mt("(You can only define new users in the new course's domain - [_1])",$targetdom);
                   6340:                     } else {
                   6341:                         $response .= &mt("(You can only create new users in your current role's domain - [_1])",$targetdom);
                   6342:                     }
                   6343:                     $response .='<ul><li>'
1.266     bisitz   6344:                                 .&mt("Set 'Domain/institution to search' to: [_1]",'<span class="LC_cusr_emph">'.$showdom.'</span>')
                   6345:                                 .'</li><li>'
                   6346:                                 .&mt("Set 'Search criteria' to: [_1]username is ..... in selected LON-CAPA domain[_2]",'<span class="LC_cusr_emph">','</span>')
                   6347:                                 .'</li><li>'
                   6348:                                 .&mt('Provide the proposed username')
                   6349:                                 .'</li><li>'
                   6350:                                 .&mt("Click 'Search'")
                   6351:                                 .'</li></ul><br />';
1.221     raeburn  6352:                 } else {
                   6353:                     my $helplink = ' href="javascript:helpMenu('."'display'".')"';
1.305     raeburn  6354:                     $response .= '<br /><br />';
                   6355:                     if ($context eq 'requestcrs') {
1.314     raeburn  6356:                         $response .= &mt("You are not authorized to define new users in the new course's domain - [_1].",$targetdom);
1.305     raeburn  6357:                     } else {
                   6358:                         $response .= &mt("You are not authorized to create new users in your current role's domain - [_1].",$targetdom);
                   6359:                     }
                   6360:                     $response .= '<br />'
                   6361:                                  .&mt('Please contact the [_1]helpdesk[_2] if you need to create a new user.'
1.266     bisitz   6362:                                     ,' <a'.$helplink.'>'
                   6363:                                     ,'</a>')
1.305     raeburn  6364:                                  .'<br /><br />';
1.221     raeburn  6365:                 }
1.160     raeburn  6366:             }
                   6367:         }
                   6368:     }
1.179     raeburn  6369:     return ($currstate,$response,$forcenewuser);
1.160     raeburn  6370: }
                   6371: 
1.180     raeburn  6372: sub display_domain_info {
                   6373:     my ($dom) = @_;
                   6374:     my $output = $dom;
                   6375:     if ($dom ne '') { 
                   6376:         my $domdesc = &Apache::lonnet::domain($dom,'description');
                   6377:         if ($domdesc ne '') {
                   6378:             $output .= ' <span class="LC_cusr_emph">('.$domdesc.')</span>';
                   6379:         }
                   6380:     }
                   6381:     return $output;
                   6382: }
                   6383: 
1.160     raeburn  6384: sub crumb_utilities {
                   6385:     my %elements = (
                   6386:        crtuser => {
                   6387:            srchterm => 'text',
1.172     raeburn  6388:            srchin => 'selectbox',
1.160     raeburn  6389:            srchby => 'selectbox',
                   6390:            srchtype => 'selectbox',
                   6391:            srchdomain => 'selectbox',
                   6392:        },
1.207     raeburn  6393:        crtusername => {
                   6394:            srchterm => 'text',
                   6395:            srchdomain => 'selectbox',
                   6396:        },
1.160     raeburn  6397:        docustom => {
                   6398:            rolename => 'selectbox',
                   6399:            newrolename => 'textbox',
                   6400:        },
1.179     raeburn  6401:        studentform => {
                   6402:            srchterm => 'text',
                   6403:            srchin => 'selectbox',
                   6404:            srchby => 'selectbox',
                   6405:            srchtype => 'selectbox',
                   6406:            srchdomain => 'selectbox',
                   6407:        },
1.160     raeburn  6408:     );
                   6409: 
                   6410:     my $jsback .= qq|
                   6411: function backPage(formname,prevphase,prevstate) {
1.211     raeburn  6412:     if (typeof prevphase == 'undefined') {
                   6413:         formname.phase.value = '';
                   6414:     }
                   6415:     else {  
                   6416:         formname.phase.value = prevphase;
                   6417:     }
                   6418:     if (typeof prevstate == 'undefined') {
                   6419:         formname.currstate.value = '';
                   6420:     }
                   6421:     else {
                   6422:         formname.currstate.value = prevstate;
                   6423:     }
1.160     raeburn  6424:     formname.submit();
                   6425: }
                   6426: |;
                   6427:     return ($jsback,\%elements);
                   6428: }
                   6429: 
1.26      matthew  6430: sub course_level_table {
1.89      raeburn  6431:     my (%inccourses) = @_;
1.26      matthew  6432:     my $table = '';
1.62      www      6433: # Custom Roles?
                   6434: 
1.190     raeburn  6435:     my %customroles=&Apache::lonuserutils::my_custom_roles();
1.89      raeburn  6436:     my %lt=&Apache::lonlocal::texthash(
                   6437:             'exs'  => "Existing sections",
                   6438:             'new'  => "Define new section",
                   6439:             'ssd'  => "Set Start Date",
                   6440:             'sed'  => "Set End Date",
1.131     raeburn  6441:             'crl'  => "Course Level",
1.89      raeburn  6442:             'act'  => "Activate",
                   6443:             'rol'  => "Role",
                   6444:             'ext'  => "Extent",
1.113     raeburn  6445:             'grs'  => "Section",
1.89      raeburn  6446:             'sta'  => "Start",
                   6447:             'end'  => "End"
                   6448:     );
1.62      www      6449: 
1.329     raeburn  6450:     foreach my $protectedcourse (sort(keys(%inccourses))) {
1.135     raeburn  6451: 	my $thiscourse=$protectedcourse;
1.26      matthew  6452: 	$thiscourse=~s:_:/:g;
                   6453: 	my %coursedata=&Apache::lonnet::coursedescription($thiscourse);
1.365     raeburn  6454:         my $isowner = &Apache::lonuserutils::is_courseowner($protectedcourse,$coursedata{'internal.courseowner'});
1.26      matthew  6455: 	my $area=$coursedata{'description'};
1.321     raeburn  6456:         my $crstype=$coursedata{'type'};
1.135     raeburn  6457: 	if (!defined($area)) { $area=&mt('Unavailable course').': '.$protectedcourse; }
1.89      raeburn  6458: 	my ($domain,$cnum)=split(/\//,$thiscourse);
1.115     albertel 6459:         my %sections_count;
1.101     albertel 6460:         if (defined($env{'request.course.id'})) {
                   6461:             if ($env{'request.course.id'} eq $domain.'_'.$cnum) {
1.115     albertel 6462:                 %sections_count = 
                   6463: 		    &Apache::loncommon::get_sections($domain,$cnum);
1.92      raeburn  6464:             }
                   6465:         }
1.321     raeburn  6466:         my @roles = &Apache::lonuserutils::roles_by_context('course','',$crstype);
1.213     raeburn  6467: 	foreach my $role (@roles) {
1.321     raeburn  6468:             my $plrole=&Apache::lonnet::plaintext($role,$crstype);
1.329     raeburn  6469: 	    if ((&Apache::lonnet::allowed('c'.$role,$thiscourse)) ||
                   6470:                 ((($role eq 'cc') || ($role eq 'co')) && ($isowner))) {
1.221     raeburn  6471:                 $table .= &course_level_row($protectedcourse,$role,$area,$domain,
1.329     raeburn  6472:                                             $plrole,\%sections_count,\%lt);
1.221     raeburn  6473:             } elsif ($env{'request.course.sec'} ne '') {
                   6474:                 if (&Apache::lonnet::allowed('c'.$role,$thiscourse.'/'.
                   6475:                                              $env{'request.course.sec'})) {
                   6476:                     $table .= &course_level_row($protectedcourse,$role,$area,$domain,
                   6477:                                                 $plrole,\%sections_count,\%lt);
1.26      matthew  6478:                 }
                   6479:             }
                   6480:         }
1.221     raeburn  6481:         if (&Apache::lonnet::allowed('ccr',$thiscourse)) {
1.324     raeburn  6482:             foreach my $cust (sort(keys(%customroles))) {
                   6483:                 next if ($crstype eq 'Community' && $customroles{$cust} =~ /bre\&S/);
1.221     raeburn  6484:                 my $role = 'cr_cr_'.$env{'user.domain'}.'_'.$env{'user.name'}.'_'.$cust;
                   6485:                 $table .= &course_level_row($protectedcourse,$role,$area,$domain,
                   6486:                                             $cust,\%sections_count,\%lt);
                   6487:             }
1.62      www      6488: 	}
1.26      matthew  6489:     }
                   6490:     return '' if ($table eq ''); # return nothing if there is nothing 
                   6491:                                  # in the table
1.188     raeburn  6492:     my $result;
                   6493:     if (!$env{'request.course.id'}) {
                   6494:         $result = '<h4>'.$lt{'crl'}.'</h4>'."\n";
                   6495:     }
                   6496:     $result .= 
1.136     raeburn  6497: &Apache::loncommon::start_data_table().
                   6498: &Apache::loncommon::start_data_table_header_row().
                   6499: '<th>'.$lt{'act'}.'</th><th>'.$lt{'rol'}.'</th><th>'.$lt{'ext'}.'</th>
                   6500: <th>'.$lt{'grs'}.'</th><th>'.$lt{'sta'}.'</th><th>'.$lt{'end'}.'</th>'.
                   6501: &Apache::loncommon::end_data_table_header_row().
                   6502: $table.
                   6503: &Apache::loncommon::end_data_table();
1.26      matthew  6504:     return $result;
                   6505: }
1.88      raeburn  6506: 
1.221     raeburn  6507: sub course_level_row {
                   6508:     my ($protectedcourse,$role,$area,$domain,$plrole,$sections_count,$lt) = @_;
1.222     raeburn  6509:     my $row = &Apache::loncommon::start_data_table_row().
                   6510:               ' <td><input type="checkbox" name="act_'.
                   6511:               $protectedcourse.'_'.$role.'" /></td>'."\n".
                   6512:               ' <td>'.$plrole.'</td>'."\n".
                   6513:               ' <td>'.$area.'<br />Domain: '.$domain.'</td>'."\n";
1.322     raeburn  6514:     if (($role eq 'cc') || ($role eq 'co')) {
1.222     raeburn  6515:         $row .= '<td>&nbsp;</td>';
1.221     raeburn  6516:     } elsif ($env{'request.course.sec'} ne '') {
1.222     raeburn  6517:         $row .= ' <td><input type="hidden" value="'.
                   6518:                 $env{'request.course.sec'}.'" '.
                   6519:                 'name="sec_'.$protectedcourse.'_'.$role.'" />'.
                   6520:                 $env{'request.course.sec'}.'</td>';
1.221     raeburn  6521:     } else {
                   6522:         if (ref($sections_count) eq 'HASH') {
                   6523:             my $currsec = 
                   6524:                 &Apache::lonuserutils::course_sections($sections_count,
                   6525:                                                        $protectedcourse.'_'.$role);
1.222     raeburn  6526:             $row .= '<td><table class="LC_createuser">'."\n".
                   6527:                     '<tr class="LC_section_row">'."\n".
                   6528:                     ' <td valign="top">'.$lt->{'exs'}.'<br />'.
                   6529:                        $currsec.'</td>'."\n".
                   6530:                      ' <td>&nbsp;&nbsp;</td>'."\n".
                   6531:                      ' <td valign="top">&nbsp;'.$lt->{'new'}.'<br />'.
1.221     raeburn  6532:                      '<input type="text" name="newsec_'.$protectedcourse.'_'.$role.
                   6533:                      '" value="" />'.
                   6534:                      '<input type="hidden" '.
                   6535:                      'name="sec_'.$protectedcourse.'_'.$role.'" /></td>'."\n".
1.222     raeburn  6536:                      '</tr></table></td>'."\n";
1.221     raeburn  6537:         } else {
1.222     raeburn  6538:             $row .= '<td><input type="text" size="10" '.
                   6539:                       'name="sec_'.$protectedcourse.'_'.$role.'" /></td>'."\n";
1.221     raeburn  6540:         }
                   6541:     }
1.222     raeburn  6542:     $row .= <<ENDTIMEENTRY;
                   6543: <td><input type="hidden" name="start_$protectedcourse\_$role" value="" />
1.221     raeburn  6544: <a href=
                   6545: "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  6546: <td><input type="hidden" name="end_$protectedcourse\_$role" value="" />
1.221     raeburn  6547: <a href=
                   6548: "javascript:pjump('date_end','End Date $plrole',document.cu.end_$protectedcourse\_$role.value,'end_$protectedcourse\_$role','cu.pres','dateset')">$lt->{'sed'}</a></td>
                   6549: ENDTIMEENTRY
1.222     raeburn  6550:     $row .= &Apache::loncommon::end_data_table_row();
                   6551:     return $row;
1.221     raeburn  6552: }
                   6553: 
1.88      raeburn  6554: sub course_level_dc {
                   6555:     my ($dcdom) = @_;
1.190     raeburn  6556:     my %customroles=&Apache::lonuserutils::my_custom_roles();
1.213     raeburn  6557:     my @roles = &Apache::lonuserutils::roles_by_context('course');
1.88      raeburn  6558:     my $hiddenitems = '<input type="hidden" name="dcdomain" value="'.$dcdom.'" />'.
                   6559:                       '<input type="hidden" name="origdom" value="'.$dcdom.'" />'.
1.133     raeburn  6560:                       '<input type="hidden" name="dccourse" value="" />';
1.355     www      6561:     my $courseform=&Apache::loncommon::selectcourse_link
1.356     raeburn  6562:             ('cu','dccourse','dcdomain','coursedesc',undef,undef,'Select','crstype');
1.323     raeburn  6563:     my $cb_jscript = &Apache::loncommon::coursebrowser_javascript($dcdom,'currsec','cu','role','Course/Community Browser');
1.88      raeburn  6564:     my %lt=&Apache::lonlocal::texthash(
                   6565:                     'rol'  => "Role",
1.113     raeburn  6566:                     'grs'  => "Section",
1.88      raeburn  6567:                     'exs'  => "Existing sections",
                   6568:                     'new'  => "Define new section", 
                   6569:                     'sta'  => "Start",
                   6570:                     'end'  => "End",
                   6571:                     'ssd'  => "Set Start Date",
1.355     www      6572:                     'sed'  => "Set End Date",
                   6573:                     'scc'  => "Course/Community"
1.88      raeburn  6574:                   );
1.323     raeburn  6575:     my $header = '<h4>'.&mt('Course/Community Level').'</h4>'.
1.136     raeburn  6576:                  &Apache::loncommon::start_data_table().
                   6577:                  &Apache::loncommon::start_data_table_header_row().
1.355     www      6578:                  '<th>'.$lt{'scc'}.'</th><th>'.$lt{'rol'}.'</th><th>'.$lt{'grs'}.'</th><th>'.$lt{'sta'}.'</th><th>'.$lt{'end'}.'</th>'.
1.136     raeburn  6579:                  &Apache::loncommon::end_data_table_header_row();
1.143     raeburn  6580:     my $otheritems = &Apache::loncommon::start_data_table_row()."\n".
1.356     raeburn  6581:                      '<td><br /><span class="LC_nobreak"><input type="text" name="coursedesc" value="" onfocus="this.blur();opencrsbrowser('."'cu','dccourse','dcdomain','coursedesc','','','','crstype'".')" />'.
                   6582:                      $courseform.('&nbsp;' x4).'</span></td>'."\n".
1.323     raeburn  6583:                      '<td valign><br /><select name="role">'."\n";
1.213     raeburn  6584:     foreach my $role (@roles) {
1.135     raeburn  6585:         my $plrole=&Apache::lonnet::plaintext($role);
                   6586:         $otheritems .= '  <option value="'.$role.'">'.$plrole;
1.88      raeburn  6587:     }
                   6588:     if ( keys %customroles > 0) {
1.135     raeburn  6589:         foreach my $cust (sort keys %customroles) {
1.101     albertel 6590:             my $custrole='cr_cr_'.$env{'user.domain'}.
1.135     raeburn  6591:                     '_'.$env{'user.name'}.'_'.$cust;
                   6592:             $otheritems .= '  <option value="'.$custrole.'">'.$cust;
1.88      raeburn  6593:         }
                   6594:     }
                   6595:     $otheritems .= '</select></td><td>'.
                   6596:                      '<table border="0" cellspacing="0" cellpadding="0">'.
                   6597:                      '<tr><td valign="top"><b>'.$lt{'exs'}.'</b><br /><select name="currsec">'.
                   6598:                      ' <option value=""><--'.&mt('Pick course first').'</select></td>'.
                   6599:                      '<td>&nbsp;&nbsp;</td>'.
                   6600:                      '<td valign="top">&nbsp;<b>'.$lt{'new'}.'</b><br />'.
1.113     raeburn  6601:                      '<input type="text" name="newsec" value="" />'.
1.237     raeburn  6602:                      '<input type="hidden" name="section" value="" />'.
1.323     raeburn  6603:                      '<input type="hidden" name="groups" value="" />'.
                   6604:                      '<input type="hidden" name="crstype" value="" /></td>'.
1.88      raeburn  6605:                      '</tr></table></td>';
                   6606:     $otheritems .= <<ENDTIMEENTRY;
1.323     raeburn  6607: <td><br /><input type="hidden" name="start" value='' />
1.88      raeburn  6608: <a href=
                   6609: "javascript:pjump('date_start','Start Date',document.cu.start.value,'start','cu.pres','dateset')">$lt{'ssd'}</a></td>
1.323     raeburn  6610: <td><br /><input type="hidden" name="end" value='' />
1.88      raeburn  6611: <a href=
                   6612: "javascript:pjump('date_end','End Date',document.cu.end.value,'end','cu.pres','dateset')">$lt{'sed'}</a></td>
                   6613: ENDTIMEENTRY
1.136     raeburn  6614:     $otheritems .= &Apache::loncommon::end_data_table_row().
                   6615:                    &Apache::loncommon::end_data_table()."\n";
1.88      raeburn  6616:     return $cb_jscript.$header.$hiddenitems.$otheritems;
                   6617: }
                   6618: 
1.237     raeburn  6619: sub update_selfenroll_config {
1.241     raeburn  6620:     my ($r,$context,$permission) = @_;
1.237     raeburn  6621:     my ($row,$lt) = &get_selfenroll_titles();
1.241     raeburn  6622:     my %curr_groups = &Apache::longroup::coursegroups();
1.237     raeburn  6623:     my (%changes,%warning);
                   6624:     my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
                   6625:     my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
1.241     raeburn  6626:     my $curr_types;
1.237     raeburn  6627:     if (ref($row) eq 'ARRAY') {
                   6628:         foreach my $item (@{$row}) {
                   6629:             if ($item eq 'enroll_dates') {
                   6630:                 my (%currenrolldate,%newenrolldate);
                   6631:                 foreach my $type ('start','end') {
                   6632:                     $currenrolldate{$type} = $env{'course.'.$env{'request.course.id'}.'.internal.selfenroll_'.$type.'_date'};
                   6633:                     $newenrolldate{$type} = &Apache::lonhtmlcommon::get_date_from_form('selfenroll_'.$type.'_date');
                   6634:                     if ($newenrolldate{$type} ne $currenrolldate{$type}) {
                   6635:                         $changes{'internal.selfenroll_'.$type.'_date'} = $newenrolldate{$type};
                   6636:                     }
                   6637:                 }
                   6638:             } elsif ($item eq 'access_dates') {
                   6639:                 my (%currdate,%newdate);
                   6640:                 foreach my $type ('start','end') {
                   6641:                     $currdate{$type} = $env{'course.'.$env{'request.course.id'}.'.internal.selfenroll_'.$type.'_access'};
                   6642:                     $newdate{$type} = &Apache::lonhtmlcommon::get_date_from_form('selfenroll_'.$type.'_access');
                   6643:                     if ($newdate{$type} ne $currdate{$type}) {
                   6644:                         $changes{'internal.selfenroll_'.$type.'_access'} = $newdate{$type};
                   6645:                     }
                   6646:                 }
1.241     raeburn  6647:             } elsif ($item eq 'types') {
                   6648:                 $curr_types =
                   6649:                     $env{'course.'.$env{'request.course.id'}.'.internal.selfenroll_'.$item};
                   6650:                 if ($env{'form.selfenroll_all'}) {
                   6651:                     if ($curr_types ne '*') {
                   6652:                         $changes{'internal.selfenroll_types'} = '*';
                   6653:                     } else {
                   6654:                         next;
                   6655:                     }
                   6656:                 } else {
1.249     raeburn  6657:                     my %currdoms;
1.241     raeburn  6658:                     my @entries = split(/;/,$curr_types);
                   6659:                     my @deletedoms = &Apache::loncommon::get_env_multiple('form.selfenroll_delete');
1.249     raeburn  6660:                     my @activations = &Apache::loncommon::get_env_multiple('form.selfenroll_activate');
1.241     raeburn  6661:                     my $newnum = 0;
1.249     raeburn  6662:                     my @latesttypes;
                   6663:                     foreach my $num (@activations) {
                   6664:                         my @types = &Apache::loncommon::get_env_multiple('form.selfenroll_types_'.$num);
                   6665:                         if (@types > 0) {
1.241     raeburn  6666:                             @types = sort(@types);
                   6667:                             my $typestr = join(',',@types);
1.249     raeburn  6668:                             my $typedom = $env{'form.selfenroll_dom_'.$num};
                   6669:                             $latesttypes[$newnum] = $typedom.':'.$typestr;
                   6670:                             $currdoms{$typedom} = 1;
1.241     raeburn  6671:                             $newnum ++;
                   6672:                         }
                   6673:                     }
1.338     raeburn  6674:                     for (my $j=0; $j<$env{'form.selfenroll_types_total'}; $j++) {
                   6675:                         if ((!grep(/^$j$/,@deletedoms)) && (!grep(/^$j$/,@activations))) {
1.249     raeburn  6676:                             my @types = &Apache::loncommon::get_env_multiple('form.selfenroll_types_'.$j);
                   6677:                             if (@types > 0) {
                   6678:                                 @types = sort(@types);
                   6679:                                 my $typestr = join(',',@types);
                   6680:                                 my $typedom = $env{'form.selfenroll_dom_'.$j};
                   6681:                                 $latesttypes[$newnum] = $typedom.':'.$typestr;
                   6682:                                 $currdoms{$typedom} = 1;
                   6683:                                 $newnum ++;
                   6684:                             }
                   6685:                         }
                   6686:                     }
                   6687:                     if ($env{'form.selfenroll_newdom'} ne '') {
                   6688:                         my $typedom = $env{'form.selfenroll_newdom'};
                   6689:                         if ((!defined($currdoms{$typedom})) && 
                   6690:                             (&Apache::lonnet::domain($typedom) ne '')) {
                   6691:                             my $typestr;
                   6692:                             my ($othertitle,$usertypes,$types) = 
                   6693:                                 &Apache::loncommon::sorted_inst_types($typedom);
                   6694:                             my $othervalue = 'any';
                   6695:                             if ((ref($types) eq 'ARRAY') && (ref($usertypes) eq 'HASH')) {
                   6696:                                 if (@{$types} > 0) {
1.257     raeburn  6697:                                     my @esc_types = map { &escape($_); } @{$types};
1.249     raeburn  6698:                                     $othervalue = 'other';
1.258     raeburn  6699:                                     $typestr = join(',',(@esc_types,$othervalue));
1.249     raeburn  6700:                                 }
                   6701:                                 $typestr = $othervalue;
                   6702:                             } else {
                   6703:                                 $typestr = $othervalue;
                   6704:                             } 
                   6705:                             $latesttypes[$newnum] = $typedom.':'.$typestr;
                   6706:                             $newnum ++ ;
                   6707:                         }
                   6708:                     }
1.241     raeburn  6709:                     my $selfenroll_types = join(';',@latesttypes);
                   6710:                     if ($selfenroll_types ne $curr_types) {
                   6711:                         $changes{'internal.selfenroll_types'} = $selfenroll_types;
                   6712:                     }
                   6713:                 }
1.276     raeburn  6714:             } elsif ($item eq 'limit') {
                   6715:                 my $newlimit = $env{'form.selfenroll_limit'};
                   6716:                 my $newcap = $env{'form.selfenroll_cap'};
                   6717:                 $newcap =~s/\s+//g;
                   6718:                 my $currlimit =  $env{'course.'.$env{'request.course.id'}.'.internal.selfenroll_limit'};
                   6719:                 $currlimit = 'none' if ($currlimit eq '');
                   6720:                 my $currcap = $env{'course.'.$env{'request.course.id'}.'.internal.selfenroll_cap'};
                   6721:                 if ($newlimit ne $currlimit) {
                   6722:                     if ($newlimit ne 'none') {
                   6723:                         if ($newcap =~ /^\d+$/) {
                   6724:                             if ($newcap ne $currcap) {
                   6725:                                 $changes{'internal.selfenroll_cap'} = $newcap;
                   6726:                             }
                   6727:                             $changes{'internal.selfenroll_limit'} = $newlimit;
                   6728:                         } else {
                   6729:                             $warning{$item} = &mt('Maximum enrollment setting unchanged.').'<br />'.&mt('The value provided was invalid - it must be a positive integer if enrollment is being limited.'); 
                   6730:                         }
                   6731:                     } elsif ($currcap ne '') {
                   6732:                         $changes{'internal.selfenroll_cap'} = '';
                   6733:                         $changes{'internal.selfenroll_limit'} = $newlimit; 
                   6734:                     }
                   6735:                 } elsif ($currlimit ne 'none') {
                   6736:                     if ($newcap =~ /^\d+$/) {
                   6737:                         if ($newcap ne $currcap) {
                   6738:                             $changes{'internal.selfenroll_cap'} = $newcap;
                   6739:                         }
                   6740:                     } else {
                   6741:                         $warning{$item} = &mt('Maximum enrollment setting unchanged.').'<br />'.&mt('The value provided was invalid - it must be a positive integer if enrollment is being limited.');
                   6742:                     }
                   6743:                 }
                   6744:             } elsif ($item eq 'approval') {
                   6745:                 my (@currnotified,@newnotified);
                   6746:                 my $currapproval = $env{'course.'.$env{'request.course.id'}.'.internal.selfenroll_approval'};
                   6747:                 my $currnotifylist = $env{'course.'.$env{'request.course.id'}.'.internal.selfenroll_notifylist'};
                   6748:                 if ($currnotifylist ne '') {
                   6749:                     @currnotified = split(/,/,$currnotifylist);
                   6750:                     @currnotified = sort(@currnotified);
                   6751:                 }
                   6752:                 my $newapproval = $env{'form.selfenroll_approval'};
                   6753:                 @newnotified = &Apache::loncommon::get_env_multiple('form.selfenroll_notify');
                   6754:                 @newnotified = sort(@newnotified);
                   6755:                 if ($newapproval ne $currapproval) {
                   6756:                     $changes{'internal.selfenroll_approval'} = $newapproval;
                   6757:                     if (!$newapproval) {
                   6758:                         if ($currnotifylist ne '') {
                   6759:                             $changes{'internal.selfenroll_notifylist'} = '';
                   6760:                         }
                   6761:                     } else {
                   6762:                         my @differences =  
1.295     raeburn  6763:                             &Apache::loncommon::compare_arrays(\@currnotified,\@newnotified);
1.276     raeburn  6764:                         if (@differences > 0) {
                   6765:                             if (@newnotified > 0) {
                   6766:                                 $changes{'internal.selfenroll_notifylist'} = join(',',@newnotified);
                   6767:                             } else {
                   6768:                                 $changes{'internal.selfenroll_notifylist'} = join(',',@newnotified);
                   6769:                             }
                   6770:                         }
                   6771:                     }
                   6772:                 } else {
1.295     raeburn  6773:                     my @differences = &Apache::loncommon::compare_arrays(\@currnotified,\@newnotified);
1.276     raeburn  6774:                     if (@differences > 0) {
                   6775:                         if (@newnotified > 0) {
                   6776:                             $changes{'internal.selfenroll_notifylist'} = join(',',@newnotified);
                   6777:                         } else {
                   6778:                             $changes{'internal.selfenroll_notifylist'} = '';
                   6779:                         }
                   6780:                     }
                   6781:                 }
1.237     raeburn  6782:             } else {
                   6783:                 my $curr_val = 
                   6784:                     $env{'course.'.$env{'request.course.id'}.'.internal.selfenroll_'.$item};
                   6785:                 my $newval = $env{'form.selfenroll_'.$item};
                   6786:                 if ($item eq 'section') {
                   6787:                     $newval = $env{'form.sections'};
1.241     raeburn  6788:                     if (defined($curr_groups{$newval})) {
1.237     raeburn  6789:                         $newval = $curr_val;
                   6790:                         $warning{$item} = &mt('Section for self-enrolled users unchanged as the proposed section is a group').'<br />'.&mt('Group names and section names must be distinct');
                   6791:                     } elsif ($newval eq 'all') {
                   6792:                         $newval = $curr_val;
1.274     bisitz   6793:                         $warning{$item} = &mt('Section for self-enrolled users unchanged, as "all" is a reserved section name.');
1.237     raeburn  6794:                     }
                   6795:                     if ($newval eq '') {
                   6796:                         $newval = 'none';
                   6797:                     }
                   6798:                 }
                   6799:                 if ($newval ne $curr_val) {
                   6800:                     $changes{'internal.selfenroll_'.$item} = $newval;
                   6801:                 }
1.241     raeburn  6802:             }
1.237     raeburn  6803:         }
                   6804:         if (keys(%warning) > 0) {
                   6805:             foreach my $item (@{$row}) {
                   6806:                 if (exists($warning{$item})) {
                   6807:                     $r->print($warning{$item}.'<br />');
                   6808:                 }
                   6809:             } 
                   6810:         }
                   6811:         if (keys(%changes) > 0) {
                   6812:             my $putresult = &Apache::lonnet::put('environment',\%changes,$cdom,$cnum);
                   6813:             if ($putresult eq 'ok') {
                   6814:                 if ((exists($changes{'internal.selfenroll_types'})) ||
                   6815:                     (exists($changes{'internal.selfenroll_start_date'}))  ||
                   6816:                     (exists($changes{'internal.selfenroll_end_date'}))) {
                   6817:                     my %crsinfo = &Apache::lonnet::courseiddump($cdom,'.',1,'.','.',
                   6818:                                                                 $cnum,undef,undef,'Course');
                   6819:                     my $chome = &Apache::lonnet::homeserver($cnum,$cdom);
                   6820:                     if (ref($crsinfo{$env{'request.course.id'}}) eq 'HASH') {
                   6821:                         foreach my $item ('selfenroll_types','selfenroll_start_date','selfenroll_end_date') {
                   6822:                             if (exists($changes{'internal.'.$item})) {
                   6823:                                 $crsinfo{$env{'request.course.id'}}{$item} = 
                   6824:                                     $changes{'internal.'.$item};
                   6825:                             }
                   6826:                         }
                   6827:                         my $crsputresult =
                   6828:                             &Apache::lonnet::courseidput($cdom,\%crsinfo,
                   6829:                                                          $chome,'notime');
                   6830:                     }
                   6831:                 }
                   6832:                 $r->print(&mt('The following changes were made to self-enrollment settings:').'<ul>');
                   6833:                 foreach my $item (@{$row}) {
                   6834:                     my $title = $item;
                   6835:                     if (ref($lt) eq 'HASH') {
                   6836:                         $title = $lt->{$item};
                   6837:                     }
                   6838:                     if ($item eq 'enroll_dates') {
                   6839:                         foreach my $type ('start','end') {
                   6840:                             if (exists($changes{'internal.selfenroll_'.$type.'_date'})) {
                   6841:                                 my $newdate = &Apache::lonlocal::locallocaltime($changes{'internal.selfenroll_'.$type.'_date'});
1.244     bisitz   6842:                                 $r->print('<li>'.&mt('[_1]: "[_2]" set to "[_3]".',
1.237     raeburn  6843:                                           $title,$type,$newdate).'</li>');
                   6844:                             }
                   6845:                         }
                   6846:                     } elsif ($item eq 'access_dates') {
                   6847:                         foreach my $type ('start','end') {
                   6848:                             if (exists($changes{'internal.selfenroll_'.$type.'_access'})) {
                   6849:                                 my $newdate = &Apache::lonlocal::locallocaltime($changes{'internal.selfenroll_'.$type.'_access'});
1.244     bisitz   6850:                                 $r->print('<li>'.&mt('[_1]: "[_2]" set to "[_3]".',
1.237     raeburn  6851:                                           $title,$type,$newdate).'</li>');
                   6852:                             }
                   6853:                         }
1.276     raeburn  6854:                     } elsif ($item eq 'limit') {
                   6855:                         if ((exists($changes{'internal.selfenroll_limit'})) ||
                   6856:                             (exists($changes{'internal.selfenroll_cap'}))) {
                   6857:                             my ($newval,$newcap);
                   6858:                             if ($changes{'internal.selfenroll_cap'} ne '') {
                   6859:                                 $newcap = $changes{'internal.selfenroll_cap'}
                   6860:                             } else {
                   6861:                                 $newcap = $env{'course.'.$env{'request.course.id'}.'.internal.selfenroll_cap'};
                   6862:                             }
                   6863:                             if ($changes{'internal.selfenroll_limit'} eq 'none') {
                   6864:                                 $newval = &mt('No limit');
                   6865:                             } elsif ($changes{'internal.selfenroll_limit'} eq 
                   6866:                                      'allstudents') {
                   6867:                                 $newval = &mt('New self-enrollment no longer allowed when total (all students) reaches [_1].',$newcap);
                   6868:                             } elsif ($changes{'internal.selfenroll_limit'} eq 'selfenrolled') {
                   6869:                                 $newval = &mt('New self-enrollment no longer allowed when total number of self-enrolled students reaches [_1].',$newcap);
                   6870:                             } else {
                   6871:                                 my $currlimit =  $env{'course.'.$env{'request.course.id'}.'.internal.selfenroll_limit'};
                   6872:                                 if ($currlimit eq 'allstudents') {
                   6873:                                     $newval = &mt('New self-enrollment no longer allowed when total (all students) reaches [_1].',$newcap);
                   6874:                                 } elsif ($changes{'internal.selfenroll_limit'} eq 'selfenrolled') {
1.308     raeburn  6875:                                     $newval =  &mt('New self-enrollment no longer allowed when total number of self-enrolled students reaches [_1].',$newcap);
1.276     raeburn  6876:                                 }
                   6877:                             }
                   6878:                             $r->print('<li>'.&mt('"[_1]" set to "[_2]".',$title,$newval).'</li>'."\n");
                   6879:                         }
                   6880:                     } elsif ($item eq 'approval') {
                   6881:                         if ((exists($changes{'internal.selfenroll_approval'})) ||
                   6882:                             (exists($changes{'internal.selfenroll_notifylist'}))) {
                   6883:                             my ($newval,$newnotify);
                   6884:                             if (exists($changes{'internal.selfenroll_notifylist'})) {
                   6885:                                 $newnotify = $changes{'internal.selfenroll_notifylist'};
                   6886:                             } else {   
                   6887:                                 $newnotify = $env{'course.'.$env{'request.course.id'}.'.internal.selfenroll_notifylist'};
                   6888:                             }
                   6889:                             if ($changes{'internal.selfenroll_approval'}) {
                   6890:                                 $newval = &mt('Yes');
                   6891:                             } elsif ($changes{'internal.selfenroll_approval'} eq '0') {
                   6892:                                 $newval = &mt('No');
                   6893:                             } else {
                   6894:                                 my $currapproval = 
                   6895:                                     $env{'course.'.$env{'request.course.id'}.'.internal.selfenroll_approval'};
                   6896:                                 if ($currapproval) {
                   6897:                                     $newval = &mt('Yes');
                   6898:                                 } else {
                   6899:                                     $newval = &mt('No');
                   6900:                                 }
                   6901:                             }
                   6902:                             $r->print('<li>'.&mt('"[_1]" set to "[_2]".',$title,$newval));
                   6903:                             if ($newnotify) {
1.277     raeburn  6904:                                 $r->print('<br />'.&mt('The following will be notified when an enrollment request needs approval, or has been approved: [_1].',$newnotify));
1.276     raeburn  6905:                             } else {
1.277     raeburn  6906:                                 $r->print('<br />'.&mt('No notifications sent when an enrollment request needs approval, or has been approved.'));
1.276     raeburn  6907:                             }
                   6908:                             $r->print('</li>'."\n");
                   6909:                         }
1.237     raeburn  6910:                     } else {
                   6911:                         if (exists($changes{'internal.selfenroll_'.$item})) {
1.241     raeburn  6912:                             my $newval = $changes{'internal.selfenroll_'.$item};
                   6913:                             if ($item eq 'types') {
                   6914:                                 if ($newval eq '') {
                   6915:                                     $newval = &mt('None');
                   6916:                                 } elsif ($newval eq '*') {
                   6917:                                     $newval = &mt('Any user in any domain');
                   6918:                                 }
1.245     raeburn  6919:                             } elsif ($item eq 'registered') {
                   6920:                                 if ($newval eq '1') {
                   6921:                                     $newval = &mt('Yes');
                   6922:                                 } elsif ($newval eq '0') {
                   6923:                                     $newval = &mt('No');
                   6924:                                 }
1.241     raeburn  6925:                             }
1.244     bisitz   6926:                             $r->print('<li>'.&mt('"[_1]" set to "[_2]".',$title,$newval).'</li>'."\n");
1.237     raeburn  6927:                         }
                   6928:                     }
                   6929:                 }
                   6930:                 $r->print('</ul>');
                   6931:                 my %newenvhash;
                   6932:                 foreach my $key (keys(%changes)) {
                   6933:                     $newenvhash{'course.'.$env{'request.course.id'}.'.'.$key} = $changes{$key};
                   6934:                 }
1.238     raeburn  6935:                 &Apache::lonnet::appenv(\%newenvhash);
1.237     raeburn  6936:             } else {
                   6937:                 $r->print(&mt('An error occurred when saving changes to self-enrollment settings in this course.').'<br />'.&mt('The error was: [_1].',$putresult));
                   6938:             }
                   6939:         } else {
1.249     raeburn  6940:             $r->print(&mt('No changes were made to the existing self-enrollment settings in this course.'));
1.237     raeburn  6941:         }
                   6942:     } else {
1.249     raeburn  6943:         $r->print(&mt('No changes were made to the existing self-enrollment settings in this course.'));
1.241     raeburn  6944:     }
1.256     raeburn  6945:     my ($visible,$cansetvis,$vismsgs,$visactions) = &visible_in_cat($cdom,$cnum);
                   6946:     if (ref($visactions) eq 'HASH') {
                   6947:         if (!$visible) {
1.366     bisitz   6948:             $r->print('<br /><span class="LC_warning">'.$visactions->{'miss'}.'</span><br />'.$visactions->{'yous'}.
1.256     raeburn  6949:                       '<br />');
                   6950:             if (ref($vismsgs) eq 'ARRAY') {
                   6951:                 $r->print('<br />'.$visactions->{'take'}.'<ul>');
                   6952:                 foreach my $item (@{$vismsgs}) {
                   6953:                     $r->print('<li>'.$visactions->{$item}.'</li>');
                   6954:                 }
                   6955:                 $r->print('</ul>');
                   6956:             }
                   6957:             $r->print($cansetvis);
                   6958:         }
                   6959:     } 
1.237     raeburn  6960:     return;
                   6961: }
                   6962: 
                   6963: sub get_selfenroll_titles {
1.276     raeburn  6964:     my @row = ('types','registered','enroll_dates','access_dates','section',
                   6965:                'approval','limit');
1.237     raeburn  6966:     my %lt = &Apache::lonlocal::texthash (
                   6967:                 types        => 'Users allowed to self-enroll in this course',
1.245     raeburn  6968:                 registered   => 'Restrict self-enrollment to students officially registered for the course',
1.237     raeburn  6969:                 enroll_dates => 'Dates self-enrollment available',
1.256     raeburn  6970:                 access_dates => 'Course access dates assigned to self-enrolling users',
                   6971:                 section      => 'Section assigned to self-enrolling users',
1.276     raeburn  6972:                 approval     => 'Self-enrollment requests need approval?',
                   6973:                 limit        => 'Enrollment limit',
1.237     raeburn  6974:              );
                   6975:     return (\@row,\%lt);
                   6976: }
                   6977: 
1.27      matthew  6978: #---------------------------------------------- end functions for &phase_two
1.29      matthew  6979: 
                   6980: #--------------------------------- functions for &phase_two and &phase_three
                   6981: 
                   6982: #--------------------------end of functions for &phase_two and &phase_three
1.372     raeburn  6983: 
1.1       www      6984: 1;
                   6985: __END__
1.2       www      6986: 
                   6987: 

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