File:  [LON-CAPA] / loncom / interface / lonuserutils.pm
Revision 1.135: download - view: text, annotated - select for diffs
Tue Jan 18 23:37:47 2011 UTC (13 years, 3 months ago) by raeburn
Branches: MAIN
CVS tags: version_2_10_0, HEAD
- Bug 6415.

    1: # The LearningOnline Network with CAPA
    2: # Utility functions for managing LON-CAPA user accounts
    3: #
    4: # $Id: lonuserutils.pm,v 1.135 2011/01/18 23:37:47 raeburn Exp $
    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: # /home/httpd/html/adm/gpl.txt
   24: #
   25: # http://www.lon-capa.org/
   26: #
   27: #
   28: ###############################################################
   29: ###############################################################
   30: 
   31: package Apache::lonuserutils;
   32: 
   33: use strict;
   34: use Apache::lonnet;
   35: use Apache::loncommon();
   36: use Apache::lonhtmlcommon;
   37: use Apache::lonlocal;
   38: use Apache::longroup;
   39: use LONCAPA qw(:DEFAULT :match);
   40: 
   41: ###############################################################
   42: ###############################################################
   43: # Drop student from all sections of a course, except optional $csec
   44: sub modifystudent {
   45:     my ($udom,$unam,$courseid,$csec,$desiredhost,$context)=@_;
   46:     # if $csec is undefined, drop the student from all the courses matching
   47:     # this one.  If $csec is defined, drop them from all other sections of
   48:     # this course and add them to section $csec
   49:     my ($cnum,$cdom) = &get_course_identity($courseid);
   50:     my $extra = &Apache::lonnet::freeze_escape({'skipcheck' => 1});
   51:     my %roles = &Apache::lonnet::dump('roles',$udom,$unam,'.',undef,$extra);
   52:     my ($tmp) = keys(%roles);
   53:     # Bail out if we were unable to get the students roles
   54:     return "$1" if ($tmp =~ /^(con_lost|error|no_such_host)/i);
   55:     # Go through the roles looking for enrollment in this course
   56:     my $result = '';
   57:     foreach my $course (keys(%roles)) {
   58:         if ($course=~m{^/\Q$cdom\E/\Q$cnum\E(?:\/)*(?:\s+)*(\w+)*\_st$}) {
   59:             # We are in this course
   60:             my $section=$1;
   61:             $section='' if ($course eq "/$cdom/$cnum".'_st');
   62:             if (defined($csec) && $section eq $csec) {
   63:                 $result .= 'ok:';
   64:             } elsif ( ((!$section) && (!$csec)) || ($section ne $csec) ) {
   65:                 my (undef,$end,$start)=split(/\_/,$roles{$course});
   66:                 my $now=time;
   67:                 # if this is an active role
   68:                 if (!($start && ($now<$start)) || !($end && ($now>$end))) {
   69:                     my $reply=&Apache::lonnet::modifystudent
   70:                         # dom  name  id mode pass     f     m     l     g
   71:                         ($udom,$unam,'',  '',  '',undef,undef,undef,undef,
   72:                          $section,time,undef,undef,$desiredhost,'','manual',
   73:                          '',$courseid,'',$context);
   74:                     $result .= $reply.':';
   75:                 }
   76:             }
   77:         }
   78:     }
   79:     if ($result eq '') {
   80:         $result = &mt('Unable to find section for this student');
   81:     } else {
   82:         $result =~ s/(ok:)+/ok/g;
   83:     }
   84:     return $result;
   85: }
   86: 
   87: sub modifyuserrole {
   88:     my ($context,$setting,$changeauth,$cid,$udom,$uname,$uid,$umode,$upass,
   89:         $first,$middle,$last,$gene,$sec,$forceid,$desiredhome,$email,$role,
   90:         $end,$start,$checkid,$inststatus) = @_;
   91:     my ($scope,$userresult,$authresult,$roleresult,$idresult);
   92:     if ($setting eq 'course' || $context eq 'course') {
   93:         $scope = '/'.$cid;
   94:         $scope =~ s/\_/\//g;
   95:         if (($role ne 'cc') && ($role ne 'co') && ($sec ne '')) {
   96:             $scope .='/'.$sec;
   97:         }
   98:     } elsif ($context eq 'domain') {
   99:         $scope = '/'.$env{'request.role.domain'}.'/';
  100:     } elsif ($context eq 'author') {
  101:         $scope =  '/'.$env{'user.domain'}.'/'.$env{'user.name'};
  102:     }
  103:     if ($context eq 'domain') {
  104:         my $uhome = &Apache::lonnet::homeserver($uname,$udom);
  105:         if ($uhome ne 'no_host') {
  106:             if (($changeauth eq 'Yes') && (&Apache::lonnet::allowed('mau',$udom))) {
  107:                 if ((($umode =~ /^krb4|krb5|internal$/) && $upass ne '') ||
  108:                     ($umode eq 'localauth')) {
  109:                     $authresult = &Apache::lonnet::modifyuserauth($udom,$uname,$umode,$upass);
  110:                 }
  111:             }
  112:             if (($forceid) && (&Apache::lonnet::allowed('mau',$udom)) &&
  113:                 ($env{'form.recurseid'}) && ($checkid)) {
  114:                 my %userupdate = (
  115:                                   lastname   => $last,
  116:                                   middlename => $middle,
  117:                                   firstname  => $first,
  118:                                   generation => $gene,
  119:                                   id         => $uid,
  120:                                  );
  121:                 $idresult = &propagate_id_change($uname,$udom,\%userupdate);
  122:             }
  123:         }
  124:     }
  125:     $userresult =
  126:         &Apache::lonnet::modifyuser($udom,$uname,$uid,$umode,$upass,$first,
  127:                                     $middle,$last,$gene,$forceid,$desiredhome,
  128:                                     $email,$inststatus);
  129:     if ($userresult eq 'ok') {
  130:         if ($role ne '') {
  131:             $role =~ s/_/\//g;
  132:             $roleresult = &Apache::lonnet::assignrole($udom,$uname,$scope,
  133:                                                       $role,$end,$start,'',
  134:                                                       '',$context);
  135:         }
  136:     }
  137:     return ($userresult,$authresult,$roleresult,$idresult);
  138: }
  139: 
  140: sub propagate_id_change {
  141:     my ($uname,$udom,$user) = @_;
  142:     my (@types,@roles);
  143:     @types = ('active','future');
  144:     @roles = ('st');
  145:     my $idresult;
  146:     my %roleshash = &Apache::lonnet::get_my_roles($uname,
  147:                         $udom,'userroles',\@types,\@roles);
  148:     my %args = (
  149:                 one_time => 1,
  150:                );
  151:     foreach my $item (keys(%roleshash)) {
  152:         my ($cnum,$cdom,$role) = split(/:/,$item,-1);
  153:         my ($start,$end) = split(/:/,$roleshash{$item});
  154:         if (&Apache::lonnet::is_course($cdom,$cnum)) {
  155:             my $result = &update_classlist($cdom,$cnum,$udom,$uname,$user);
  156:             my %coursehash = 
  157:                 &Apache::lonnet::coursedescription($cdom.'_'.$cnum,\%args);
  158:             my $cdesc = $coursehash{'description'};
  159:             if ($cdesc eq '') { 
  160:                 $cdesc = $cdom.'_'.$cnum;
  161:             }
  162:             if ($result eq 'ok') {
  163:                 $idresult .= &mt('Classlist update for "[_1]" in "[_2]".',$uname.':'.$udom,$cdesc).'<br />'."\n";
  164:             } else {
  165:                 $idresult .= &mt('Error: "[_1]" during classlist update for "[_2]" in "[_3]".',$result,$uname.':'.$udom,$cdesc).'<br />'."\n";
  166:             }
  167:         }
  168:     }
  169:     return $idresult;
  170: }
  171: 
  172: sub update_classlist {
  173:     my ($cdom,$cnum,$udom,$uname,$user,$newend) = @_;
  174:     my ($uid,$classlistentry);
  175:     my $fullname =
  176:         &Apache::lonnet::format_name($user->{'firstname'},$user->{'middlename'},
  177:                                      $user->{'lastname'},$user->{'generation'},
  178:                                      'lastname');
  179:     my %classhash = &Apache::lonnet::get('classlist',[$uname.':'.$udom],
  180:                                          $cdom,$cnum);
  181:     my @classinfo = split(/:/,$classhash{$uname.':'.$udom});
  182:     my $ididx=&Apache::loncoursedata::CL_ID() - 2;
  183:     my $nameidx=&Apache::loncoursedata::CL_FULLNAME() - 2;
  184:     my $endidx = &Apache::loncoursedata::CL_END() - 2;
  185:     my $startidx = &Apache::loncoursedata::CL_START() - 2;
  186:     for (my $i=0; $i<@classinfo; $i++) {
  187:         if ($i == $endidx) {
  188:             if ($newend ne '') {
  189:                 $classlistentry .= $newend.':';
  190:             } else {
  191:                 $classlistentry .= $classinfo[$i].':';
  192:             }
  193:         } elsif ($i == $startidx) {
  194:             if ($newend ne '') {
  195:                 if ($classinfo[$i] > $newend) {
  196:                     $classlistentry .= $newend.':';
  197:                 } else {
  198:                     $classlistentry .= $classinfo[$i].':';
  199:                 }
  200:             } else {
  201:                 $classlistentry .= $classinfo[$i].':';
  202:             }
  203:         } elsif ($i == $ididx) {
  204:             if (defined($user->{'id'})) {
  205:                 $classlistentry .= $user->{'id'}.':';
  206:             } else {
  207:                 $classlistentry .= $classinfo[$i].':';
  208:             }
  209:         } elsif ($i == $nameidx) {
  210:             if (defined($user->{'lastname'})) {
  211:                 $classlistentry .= $fullname.':';
  212:             } else {
  213:                 $classlistentry .= $classinfo[$i].':';
  214:             }
  215:         } else {
  216:             $classlistentry .= $classinfo[$i].':';
  217:         }
  218:     }
  219:     $classlistentry =~ s/:$//;
  220:     my $reply=&Apache::lonnet::cput('classlist',
  221:                                     {"$uname:$udom" => $classlistentry},
  222:                                     $cdom,$cnum);
  223:     if (($reply eq 'ok') || ($reply eq 'delayed')) {
  224:         return 'ok';
  225:     } else {
  226:         return 'error: '.$reply;
  227:     }
  228: }
  229: 
  230: 
  231: ###############################################################
  232: ###############################################################
  233: # build a role type and role selection form
  234: sub domain_roles_select {
  235:     # Set up the role type and role selection boxes when in 
  236:     # domain context   
  237:     #
  238:     # Role types
  239:     my @roletypes = ('domain','author','course','community');
  240:     my %lt = &role_type_names();
  241:     #
  242:     # build up the menu information to be passed to
  243:     # &Apache::loncommon::linked_select_forms
  244:     my %select_menus;
  245:     if ($env{'form.roletype'} eq '') {
  246:         $env{'form.roletype'} = 'domain';
  247:     }
  248:     foreach my $roletype (@roletypes) {
  249:         # set up the text for this domain
  250:         $select_menus{$roletype}->{'text'}= $lt{$roletype};
  251:         my $crstype;
  252:         if ($roletype eq 'community') {
  253:             $crstype = 'Community';
  254:         }
  255:         # we want a choice of 'default' as the default in the second menu
  256:         if ($env{'form.roletype'} ne '') {
  257:             $select_menus{$roletype}->{'default'} = $env{'form.showrole'};
  258:         } else { 
  259:             $select_menus{$roletype}->{'default'} = 'Any';
  260:         }
  261:         # Now build up the other items in the second menu
  262:         my @roles;
  263:         if ($roletype eq 'domain') {
  264:             @roles = &domain_roles();
  265:         } elsif ($roletype eq 'author') {
  266:             @roles = &construction_space_roles();
  267:         } else {
  268:             my $custom = 1;
  269:             @roles = &course_roles('domain',undef,$custom,$roletype);
  270:         }
  271:         my $order = ['Any',@roles];
  272:         $select_menus{$roletype}->{'order'} = $order; 
  273:         foreach my $role (@roles) {
  274:             if ($role eq 'cr') {
  275:                 $select_menus{$roletype}->{'select2'}->{$role} =
  276:                               &mt('Custom role');
  277:             } else {
  278:                 $select_menus{$roletype}->{'select2'}->{$role} = 
  279:                               &Apache::lonnet::plaintext($role,$crstype);
  280:             }
  281:         }
  282:         $select_menus{$roletype}->{'select2'}->{'Any'} = &mt('Any');
  283:     }
  284:     my $result = &Apache::loncommon::linked_select_forms
  285:         ('studentform',('&nbsp;'x3).&mt('Role: '),$env{'form.roletype'},
  286:          'roletype','showrole',\%select_menus,
  287:          ['domain','author','course','community']);
  288:     return $result;
  289: }
  290: 
  291: ###############################################################
  292: ###############################################################
  293: sub hidden_input {
  294:     my ($name,$value) = @_;
  295:     return '<input type="hidden" name="'.$name.'" value="'.$value.'" />'."\n";
  296: }
  297: 
  298: sub print_upload_manager_header {
  299:     my ($r,$datatoken,$distotal,$krbdefdom,$context,$permission,$crstype,
  300:         $can_assign)=@_;
  301:     my $javascript;
  302:     #
  303:     if (! exists($env{'form.upfile_associate'})) {
  304:         $env{'form.upfile_associate'} = 'forward';
  305:     }
  306:     if ($env{'form.associate'} eq 'Reverse Association') {
  307:         if ( $env{'form.upfile_associate'} ne 'reverse' ) {
  308:             $env{'form.upfile_associate'} = 'reverse';
  309:         } else {
  310:             $env{'form.upfile_associate'} = 'forward';
  311:         }
  312:     }
  313:     if ($env{'form.upfile_associate'} eq 'reverse') {
  314:         $javascript=&upload_manager_javascript_reverse_associate($can_assign);
  315:     } else {
  316:         $javascript=&upload_manager_javascript_forward_associate($can_assign);
  317:     }
  318:     #
  319:     # Deal with restored settings
  320:     my $password_choice = '';
  321:     if (exists($env{'form.ipwd_choice'}) &&
  322:         $env{'form.ipwd_choice'} ne '') {
  323:         # If a column was specified for password, assume it is for an
  324:         # internal password.  This is a bug waiting to be filed (could be
  325:         # local or krb auth instead of internal) but I do not have the
  326:         # time to mess around with this now.
  327:         $password_choice = 'int';
  328:     }
  329:     #
  330:     my $groupslist;
  331:     if ($context eq 'course') {
  332:         $groupslist = &get_groupslist();
  333:     }
  334:     my $javascript_validations =
  335:         &javascript_validations('upload',$krbdefdom,$password_choice,undef,
  336:                                 $env{'request.role.domain'},$context,
  337:                                 $groupslist,$crstype);
  338:     my $checked=(($env{'form.noFirstLine'})?' checked="checked"':'');
  339:     $r->print('<p>'
  340:              .&mt('Total number of records found in file: [_1]'
  341:                  ,'<b>'.$distotal.'</b>')
  342:              ."</p>\n");
  343:     $r->print('<div class="LC_left_float"><h3>'.
  344:               &mt('Identify fields in uploaded list')."</h3>\n");
  345:     $r->print(&mt('Enter as many fields as you can.<br /> The system will inform you and bring you back to this page, <br /> if the data selected are insufficient to add users.')."<br />\n");
  346:     $r->print(&hidden_input('action','upload').
  347:               &hidden_input('state','got_file').
  348:               &hidden_input('associate','').
  349:               &hidden_input('datatoken',$datatoken).
  350:               &hidden_input('fileupload',$env{'form.fileupload'}).
  351:               &hidden_input('upfiletype',$env{'form.upfiletype'}).
  352:               &hidden_input('upfile_associate',$env{'form.upfile_associate'}));
  353:     $r->print('<br /><label><input type="checkbox" name="noFirstLine"'.$checked.' />'.
  354:               &mt('Ignore First Line').'</label><br />');
  355:     $r->print('<br /><input type="button" value="'.&mt('Reverse Association').'" '.
  356:               'name="Reverse Association" '.
  357:               'onclick="javascript:this.form.associate.value=\'Reverse Association\';submit(this.form);" />');
  358:     $r->print("<br /><br />\n".
  359:               '<script type="text/javascript" language="Javascript">'."\n".
  360:               '// <![CDATA['."\n".
  361:               $javascript."\n".$javascript_validations."\n".
  362:               '// ]]>'."\n".
  363:               '</script>');
  364: }
  365: 
  366: ###############################################################
  367: ###############################################################
  368: sub javascript_validations {
  369:     my ($mode,$krbdefdom,$curr_authtype,$curr_authfield,$domain,
  370:         $context,$groupslist,$crstype)=@_;
  371:     my %param = (
  372:                   kerb_def_dom => $krbdefdom,
  373:                   curr_authtype => $curr_authtype,
  374:                 );
  375:     if ($mode eq 'upload') {
  376:         $param{'formname'} = 'studentform';
  377:     } elsif ($mode eq 'createcourse') {
  378:         $param{'formname'} = 'ccrs';
  379:     } elsif ($mode eq 'modifycourse') {
  380:         $param{'formname'} = 'cmod';
  381:         $param{'mode'} = 'modifycourse',
  382:         $param{'curr_autharg'} = $curr_authfield;
  383:     }
  384: 
  385:     my ($setsection_call,$setsections_js);
  386:     my $finish = "  vf.submit();\n";
  387:     if ($mode eq 'upload') {
  388:         if (($context eq 'course') || ($context eq 'domain')) {
  389:             if ($context eq 'course') {
  390:                 if ($env{'request.course.sec'} eq '') {
  391:                     $setsection_call = 'setSections(document.'.$param{'formname'}.",'$crstype'".');';
  392:                     $setsections_js =
  393:                         &setsections_javascript($param{'formname'},$groupslist,
  394:                                                 $mode,'',$crstype);
  395:                 } else {
  396:                     $setsection_call = "'ok'";
  397:                 }
  398:             } elsif ($context eq 'domain') {
  399:                 $setsection_call = 'setCourse()';
  400:                 $setsections_js = &dc_setcourse_js($param{'formname'},$mode,$context);
  401:             }
  402:             $finish = "  var checkSec = $setsection_call\n".
  403:                       "  if (checkSec == 'ok') {\n".
  404:                       "      vf.submit();\n".
  405:                       "   }\n";
  406:         }
  407:     }
  408:     my $authheader = &Apache::loncommon::authform_header(%param);
  409: 
  410:     my %alert = &Apache::lonlocal::texthash
  411:         (username => 'You need to specify the username field.',
  412:          authen   => 'You must choose an authentication type.',
  413:          krb      => 'You need to specify the Kerberos domain.',
  414:          ipass    => 'You need to specify the initial password.',
  415:          name     => 'The optional name field was not specified.',
  416:          snum     => 'The optional student/employee ID field was not specified.',
  417:          section  => 'The optional section field was not specified.',
  418:          email    => 'The optional e-mail address field was not specified.',
  419:          role     => 'The optional role field was not specified.',
  420:          domain   => 'The optional domain field was not specified.',
  421:          continue => 'Continue adding users?',
  422:          );
  423:     if (($mode eq 'upload') && ($context eq 'domain')) {
  424:         $alert{'inststatus'} = &mt('The optional affiliation field was not specified'); 
  425:     }
  426:     my $function_name = <<"END";
  427: $setsections_js
  428: 
  429: function verify_message (vf,founduname,foundpwd,foundname,foundid,foundsec,foundemail,foundrole,founddomain,foundinststatus) {
  430: END
  431:     my ($authnum,%can_assign) =  &Apache::loncommon::get_assignable_auth($domain);
  432:     my $auth_checks;
  433:     if ($mode eq 'createcourse') {
  434:         $auth_checks .= (<<END);
  435:     if (vf.autoadds[0].checked == true) {
  436:         if (current.radiovalue == null || current.radiovalue == 'nochange') {
  437:             alert('$alert{'authen'}');
  438:             return;
  439:         }
  440:     }
  441: END
  442:     } else {
  443:         $auth_checks .= (<<END);
  444:     var foundatype=0;
  445:     if (founduname==0) {
  446:         alert('$alert{'username'}');
  447:         return;
  448:     }
  449: 
  450: END
  451:         if ($authnum > 1) {
  452:             $auth_checks .= (<<END);
  453:     if (current.radiovalue == null || current.radiovalue == '' || current.radiovalue == 'nochange') {
  454:         // They did not check any of the login radiobuttons.
  455:         alert('$alert{'authen'}');
  456:         return;
  457:     }
  458: END
  459:         }
  460:     }
  461:     if ($mode eq 'createcourse') {
  462:         $auth_checks .= "
  463:     if ( (vf.autoadds[0].checked == true) &&
  464:          (vf.elements[current.argfield].value == null || vf.elements[current.argfield].value == '') ) {
  465: ";
  466:     } elsif ($mode eq 'modifycourse') {
  467:         $auth_checks .= "
  468:     if (vf.elements[current.argfield].value == null || vf.elements[current.argfield].value == '') {
  469: ";
  470:     }
  471:     if ( ($mode eq 'createcourse') || ($mode eq 'modifycourse') ) {
  472:         $auth_checks .= (<<END);
  473:         var alertmsg = '';
  474:         switch (current.radiovalue) {
  475:             case 'krb':
  476:                 alertmsg = '$alert{'krb'}';
  477:                 break;
  478:             default:
  479:                 alertmsg = '';
  480:         }
  481:         if (alertmsg != '') {
  482:             alert(alertmsg);
  483:             return;
  484:         }
  485:     }
  486: END
  487:     } else {
  488:         $auth_checks .= (<<END);
  489:     foundatype=1;
  490:     if (current.argfield == null || current.argfield == '') {
  491:         var alertmsg = '';
  492:         switch (current.radiovalue) {
  493:             case 'krb':
  494:                 alertmsg = '$alert{'krb'}';
  495:                 break;
  496:             case 'loc':
  497:             case 'fsys':
  498:                 alertmsg = '$alert{'ipass'}';
  499:                 break;
  500:             case 'fsys':
  501:                 alertmsg = '';
  502:                 break;
  503:             default:
  504:                 alertmsg = '';
  505:         }
  506:         if (alertmsg != '') {
  507:             alert(alertmsg);
  508:             return;
  509:         }
  510:     }
  511: END
  512:     }
  513:     my $section_checks;
  514:     my $optional_checks = '';
  515:     if ( ($mode eq 'createcourse') || ($mode eq 'modifycourse') ) {
  516:         $optional_checks = (<<END);
  517:     vf.submit();
  518: }
  519: END
  520:     } else {
  521:         $section_checks = &section_check_js();
  522:         $optional_checks = (<<END);
  523:     var message='';
  524:     if (foundname==0) {
  525:         message='$alert{'name'}';
  526:     }
  527:     if (foundid==0) {
  528:         if (message!='') {
  529:             message+='\\n';
  530:         }
  531:         message+='$alert{'snum'}';
  532:     }
  533:     if (foundsec==0) {
  534:         if (message!='') {
  535:             message+='\\n';
  536:         }
  537:         message+='$alert{'section'}';
  538:     }
  539:     if (foundemail==0) {
  540:         if (message!='') {
  541:             message+='\\n';
  542:         }
  543:         message+='$alert{'email'}';
  544:     }
  545:     if (foundrole==0) {
  546:         if (message!='') {
  547:             message+='\\n';
  548:         }
  549:         message+='$alert{'role'}';
  550:     }
  551:     if (founddomain==0) {
  552:         if (message!='') {
  553:             message+='\\n';
  554:         }
  555:         message+='$alert{'domain'}';
  556:     }
  557: END
  558:         if (($mode eq 'upload') && ($context eq 'domain')) {
  559:             $optional_checks .= (<<END);
  560: 
  561:     if (foundinststatus==0) {
  562:         if (message!='') {
  563:             message+='\\n';
  564:         }
  565:         message+='$alert{'inststatus'}';
  566:     }
  567: END
  568:         }
  569:         $optional_checks .= (<<END);
  570: 
  571:     if (message!='') {
  572:         message+= '\\n$alert{'continue'}';
  573:         if (confirm(message)) {
  574:             vf.state.value='enrolling';
  575:             $finish
  576:         }
  577:     } else {
  578:         vf.state.value='enrolling';
  579:         $finish
  580:     }
  581: }
  582: END
  583:     }
  584:     my $result = $function_name.$auth_checks.$optional_checks."\n".
  585:                  $section_checks.$authheader;
  586:     return $result;
  587: }
  588: ###############################################################
  589: ###############################################################
  590: sub upload_manager_javascript_forward_associate {
  591:     my ($can_assign) = @_;
  592:     my ($auth_update,$numbuttons,$argreset);
  593:     if (ref($can_assign) eq 'HASH') {
  594:         if ($can_assign->{'krb4'} || $can_assign->{'krb5'}) {
  595:             $argreset .= "      vf.krbarg.value='';\n";
  596:             $numbuttons ++ ;
  597:         }
  598:         if ($can_assign->{'int'}) {
  599:             $argreset .= "      vf.intarg.value='';\n";
  600:             $numbuttons ++;
  601:         }
  602:         if ($can_assign->{'loc'}) {
  603:             $argreset .= "      vf.locarg.value='';\n";
  604:             $numbuttons ++;
  605:         }
  606:         if (!$can_assign->{'int'}) {
  607:             my $warning = &mt('You may not specify an initial password for each user, as this is only available when new users use LON-CAPA internal authentication.\n').
  608:                           &mt('Your current role does not have rights to create users with that authentication type.');
  609:             $auth_update = <<"END";
  610:    // Currently the initial password field is only supported for internal auth
  611:    // (see bug 6368).
  612:    if (nw==9) {
  613:        eval('vf.f'+tf+'.selectedIndex=0;')
  614:        alert('$warning');
  615:    }
  616: END
  617:         } elsif ($numbuttons > 1) {
  618:             $auth_update = <<"END";
  619:    // If we set the password, make the password form below correspond to
  620:    // the new value.
  621:    if (nw==9) {
  622:       changed_radio('int',document.studentform);
  623:       set_auth_radio_buttons('int',document.studentform);
  624: $argreset
  625:    }
  626: 
  627: END
  628:         }
  629:     }
  630: 
  631:     return(<<ENDPICK);
  632: function verify(vf,sec_caller) {
  633:     var founduname=0;
  634:     var foundpwd=0;
  635:     var foundname=0;
  636:     var foundid=0;
  637:     var foundsec=0;
  638:     var foundemail=0;
  639:     var foundrole=0;
  640:     var founddomain=0;
  641:     var foundinststatus=0;
  642:     var tw;
  643:     for (i=0;i<=vf.nfields.value;i++) {
  644:         tw=eval('vf.f'+i+'.selectedIndex');
  645:         if (tw==1) { founduname=1; }
  646:         if ((tw>=2) && (tw<=6)) { foundname=1; }
  647:         if (tw==7) { foundid=1; }
  648:         if (tw==8) { foundsec=1; }
  649:         if (tw==9) { foundpwd=1; }
  650:         if (tw==10) { foundemail=1; }
  651:         if (tw==11) { foundrole=1; }
  652:         if (tw==12) { founddomain=1; }
  653:         if (tw==13) { foundinststatus=1; }
  654:     }
  655:     verify_message(vf,founduname,foundpwd,foundname,foundid,foundsec,foundemail,foundrole,founddomain,foundinststatus);
  656: }
  657: 
  658: //
  659: // vf = this.form
  660: // tf = column number
  661: //
  662: // values of nw
  663: //
  664: // 0 = none
  665: // 1 = username
  666: // 2 = names (lastname, firstnames)
  667: // 3 = fname (firstname)
  668: // 4 = mname (middlename)
  669: // 5 = lname (lastname)
  670: // 6 = gen   (generation)
  671: // 7 = id
  672: // 8 = section
  673: // 9 = ipwd  (password)
  674: // 10 = email address
  675: // 11 = role
  676: // 12 = domain
  677: // 13 = inststatus
  678: 
  679: function flip(vf,tf) {
  680:    var nw=eval('vf.f'+tf+'.selectedIndex');
  681:    var i;
  682:    // make sure no other columns are labeled the same as this one
  683:    for (i=0;i<=vf.nfields.value;i++) {
  684:       if ((i!=tf) && (eval('vf.f'+i+'.selectedIndex')==nw)) {
  685:           eval('vf.f'+i+'.selectedIndex=0;')
  686:       }
  687:    }
  688:    // If we set this to 'lastname, firstnames', clear out all the ones
  689:    // set to 'fname','mname','lname','gen' (3,4,5,6) currently.
  690:    if (nw==2) {
  691:       for (i=0;i<=vf.nfields.value;i++) {
  692:          if ((eval('vf.f'+i+'.selectedIndex')>=3) &&
  693:              (eval('vf.f'+i+'.selectedIndex')<=6)) {
  694:              eval('vf.f'+i+'.selectedIndex=0;')
  695:          }
  696:       }
  697:    }
  698:    // If we set this to one of 'fname','mname','lname','gen' (3,4,5,6),
  699:    // clear out any that are set to 'lastname, firstnames' (2)
  700:    if ((nw>=3) && (nw<=6)) {
  701:       for (i=0;i<=vf.nfields.value;i++) {
  702:          if (eval('vf.f'+i+'.selectedIndex')==2) {
  703:              eval('vf.f'+i+'.selectedIndex=0;')
  704:          }
  705:       }
  706:    }
  707:    $auth_update
  708: }
  709: 
  710: function clearpwd(vf) {
  711:     var i;
  712:     for (i=0;i<=vf.nfields.value;i++) {
  713:         if (eval('vf.f'+i+'.selectedIndex')==9) {
  714:             eval('vf.f'+i+'.selectedIndex=0;')
  715:         }
  716:     }
  717: }
  718: 
  719: ENDPICK
  720: }
  721: 
  722: ###############################################################
  723: ###############################################################
  724: sub upload_manager_javascript_reverse_associate {
  725:     my ($can_assign) = @_;
  726:     my ($auth_update,$numbuttons,$argreset);
  727:     if (ref($can_assign) eq 'HASH') {
  728:         if ($can_assign->{'krb4'} || $can_assign->{'krb5'}) {
  729:             $argreset .= "      vf.krbarg.value='';\n";
  730:             $numbuttons ++ ;
  731:         }
  732:         if ($can_assign->{'int'}) {
  733:             $argreset .= "      vf.intarg.value='';\n";
  734:             $numbuttons ++;
  735:         }
  736:         if ($can_assign->{'loc'}) {
  737:             $argreset .= "      vf.locarg.value='';\n";
  738:             $numbuttons ++;
  739:         }
  740:         if (!$can_assign->{'int'}) {
  741:             my $warning = &mt('You may not specify an initial password, as this is only available when new users use LON-CAPA internal authentication.\n').
  742:                           &mt('Your current role does not have rights to create users with that authentication type.');
  743:             $auth_update = <<"END";
  744:    // Currently the initial password field is only supported for internal auth
  745:    // (see bug 6368).
  746:    if (tf==8 && nw!=0) {
  747:        eval('vf.f'+tf+'.selectedIndex=0;')
  748:        alert('$warning');
  749:    }
  750: END
  751:         } elsif ($numbuttons > 1) {
  752:             $auth_update = <<"END";
  753:    // initial password specified, pick internal authentication
  754:    if (tf==8 && nw!=0) {
  755:       changed_radio('int',document.studentform);
  756:       set_auth_radio_buttons('int',document.studentform);
  757: $argreset
  758:    }
  759: 
  760: END
  761:         }
  762:     }
  763: 
  764:     return(<<ENDPICK);
  765: function verify(vf,sec_caller) {
  766:     var founduname=0;
  767:     var foundpwd=0;
  768:     var foundname=0;
  769:     var foundid=0;
  770:     var foundsec=0;
  771:     var foundemail=0;
  772:     var foundrole=0;
  773:     var founddomain=0;
  774:     var foundinststatus=0;
  775:     var tw;
  776:     for (i=0;i<=vf.nfields.value;i++) {
  777:         tw=eval('vf.f'+i+'.selectedIndex');
  778:         if (i==0 && tw!=0) { founduname=1; }
  779:         if (((i>=1) && (i<=5)) && tw!=0 ) { foundname=1; }
  780:         if (i==6 && tw!=0) { foundid=1; }
  781:         if (i==7 && tw!=0) { foundsec=1; }
  782:         if (i==8 && tw!=0) { foundpwd=1; }
  783:         if (i==9 && tw!=0) { foundemail=1; }
  784:         if (i==10 && tw!=0) { foundrole=1; }
  785:         if (i==11 && tw!=0) { founddomain=1; }
  786:         if (i==12 && tw!=0) { foundinstatus=1; }
  787:     }
  788:     verify_message(vf,founduname,foundpwd,foundname,foundid,foundsec,foundemail,foundrole,founddomain,foundinststatus);
  789: }
  790: 
  791: function flip(vf,tf) {
  792:    var nw=eval('vf.f'+tf+'.selectedIndex');
  793:    var i;
  794:    // picked the all one name field, reset the other name ones to blank
  795:    if (tf==1 && nw!=0) {
  796:       for (i=2;i<=5;i++) {
  797:          eval('vf.f'+i+'.selectedIndex=0;')
  798:       }
  799:    }
  800:    //picked one of the piecewise name fields, reset the all in
  801:    //one field to blank
  802:    if ((tf>=2) && (tf<=5) && (nw!=0)) {
  803:       eval('vf.f1.selectedIndex=0;')
  804:    }
  805:    $auth_update
  806: }
  807: 
  808: function clearpwd(vf) {
  809:     var i;
  810:     if (eval('vf.f8.selectedIndex')!=0) {
  811:         eval('vf.f8.selectedIndex=0;')
  812:     }
  813: }
  814: ENDPICK
  815: }
  816: 
  817: ###############################################################
  818: ###############################################################
  819: sub print_upload_manager_footer {
  820:     my ($r,$i,$keyfields,$defdom,$today,$halfyear,$context,$permission,$crstype) = @_;
  821:     my $form = 'document.studentform';
  822:     my $formname = 'studentform';
  823:     my ($krbdef,$krbdefdom) =
  824:         &Apache::loncommon::get_kerberos_defaults($defdom);
  825:     my %param = ( formname => $form,
  826:                   kerb_def_dom => $krbdefdom,
  827:                   kerb_def_auth => $krbdef
  828:                   );
  829:     if (exists($env{'form.ipwd_choice'}) &&
  830:         defined($env{'form.ipwd_choice'}) &&
  831:         $env{'form.ipwd_choice'} ne '') {
  832:         $param{'curr_authtype'} = 'int';
  833:     }
  834:     my $krbform = &Apache::loncommon::authform_kerberos(%param);
  835:     my $intform = &Apache::loncommon::authform_internal(%param);
  836:     my $locform = &Apache::loncommon::authform_local(%param);
  837:     my $date_table = &date_setting_table(undef,undef,$context,undef,
  838:                                          $formname,$permission,$crstype);
  839: 
  840:     my $Str = "\n".'<div class="LC_left_float">';
  841:     $Str .= &hidden_input('nfields',$i);
  842:     $Str .= &hidden_input('keyfields',$keyfields);
  843: 
  844:     $Str .= '<h3>'.&mt('Options').'</h3>'
  845:            .&Apache::lonhtmlcommon::start_pick_box();
  846: 
  847:     $Str .= &Apache::lonhtmlcommon::row_title(&mt('Login Type'));
  848:     if ($context eq 'domain') {
  849:         $Str .= '<p>'
  850:                .&mt('Change authentication for existing users in domain "[_1]" to these settings?'
  851:                    ,$defdom)
  852:                .'&nbsp;<span class="LC_nobreak"><label>'
  853:                .'<input type="radio" name="changeauth" value="No" checked="checked" />'
  854:                .&mt('No').'</label>'
  855:                .'&nbsp;&nbsp;<label>'
  856:                .'<input type="radio" name="changeauth" value="Yes" />'
  857:                .&mt('Yes').'</label>'
  858:                .'</span></p>'; 
  859:     } else {
  860:         $Str .= '<p class="LC_info">'."\n".
  861:             &mt('This will not take effect if the user already exists.').
  862:             &Apache::loncommon::help_open_topic('Auth_Options').
  863:             "</p>\n";
  864:     }
  865:     $Str .= &set_login($defdom,$krbform,$intform,$locform);
  866: 
  867:     my ($home_server_pick,$numlib) =
  868:         &Apache::loncommon::home_server_form_item($defdom,'lcserver',
  869:                                                   'default','hide');
  870:     if ($numlib > 1) {
  871:         $Str .= &Apache::lonhtmlcommon::row_closure()
  872:                .&Apache::lonhtmlcommon::row_title(
  873:                     &mt('LON-CAPA Home Server for New Users'))
  874:                .&mt('LON-CAPA domain: [_1] with home server:','"'.$defdom.'"')
  875:                .$home_server_pick
  876:                .&Apache::lonhtmlcommon::row_closure();
  877:     } else {
  878:         $Str .= $home_server_pick.
  879:                 &Apache::lonhtmlcommon::row_closure();
  880:     }
  881: 
  882:     $Str .= &Apache::lonhtmlcommon::row_title(&mt('Default domain'))
  883:            .&Apache::loncommon::select_dom_form($defdom,'defaultdomain',undef,1)
  884:            .&Apache::lonhtmlcommon::row_closure();
  885: 
  886:     $Str .= &Apache::lonhtmlcommon::row_title(&mt('Starting and Ending Dates'))
  887:            ."<p>\n".$date_table."</p>\n"
  888:            .&Apache::lonhtmlcommon::row_closure();
  889: 
  890:     if ($context eq 'domain') {
  891:         $Str .= &Apache::lonhtmlcommon::row_title(
  892:                     &mt('Settings for assigning roles'))
  893:                .&mt('Pick the action to take on roles for these users:').'<br />'
  894:                .'<span class="LC_nobreak"><label>'
  895:                .'<input type="radio" name="roleaction" value="norole" checked="checked" />'
  896:                .'&nbsp;'.&mt('No role changes').'</label>'
  897:                .'&nbsp;&nbsp;&nbsp;<label>'
  898:                .'<input type="radio" name="roleaction" value="domain" />'
  899:                .'&nbsp;'.&mt('Add a domain role').'</label>'
  900:                .'&nbsp;&nbsp;&nbsp;<label>'
  901:                .'<input type="radio" name="roleaction" value="course" />'
  902:                .'&nbsp;'.&mt('Add a course/community role').'</label>'
  903:                .'</span>';
  904:     } elsif ($context eq 'author') {
  905:         $Str .= &Apache::lonhtmlcommon::row_title(
  906:                     &mt('Default role'))
  907:                .&mt('Choose the role to assign to users without a value specified in the uploaded file.')
  908:     } elsif ($context eq 'course') {
  909:         $Str .= &Apache::lonhtmlcommon::row_title(
  910:                     &mt('Default role and section'))
  911:                .&mt('Choose the role and/or section(s) to assign to users without values specified in the uploaded file.');
  912:     } else {
  913:         $Str .= &Apache::lonhtmlcommon::row_title(
  914:                     &mt('Default role and/or section(s)'))
  915:                .&mt('Role and/or section(s) for users without values specified in the uploaded file.');
  916:     }
  917:     if (($context eq 'domain') || ($context eq 'author')) {
  918:         $Str .= '<br />';
  919:         my ($options,$cb_script,$coursepick) = &default_role_selector($context,1);
  920:         if ($context eq 'domain') {
  921:             $Str .= '<p>'
  922:                    .'<b>'.&mt('Domain Level').'</b><br />'
  923:                    .$options
  924:                    .'</p><p>'
  925:                    .'<b>'.&mt('Course Level').'</b>'
  926:                    .'</p>'
  927:                    .$cb_script.$coursepick
  928:                    .&Apache::lonhtmlcommon::row_closure();
  929:         } elsif ($context eq 'author') {
  930:             $Str .= $options
  931:                    .&Apache::lonhtmlcommon::row_closure(1); # last row in pick_box
  932:         }
  933:     } else {
  934:         my ($cnum,$cdom) = &get_course_identity();
  935:         my $rowtitle = &mt('section');
  936:         my $secbox = &section_picker($cdom,$cnum,'Any',$rowtitle,
  937:                                      $permission,$context,'upload',$crstype);
  938:         $Str .= $secbox
  939:                .&Apache::lonhtmlcommon::row_closure();
  940:         my %lt;
  941:         if ($crstype eq 'Community') {
  942:             %lt = &Apache::lonlocal::texthash (
  943:                     disp => 'Display members with current/future access who are not in the uploaded file',
  944:                     stus => 'Members selected from this list can be dropped.'
  945:             );
  946:         } else {
  947:             %lt = &Apache::lonlocal::texthash (
  948:                     disp => 'Display students with current/future access who are not in the uploaded file',
  949:                     stus => 'Students selected from this list can be dropped.'
  950:             );
  951:         }
  952:         $Str .= &Apache::lonhtmlcommon::row_title(&mt('Full Update'))
  953:                .'<label><input type="checkbox" name="fullup" value="yes" />'
  954:                .' '.$lt{'disp'}
  955:                .'</label><br />'
  956:                .$lt{'stus'}
  957:                .&Apache::lonhtmlcommon::row_closure();
  958:     }
  959:     if ($context eq 'course' || $context eq 'domain') {
  960:         $Str .= &forceid_change($context);
  961:     }
  962: 
  963:     $Str .= &Apache::lonhtmlcommon::end_pick_box();
  964:     $Str .= '</div>';
  965: 
  966:     # Footer
  967:     $Str .= '<div class="LC_clear_float_footer">'
  968:            .'<hr />';
  969:     if ($context eq 'course') {
  970:         $Str .= '<p class="LC_info">'
  971:                .&mt('Note: This operation may be time consuming when adding several users.')
  972:                .'</p>';
  973:     }
  974:     $Str .= '<p><input type="button"'
  975:            .' onclick="javascript:verify(this.form,this.form.csec)"'
  976:            .' value="'.&mt('Update Users').'" />'
  977:            .'</p>'."\n"
  978:            .'</div>';
  979:     $r->print($Str);
  980:     return;
  981: }
  982: 
  983: sub forceid_change {
  984:     my ($context) = @_;
  985:     my $output = 
  986:         &Apache::lonhtmlcommon::row_title(&mt('Student/Employee ID'))
  987:        .'<label><input type="checkbox" name="forceid" value="yes" />'
  988:        .&mt('Disable Student/Employee ID Safeguard and force change of conflicting IDs')
  989:        .'</label><br />'."\n"
  990:        .&mt('(only do if you know what you are doing.)')."\n";
  991:     if ($context eq 'domain') {
  992:         $output .= '<br /><label><input type="checkbox" name="recurseid"'.
  993:                    ' value="yes" />'. 
  994:   &mt('Update student/employee ID in courses in which user is active/future student,[_1](if forcing change).','<br />').
  995:                    '</label>'."\n";
  996:     }
  997:     $output .= &Apache::lonhtmlcommon::row_closure(1); # last row in pick_box
  998:     return $output;
  999: }
 1000: 
 1001: ###############################################################
 1002: ###############################################################
 1003: sub print_upload_manager_form {
 1004:     my ($r,$context,$permission,$crstype) = @_;
 1005:     my $firstLine;
 1006:     my $datatoken;
 1007:     if (!$env{'form.datatoken'}) {
 1008:         $datatoken=&Apache::loncommon::upfile_store($r);
 1009:     } else {
 1010:         $datatoken=$env{'form.datatoken'};
 1011:         &Apache::loncommon::load_tmp_file($r);
 1012:     }
 1013:     my @records=&Apache::loncommon::upfile_record_sep();
 1014:     if($env{'form.noFirstLine'}){
 1015:         $firstLine=shift(@records);
 1016:     }
 1017:     my $total=$#records;
 1018:     my $distotal=$total+1;
 1019:     my $today=time;
 1020:     my $halfyear=$today+15552000;
 1021:     #
 1022:     # Restore memorized settings
 1023:     my $col_setting_names =  { 'username_choice' => 'scalar', # column settings
 1024:                                'names_choice' => 'scalar',
 1025:                                'fname_choice' => 'scalar',
 1026:                                'mname_choice' => 'scalar',
 1027:                                'lname_choice' => 'scalar',
 1028:                                'gen_choice' => 'scalar',
 1029:                                'id_choice' => 'scalar',
 1030:                                'sec_choice' => 'scalar',
 1031:                                'ipwd_choice' => 'scalar',
 1032:                                'email_choice' => 'scalar',
 1033:                                'role_choice' => 'scalar',
 1034:                                'domain_choice' => 'scalar',
 1035:                                'inststatus_choice' => 'scalar',
 1036:                              };
 1037:     my $defdom = $env{'request.role.domain'};
 1038:     if ($context eq 'course') {
 1039:         &Apache::loncommon::restore_course_settings('enrollment_upload',
 1040:                                                     $col_setting_names);
 1041:     } else {
 1042:         &Apache::loncommon::restore_settings($context,'user_upload',
 1043:                                              $col_setting_names);
 1044:     }
 1045:     #
 1046:     # Determine kerberos parameters as appropriate
 1047:     my ($krbdef,$krbdefdom) =
 1048:         &Apache::loncommon::get_kerberos_defaults($defdom);
 1049:     #
 1050:     my ($authnum,%can_assign) =  &Apache::loncommon::get_assignable_auth($defdom);
 1051:     &print_upload_manager_header($r,$datatoken,$distotal,$krbdefdom,$context,
 1052:                                  $permission,$crstype,\%can_assign);
 1053:     my $i;
 1054:     my $keyfields;
 1055:     if ($total>=0) {
 1056:         my @field=
 1057:             (['username',&mt('Username'),     $env{'form.username_choice'}],
 1058:              ['names',&mt('Last Name, First Names'),$env{'form.names_choice'}],
 1059:              ['fname',&mt('First Name'),      $env{'form.fname_choice'}],
 1060:              ['mname',&mt('Middle Names/Initials'),$env{'form.mname_choice'}],
 1061:              ['lname',&mt('Last Name'),       $env{'form.lname_choice'}],
 1062:              ['gen',  &mt('Generation'),      $env{'form.gen_choice'}],
 1063:              ['id',   &mt('Student/Employee ID'),$env{'form.id_choice'}],
 1064:              ['sec',  &mt('Section'),          $env{'form.sec_choice'}],
 1065:              ['ipwd', &mt('Initial Password'),$env{'form.ipwd_choice'}],
 1066:              ['email',&mt('E-mail Address'),   $env{'form.email_choice'}],
 1067:              ['role',&mt('Role'),             $env{'form.role_choice'}],
 1068:              ['domain',&mt('Domain'),         $env{'form.domain_choice'}],
 1069:              ['inststatus',&mt('Affiliation'), $env{'form.inststatus_choice'}]);
 1070:         if ($env{'form.upfile_associate'} eq 'reverse') {
 1071:             &Apache::loncommon::csv_print_samples($r,\@records);
 1072:             $i=&Apache::loncommon::csv_print_select_table($r,\@records,
 1073:                                                           \@field);
 1074:             foreach (@field) {
 1075:                 $keyfields.=$_->[0].',';
 1076:             }
 1077:             chop($keyfields);
 1078:         } else {
 1079:             unshift(@field,['none','']);
 1080:             $i=&Apache::loncommon::csv_samples_select_table($r,\@records,
 1081:                                                             \@field);
 1082:             my %sone=&Apache::loncommon::record_sep($records[0]);
 1083:             $keyfields=join(',',sort(keys(%sone)));
 1084:         }
 1085:     }
 1086:     $r->print('</div>');
 1087:     &print_upload_manager_footer($r,$i,$keyfields,$defdom,$today,$halfyear,
 1088:                                  $context,$permission,$crstype);
 1089: }
 1090: 
 1091: sub setup_date_selectors {
 1092:     my ($starttime,$endtime,$mode,$nolink,$formname) = @_;
 1093:     if ($formname eq '') {
 1094:         $formname = 'studentform';
 1095:     }
 1096:     if (! defined($starttime)) {
 1097:         $starttime = time;
 1098:         unless ($mode eq 'create_enrolldates' || $mode eq 'create_defaultdates') {
 1099:             if (exists($env{'course.'.$env{'request.course.id'}.
 1100:                             '.default_enrollment_start_date'})) {
 1101:                 $starttime = $env{'course.'.$env{'request.course.id'}.
 1102:                                   '.default_enrollment_start_date'};
 1103:             }
 1104:         }
 1105:     }
 1106:     if (! defined($endtime)) {
 1107:         $endtime = time+(6*30*24*60*60); # 6 months from now, approx
 1108:         unless ($mode eq 'createcourse') {
 1109:             if (exists($env{'course.'.$env{'request.course.id'}.
 1110:                             '.default_enrollment_end_date'})) {
 1111:                 $endtime = $env{'course.'.$env{'request.course.id'}.
 1112:                                 '.default_enrollment_end_date'};
 1113:             }
 1114:         }
 1115:     }
 1116: 
 1117:     my $startdateform = 
 1118:         &Apache::lonhtmlcommon::date_setter($formname,'startdate',$starttime,
 1119:             undef,undef,undef,undef,undef,undef,undef,$nolink);
 1120: 
 1121:     my $enddateform = 
 1122:         &Apache::lonhtmlcommon::date_setter($formname,'enddate',$endtime,
 1123:             undef,undef,undef,undef,undef,undef,undef,$nolink);
 1124: 
 1125:     if ($mode eq 'create_enrolldates') {
 1126:         $startdateform = &Apache::lonhtmlcommon::date_setter('ccrs',
 1127:                                                             'startenroll',
 1128:                                                             $starttime);
 1129:         $enddateform = &Apache::lonhtmlcommon::date_setter('ccrs',
 1130:                                                           'endenroll',
 1131:                                                           $endtime);
 1132:     }
 1133:     if ($mode eq 'create_defaultdates') {
 1134:         $startdateform = &Apache::lonhtmlcommon::date_setter('ccrs',
 1135:                                                             'startaccess',
 1136:                                                             $starttime);
 1137:         $enddateform = &Apache::lonhtmlcommon::date_setter('ccrs',
 1138:                                                           'endaccess',
 1139:                                                           $endtime);
 1140:     }
 1141:     return ($startdateform,$enddateform);
 1142: }
 1143: 
 1144: 
 1145: sub get_dates_from_form {
 1146:     my ($startname,$endname) = @_;
 1147:     if ($startname eq '') {
 1148:         $startname = 'startdate';
 1149:     }
 1150:     if ($endname eq '') {
 1151:         $endname = 'enddate';
 1152:     }
 1153:     my $startdate = &Apache::lonhtmlcommon::get_date_from_form($startname);
 1154:     my $enddate   = &Apache::lonhtmlcommon::get_date_from_form($endname);
 1155:     if ($env{'form.no_end_date'}) {
 1156:         $enddate = 0;
 1157:     }
 1158:     return ($startdate,$enddate);
 1159: }
 1160: 
 1161: sub date_setting_table {
 1162:     my ($starttime,$endtime,$mode,$bulkaction,$formname,$permission,$crstype) = @_;
 1163:     my $nolink;
 1164:     if ($bulkaction) {
 1165:         $nolink = 1;
 1166:     }
 1167:     my ($startform,$endform) = 
 1168:         &setup_date_selectors($starttime,$endtime,$mode,$nolink,$formname);
 1169:     my $dateDefault;
 1170:     if ($mode eq 'create_enrolldates' || $mode eq 'create_defaultdates') {
 1171:         $dateDefault = '&nbsp;';
 1172:     } elsif ($mode ne 'author' && $mode ne 'domain') {
 1173:         if (($bulkaction eq 'reenable') || 
 1174:             ($bulkaction eq 'activate') || 
 1175:             ($bulkaction eq 'chgdates') ||
 1176:             ($env{'form.action'} eq 'upload')) {
 1177:             if ($env{'request.course.sec'} eq '') {
 1178:                 $dateDefault = '<span class="LC_nobreak">'.
 1179:                     '<label><input type="checkbox" name="makedatesdefault" value="1" /> ';
 1180:                 if ($crstype eq 'Community') {
 1181:                     $dateDefault .= &mt("make these dates the default access dates for future community enrollment");
 1182:                 } else {
 1183:                     $dateDefault .= &mt("make these dates the default access dates for future course enrollment");
 1184:                 }
 1185:                 $dateDefault .= '</label></span>';
 1186:             }
 1187:         }
 1188:     }
 1189:     my $perpetual = '<span class="LC_nobreak"><label><input type="checkbox" name="no_end_date"';
 1190:     if (defined($endtime) && $endtime == 0) {
 1191:         $perpetual .= ' checked="checked"';
 1192:     }
 1193:     $perpetual.= ' /> '.&mt('no ending date').'</label></span>';
 1194:     if ($mode eq 'create_enrolldates') {
 1195:         $perpetual = '&nbsp;';
 1196:     }
 1197:     my $result = &Apache::lonhtmlcommon::start_pick_box()."\n";
 1198:     $result .= &Apache::lonhtmlcommon::row_title(&mt('Starting Date'),
 1199:                                                      'LC_oddrow_value')."\n".
 1200:                $startform."\n".
 1201:                &Apache::lonhtmlcommon::row_closure(1).
 1202:                &Apache::lonhtmlcommon::row_title(&mt('Ending Date'), 
 1203:                                                      'LC_oddrow_value')."\n".
 1204:                $endform.'&nbsp;'.$perpetual.
 1205:                &Apache::lonhtmlcommon::row_closure(1).
 1206:                &Apache::lonhtmlcommon::end_pick_box();
 1207:     if ($dateDefault) {
 1208:         $result .=  $dateDefault.'<br />'."\n";
 1209:     }
 1210:     return $result;
 1211: }
 1212: 
 1213: sub make_dates_default {
 1214:     my ($startdate,$enddate,$context,$crstype) = @_;
 1215:     my $result = '';
 1216:     if ($context eq 'course') {
 1217:         my ($cnum,$cdom) = &get_course_identity();
 1218:         my $put_result = &Apache::lonnet::put('environment',
 1219:                 {'default_enrollment_start_date'=>$startdate,
 1220:                  'default_enrollment_end_date'  =>$enddate},$cdom,$cnum);
 1221:         if ($put_result eq 'ok') {
 1222:             if ($crstype eq 'Community') {
 1223:                 $result .= &mt('Set default start and end access dates for community.');
 1224:             } else {
 1225:                 $result .= &mt('Set default start and end access dates for course.');
 1226:             }
 1227:             $result .= '<br />'."\n";
 1228:             #
 1229:             # Refresh the course environment
 1230:             &Apache::lonnet::coursedescription($env{'request.course.id'},
 1231:                                                {'freshen_cache' => 1});
 1232:         } else {
 1233:             if ($crstype eq 'Community') {
 1234:                 $result .= &mt('Unable to set default access dates for community');
 1235:             } else {
 1236:                 $result .= &mt('Unable to set default access dates for course');
 1237:             }
 1238:             $result .= ':'.$put_result.'<br />';
 1239:         }
 1240:     }
 1241:     return $result;
 1242: }
 1243: 
 1244: sub default_role_selector {
 1245:     my ($context,$checkpriv,$crstype) = @_;
 1246:     my %customroles;
 1247:     my ($options,$coursepick,$cb_jscript);
 1248:     if ($context ne 'author') {
 1249:         %customroles = &my_custom_roles($crstype);
 1250:     }
 1251: 
 1252:     my %lt=&Apache::lonlocal::texthash(
 1253:                     'rol'  => "Role",
 1254:                     'grs'  => "Section",
 1255:                     'exs'  => "Existing sections",
 1256:                     'new'  => "New section",
 1257:                   );
 1258:     $options = '<select name="defaultrole">'."\n".
 1259:                ' <option value="">'.&mt('Please select').'</option>'."\n"; 
 1260:     if ($context eq 'course') {
 1261:         $options .= &default_course_roles($context,$checkpriv,$crstype,%customroles);
 1262:     } elsif ($context eq 'author') {
 1263:         my @roles = &construction_space_roles($checkpriv);
 1264:         foreach my $role (@roles) {
 1265:            my $plrole=&Apache::lonnet::plaintext($role);
 1266:            $options .= '  <option value="'.$role.'">'.$plrole.'</option>'."\n";
 1267:         }
 1268:     } elsif ($context eq 'domain') {
 1269:         my @roles = &domain_roles($checkpriv);
 1270:         foreach my $role (@roles) {
 1271:            my $plrole=&Apache::lonnet::plaintext($role);
 1272:            $options .= '  <option value="'.$role.'">'.$plrole.'</option>';
 1273:         }
 1274:         my $courseform = &Apache::loncommon::selectcourse_link
 1275:             ('studentform','dccourse','dcdomain','coursedesc',"$env{'request.role.domain'}",undef,'Course/Community');
 1276:         $cb_jscript = 
 1277:             &Apache::loncommon::coursebrowser_javascript($env{'request.role.domain'},'currsec','studentform','courserole','Course/Community');
 1278:         $coursepick = &Apache::loncommon::start_data_table().
 1279:                       &Apache::loncommon::start_data_table_header_row().
 1280:                       '<th>'.$courseform.'</th><th>'.$lt{'rol'}.'</th>'.
 1281:                       '<th>'.$lt{'grs'}.'</th>'.
 1282:                       &Apache::loncommon::end_data_table_header_row().
 1283:                       &Apache::loncommon::start_data_table_row()."\n".
 1284:                       '<td><input type="text" name="coursedesc" value="" onfocus="this.blur();opencrsbrowser('."'studentform','dccourse','dcdomain','coursedesc','','','','crstype'".')" /></td>'."\n".
 1285:                       '<td><select name="courserole">'."\n".
 1286:                       &default_course_roles($context,$checkpriv,'Course',%customroles)."\n".
 1287:                       '</select></td><td>'.
 1288:                       '<table class="LC_createuser">'.
 1289:                       '<tr class="LC_section_row"><td valign"top">'.
 1290:                       $lt{'exs'}.'<br /><select name="currsec">'.
 1291:                       ' <option value=""><--'.&mt('Pick course first').
 1292:                       '</select></td>'.
 1293:                       '<td>&nbsp;&nbsp;</td>'.
 1294:                       '<td valign="top">'.$lt{'new'}.'<br />'.
 1295:                       '<input type="text" name="newsec" value="" size="5" />'.
 1296:                       '<input type="hidden" name="groups" value="" />'.
 1297:                       '<input type="hidden" name="sections" value="" />'.
 1298:                       '<input type="hidden" name="origdom" value="'.
 1299:                       $env{'request.role.domain'}.'" />'.
 1300:                       '<input type="hidden" name="dccourse" value="" />'.
 1301:                       '<input type="hidden" name="dcdomain" value="" />'.
 1302:                       '<input type="hidden" name="crstype" value="" />'.
 1303:                       '</td></tr></table></td>'.
 1304:                       &Apache::loncommon::end_data_table_row().
 1305:                       &Apache::loncommon::end_data_table()."\n";
 1306:     }
 1307:     $options .= '</select>';
 1308:     return ($options,$cb_jscript,$coursepick);
 1309: }
 1310: 
 1311: sub default_course_roles {
 1312:     my ($context,$checkpriv,$crstype,%customroles) = @_;
 1313:     my $output;
 1314:     my $custom = 1;
 1315:     my @roles = &course_roles($context,$checkpriv,$custom,lc($crstype));
 1316:     foreach my $role (@roles) {
 1317:         if ($role ne 'cr') {
 1318:             my $plrole=&Apache::lonnet::plaintext($role,$crstype);
 1319:             $output .= '  <option value="'.$role.'">'.$plrole.'</option>';
 1320:         }
 1321:     }
 1322:     if (keys(%customroles) > 0) {
 1323:         if (grep(/^cr$/,@roles)) {
 1324:             foreach my $cust (sort(keys(%customroles))) {
 1325:                 my $custrole='cr_'.$env{'user.domain'}.
 1326:                              '_'.$env{'user.name'}.'_'.$cust;
 1327:                 $output .= '  <option value="'.$custrole.'">'.$cust.'</option>';
 1328:             }
 1329:         }
 1330:     }
 1331:     return $output;
 1332: }
 1333: 
 1334: sub construction_space_roles {
 1335:     my ($checkpriv) = @_;
 1336:     my @allroles = &roles_by_context('author');
 1337:     my @roles;
 1338:     if ($checkpriv) {
 1339:         foreach my $role (@allroles) {
 1340:             if (&Apache::lonnet::allowed('c'.$role,$env{'user.domain'}.'/'.$env{'user.name'})) { 
 1341:                 push(@roles,$role); 
 1342:             }
 1343:         }
 1344:         return @roles;
 1345:     } else {
 1346:         return @allroles;
 1347:     }
 1348: }
 1349: 
 1350: sub domain_roles {
 1351:     my ($checkpriv) = @_;
 1352:     my @allroles = &roles_by_context('domain');
 1353:     my @roles;
 1354:     if ($checkpriv) {
 1355:         foreach my $role (@allroles) {
 1356:             if (&Apache::lonnet::allowed('c'.$role,$env{'request.role.domain'})) {
 1357:                 push(@roles,$role);
 1358:             }
 1359:         }
 1360:         return @roles;
 1361:     } else {
 1362:         return @allroles;
 1363:     }
 1364: }
 1365: 
 1366: sub course_roles {
 1367:     my ($context,$checkpriv,$custom,$roletype) = @_;
 1368:     my $crstype;
 1369:     if ($roletype eq 'community') {
 1370:         $crstype = 'Community' ;
 1371:     } else {
 1372:         $crstype = 'Course';
 1373:     }
 1374:     my @allroles = &roles_by_context('course',$custom,$crstype);
 1375:     my @roles;
 1376:     if ($context eq 'domain') {
 1377:         @roles = @allroles;
 1378:     } elsif ($context eq 'course') {
 1379:         if ($env{'request.course.id'}) {
 1380:             if ($checkpriv) { 
 1381:                 foreach my $role (@allroles) {
 1382:                     if (&Apache::lonnet::allowed('c'.$role,$env{'request.course.id'})) {
 1383:                         push(@roles,$role);
 1384:                     } else {
 1385:                         if ((($role ne 'cc') && ($role ne 'co')) && ($env{'request.course.sec'} ne '')) {
 1386:                             if (&Apache::lonnet::allowed('c'.$role,
 1387:                                              $env{'request.course.id'}.'/'.
 1388:                                              $env{'request.course.sec'})) {
 1389:                                 push(@roles,$role);
 1390:                             }
 1391:                         }
 1392:                     }
 1393:                 }
 1394:             } else {
 1395:                 @roles = @allroles;
 1396:             }
 1397:         }
 1398:     }
 1399:     return @roles;
 1400: }
 1401: 
 1402: sub curr_role_permissions {
 1403:     my ($context,$setting,$checkpriv,$type) = @_; 
 1404:     my $custom = 1;
 1405:     my @roles;
 1406:     if ($context eq 'author') {
 1407:         @roles = &construction_space_roles($checkpriv);
 1408:     } elsif ($context eq 'domain') {
 1409:         if ($setting eq 'course') {
 1410:             @roles = &course_roles($context,$checkpriv,$custom,$type); 
 1411:         } else {
 1412:             @roles = &domain_roles($checkpriv);
 1413:         }
 1414:     } elsif ($context eq 'course') {
 1415:         @roles = &course_roles($context,$checkpriv,$custom,$type);
 1416:     }
 1417:     return @roles;
 1418: }
 1419: 
 1420: # ======================================================= Existing Custom Roles
 1421: 
 1422: sub my_custom_roles {
 1423:     my ($crstype) = @_;
 1424:     my %returnhash=();
 1425:     my %rolehash=&Apache::lonnet::dump('roles');
 1426:     foreach my $key (keys(%rolehash)) {
 1427:         if ($key=~/^rolesdef\_(\w+)$/) {
 1428:             if ($crstype eq 'Community') {
 1429:                 next if ($rolehash{$key} =~ /bre\&S/); 
 1430:             }
 1431:             $returnhash{$1}=$1;
 1432:         }
 1433:     }
 1434:     return %returnhash;
 1435: }
 1436: 
 1437: sub print_userlist {
 1438:     my ($r,$mode,$permission,$context,$formname,$totcodes,$codetitles,
 1439:         $idlist,$idlist_titles) = @_;
 1440:     my $format = $env{'form.output'};
 1441:     if (! exists($env{'form.sortby'})) {
 1442:         $env{'form.sortby'} = 'username';
 1443:     }
 1444:     if ($env{'form.Status'} !~ /^(Any|Expired|Active|Future)$/) {
 1445:         $env{'form.Status'} = 'Active';
 1446:     }
 1447:     my $status_select = &Apache::lonhtmlcommon::StatusOptions
 1448:         ($env{'form.Status'});
 1449: 
 1450:     if ($env{'form.showrole'} eq '') {
 1451:         if ($context eq 'course') {
 1452:             $env{'form.showrole'} = 'st';
 1453:         } else {
 1454:             $env{'form.showrole'} = 'Any';            
 1455:         }
 1456:     }
 1457:     if (! defined($env{'form.output'}) ||
 1458:         $env{'form.output'} !~ /^(csv|excel|html)$/ ) {
 1459:         $env{'form.output'} = 'html';
 1460:     }
 1461: 
 1462:     my @statuses;
 1463:     if ($env{'form.Status'} eq 'Any') {
 1464:         @statuses = ('previous','active','future');
 1465:     } elsif ($env{'form.Status'} eq 'Expired') {
 1466:         @statuses = ('previous');
 1467:     } elsif ($env{'form.Status'} eq 'Active') {
 1468:         @statuses = ('active');
 1469:     } elsif ($env{'form.Status'} eq 'Future') {
 1470:         @statuses = ('future');
 1471:     }
 1472: 
 1473: #    if ($context eq 'course') { 
 1474: #        $r->print(&display_adv_courseroles());
 1475: #    }
 1476:     #
 1477:     # Interface output
 1478:     $r->print('<form name="studentform" method="post" action="/adm/createuser">'."\n".
 1479:               '<input type="hidden" name="action" value="'.
 1480:               $env{'form.action'}.'" />');
 1481:     $r->print("<p>\n");
 1482:     if ($env{'form.action'} ne 'modifystudent') {
 1483:         my %lt=&Apache::lonlocal::texthash('csv' => "CSV",
 1484:                                            'excel' => "Excel",
 1485:                                            'html'  => 'HTML');
 1486:         my $output_selector = '<select size="1" name="output" >';
 1487:         foreach my $outputformat ('html','csv','excel') {
 1488:             my $option = '<option value="'.$outputformat.'"';
 1489:             if ($outputformat eq $env{'form.output'}) {
 1490:                 $option .= ' selected="selected"';
 1491:             }
 1492:             $option .='>'.$lt{$outputformat}.'</option>';
 1493:             $output_selector .= "\n".$option;
 1494:         }
 1495:         $output_selector .= '</select>';
 1496:         $r->print('<label><span class="LC_nobreak">'
 1497:                  .&mt('Output Format: [_1]',$output_selector)
 1498:                  .'</span></label>'.('&nbsp;'x3));
 1499:     }
 1500:     $r->print('<label><span class="LC_nobreak">'
 1501:              .&mt('User Status: [_1]',$status_select)
 1502:              .'</span></label>'.('&nbsp;'x3)."\n");
 1503:     my $roleselected = '';
 1504:     if ($env{'form.showrole'} eq 'Any') {
 1505:        $roleselected = ' selected="selected"'; 
 1506:     }
 1507:     my ($cnum,$cdom);
 1508:     $r->print(&role_filter($context));
 1509:     if ($context eq 'course') {
 1510:         ($cnum,$cdom) = &get_course_identity();
 1511:         $r->print(&section_group_filter($cnum,$cdom));
 1512:     }
 1513:     if ($env{'form.phase'} eq '') {
 1514:         $r->print('<br /><br />'.&list_submit_button(&mt('Display List of Users')).
 1515:                   "\n</p>\n".
 1516:                   '<input type="hidden" name="phase" value="" /></form>');
 1517:         return;
 1518:     }
 1519:     if (!(($context eq 'domain') && 
 1520:           (($env{'form.roletype'} eq 'course') || ($env{'form.roletype'} eq 'community')))) {
 1521:         $r->print(
 1522:             "\n</p>\n"
 1523:            .'<p>'
 1524:            .&list_submit_button(&mt('Update Display'))
 1525:            ."</p>\n"
 1526:         );
 1527:     }
 1528:     my ($indexhash,$keylist) = &make_keylist_array();
 1529:     my (%userlist,%userinfo,$clearcoursepick);
 1530:     if (($context eq 'domain') && 
 1531:         ($env{'form.roletype'} eq 'course') || 
 1532:         ($env{'form.roletype'} eq 'community')) {
 1533:         my ($crstype,$numcodes,$title,$warning);
 1534:         if ($env{'form.roletype'} eq 'course') {
 1535:             $crstype = 'Course';
 1536:             $numcodes = $totcodes;
 1537:             $title = &mt('Select Courses');
 1538:             $warning = &mt('Warning: data retrieval for multiple courses can take considerable time, as this operation is not currently optimized.');
 1539:         } elsif ($env{'form.roletype'} eq 'community') {
 1540:             $crstype = 'Community';
 1541:             $numcodes = 0;
 1542:             $title = &mt('Select Communities');
 1543:             $warning = &mt('Warning: data retrieval for multiple communities can take considerable time, as this operation is not currently optimized.');
 1544:         }
 1545:         my @standardnames = &Apache::loncommon::get_standard_codeitems();
 1546:         my $courseform =
 1547:             &Apache::lonhtmlcommon::course_selection($formname,$numcodes,
 1548:                             $codetitles,$idlist,$idlist_titles,$crstype,
 1549:                             \@standardnames);
 1550:         $r->print('<p>'.&Apache::lonhtmlcommon::start_pick_box()."\n".
 1551:                   &Apache::lonhtmlcommon::start_pick_box()."\n".
 1552:                   &Apache::lonhtmlcommon::row_title($title,'LC_oddrow_value')."\n".
 1553:                   $courseform."\n".
 1554:                   &Apache::lonhtmlcommon::row_closure(1).
 1555:                   &Apache::lonhtmlcommon::end_pick_box().'</p>'.
 1556:                   '<p><input type="hidden" name="origroletype" value="'.$env{'form.roletype'}.'" />'.
 1557:                   &list_submit_button(&mt('Update Display')).
 1558:                   "\n".'</p><span class="LC_warning">'.$warning.'</span>'."\n");
 1559:         $clearcoursepick = 0;
 1560:         if (($env{'form.origroletype'} ne '') &&
 1561:             ($env{'form.origroletype'} ne $env{'form.roletype'})) {
 1562:             $clearcoursepick = 1;
 1563:         }
 1564:         if (($env{'form.coursepick'}) && (!$clearcoursepick)) {
 1565:             $r->print('<hr />'.&mt('Searching').' ...<br />&nbsp;<br />');
 1566:         }
 1567:     } else {
 1568:         $r->print('<hr />'.&mt('Searching').' ...<br />&nbsp;<br />');
 1569:     }
 1570:     $r->rflush();
 1571:     if ($context eq 'course') {
 1572:         if (($env{'form.showrole'} eq 'st') || ($env{'form.showrole'} eq 'Any')) { 
 1573:             my $classlist = &Apache::loncoursedata::get_classlist();
 1574:             if (ref($classlist) eq 'HASH') {
 1575:                 %userlist = %{$classlist};
 1576:             }
 1577:         }
 1578:         if ($env{'form.showrole'} ne 'st') {
 1579:             my $showroles;
 1580:             if ($env{'form.showrole'} ne 'Any') {
 1581:                 $showroles = [$env{'form.showrole'}];
 1582:             } else {
 1583:                 $showroles = undef;
 1584:             }
 1585:             my $withsec = 1;
 1586:             my $hidepriv = 1;
 1587:             my %advrolehash = &Apache::lonnet::get_my_roles($cnum,$cdom,undef,
 1588:                               \@statuses,$showroles,undef,$withsec,$hidepriv);
 1589:             &gather_userinfo($context,$format,\%userlist,$indexhash,\%userinfo,
 1590:                              \%advrolehash,$permission);
 1591:         }
 1592:     } else {
 1593:         my (%cstr_roles,%dom_roles);
 1594:         if ($context eq 'author') {
 1595:             # List co-authors and assistant co-authors
 1596:             my @possroles = &roles_by_context($context);
 1597:             %cstr_roles = &Apache::lonnet::get_my_roles(undef,undef,undef,
 1598:                                               \@statuses,\@possroles);
 1599:             &gather_userinfo($context,$format,\%userlist,$indexhash,\%userinfo,
 1600:                              \%cstr_roles,$permission);
 1601:         } elsif ($context eq 'domain') {
 1602:             if ($env{'form.roletype'} eq 'domain') {
 1603:                 %dom_roles = &Apache::lonnet::get_domain_roles($env{'request.role.domain'});
 1604:                 foreach my $key (keys(%dom_roles)) {
 1605:                     if (ref($dom_roles{$key}) eq 'HASH') {
 1606:                         &gather_userinfo($context,$format,\%userlist,$indexhash,
 1607:                                          \%userinfo,$dom_roles{$key},$permission);
 1608:                     }
 1609:                 }
 1610:             } elsif ($env{'form.roletype'} eq 'author') {
 1611:                 my %dom_roles = &Apache::lonnet::get_domain_roles($env{'request.role.domain'},['au']);
 1612:                 my %coauthors;
 1613:                 foreach my $key (keys(%dom_roles)) {
 1614:                     if (ref($dom_roles{$key}) eq 'HASH') {
 1615:                         if ($env{'form.showrole'} eq 'au') {
 1616:                             &gather_userinfo($context,$format,\%userlist,$indexhash,
 1617:                                              \%userinfo,$dom_roles{$key},$permission);
 1618:                         } else {
 1619:                             my @possroles;
 1620:                             if ($env{'form.showrole'} eq 'Any') {
 1621:                                 @possroles = &roles_by_context('author');
 1622:                             } else {
 1623:                                 @possroles = ($env{'form.showrole'}); 
 1624:                             }
 1625:                             foreach my $author (sort(keys(%{$dom_roles{$key}}))) {
 1626:                                 my ($role,$authorname,$authordom) = split(/:/,$author,-1);
 1627:                                 my $extent = '/'.$authordom.'/'.$authorname;
 1628:                                 %{$coauthors{$extent}} =
 1629:                                     &Apache::lonnet::get_my_roles($authorname,
 1630:                                        $authordom,undef,\@statuses,\@possroles);
 1631:                             }
 1632:                             &gather_userinfo($context,$format,\%userlist,
 1633:                                      $indexhash,\%userinfo,\%coauthors,$permission);
 1634:                         }
 1635:                     }
 1636:                 }
 1637:             } elsif (($env{'form.roletype'} eq 'course') ||
 1638:                      ($env{'form.roletype'} eq 'community')) {
 1639:                 if (($env{'form.coursepick'}) && (!$clearcoursepick)) {
 1640:                     my %courses = &process_coursepick();
 1641:                     my %allusers;
 1642:                     my $hidepriv = 1;
 1643:                     foreach my $cid (keys(%courses)) {
 1644:                         my ($cnum,$cdom,$cdesc) = &get_course_identity($cid);
 1645:                         next if ($cnum eq '' || $cdom eq '');
 1646:                         my $custom = 1;
 1647:                         my (@roles,@sections,%access,%users,%userdata,
 1648:                             %statushash);
 1649:                         if ($env{'form.showrole'} eq 'Any') {
 1650:                             @roles = &course_roles($context,undef,$custom,
 1651:                                                    $env{'form.roletype'});
 1652:                         } else {
 1653:                             @roles = ($env{'form.showrole'});
 1654:                         }
 1655:                         foreach my $role (@roles) {
 1656:                             %{$users{$role}} = ();
 1657:                         }
 1658:                         foreach my $type (@statuses) {
 1659:                             $access{$type} = $type;
 1660:                         }
 1661:                         &Apache::loncommon::get_course_users($cdom,$cnum,\%access,\@roles,\@sections,\%users,\%userdata,\%statushash,$hidepriv);
 1662:                         foreach my $user (keys(%userdata)) {
 1663:                             next if (ref($userinfo{$user}) eq 'HASH');
 1664:                             foreach my $item ('fullname','id') {
 1665:                                 $userinfo{$user}{$item} = $userdata{$user}[$indexhash->{$item}];
 1666:                             }
 1667:                         }
 1668:                         foreach my $role (keys(%users)) {
 1669:                             foreach my $user (keys(%{$users{$role}})) {
 1670:                                 my $uniqid = $user.':'.$role;
 1671:                                 $allusers{$uniqid}{$cid} = { desc => $cdesc,
 1672:                                                              secs  => $statushash{$user}{$role},
 1673:                                                            };
 1674:                             }
 1675:                         }
 1676:                     }
 1677:                     &gather_userinfo($context,$format,\%userlist,$indexhash,
 1678:                                      \%userinfo,\%allusers,$permission);
 1679:                 } else {
 1680:                     $r->print('<input type="hidden" name="phase" value="'.
 1681:                               $env{'form.phase'}.'" /></form>');
 1682:                     return;
 1683:                 }
 1684:             }
 1685:         }
 1686:     }
 1687:     if (keys(%userlist) == 0) {
 1688:         if ($context eq 'author') {
 1689:             $r->print(&mt('There are no co-authors to display.')."\n");
 1690:         } elsif ($context eq 'domain') {
 1691:             if ($env{'form.roletype'} eq 'domain') {
 1692:                 $r->print(&mt('There are no users with domain roles to display.')."\n");
 1693:             } elsif ($env{'form.roletype'} eq 'author') {
 1694:                 $r->print(&mt('There are no authors or co-authors to display.')."\n");
 1695:             } elsif ($env{'form.roletype'} eq 'course') {
 1696:                 $r->print(&mt('There are no course users to display')."\n"); 
 1697:             } elsif ($env{'form.roletype'} eq 'community') {
 1698:                 $r->print(&mt('There are no community users to display')."\n");
 1699:             }
 1700:         } elsif ($context eq 'course') {
 1701:             $r->print(&mt('There are no course users to display.')."\n");
 1702:         }
 1703:     } else {
 1704:         # Print out the available choices
 1705:         my $usercount;
 1706:         if ($env{'form.action'} eq 'modifystudent') {
 1707:             ($usercount) = &show_users_list($r,$context,'view',$permission,
 1708:                                  $env{'form.Status'},\%userlist,$keylist);
 1709:         } else {
 1710:             ($usercount) = &show_users_list($r,$context,$env{'form.output'},
 1711:                                $permission,$env{'form.Status'},\%userlist,$keylist);
 1712:         }
 1713:         if (!$usercount) {
 1714:             $r->print('<br /><span class="LC_warning">'
 1715:                      .&mt('There are no users matching the search criteria.')
 1716:                      .'</span>'
 1717:             ); 
 1718:         }
 1719:     }
 1720:     $r->print('<input type="hidden" name="phase" value="'.
 1721:               $env{'form.phase'}.'" /></form>');
 1722: }
 1723: 
 1724: sub role_filter {
 1725:     my ($context) = @_;
 1726:     my $output;
 1727:     my $roleselected = '';
 1728:     if ($env{'form.showrole'} eq 'Any') {
 1729:        $roleselected = ' selected="selected"';
 1730:     }
 1731:     my ($role_select);
 1732:     if ($context eq 'domain') {
 1733:         $role_select = &domain_roles_select();
 1734:         $output = '<label><span class="LC_nobreak">'
 1735:                  .&mt('Role Type: [_1]',$role_select)
 1736:                  .'</span></label>';
 1737:     } else {
 1738:         $role_select = '<select name="showrole">'."\n".
 1739:                        '<option value="Any" '.$roleselected.'>'.
 1740:                        &mt('Any role').'</option>';
 1741:         my ($roletype,$crstype);
 1742:         if ($context eq 'course') {
 1743:             $crstype = &Apache::loncommon::course_type();
 1744:             if ($crstype eq 'Community') {
 1745:                 $roletype = 'community';
 1746:             } else {
 1747:                 $roletype = 'course';
 1748:             } 
 1749:         }
 1750:         my @poss_roles = &curr_role_permissions($context,'','',$roletype);
 1751:         foreach my $role (@poss_roles) {
 1752:             $roleselected = '';
 1753:             if ($role eq $env{'form.showrole'}) {
 1754:                 $roleselected = ' selected="selected"';
 1755:             }
 1756:             my $plrole;
 1757:             if ($role eq 'cr') {
 1758:                 $plrole = &mt('Custom role');
 1759:             } else {
 1760:                 $plrole=&Apache::lonnet::plaintext($role,$crstype);
 1761:             }
 1762:             $role_select .= '<option value="'.$role.'"'.$roleselected.'>'.$plrole.'</option>';
 1763:         }
 1764:         $role_select .= '</select>';
 1765:         $output = '<label><span class="LC_nobreak">'
 1766:                  .&mt('Role: [_1]',$role_select)
 1767:                  .'</span></label> ';
 1768:     }
 1769:     return $output;
 1770: }
 1771: 
 1772: sub section_group_filter {
 1773:     my ($cnum,$cdom) = @_;
 1774:     my @filters;
 1775:     if ($env{'request.course.sec'} eq '') {
 1776:         @filters = ('sec');
 1777:     }
 1778:     push(@filters,'grp');
 1779:     my %name = (
 1780:                  sec => 'secfilter',
 1781:                  grp => 'grpfilter',
 1782:                );
 1783:     my %title = &Apache::lonlocal::texthash (
 1784:                                               sec  => 'Section(s)',
 1785:                                               grp  => 'Group(s)',
 1786:                                               all  => 'all',
 1787:                                               none => 'none',
 1788:                                             );
 1789:     my $output;
 1790:     foreach my $item (@filters) {
 1791:         my ($markup,@options); 
 1792:         if ($env{'form.'.$name{$item}} eq '') {
 1793:             $env{'form.'.$name{$item}} = 'all';
 1794:         }
 1795:         if ($item eq 'sec') {
 1796:             if (($env{'form.showrole'} eq 'cc') || ($env{'form.showrole'} eq 'co')) {
 1797:                 $env{'form.'.$name{$item}} = 'none';
 1798:             }
 1799:             my %sections_count = &Apache::loncommon::get_sections($cdom,$cnum);
 1800:             @options = sort(keys(%sections_count));
 1801:         } elsif ($item eq 'grp') {
 1802:             my %curr_groups = &Apache::longroup::coursegroups();
 1803:             @options = sort(keys(%curr_groups));
 1804:         }
 1805:         if (@options > 0) {
 1806:             my $currsel;
 1807:             $markup = '<select name="'.$name{$item}.'">'."\n";
 1808:             foreach my $option ('all','none',@options) { 
 1809:                 $currsel = '';
 1810:                 if ($env{'form.'.$name{$item}} eq $option) {
 1811:                     $currsel = ' selected="selected"';
 1812:                 }
 1813:                 $markup .= ' <option value="'.$option.'"'.$currsel.'>';
 1814:                 if (($option eq 'all') || ($option eq 'none')) {
 1815:                     $markup .= $title{$option};
 1816:                 } else {
 1817:                     $markup .= $option;
 1818:                 }   
 1819:                 $markup .= '</option>'."\n";
 1820:             }
 1821:             $markup .= '</select>'."\n";
 1822:             $output .= ('&nbsp;'x3).'<span class="LC_nobreak">'
 1823:                       .'<label>'.$title{$item}.': '.$markup.'</label>'
 1824:                       .'</span> ';
 1825:         }
 1826:     }
 1827:     return $output;
 1828: }
 1829: 
 1830: sub list_submit_button {
 1831:     my ($text) = @_;
 1832:     return '<input type="button" name="updatedisplay" value="'.$text.'" onclick="javascript:display_update()" />';
 1833: }
 1834: 
 1835: sub gather_userinfo {
 1836:     my ($context,$format,$userlist,$indexhash,$userinfo,$rolehash,$permission) = @_;
 1837:     my $viewablesec;
 1838:     if ($context eq 'course') {
 1839:         $viewablesec = &viewable_section($permission);
 1840:     }
 1841:     foreach my $item (keys(%{$rolehash})) {
 1842:         my %userdata;
 1843:         if ($context eq 'author') { 
 1844:             ($userdata{'username'},$userdata{'domain'},$userdata{'role'}) =
 1845:                 split(/:/,$item);
 1846:             ($userdata{'start'},$userdata{'end'})=split(/:/,$rolehash->{$item});
 1847:             &build_user_record($context,\%userdata,$userinfo,$indexhash,
 1848:                                $item,$userlist);
 1849:         } elsif ($context eq 'course') {
 1850:             ($userdata{'username'},$userdata{'domain'},$userdata{'role'},
 1851:              $userdata{'section'}) = split(/:/,$item,-1);
 1852:             ($userdata{'start'},$userdata{'end'})=split(/:/,$rolehash->{$item});
 1853:             if (($viewablesec ne '') && ($userdata{'section'} ne '')) {
 1854:                 next if ($viewablesec ne $userdata{'section'});
 1855:             }
 1856:             &build_user_record($context,\%userdata,$userinfo,$indexhash,
 1857:                                $item,$userlist);
 1858:         } elsif ($context eq 'domain') {
 1859:             if ($env{'form.roletype'} eq 'domain') {
 1860:                 ($userdata{'role'},$userdata{'username'},$userdata{'domain'}) =
 1861:                     split(/:/,$item);
 1862:                 ($userdata{'end'},$userdata{'start'})=split(/:/,$rolehash->{$item});
 1863:                 &build_user_record($context,\%userdata,$userinfo,$indexhash,
 1864:                                    $item,$userlist);
 1865:             } elsif ($env{'form.roletype'} eq 'author') {
 1866:                 if (ref($rolehash->{$item}) eq 'HASH') {
 1867:                     $userdata{'extent'} = $item;
 1868:                     foreach my $key (keys(%{$rolehash->{$item}})) {
 1869:                         ($userdata{'username'},$userdata{'domain'},$userdata{'role'}) =  split(/:/,$key);
 1870:                         ($userdata{'start'},$userdata{'end'}) = 
 1871:                             split(/:/,$rolehash->{$item}{$key});
 1872:                         my $uniqid = $key.':'.$item;
 1873:                         &build_user_record($context,\%userdata,$userinfo,
 1874:                                            $indexhash,$uniqid,$userlist);
 1875:                     }
 1876:                 }
 1877:             } elsif (($env{'form.roletype'} eq 'course') || 
 1878:                      ($env{'form.roletype'} eq 'community')) {
 1879:                 ($userdata{'username'},$userdata{'domain'},$userdata{'role'}) =
 1880:                     split(/:/,$item);
 1881:                 if (ref($rolehash->{$item}) eq 'HASH') {
 1882:                     my $numcids = keys(%{$rolehash->{$item}});
 1883:                     foreach my $cid (sort(keys(%{$rolehash->{$item}}))) {
 1884:                         if (ref($rolehash->{$item}{$cid}) eq 'HASH') {
 1885:                             my $spanstart = '';
 1886:                             my $spanend = '; ';
 1887:                             my $space = ', ';
 1888:                             if ($format eq 'html' || $format eq 'view') {
 1889:                                 $spanstart = '<span class="LC_nobreak">';
 1890:                                 # FIXME: actions on courses disabled for now
 1891: #                                if ($permission->{'cusr'}) {
 1892: #                                    if ($numcids > 1) {
 1893: #                                        $spanstart .= '<input type="radio" name="'.$item.'" value="'.$cid.'" />&nbsp;';
 1894: #                                    } else {
 1895: #                                        $spanstart .= '<input type="hidden" name="'.$item.'" value="'.$cid.'" />&nbsp;';
 1896: #                                    }
 1897: #                                }
 1898:                                 $spanend = '</span><br />';
 1899:                                 $space = ',&nbsp;';
 1900:                             }
 1901:                             $userdata{'extent'} .= $spanstart.
 1902:                                     $rolehash->{$item}{$cid}{'desc'}.$space;
 1903:                             if (ref($rolehash->{$item}{$cid}{'secs'}) eq 'HASH') { 
 1904:                                 foreach my $sec (sort(keys(%{$rolehash->{$item}{$cid}{'secs'}}))) {
 1905:                                     if (($env{'form.Status'} eq 'Any') ||
 1906:                                         ($env{'form.Status'} eq $rolehash->{$item}{$cid}{'secs'}{$sec})) {
 1907:                                         $userdata{'extent'} .= $sec.$space.$rolehash->{$item}{$cid}{'secs'}{$sec}.$spanend;
 1908:                                         $userdata{'status'} = $rolehash->{$item}{$cid}{'secs'}{$sec};
 1909:                                     }
 1910:                                 }
 1911:                             }
 1912:                         }
 1913:                     }
 1914:                 }
 1915:                 if ($userdata{'status'} ne '') {
 1916:                     &build_user_record($context,\%userdata,$userinfo,
 1917:                                        $indexhash,$item,$userlist);
 1918:                 }
 1919:             }
 1920:         }
 1921:     }
 1922:     return;
 1923: }
 1924: 
 1925: sub build_user_record {
 1926:     my ($context,$userdata,$userinfo,$indexhash,$record_key,$userlist) = @_;
 1927:     next if ($userdata->{'start'} eq '-1' && $userdata->{'end'} eq '-1');
 1928:     if (!(($context eq 'domain') && (($env{'form.roletype'} eq 'course')
 1929:                              && ($env{'form.roletype'} eq 'community')))) {
 1930:         &process_date_info($userdata);
 1931:     }
 1932:     my $username = $userdata->{'username'};
 1933:     my $domain = $userdata->{'domain'};
 1934:     if (ref($userinfo->{$username.':'.$domain}) eq 'HASH') {
 1935:         $userdata->{'fullname'} = $userinfo->{$username.':'.$domain}{'fullname'};
 1936:         $userdata->{'id'} = $userinfo->{$username.':'.$domain}{'id'};
 1937:     } else {
 1938:         &aggregate_user_info($domain,$username,$userinfo);
 1939:         $userdata->{'fullname'} = $userinfo->{$username.':'.$domain}{'fullname'};
 1940:         $userdata->{'id'} = $userinfo->{$username.':'.$domain}{'id'};
 1941:     }
 1942:     foreach my $key (keys(%{$indexhash})) {
 1943:         if (defined($userdata->{$key})) {
 1944:             $userlist->{$record_key}[$indexhash->{$key}] = $userdata->{$key};
 1945:         }
 1946:     }
 1947:     return;
 1948: }
 1949: 
 1950: sub courses_selector {
 1951:     my ($cdom,$formname) = @_;
 1952:     my %coursecodes = ();
 1953:     my %codes = ();
 1954:     my @codetitles = ();
 1955:     my %cat_titles = ();
 1956:     my %cat_order = ();
 1957:     my %idlist = ();
 1958:     my %idnums = ();
 1959:     my %idlist_titles = ();
 1960:     my $caller = 'global';
 1961:     my $format_reply;
 1962:     my $jscript = '';
 1963: 
 1964:     my $totcodes = 0;
 1965:     $totcodes =
 1966:         &Apache::courseclassifier::retrieve_instcodes(\%coursecodes,
 1967:                                                       $cdom,$totcodes);
 1968:     if ($totcodes > 0) {
 1969:         $format_reply =
 1970:              &Apache::lonnet::auto_instcode_format($caller,$cdom,\%coursecodes,
 1971:                                 \%codes,\@codetitles,\%cat_titles,\%cat_order);
 1972:         if ($format_reply eq 'ok') {
 1973:             my $numtypes = @codetitles;
 1974:             &Apache::courseclassifier::build_code_selections(\%codes,\@codetitles,\%cat_titles,\%cat_order,\%idlist,\%idnums,\%idlist_titles);
 1975:             my ($scripttext,$longtitles) = &Apache::courseclassifier::javascript_definitions(\@codetitles,\%idlist,\%idlist_titles,\%idnums,\%cat_titles);
 1976:             my $longtitles_str = join('","',@{$longtitles});
 1977:             my $allidlist = $idlist{$codetitles[0]};
 1978:             $jscript .= &Apache::courseclassifier::courseset_js_start($formname,$longtitles_str,$allidlist);
 1979:             $jscript .= $scripttext;
 1980:             $jscript .= &Apache::courseclassifier::javascript_code_selections($formname,@codetitles);
 1981:         }
 1982:     }
 1983:     my $cb_jscript = &Apache::loncommon::coursebrowser_javascript($cdom);
 1984: 
 1985:     my %elements = (
 1986:                      Year => 'selectbox',
 1987:                      coursepick => 'radio',
 1988:                      coursetotal => 'text',
 1989:                      courselist => 'text',
 1990:                    );
 1991:     $jscript .= &Apache::lonhtmlcommon::set_form_elements(\%elements);
 1992:     if ($env{'form.coursepick'} eq 'category') {
 1993:         $jscript .= qq|
 1994: function setCourseCat(formname) {
 1995:     if (formname.Year.options[formname.Year.selectedIndex].value == -1) {
 1996:         return;
 1997:     }
 1998:     courseSet('$codetitles[0]');
 1999:     for (var j=0; j<formname.Semester.length; j++) {
 2000:         if (formname.Semester.options[j].value == "$env{'form.Semester'}") {
 2001:             formname.Semester.options[j].selected = true;
 2002:         }
 2003:     }
 2004:     if (formname.Semester.options[formname.Semester.selectedIndex].value == -1) {
 2005:         return;
 2006:     }
 2007:     courseSet('$codetitles[1]');
 2008:     for (var j=0; j<formname.Department.length; j++) {
 2009:         if (formname.Department.options[j].value == "$env{'form.Department'}") {            formname.Department.options[j].selected = true;
 2010:         }
 2011:     }
 2012:     if (formname.Department.options[formname.Department.selectedIndex].value == -1) {
 2013:         return;
 2014:     }
 2015:     courseSet('$codetitles[2]');
 2016:     for (var j=0; j<formname.Number.length; j++) {
 2017:         if (formname.Number.options[j].value == "$env{'form.Number'}") {
 2018:             formname.Number.options[j].selected = true;
 2019:         }
 2020:     }
 2021: }
 2022: |;
 2023:     }
 2024:     return ($cb_jscript,$jscript,$totcodes,\@codetitles,\%idlist,
 2025:             \%idlist_titles);
 2026: }
 2027: 
 2028: sub course_selector_loadcode {
 2029:     my ($formname) = @_;
 2030:     my $loadcode;
 2031:     if ($env{'form.coursepick'} ne '') {
 2032:         $loadcode = 'javascript:setFormElements(document.'.$formname.')';
 2033:         if ($env{'form.coursepick'} eq 'category') {
 2034:             $loadcode .= ';javascript:setCourseCat(document.'.$formname.')';
 2035:         }
 2036:     }
 2037:     return $loadcode;
 2038: }
 2039: 
 2040: sub process_coursepick {
 2041:     my $coursefilter = $env{'form.coursepick'};
 2042:     my $cdom = $env{'request.role.domain'};
 2043:     my %courses;
 2044:     my $crssrch = 'Course';
 2045:     if ($env{'form.roletype'} eq 'community') {
 2046:         $crssrch = 'Community';
 2047:     }
 2048:     if ($coursefilter eq 'all') {
 2049:         %courses = &Apache::lonnet::courseiddump($cdom,'.','.','.','.','.',
 2050:                                                  undef,undef,$crssrch);
 2051:     } elsif ($coursefilter eq 'category') {
 2052:         my $instcode = &instcode_from_coursefilter();
 2053:         %courses = &Apache::lonnet::courseiddump($cdom,'.','.',$instcode,'.','.',
 2054:                                                  undef,undef,$crssrch);
 2055:     } elsif ($coursefilter eq 'specific') {
 2056:         if ($env{'form.coursetotal'} > 1) {
 2057:             my @course_ids = split(/&&/,$env{'form.courselist'});
 2058:             foreach my $cid (@course_ids) {
 2059:                 $courses{$cid} = '';
 2060:             }
 2061:         } else {
 2062:             $courses{$env{'form.courselist'}} = '';
 2063:         }
 2064:     }
 2065:     return %courses;
 2066: }
 2067: 
 2068: sub instcode_from_coursefilter {
 2069:     my $instcode = '';
 2070:     my @cats = ('Semester','Year','Department','Number');
 2071:     foreach my $category (@cats) {
 2072:         if (defined($env{'form.'.$category})) {
 2073:             unless ($env{'form.'.$category} eq '-1') {
 2074:                 $instcode .= $env{'form.'.$category};
 2075:            }
 2076:         }
 2077:     }
 2078:     if ($instcode eq '') {
 2079:         $instcode = '.';
 2080:     }
 2081:     return $instcode;
 2082: }
 2083: 
 2084: sub display_adv_courseroles {
 2085:     my $output;
 2086:     #
 2087:     # List course personnel
 2088:     my %coursepersonnel = 
 2089:        &Apache::lonnet::get_course_adv_roles($env{'request.course.id'});
 2090:     #
 2091:     $output = '<br />'.&Apache::loncommon::start_data_table();
 2092:     foreach my $role (sort(keys(%coursepersonnel))) {
 2093:         next if ($role =~ /^\s*$/);
 2094:         $output .= &Apache::loncommon::start_data_table_row().
 2095:                   '<td>'.$role.'</td><td>';
 2096:         foreach my $user (split(',',$coursepersonnel{$role})) {
 2097:             my ($puname,$pudom)=split(':',$user);
 2098:             $output .= ' '.&Apache::loncommon::aboutmewrapper(
 2099:                        &Apache::loncommon::plainname($puname,$pudom),
 2100:                        $puname,$pudom);
 2101:         }
 2102:         $output .= '</td>'.&Apache::loncommon::end_data_table_row();
 2103:     }
 2104:     $output .= &Apache::loncommon::end_data_table();
 2105: }
 2106: 
 2107: sub make_keylist_array {
 2108:     my ($index,$keylist);
 2109:     $index->{'domain'} = &Apache::loncoursedata::CL_SDOM();
 2110:     $index->{'username'} = &Apache::loncoursedata::CL_SNAME();
 2111:     $index->{'end'} = &Apache::loncoursedata::CL_END();
 2112:     $index->{'start'} = &Apache::loncoursedata::CL_START();
 2113:     $index->{'id'} = &Apache::loncoursedata::CL_ID();
 2114:     $index->{'section'} = &Apache::loncoursedata::CL_SECTION();
 2115:     $index->{'fullname'} = &Apache::loncoursedata::CL_FULLNAME();
 2116:     $index->{'status'} = &Apache::loncoursedata::CL_STATUS();
 2117:     $index->{'type'} = &Apache::loncoursedata::CL_TYPE();
 2118:     $index->{'lockedtype'} = &Apache::loncoursedata::CL_LOCKEDTYPE();
 2119:     $index->{'groups'} = &Apache::loncoursedata::CL_GROUP();
 2120:     $index->{'email'} = &Apache::loncoursedata::CL_PERMANENTEMAIL();
 2121:     $index->{'role'} = &Apache::loncoursedata::CL_ROLE();
 2122:     $index->{'extent'} = &Apache::loncoursedata::CL_EXTENT();
 2123:     $index->{'photo'} = &Apache::loncoursedata::CL_PHOTO();
 2124:     $index->{'thumbnail'} = &Apache::loncoursedata::CL_THUMBNAIL();
 2125:     foreach my $key (keys(%{$index})) {
 2126:         $keylist->[$index->{$key}] = $key;
 2127:     }
 2128:     return ($index,$keylist);
 2129: }
 2130: 
 2131: sub aggregate_user_info {
 2132:     my ($udom,$uname,$userinfo) = @_;
 2133:     my %info=&Apache::lonnet::get('environment',
 2134:                                   ['firstname','middlename',
 2135:                                    'lastname','generation','id'],
 2136:                                    $udom,$uname);
 2137:     my ($tmp) = keys(%info);
 2138:     my ($fullname,$id);
 2139:     if ($tmp =~/^(con_lost|error|no_such_host)/i) {
 2140:         $fullname = 'not available';
 2141:         $id = 'not available';
 2142:         &Apache::lonnet::logthis('unable to retrieve environment '.
 2143:                                  'for '.$uname.':'.$udom);
 2144:     } else {
 2145:         $fullname = &Apache::lonnet::format_name(@info{qw/firstname middlename lastname generation/},'lastname');
 2146:         $id = $info{'id'};
 2147:     }
 2148:     $userinfo->{$uname.':'.$udom} = { 
 2149:                                       fullname => $fullname,
 2150:                                       id       => $id,
 2151:                                     };
 2152:     return;
 2153: }
 2154: 
 2155: sub process_date_info {
 2156:     my ($userdata) = @_;
 2157:     my $now = time;
 2158:     $userdata->{'status'} = 'Active';
 2159:     if ($userdata->{'start'} > 0) {
 2160:         if ($now < $userdata->{'start'}) {
 2161:             $userdata->{'status'} = 'Future';
 2162:         }
 2163:     }
 2164:     if ($userdata->{'end'} > 0) {
 2165:         if ($now > $userdata->{'end'}) {
 2166:             $userdata->{'status'} = 'Expired';
 2167:         }
 2168:     }
 2169:     return;
 2170: }
 2171: 
 2172: sub show_users_list {
 2173:     my ($r,$context,$mode,$permission,$statusmode,$userlist,$keylist,$formname)=@_;
 2174:     if ($formname eq '') {
 2175:         $formname = 'studentform';
 2176:     }
 2177:     #
 2178:     # Variables for excel output
 2179:     my ($excel_workbook, $excel_sheet, $excel_filename,$row,$format);
 2180:     #
 2181:     # Variables for csv output
 2182:     my ($CSVfile,$CSVfilename);
 2183:     #
 2184:     my $sortby = $env{'form.sortby'};
 2185:     my @sortable = ('username','domain','id','fullname','start','end','email','role');
 2186:     if ($context eq 'course') {
 2187:         push(@sortable,('section','groups','type'));
 2188:     } else {
 2189:         push(@sortable,'extent');
 2190:     }
 2191:     if ($mode eq 'pickauthor') {
 2192:         @sortable = ('username','fullname','email','status');
 2193:     }
 2194:     if (!grep(/^\Q$sortby\E$/,@sortable)) {
 2195:         $sortby = 'username';
 2196:     }
 2197:     my $setting = $env{'form.roletype'};
 2198:     my ($cid,$cdom,$cnum,$classgroups,$displayphotos,$displayclickers,$crstype);
 2199:     if ($context eq 'course') {
 2200:         $cid = $env{'request.course.id'};
 2201:         $crstype = &Apache::loncommon::course_type();
 2202:         ($cnum,$cdom) = &get_course_identity($cid);
 2203:         ($classgroups) = &Apache::loncoursedata::get_group_memberships(
 2204:                                      $userlist,$keylist,$cdom,$cnum);
 2205:         if ($mode eq 'autoenroll') {
 2206:             $env{'form.showrole'} = 'st';
 2207:         } else {
 2208:             if (! exists($env{'form.displayphotos'})) {
 2209:                 $env{'form.displayphotos'} = 'off';
 2210:             }
 2211:             $displayphotos = $env{'form.displayphotos'};
 2212:             if (! exists($env{'form.displayclickers'})) {
 2213:                 $env{'form.displayclickers'} = 'off';
 2214:             }
 2215:             $displayclickers = $env{'form.displayclickers'};
 2216:             if ($env{'course.'.$cid.'.internal.showphoto'}) {
 2217:                 $r->print('
 2218: <script type="text/javascript">
 2219: // <![CDATA[
 2220: function photowindow(photolink) {
 2221:     var title = "Photo_Viewer";
 2222:     var options = "scrollbars=1,resizable=1,menubar=0";
 2223:     options += ",width=240,height=240";
 2224:     stdeditbrowser = open(photolink,title,options,"1");
 2225:     stdeditbrowser.focus();
 2226: }
 2227: // ]]>
 2228: </script>
 2229:                ');
 2230:             }
 2231:             $r->print(<<END);
 2232: <input type="hidden" name="displayphotos" value="$displayphotos" />
 2233: <input type="hidden" name="displayclickers" value="$displayclickers" />
 2234: END
 2235:         }
 2236:     } elsif ($context eq 'domain') {
 2237:         if ($setting eq 'community') {
 2238:             $crstype = 'Community';
 2239:         } elsif ($setting eq 'course') {
 2240:             $crstype = 'Course';
 2241:         }
 2242:     }
 2243:     if ($mode ne 'autoenroll' && $mode ne 'pickauthor') {
 2244:         my $check_uncheck_js = &Apache::loncommon::check_uncheck_jscript();
 2245:         my $date_sec_selector = &date_section_javascript($context,$setting,$statusmode);
 2246:         my $verify_action_js = &bulkaction_javascript($formname);
 2247:         $r->print(<<END);
 2248: 
 2249: <script type="text/javascript" language="Javascript">
 2250: // <![CDATA[
 2251: $check_uncheck_js
 2252: 
 2253: $verify_action_js
 2254: 
 2255: function username_display_launch(username,domain) {
 2256:     var target;
 2257:     for (var i=0; i<document.$formname.usernamelink.length; i++) {
 2258:         if (document.$formname.usernamelink[i].checked) {
 2259:             target = document.$formname.usernamelink[i].value;
 2260:         }
 2261:     }
 2262:     if (target == 'modify') {
 2263:         if (document.$formname.userwin.checked == true) {
 2264:             var url = '/adm/createuser?srchterm='+username+'&srchdomain='+domain+'&phase=get_user_info&action=singleuser&srchin=dom&srchby=uname&srchtype=exact&popup=1';
 2265:             var options = 'height=600,width=800,resizable=yes,scrollbars=yes,location=no,menubar=no,toolbar=no';
 2266:             modifywin = window.open(url,'',options,1);
 2267:             modifywin.focus();
 2268:             return;
 2269:         } else {
 2270:             document.$formname.srchterm.value=username;
 2271:             document.$formname.srchdomain.value=domain;
 2272:             document.$formname.phase.value='get_user_info';
 2273:             document.$formname.action.value = 'singleuser';
 2274:             document.$formname.submit();
 2275:         }
 2276:     }
 2277:     if (target == 'aboutme') {
 2278:         if (document.$formname.userwin.checked == true) {
 2279:             var url = '/adm/'+domain+'/'+username+'/aboutme?popup=1';
 2280:             var options = 'height=600,width=800,resizable=yes,scrollbars=yes,location=no,menubar=no,toolbar=no';
 2281:             aboutmewin = window.open(url,'',options,1);
 2282:             aboutmewin.focus();
 2283:             return;
 2284:         } else {
 2285:             document.location.href = '/adm/'+domain+'/'+username+'/aboutme';
 2286:         }
 2287:     }
 2288:     if (target == 'track') {
 2289:         if (document.$formname.userwin.checked == true) {
 2290:             var url = '/adm/trackstudent?selected_student='+username+':'+domain+'&only_body=1';
 2291:             var options = 'height=600,width=800,resizable=yes,scrollbars=yes,location=no,menubar=no,toolbar=no';
 2292:             var trackwin = window.open(url,'',options,1);
 2293:             trackwin.focus();
 2294:             return;
 2295:         } else {
 2296:             document.location.href = '/adm/trackstudent?selected_student='+username+':'+domain;
 2297:         }
 2298:     }
 2299: }
 2300: // ]]>
 2301: </script>
 2302: $date_sec_selector
 2303: <input type="hidden" name="state" value="$env{'form.state'}" />
 2304: END
 2305:     }
 2306:     $r->print(<<END);
 2307: <input type="hidden" name="sortby" value="$sortby" />
 2308: END
 2309: 
 2310:     my %lt=&Apache::lonlocal::texthash(
 2311:                        'username'   => "username",
 2312:                        'domain'     => "domain",
 2313:                        'id'         => 'ID',
 2314:                        'fullname'   => "name",
 2315:                        'section'    => "section",
 2316:                        'groups'     => "active groups",
 2317:                        'start'      => "start date",
 2318:                        'end'        => "end date",
 2319:                        'status'     => "status",
 2320:                        'role'       => "role",
 2321:                        'type'       => "enroll type/action",
 2322:                        'email'      => "e-mail address",
 2323:                        'photo'      => "photo",
 2324:                        'extent'     => "extent",
 2325:                        'pr'         => "Proceed",
 2326:                        'ca'         => "check all",
 2327:                        'ua'         => "uncheck all",
 2328:                        'ac'         => "Action to take for selected users",
 2329:                        'link'       => "Behavior of clickable username link for each user",
 2330:                        'aboutme'    => "Display a user's personal information page",
 2331:                        'owin'       => "Open in a new window",
 2332:                        'modify'     => "Modify a user's information",
 2333:                        'track'      => "View a user's recent activity",
 2334:                        'clicker'    => "Clicker-ID",
 2335:                       );
 2336:     if ($context eq 'domain' && $env{'form.roletype'} eq 'course') {
 2337:         $lt{'extent'} = &mt('Course(s): description, section(s), status');
 2338:     } elsif ($context eq 'domain' && $env{'form.roletype'} eq 'community') {
 2339:         $lt{'extent'} = &mt('Communities: description, section(s), status');
 2340:     } elsif ($context eq 'author') {
 2341:         $lt{'extent'} = &mt('Author'); 
 2342:     }
 2343:     my @cols;
 2344:     if ($mode eq 'pickauthor') {
 2345:         @cols = ('username','fullname','status','email');
 2346:     } else {
 2347:         @cols = ('username','domain','id','fullname');
 2348:         if ($context eq 'course') {
 2349:             push(@cols,'section');
 2350:         }
 2351:         if (!($context eq 'domain' && ($env{'form.roletype'} eq 'course')
 2352:                               && ($env{'form.roletype'} eq 'community'))) { 
 2353:             push(@cols,('start','end'));
 2354:         }
 2355:         if ($env{'form.showrole'} eq 'Any' || $env{'form.showrole'} eq 'cr') {
 2356:             push(@cols,'role');
 2357:         }
 2358:         if ($context eq 'domain' && ($env{'form.roletype'} eq 'author' ||
 2359:                                     $env{'form.roletype'} eq 'course' ||
 2360:                                     $env{'form.roletype'} eq 'community')) {
 2361:             push (@cols,'extent');
 2362:         }
 2363:         if (($statusmode eq 'Any') && 
 2364:             (!($context eq 'domain' && (($env{'form.roletype'} eq 'course')
 2365:              || ($env{'form.roletype'} eq 'community'))))) {
 2366:             push(@cols,'status');
 2367:         }
 2368:         if ($context eq 'course') {
 2369:             push(@cols,'groups');
 2370:         }
 2371:         push(@cols,'email');
 2372:     }
 2373: 
 2374:     my $rolefilter = $env{'form.showrole'};
 2375:     if ($env{'form.showrole'} eq 'cr') {
 2376:         $rolefilter = &mt('custom');  
 2377:     } elsif ($env{'form.showrole'} ne 'Any') {
 2378:         $rolefilter = &Apache::lonnet::plaintext($env{'form.showrole'},$crstype);
 2379:     }
 2380:     my $results_description;
 2381:     if ($mode ne 'autoenroll') {
 2382:         $results_description = &results_header_row($rolefilter,$statusmode,
 2383:                                                    $context,$permission,$mode,$crstype);
 2384:         $r->print('<b>'.$results_description.'</b><br /><br />');
 2385:     }
 2386:     my ($output,$actionselect,%canchange,%canchangesec);
 2387:     if ($mode eq 'html' || $mode eq 'view' || $mode eq 'autoenroll' || $mode eq 'pickauthor') {
 2388:         if ($mode ne 'autoenroll' && $mode ne 'pickauthor') {
 2389:             if ($permission->{'cusr'}) {
 2390:                 unless (($context eq 'domain') && 
 2391:                         (($setting eq 'course') || ($setting eq 'community'))) {
 2392:                     $actionselect = 
 2393:                         &select_actions($context,$setting,$statusmode,$formname);
 2394:                 }
 2395:             }
 2396:             $r->print(<<END);
 2397: <input type="hidden" name="srchby"  value="uname" />
 2398: <input type="hidden" name="srchin"   value="dom" />
 2399: <input type="hidden" name="srchtype" value="exact" />
 2400: <input type="hidden" name="srchterm" value="" />
 2401: <input type="hidden" name="srchdomain" value="" /> 
 2402: END
 2403:             if ($actionselect) {
 2404:                 $output .= <<"END";
 2405: <div class="LC_left_float"><fieldset><legend>$lt{'ac'}</legend>
 2406: $actionselect
 2407: <br/><br /><input type="button" value="$lt{'ca'}" onclick="javascript:checkAll(document.$formname.actionlist)" /> &nbsp;
 2408: <input type="button" value="$lt{'ua'}" onclick="javascript:uncheckAll(document.$formname.actionlist)" /><br /><input type="button" value="$lt{'pr'}" onclick="javascript:verify_action('actionlist')" /></fieldset></div>
 2409: END
 2410:                 my @allroles;
 2411:                 if ($env{'form.showrole'} eq 'Any') {
 2412:                     my $custom = 1;
 2413:                     if ($context eq 'domain') {
 2414:                         @allroles = &roles_by_context($setting,$custom,$crstype);
 2415:                     } else {
 2416:                         @allroles = &roles_by_context($context,$custom,$crstype);
 2417:                     }
 2418:                 } else {
 2419:                     @allroles = ($env{'form.showrole'});
 2420:                 }
 2421:                 foreach my $role (@allroles) {
 2422:                     if ($context eq 'domain') {
 2423:                         if ($setting eq 'domain') {
 2424:                             if (&Apache::lonnet::allowed('c'.$role,
 2425:                                     $env{'request.role.domain'})) {
 2426:                                 $canchange{$role} = 1;
 2427:                             }
 2428:                         } elsif ($setting eq 'author') {
 2429:                             if (&Apache::lonnet::allowed('c'.$role,
 2430:                                     $env{'request.role.domain'})) {
 2431:                                 $canchange{$role} = 1;
 2432:                             }
 2433:                         }
 2434:                     } elsif ($context eq 'author') {
 2435:                         if (&Apache::lonnet::allowed('c'.$role,
 2436:                             $env{'user.domain'}.'/'.$env{'user.name'})) {
 2437:                             $canchange{$role} = 1;
 2438:                         }
 2439:                     } elsif ($context eq 'course') {
 2440:                         if (&Apache::lonnet::allowed('c'.$role,$env{'request.course.id'})) {
 2441:                             $canchange{$role} = 1;
 2442:                         } elsif ($env{'request.course.sec'} ne '') {
 2443:                             if (&Apache::lonnet::allowed('c'.$role,$env{'request.course.id'}.'/'.$env{'request.course.sec'})) {
 2444:                                 $canchangesec{$role} = $env{'request.course.sec'};
 2445:                             }
 2446:                         }
 2447:                     }
 2448:                 }
 2449:             }
 2450:             $output .= '<div class="LC_left_float"><fieldset><legend>'.$lt{'link'}.'</legend>'.
 2451:                        '<table><tr>';
 2452:             my @linkdests = ('aboutme');
 2453:             if ($permission->{'cusr'}) {
 2454:                 unshift (@linkdests,'modify');
 2455:             }
 2456:             if (&Apache::lonnet::allowed('vsa', $env{'request.course.id'}) ||
 2457:                 &Apache::lonnet::allowed('vsa', $env{'request.course.id'}.'/'.
 2458:                                          $env{'request.course.sec'})) {
 2459:                 push(@linkdests,'track');
 2460:             }
 2461: 
 2462:             $output .= '<td>';
 2463:             my $usernamelink = $env{'form.usernamelink'};
 2464:             if ($usernamelink eq '') {
 2465:                 $usernamelink = 'aboutme';
 2466:             }
 2467:             foreach my $item (@linkdests) {
 2468:                 my $checkedstr = '';
 2469:                 if ($item eq $usernamelink) {
 2470:                     $checkedstr = ' checked="checked"';
 2471:                 }
 2472:                 $output .= '<span class="LC_nobreak"><label><input type="radio" name="usernamelink" value="'.$item.'"'.$checkedstr.' />&nbsp;'.$lt{$item}.'</label></span><br />';
 2473:             }
 2474:             my $checkwin;
 2475:             if ($env{'form.userwin'}) {
 2476:                 $checkwin = ' checked="checked"';
 2477:             }
 2478:             $output .= '</td><td valign="top"  style="border-left: 1px solid;"><span class="LC_nobreak"><input type="checkbox" name="userwin" value="1"'.$checkwin.' />'.$lt{'owin'}.'</span></td></tr></table></fieldset></div>';
 2479:         }
 2480:         $output .= "\n".'<div class="LC_clear_float_footer">&nbsp;</div>'."\n".
 2481:                   &Apache::loncommon::start_data_table().
 2482:                   &Apache::loncommon::start_data_table_header_row();
 2483:         if ($mode eq 'autoenroll') {
 2484:             $output .= "
 2485:  <th><a href=\"javascript:document.$formname.sortby.value='type';document.$formname.submit();\">$lt{'type'}</a></th>
 2486:             ";
 2487:         } else {
 2488:             $output .= "\n".'<th>&nbsp;</th>'."\n";
 2489:             if ($actionselect) {
 2490:                 $output .= '<th>'.&mt('Select').'</th>'."\n";
 2491:             }
 2492:         }
 2493:         foreach my $item (@cols) {
 2494:             $output .= "<th><a href=\"javascript:document.$formname.sortby.value='$item';document.$formname.submit();\">$lt{$item}</a></th>\n";
 2495:         }
 2496:         my %role_types = &role_type_names();
 2497:         if ($context eq 'course' && $mode ne 'autoenroll') {
 2498:             if ($env{'form.showrole'} eq 'st' || $env{'form.showrole'} eq 'Any') {
 2499:                 # Clicker display on or off?
 2500:                 my %clicker_options = (
 2501:                                         'on' => 'Show',
 2502:                                         'off' => 'Hide',
 2503:                                       );
 2504:                 my $clickerchg = 'on';
 2505:                 if ($displayclickers eq 'on') {
 2506:                     $clickerchg = 'off';
 2507:                 }
 2508:                 $output .= '    <th>'."\n".'     '
 2509:                         .&mt('[_1]'.$clicker_options{$clickerchg}.'[_2] clicker id'
 2510:                             ,'<a href="javascript:document.'.$formname.'.displayclickers.value='
 2511:                              ."'".$clickerchg."'".';document.'.$formname.'.submit();">'
 2512:                             ,'</a>')
 2513:                         ."\n".'    </th>'."\n";
 2514: 
 2515:                 # Photo display on or off?
 2516:                 if ($env{'course.'.$env{'request.course.id'}.'.internal.showphoto'}) {
 2517:                     my %photo_options = &Apache::lonlocal::texthash(
 2518:                                                             'on' => 'Show',
 2519:                                                             'off' => 'Hide',
 2520:                                                                 );
 2521:                     my $photochg = 'on';
 2522:                     if ($displayphotos eq 'on') {
 2523:                         $photochg = 'off';
 2524:                     }
 2525:                     $output .= '    <th>'."\n".'     '.
 2526:                 '<a href="javascript:document.'.$formname.'.displayphotos.value='.
 2527:                       "'".$photochg."'".';document.'.$formname.'.submit();">'.
 2528:                       $photo_options{$photochg}.'</a>&nbsp;'.$lt{'photo'}."\n".
 2529:                       '    </th>'."\n";
 2530:                 }
 2531:             }
 2532:         }
 2533:         $output .= &Apache::loncommon::end_data_table_header_row();
 2534: # Done with the HTML header line
 2535:     } elsif ($mode eq 'csv') {
 2536:         #
 2537:         # Open a file
 2538:         $CSVfilename = '/prtspool/'.
 2539:                        $env{'user.name'}.'_'.$env{'user.domain'}.'_'.
 2540:                        time.'_'.rand(1000000000).'.csv';
 2541:         unless ($CSVfile = Apache::File->new('>/home/httpd'.$CSVfilename)) {
 2542:             $r->log_error("Couldn't open $CSVfilename for output $!");
 2543:             $r->print(
 2544:                 '<p class="LC_error">'
 2545:                .&mt('Problems occurred in writing the CSV file.')
 2546:                .' '.&mt('This error has been logged.')
 2547:                .' '.&mt('Please alert your LON-CAPA administrator.')
 2548:                .'</p>'
 2549:             );
 2550:             $CSVfile = undef;
 2551:         }
 2552:         #
 2553:         push @cols,'clicker';
 2554:         # Write headers and data to file
 2555:         print $CSVfile '"'.$results_description.'"'."\n"; 
 2556:         print $CSVfile '"'.join('","',map {
 2557:             &Apache::loncommon::csv_translate($lt{$_})
 2558:             } (@cols))."\"\n";
 2559:     } elsif ($mode eq 'excel') {
 2560:         push @cols,'clicker';
 2561:         # Create the excel spreadsheet
 2562:         ($excel_workbook,$excel_filename,$format) =
 2563:             &Apache::loncommon::create_workbook($r);
 2564:         return if (! defined($excel_workbook));
 2565:         $excel_sheet = $excel_workbook->addworksheet('userlist');
 2566:         $excel_sheet->write($row++,0,$results_description,$format->{'h2'});
 2567:         #
 2568:         my @colnames = map {$lt{$_}} (@cols);
 2569: 
 2570:         $excel_sheet->write($row++,0,\@colnames,$format->{'bold'});
 2571:     }
 2572: 
 2573: # Done with header lines in all formats
 2574:     my %index;
 2575:     my $i;
 2576:     foreach my $idx (@$keylist) {
 2577:         $index{$idx} = $i++;
 2578:     }
 2579:     my $usercount = 0;
 2580:     my ($secfilter,$grpfilter);
 2581:     if ($context eq 'course') {
 2582:         $secfilter = $env{'form.secfilter'};
 2583:         $grpfilter = $env{'form.grpfilter'};
 2584:         if ($secfilter eq '') {
 2585:             $secfilter = 'all';
 2586:         }
 2587:         if ($grpfilter eq '') {
 2588:             $grpfilter = 'all';
 2589:         }
 2590:     }
 2591:     my %ltstatus = &Apache::lonlocal::texthash(
 2592:                                                 Active  => 'Active',
 2593:                                                 Future  => 'Future',
 2594:                                                 Expired => 'Expired',
 2595:                                                );
 2596:     # Get groups, role, permanent e-mail so we can sort on them if
 2597:     # necessary.
 2598:     foreach my $user (keys(%{$userlist})) {
 2599:         if ($user eq '' ) {
 2600:             delete($userlist->{$user});
 2601:             next;
 2602:         }
 2603:         if ($context eq 'domain' &&  $user eq $env{'request.role.domain'}.'-domainconfig:'.$env{'request.role.domain'}) {
 2604:             delete($userlist->{$user});
 2605:             next;
 2606:         }
 2607:         my ($uname,$udom,$role,$groups,$email);
 2608:         if (($statusmode ne 'Any') && 
 2609:                  ($userlist->{$user}->[$index{'status'}] ne $statusmode)) {
 2610:             delete($userlist->{$user});
 2611:             next;
 2612:         }
 2613:         if ($context eq 'domain') {
 2614:             if ($env{'form.roletype'} eq 'domain') {
 2615:                 ($role,$uname,$udom) = split(/:/,$user);
 2616:                 if (($uname eq $env{'request.role.domain'}.'-domainconfig') &&
 2617:                     ($udom eq $env{'request.role.domain'})) {
 2618:                     delete($userlist->{$user});
 2619:                     next;
 2620:                 }
 2621:             } elsif ($env{'form.roletype'} eq 'author') {
 2622:                 ($uname,$udom,$role) = split(/:/,$user,-1);
 2623:             } elsif (($env{'form.roletype'} eq 'course') || 
 2624:                      ($env{'form.roletype'} eq 'community')) {
 2625:                 ($uname,$udom,$role) = split(/:/,$user);
 2626:             }
 2627:         } else {
 2628:             ($uname,$udom,$role) = split(/:/,$user,-1);
 2629:             if (($context eq 'course') && $role eq '') {
 2630:                 $role = 'st';
 2631:             }
 2632:         }
 2633:         $userlist->{$user}->[$index{'role'}] = $role;
 2634:         if (($env{'form.showrole'} ne 'Any') && (!($env{'form.showrole'}  eq 'cr' && $role =~ /^cr\//)) && ($role ne $env{'form.showrole'})) {
 2635:             delete($userlist->{$user});
 2636:             next;
 2637:         }
 2638:         if ($context eq 'course') {
 2639:             my @ac_groups;
 2640:             if (ref($classgroups) eq 'HASH') {
 2641:                 $groups = $classgroups->{$user};
 2642:             }
 2643:             if (ref($groups->{'active'}) eq 'HASH') {
 2644:                 @ac_groups = keys(%{$groups->{'active'}});
 2645:                 $userlist->{$user}->[$index{'groups'}] = join(', ',@ac_groups);
 2646:             }
 2647:             if ($mode ne 'autoenroll') {
 2648:                 my $section = $userlist->{$user}->[$index{'section'}];
 2649:                 if (($env{'request.course.sec'} ne '') && 
 2650:                     ($section ne $env{'request.course.sec'})) {
 2651:                     if ($role eq 'st') {
 2652:                         delete($userlist->{$user});
 2653:                         next;
 2654:                     }
 2655:                 }
 2656:                 if ($secfilter eq 'none') {
 2657:                     if ($section ne '') {
 2658:                         delete($userlist->{$user});
 2659:                         next;
 2660:                     }
 2661:                 } elsif ($secfilter ne 'all') {
 2662:                     if ($section ne $secfilter) {
 2663:                         delete($userlist->{$user});
 2664:                         next;
 2665:                     }
 2666:                 }
 2667:                 if ($grpfilter eq 'none') {
 2668:                     if (@ac_groups > 0) {
 2669:                         delete($userlist->{$user});
 2670:                         next;
 2671:                     }
 2672:                 } elsif ($grpfilter ne 'all') {
 2673:                     if (!grep(/^\Q$grpfilter\E$/,@ac_groups)) {
 2674:                         delete($userlist->{$user});
 2675:                         next;
 2676:                     }
 2677:                 }
 2678:                 if ($env{'course.'.$env{'request.course.id'}.'.internal.showphoto'}) {
 2679:                     if (($displayphotos eq 'on') && ($role eq 'st')) {
 2680:                         $userlist->{$user}->[$index{'photo'}] =
 2681:                             &Apache::lonnet::retrievestudentphoto($udom,$uname,'jpg');
 2682:                         $userlist->{$user}->[$index{'thumbnail'}] =
 2683:                             &Apache::lonnet::retrievestudentphoto($udom,$uname,
 2684:                                                                 'gif','thumbnail');
 2685:                     }
 2686:                 }
 2687:             }
 2688:         }
 2689:         my %emails   = &Apache::loncommon::getemails($uname,$udom);
 2690:         if ($emails{'permanentemail'} =~ /\S/) {
 2691:             $userlist->{$user}->[$index{'email'}] = $emails{'permanentemail'};
 2692:         }
 2693:         $usercount ++;
 2694:     }
 2695:     my $autocount = 0;
 2696:     my $manualcount = 0;
 2697:     my $lockcount = 0;
 2698:     my $unlockcount = 0;
 2699:     if ($usercount) {
 2700:         $r->print($output);
 2701:     } else {
 2702:         if ($mode eq 'autoenroll') {
 2703:             return ($usercount,$autocount,$manualcount,$lockcount,$unlockcount);
 2704:         } else {
 2705:             return;
 2706:         }
 2707:     }
 2708:     #
 2709:     # Sort the users
 2710:     my $index  = $index{$sortby};
 2711:     my $second = $index{'username'};
 2712:     my $third  = $index{'domain'};
 2713:     my @sorted_users = sort {
 2714:         lc($userlist->{$a}->[$index])  cmp lc($userlist->{$b}->[$index])
 2715:             ||
 2716:         lc($userlist->{$a}->[$second]) cmp lc($userlist->{$b}->[$second])            ||
 2717:         lc($userlist->{$a}->[$third]) cmp lc($userlist->{$b}->[$third])
 2718:         } (keys(%$userlist));
 2719:     my $rowcount = 0;
 2720:     foreach my $user (@sorted_users) {
 2721:         my %in;
 2722:         my $sdata = $userlist->{$user};
 2723:         $rowcount ++; 
 2724:         foreach my $item (@{$keylist}) {
 2725:             $in{$item} = $sdata->[$index{$item}];
 2726:         }
 2727:         my $clickers = (&Apache::lonnet::userenvironment($in{'domain'},$in{'username'},'clickers'))[1];
 2728:         if ($clickers!~/\w/) { $clickers='-'; }
 2729:         $in{'clicker'} = $clickers; 
 2730: 	my $role = $in{'role'};
 2731:         $in{'role'}=&Apache::lonnet::plaintext($sdata->[$index{'role'}],$crstype);
 2732:         if (! defined($in{'start'}) || $in{'start'} == 0) {
 2733:             $in{'start'} = &mt('none');
 2734:         } else {
 2735:             $in{'start'} = &Apache::lonlocal::locallocaltime($in{'start'});
 2736:         }
 2737:         if (! defined($in{'end'}) || $in{'end'} == 0) {
 2738:             $in{'end'} = &mt('none');
 2739:         } else {
 2740:             $in{'end'} = &Apache::lonlocal::locallocaltime($in{'end'});
 2741:         }
 2742:         if ($mode eq 'view' || $mode eq 'html' || $mode eq 'autoenroll' || $mode eq 'pickauthor') {
 2743:             $r->print(&Apache::loncommon::start_data_table_row());
 2744:             my $checkval;
 2745:             if ($mode eq 'autoenroll') {
 2746:                 my $cellentry;
 2747:                 if ($in{'type'} eq 'auto') {
 2748:                     $cellentry = '<b>'.&mt('auto').'</b>&nbsp;<label><input type="checkbox" name="chgauto" value="'.$in{'username'}.':'.$in{'domain'}.'" />&nbsp;Change</label>';
 2749:                     $autocount ++;
 2750:                 } else {
 2751:                     $cellentry = '<table border="0" cellspacing="0"><tr><td rowspan="2"><b>'.&mt('manual').'</b></td><td><span class="LC_nobreak"><label><input type="checkbox" name="chgmanual" value="'.$in{'username'}.':'.$in{'domain'}.'" />&nbsp;Change</label></span></td></tr><tr><td><span class="LC_nobreak">';
 2752:                     $manualcount ++;
 2753:                     if ($in{'lockedtype'}) {
 2754:                         $cellentry .= '<label><input type="checkbox" name="unlockchg" value="'.$in{'username'}.':'.$in{'domain'}.'" />&nbsp;'.&mt('Unlock').'</label>';
 2755:                         $unlockcount ++;
 2756:                     } else {
 2757:                         $cellentry .= '<label><input type="checkbox" name="lockchg" value="'.$in{'username'}.':'.$in{'domain'}.'" />&nbsp;'.&mt('Lock').'</label>';
 2758:                         $lockcount ++;
 2759:                     }
 2760:                     $cellentry .= '</span></td></tr></table>';
 2761:                 }
 2762:                 $r->print("<td>$cellentry</td>\n");
 2763:             } else {
 2764:                 if ($mode ne 'pickauthor') {  
 2765:                     $r->print("<td>$rowcount</td>\n");
 2766:                 }
 2767:                 if ($actionselect) {
 2768:                     my $showcheckbox;
 2769:                     if ($role =~ /^cr\//) {
 2770:                         $showcheckbox = $canchange{'cr'};
 2771:                     } else {
 2772:                         $showcheckbox = $canchange{$role};
 2773:                     }
 2774:                     if (!$showcheckbox) {
 2775:                         if ($context eq 'course') {
 2776:                             if ($canchangesec{$role} ne '') {
 2777:                                 if ($canchangesec{$role} eq $in{'section'}) {
 2778:                                     $showcheckbox = 1;
 2779:                                 }
 2780:                             }
 2781:                         }
 2782:                     }
 2783:                     if ($showcheckbox) {
 2784:                         $checkval = $user; 
 2785:                         if ($context eq 'course') {
 2786:                             if ($role eq 'st') {
 2787:                                 $checkval .= ':st';
 2788:                             }
 2789:                             $checkval .= ':'.$in{'section'};
 2790:                             if ($role eq 'st') {
 2791:                                 $checkval .= ':'.$in{'type'}.':'.
 2792:                                              $in{'lockedtype'};
 2793:                             }
 2794:                         }
 2795:                         $r->print('<td><input type="checkbox" name="'.
 2796:                                   'actionlist" value="'.$checkval.'" /></td>');
 2797:                     } else {
 2798:                         $r->print('<td>&nbsp;</td>');
 2799:                     }
 2800:                 } elsif ($mode eq 'pickauthor') {
 2801:                         $r->print('<td><input type="button" name="chooseauthor" onclick="javascript:gochoose('."'$in{'username'}'".');" value="'.&mt('Select').'" /></td>');
 2802:                 }
 2803:             }
 2804:             foreach my $item (@cols) {
 2805:                 if ($item eq 'username') {
 2806:                     $r->print('<td>'.&print_username_link($mode,\%in).'</td>');
 2807:                 } elsif (($item eq 'start' || $item eq 'end') && ($actionselect)) {
 2808:                     $r->print('<td>'.$in{$item}.'<input type="hidden" name="'.$checkval.'_'.$item.'" value="'.$sdata->[$index{$item}].'" /></td>'."\n");
 2809:                 } elsif ($item eq 'status') {
 2810:                     my $showitem = $in{$item};
 2811:                     if (defined($ltstatus{$in{$item}})) {
 2812:                         $showitem = $ltstatus{$in{$item}};
 2813:                     }
 2814:                     $r->print('<td>'.$showitem.'</td>'."\n");
 2815:                 } else {
 2816:                     $r->print('<td>'.$in{$item}.'</td>'."\n");
 2817:                 }
 2818:             }
 2819:             if (($context eq 'course') && ($mode ne 'autoenroll')) {
 2820:                 if ($env{'form.showrole'} eq 'st' || $env{'form.showrole'} eq 'Any') {
 2821:                     if ($displayclickers eq 'on') {
 2822:                         my $clickers =
 2823:                    (&Apache::lonnet::userenvironment($in{'domain'},$in{'username'},'clickers'))[1];
 2824:                         if ($clickers!~/\w/) { $clickers='-'; }
 2825:                         $r->print('<td>'.$clickers.'</td>');
 2826:                     } else {
 2827:                         $r->print('    <td>&nbsp;</td>  ');
 2828:                     }
 2829:                     if ($env{'course.'.$env{'request.course.id'}.'.internal.showphoto'}) {
 2830:                         if ($displayphotos eq 'on' && $role eq 'st' && $in{'photo'} ne '') {
 2831:                             $r->print('    <td align="right"><a href="javascript:photowindow('."'".$in{'photo'}."'".')"><img src="'.$in{'thumbnail'}.'" border="1" alt="" /></a></td>');
 2832:                         } else {
 2833:                             $r->print('    <td>&nbsp;</td>  ');
 2834:                         }
 2835:                     }
 2836:                 }
 2837:             }
 2838:             $r->print(&Apache::loncommon::end_data_table_row());
 2839:         } elsif ($mode eq 'csv') {
 2840:             next if (! defined($CSVfile));
 2841:             # no need to bother with $linkto
 2842:             if (! defined($in{'start'}) || $in{'start'} == 0) {
 2843:                 $in{'start'} = &mt('none');
 2844:             } else {
 2845:                 $in{'start'} = &Apache::lonlocal::locallocaltime($in{'start'});
 2846:             }
 2847:             if (! defined($in{'end'}) || $in{'end'} == 0) {
 2848:                 $in{'end'} = &mt('none');
 2849:             } else {
 2850:                 $in{'end'} = &Apache::lonlocal::locallocaltime($in{'end'});
 2851:             }
 2852:             my @line = ();
 2853:             foreach my $item (@cols) {
 2854:                 push @line,&Apache::loncommon::csv_translate($in{$item});
 2855:             }
 2856:             print $CSVfile '"'.join('","',@line)."\"\n";
 2857:         } elsif ($mode eq 'excel') {
 2858:             my $col = 0;
 2859:             foreach my $item (@cols) {
 2860:                 if ($item eq 'start' || $item eq 'end') {
 2861:                     if (defined($item) && $item != 0) {
 2862:                         $excel_sheet->write($row,$col++,
 2863:                             &Apache::lonstathelpers::calc_serial($in{item}),
 2864:                                     $format->{'date'});
 2865:                     } else {
 2866:                         $excel_sheet->write($row,$col++,'none');
 2867:                     }
 2868:                 } else {
 2869:                     $excel_sheet->write($row,$col++,$in{$item});
 2870:                 }
 2871:             }
 2872:             $row++;
 2873:         }
 2874:     }
 2875:     if ($mode eq 'view' || $mode eq 'html' || $mode eq 'autoenroll' || $mode eq 'pickauthor') {
 2876:             $r->print(&Apache::loncommon::end_data_table().'<br />');
 2877:     } elsif ($mode eq 'excel') {
 2878:         $excel_workbook->close();
 2879: 	$r->print(&mt('[_1]Your Excel spreadsheet[_2] is ready for download.', '<p><a href="'.$excel_filename.'">','</a>')."</p>\n");
 2880:     } elsif ($mode eq 'csv') {
 2881:         close($CSVfile);
 2882: 	$r->print(&mt('[_1]Your CSV file[_2] is ready for download.', '<p><a href="'.$CSVfilename.'">','</a>')."</p>\n");
 2883:         $r->rflush();
 2884:     }
 2885:     if ($mode eq 'autoenroll') {
 2886:         return ($usercount,$autocount,$manualcount,$lockcount,$unlockcount);
 2887:     } else {
 2888:         return ($usercount);
 2889:     }
 2890: }
 2891: 
 2892: sub bulkaction_javascript {
 2893:     my ($formname,$caller) = @_;
 2894:     my $docstart = 'document';
 2895:     if ($caller eq 'popup') {
 2896:         $docstart = 'opener.document';
 2897:     }
 2898:     my %lt = &Apache::lonlocal::texthash(
 2899:               acwi => 'Access will be set to start immediately',
 2900:               asyo => 'as you did not select an end date in the pop-up window',
 2901:               accw => 'Access will be set to continue indefinitely',
 2902:               asyd => 'as you did not select an end date in the pop-up window',
 2903:               sewi => "Sections will be switched to 'No section'",
 2904:               ayes => "as you either selected the 'No section' option",
 2905:               oryo => 'or you did not select a section in the pop-up window',
 2906:               arol => 'A role with no section will be added',
 2907:               swbs => 'Sections will be switched to:',
 2908:               rwba => 'Roles will be added for section(s):',
 2909:             );
 2910:     my $alert = &mt("You must select at least one user by checking a user's 'Select' checkbox");
 2911:     my $noaction = &mt("You need to select an action to take for the user(s) you have selected"); 
 2912:     my $singconfirm = &mt(' for a single user?');
 2913:     my $multconfirm = &mt(' for multiple users?');
 2914:     my $output = <<"ENDJS";
 2915: function verify_action (field) {
 2916:     var numchecked = 0;
 2917:     var singconf = '$singconfirm';
 2918:     var multconf = '$multconfirm';
 2919:     if ($docstart.$formname.elements[field].length > 0) {
 2920:         for (i=0; i<$docstart.$formname.elements[field].length; i++) {
 2921:             if ($docstart.$formname.elements[field][i].checked == true) {
 2922:                numchecked ++;
 2923:             }
 2924:         }
 2925:     } else {
 2926:         if ($docstart.$formname.elements[field].checked == true) {
 2927:             numchecked ++;
 2928:         }
 2929:     }
 2930:     if (numchecked == 0) {
 2931:         alert("$alert");
 2932:         return;
 2933:     } else {
 2934:         var message = $docstart.$formname.bulkaction[$docstart.$formname.bulkaction.selectedIndex].text;
 2935:         var choice = $docstart.$formname.bulkaction[$docstart.$formname.bulkaction.selectedIndex].value;
 2936:         if (choice == '') {
 2937:             alert("$noaction");
 2938:             return;
 2939:         } else {
 2940:             if (numchecked == 1) {
 2941:                 message += singconf;
 2942:             } else {
 2943:                 message += multconf;
 2944:             }
 2945: ENDJS
 2946:     if ($caller ne 'popup') {
 2947:         $output .= <<"NEWWIN";
 2948:             if (choice == 'chgdates' || choice == 'reenable' || choice == 'activate' || choice == 'chgsec') {
 2949:                 opendatebrowser(document.$formname,'$formname','go');
 2950:                 return;
 2951: 
 2952:             } else {
 2953:                 if (confirm(message)) {
 2954:                     document.$formname.phase.value = 'bulkchange';
 2955:                     document.$formname.submit();
 2956:                     return;
 2957:                 }
 2958:             }
 2959: NEWWIN
 2960:     } else {
 2961:         $output .= <<"POPUP";
 2962:             if (choice == 'chgdates' || choice == 'reenable' || choice == 'activate') {
 2963:                 var datemsg = '';
 2964:                 if (($docstart.$formname.startdate_month.value == '') &&
 2965:                     ($docstart.$formname.startdate_day.value  == '') &&
 2966:                     ($docstart.$formname.startdate_year.value == '')) {
 2967:                     datemsg = "\\n$lt{'acwi'},\\n$lt{'asyo'}.\\n";
 2968:                 }
 2969:                 if (($docstart.$formname.enddate_month.value == '') &&
 2970:                     ($docstart.$formname.enddate_day.value  == '') &&
 2971:                     ($docstart.$formname.enddate_year.value == '')) {
 2972:                     datemsg += "\\n$lt{'accw'},\\n$lt{'asyd'}.\\n";
 2973:                 }
 2974:                 if (datemsg != '') {
 2975:                     message += "\\n"+datemsg;
 2976:                 }
 2977:             }
 2978:             if (choice == 'chgsec') {
 2979:                 var rolefilter = $docstart.$formname.showrole.options[$docstart.$formname.showrole.selectedIndex].value;
 2980:                 var retained =  $docstart.$formname.retainsec.value;
 2981:                 var secshow = $docstart.$formname.newsecs.value;
 2982:                 if (secshow == '') {
 2983:                     if (rolefilter == 'st' || retained == 0 || retained == "") {
 2984:                         message += "\\n\\n$lt{'sewi'},\\n$lt{'ayes'},\\n$lt{'oryo'}.\\n";
 2985:                     } else {
 2986:                         message += "\\n\\n$lt{'arol'}\\n$lt{'ayes'},\\n$lt{'oryo'}.\\n";
 2987:                     }
 2988:                 } else {
 2989:                     if (rolefilter == 'st' || retained == 0 || retained == "") {
 2990:                         message += "\\n\\n$lt{'swbs'} "+secshow+".\\n";
 2991:                     } else {
 2992:                         message += "\\n\\n$lt{'rwba'} "+secshow+".\\n";
 2993:                     }
 2994:                 }
 2995:             }
 2996:             if (confirm(message)) {
 2997:                 $docstart.$formname.phase.value = 'bulkchange';
 2998:                 $docstart.$formname.submit();
 2999:                 window.close();
 3000:             }
 3001: POPUP
 3002:     }
 3003:     $output .= '
 3004:         }
 3005:     }
 3006: }
 3007: ';
 3008:     return $output;
 3009: }
 3010: 
 3011: sub print_username_link {
 3012:     my ($mode,$in) = @_;
 3013:     my $output;
 3014:     if ($mode eq 'autoenroll') {
 3015:         $output = $in->{'username'};
 3016:     } else {
 3017:         $output = '<a href="javascript:username_display_launch('.
 3018:                   "'$in->{'username'}','$in->{'domain'}'".')">'.
 3019:                   $in->{'username'}.'</a>';
 3020:     }
 3021:     return $output;
 3022: }
 3023: 
 3024: sub role_type_names {
 3025:     my %lt = &Apache::lonlocal::texthash (
 3026:                          'domain' => 'Domain Roles',
 3027:                          'author' => 'Co-Author Roles',
 3028:                          'course' => 'Course Roles',
 3029:                          'community' => 'Community Roles',
 3030:              );
 3031:     return %lt;
 3032: }
 3033: 
 3034: sub select_actions {
 3035:     my ($context,$setting,$statusmode,$formname) = @_;
 3036:     my %lt = &Apache::lonlocal::texthash(
 3037:                 revoke   => "Revoke user roles",
 3038:                 delete   => "Delete user roles",
 3039:                 reenable => "Re-enable expired user roles",
 3040:                 activate => "Make future user roles active now",
 3041:                 chgdates  => "Change starting/ending dates",
 3042:                 chgsec   => "Change section associated with user roles",
 3043:     );
 3044:     my ($output,$options,%choices);
 3045:     # FIXME Disable actions for now for roletype=course in domain context
 3046:     if ($context eq 'domain' && $setting eq 'course') {
 3047:         return;
 3048:     }
 3049:     if ($context eq 'course') {
 3050:         if ($env{'form.showrole'} ne 'Any') {
 3051:              if (!&Apache::lonnet::allowed('c'.$env{'form.showrole'},
 3052:                                            $env{'request.course.id'})) {
 3053:                  if ($env{'request.course.sec'} eq '') {
 3054:                      return;
 3055:                  } else {
 3056:                      if (!&Apache::lonnet::allowed('c'.$env{'form.showrole'},$env{'request.course.id'}.'/'.$env{'request.course.sec'})) {
 3057:                          return;
 3058:                      }
 3059:                  }
 3060:             }
 3061:         }
 3062:     }
 3063:     if ($statusmode eq 'Any') {
 3064:         $options .= '
 3065: <option value="chgdates">'.$lt{'chgdates'}.'</option>';
 3066:         $choices{'dates'} = 1;
 3067:     } else {
 3068:         if ($statusmode eq 'Future') {
 3069:             $options .= '
 3070: <option value="activate">'.$lt{'activate'}.'</option>';
 3071:             $choices{'dates'} = 1;
 3072:         } elsif ($statusmode eq 'Expired') {
 3073:             $options .= '
 3074: <option value="reenable">'.$lt{'reenable'}.'</option>';
 3075:             $choices{'dates'} = 1;
 3076:         }
 3077:         if ($statusmode eq 'Active' || $statusmode eq 'Future') {
 3078:             $options .= '
 3079: <option value="chgdates">'.$lt{'chgdates'}.'</option>
 3080: <option value="revoke">'.$lt{'revoke'}.'</option>';
 3081:             $choices{'dates'} = 1;
 3082:         }
 3083:     }
 3084:     if ($context eq 'domain') {
 3085:         $options .= '
 3086: <option value="delete">'.$lt{'delete'}.'</option>';
 3087:     }
 3088:     if (($context eq 'course') || ($context eq 'domain' && $setting eq 'course')) {
 3089:         if (($statusmode ne 'Expired') && ($env{'request.course.sec'} eq '')) {
 3090:             $options .= '
 3091: <option value="chgsec">'.$lt{'chgsec'}.'</option>';
 3092:             $choices{'sections'} = 1;
 3093:         }
 3094:     }
 3095:     if ($options) {
 3096:         $output = '<select name="bulkaction">'."\n".
 3097:                   '<option value="" selected="selected">'.
 3098:                   &mt('Please select').'</option>'."\n".$options."\n".'</select>';
 3099:         if ($choices{'dates'}) {
 3100:             $output .= 
 3101:                 '<input type="hidden" name="startdate_month" value="" />'."\n".
 3102:                 '<input type="hidden" name="startdate_day" value="" />'."\n".
 3103:                 '<input type="hidden" name="startdate_year" value="" />'."\n".
 3104:                 '<input type="hidden" name="startdate_hour" value="" />'."\n".
 3105:                 '<input type="hidden" name="startdate_minute" value="" />'."\n".
 3106:                 '<input type="hidden" name="startdate_second" value="" />'."\n".
 3107:                 '<input type="hidden" name="enddate_month" value="" />'."\n".
 3108:                 '<input type="hidden" name="enddate_day" value="" />'."\n".
 3109:                 '<input type="hidden" name="enddate_year" value="" />'."\n".
 3110:                 '<input type="hidden" name="enddate_hour" value="" />'."\n".
 3111:                 '<input type="hidden" name="enddate_minute" value="" />'."\n".
 3112:                 '<input type="hidden" name="enddate_second" value="" />'."\n".
 3113:                 '<input type="hidden" name="no_end_date" value="" />'."\n";
 3114:             if ($context eq 'course') {
 3115:                 $output .= '<input type="hidden" name="makedatesdefault" value="" />'."\n";
 3116:             }
 3117:         }
 3118:         if ($choices{'sections'}) {
 3119:             $output .= '<input type="hidden" name="retainsec" value="" />'."\n".
 3120:                        '<input type="hidden" name="newsecs" value="" />'."\n";
 3121:         }
 3122:     }
 3123:     return $output;
 3124: }
 3125: 
 3126: sub date_section_javascript {
 3127:     my ($context,$setting) = @_;
 3128:     my $title = 'Date_And_Section_Selector';
 3129:     my %nopopup = &Apache::lonlocal::texthash (
 3130:         revoke => "Check the boxes for any users for whom roles are to be revoked, and click 'Proceed'",
 3131:         delete => "Check the boxes for any users for whom roles are to be deleted, and click 'Proceed'",
 3132:         none   => "Choose an action to take for selected users",
 3133:     );  
 3134:     my $output = <<"ENDONE";
 3135: <script type="text/javascript">
 3136: // <![CDATA[
 3137:     function opendatebrowser(callingform,formname,calledby) {
 3138:         var bulkaction = callingform.bulkaction.options[callingform.bulkaction.selectedIndex].value;
 3139:         var url = '/adm/createuser?';
 3140:         var type = '';
 3141:         var showrole = callingform.showrole.options[callingform.showrole.selectedIndex].value;
 3142: ENDONE
 3143:     if ($context eq 'domain') {
 3144:         $output .= '
 3145:         type = callingform.roletype.options[callingform.roletype.selectedIndex].value;
 3146: ';
 3147:     }
 3148:     my $width= '700';
 3149:     my $height = '400';
 3150:     $output .= <<"ENDTWO";
 3151:         url += 'action=dateselect&callingform=' + formname + 
 3152:                '&roletype='+type+'&showrole='+showrole +'&bulkaction='+bulkaction;
 3153:         var title = '$title';
 3154:         var options = 'scrollbars=1,resizable=1,menubar=0';
 3155:         options += ',width=$width,height=$height';
 3156:         stdeditbrowser = open(url,title,options,'1');
 3157:         stdeditbrowser.focus();
 3158:     }
 3159: // ]]>
 3160: </script>
 3161: ENDTWO
 3162:     return $output;
 3163: }
 3164: 
 3165: sub date_section_selector {
 3166:     my ($context,$permission,$crstype) = @_;
 3167:     my $callingform = $env{'form.callingform'};
 3168:     my $formname = 'dateselect';  
 3169:     my $groupslist = &get_groupslist();
 3170:     my $sec_js = &setsections_javascript($formname,$groupslist);
 3171:     my $output = <<"END";
 3172: <script type="text/javascript">
 3173: // <![CDATA[
 3174: 
 3175: $sec_js
 3176: 
 3177: function saveselections(formname) {
 3178: 
 3179: END
 3180:     if ($env{'form.bulkaction'} eq 'chgsec') {
 3181:         $output .= <<"END";
 3182:         if (formname.retainsec.length > 1) {  
 3183:             for (var i=0; i<formname.retainsec.length; i++) {
 3184:                 if (formname.retainsec[i].checked == true) {
 3185:                     opener.document.$callingform.retainsec.value = formname.retainsec[i].value;
 3186:                 }
 3187:             }
 3188:         } else {
 3189:             opener.document.$callingform.retainsec.value = formname.retainsec.value;
 3190:         }
 3191:         setSections(formname,'$crstype');
 3192:         if (seccheck == 'ok') {
 3193:             opener.document.$callingform.newsecs.value = formname.sections.value;
 3194:         }
 3195: END
 3196:     } else {
 3197:         if ($context eq 'course') {
 3198:             if (($env{'form.bulkaction'} eq 'reenable') || 
 3199:                 ($env{'form.bulkaction'} eq 'activate') || 
 3200:                 ($env{'form.bulkaction'} eq 'chgdates')) {
 3201:                 if ($env{'request.course.sec'} eq '') {
 3202:                     $output .= <<"END";
 3203:  
 3204:         if (formname.makedatesdefault.checked == true) {
 3205:             opener.document.$callingform.makedatesdefault.value = 1;
 3206:         }
 3207:         else {
 3208:             opener.document.$callingform.makedatesdefault.value = 0;
 3209:         }
 3210: 
 3211: END
 3212:                 }
 3213:             }
 3214:         }
 3215:         $output .= <<"END";
 3216:     opener.document.$callingform.startdate_month.value =  formname.startdate_month.options[formname.startdate_month.selectedIndex].value;
 3217:     opener.document.$callingform.startdate_day.value =  formname.startdate_day.value;
 3218:     opener.document.$callingform.startdate_year.value = formname.startdate_year.value;
 3219:     opener.document.$callingform.startdate_hour.value =  formname.startdate_hour.options[formname.startdate_hour.selectedIndex].value;
 3220:     opener.document.$callingform.startdate_minute.value =  formname.startdate_minute.value;
 3221:     opener.document.$callingform.startdate_second.value = formname.startdate_second.value;
 3222:     opener.document.$callingform.enddate_month.value =  formname.enddate_month.options[formname.enddate_month.selectedIndex].value;
 3223:     opener.document.$callingform.enddate_day.value =  formname.enddate_day.value;
 3224:     opener.document.$callingform.enddate_year.value = formname.enddate_year.value;
 3225:     opener.document.$callingform.enddate_hour.value =  formname.enddate_hour.options[formname.enddate_hour.selectedIndex].value;
 3226:     opener.document.$callingform.enddate_minute.value =  formname.enddate_minute.value;
 3227:     opener.document.$callingform.enddate_second.value = formname.enddate_second.value;
 3228:     if (formname.no_end_date.checked) {
 3229:         opener.document.$callingform.no_end_date.value = '1';
 3230:     } else {
 3231:         opener.document.$callingform.no_end_date.value = '0';
 3232:     }
 3233: END
 3234:     }
 3235:     my $verify_action_js = &bulkaction_javascript($callingform,'popup');
 3236:     $output .= <<"ENDJS";
 3237:     verify_action('actionlist');
 3238: }
 3239: 
 3240: $verify_action_js
 3241: 
 3242: // ]]>
 3243: </script>
 3244: ENDJS
 3245:     my %lt = &Apache::lonlocal::texthash (
 3246:                  chac => 'Access dates to apply for selected users',
 3247:                  chse => 'Changes in section affiliation to apply to selected users',
 3248:                  fors => 'For student roles, changing the section will result in a section switch as students may only be in one section of a course at a time.',
 3249:                  forn => 'For a course role that is not "student", users may have roles in more than one section at a time.',
 3250:                  reta => "Retain each user's current section affiliations?",
 3251:                  dnap => '(Does not apply to student roles).',
 3252:             );
 3253:     my ($date_items,$headertext);
 3254:     if ($env{'form.bulkaction'} eq 'chgsec') {
 3255:         $headertext = $lt{'chse'};
 3256:     } else {
 3257:         $headertext = $lt{'chac'};
 3258:         my $starttime;
 3259:         if (($env{'form.bulkaction'} eq 'activate') || 
 3260:             ($env{'form.bulkaction'} eq 'reenable')) {
 3261:             $starttime = time;
 3262:         }
 3263:         $date_items = &date_setting_table($starttime,undef,$context,
 3264:                                           $env{'form.bulkaction'},$formname,
 3265:                                           $permission,$crstype);
 3266:     }
 3267:     $output .= '<h3>'.$headertext.'</h3>'.
 3268:                '<form name="'.$formname.'" method="post" action="">'."\n".
 3269:                 $date_items;
 3270:     if ($context eq 'course' && $env{'form.bulkaction'} eq 'chgsec') {
 3271:         my ($cnum,$cdom) = &get_course_identity();
 3272:         if ($crstype eq 'Community') {
 3273:             $lt{'fors'} = &mt('For member roles, changing the section will result in a section switch, as members may only be in one section of a community at a time.');
 3274:             $lt{'forn'} = &mt('For a community role that is not "member", users may have roles in more than one section at a time.');
 3275:             $lt{'dnap'} = &mt('(Does not apply to member roles).'); 
 3276:         }
 3277:         my $info;
 3278:         if ($env{'form.showrole'} eq 'st') {
 3279:             $output .= '<p>'.$lt{'fors'}.'</p>'; 
 3280:         } elsif ($env{'form.showrole'} eq 'Any') {
 3281:             $output .= '<p>'.$lt{'fors'}.'</p>'.
 3282:                        '<p>'.$lt{'forn'}.'&nbsp;';
 3283:             $info = $lt{'reta'};
 3284:         } else {
 3285:             $output .= '<p>'.$lt{'forn'}.'&nbsp;';
 3286:             $info = $lt{'reta'};
 3287:         }
 3288:         if ($info) {
 3289:             $info .= '<span class="LC_nobreak">'.
 3290:                      '<label><input type="radio" name="retainsec" value="1" '.
 3291:                      'checked="checked" />'.&mt('Yes').'</label>&nbsp;&nbsp;'.
 3292:                      '<label><input type="radio" name="retainsec" value="0" />'.
 3293:                      &mt('No').'</label></span>';
 3294:             if ($env{'form.showrole'} eq 'Any') {
 3295:                 $info .= '<br />'.$lt{'dnap'};
 3296:             }
 3297:             $info .= '</p>';
 3298:         } else {
 3299:             $info = '<input type="hidden" name="retainsec" value="0" />'; 
 3300:         }
 3301:         my $rowtitle = &mt('New section to assign');
 3302:         my $secbox = &section_picker($cdom,$cnum,$env{'form.showrole'},$rowtitle,$permission,$context,'',$crstype);
 3303:         $output .= $info.$secbox;
 3304:     }
 3305:     $output .= '<p>'.
 3306: '<input type="button" name="dateselection" value="'.&mt('Save').'" onclick="javascript:saveselections(this.form)" /></p>'."\n".
 3307: '</form>';
 3308:     return $output;
 3309: }
 3310: 
 3311: sub section_picker {
 3312:     my ($cdom,$cnum,$role,$rowtitle,$permission,$context,$mode,$crstype) = @_;
 3313:     my %sections_count = &Apache::loncommon::get_sections($cdom,$cnum);
 3314:     my $sections_select .= &course_sections(\%sections_count,$role);
 3315:     my $secbox = '<div>'.&Apache::lonhtmlcommon::start_pick_box()."\n";
 3316:     if ($mode eq 'upload') {
 3317:         my ($options,$cb_script,$coursepick) =
 3318:             &default_role_selector($context,1,$crstype);
 3319:         $secbox .= &Apache::lonhtmlcommon::row_title(&mt('role'),'LC_oddrow_value').
 3320:                    $options. &Apache::lonhtmlcommon::row_closure(1)."\n";
 3321:     }
 3322:     $secbox .= &Apache::lonhtmlcommon::row_title($rowtitle,'LC_oddrow_value')."\n";
 3323:     if ($env{'request.course.sec'} eq '') {
 3324:         $secbox .= '<table class="LC_createuser"><tr class="LC_section_row">'."\n".
 3325:                    '<td align="center">'.&mt('Existing sections')."\n".
 3326:                    '<br />'.$sections_select.'</td><td align="center">'.
 3327:                    &mt('New section').'<br />'."\n".
 3328:                    '<input type="text" name="newsec" size="15" value="" />'."\n".
 3329:                    '<input type="hidden" name="sections" value="" />'."\n".
 3330:                    '</td></tr></table>'."\n";
 3331:     } else {
 3332:        $secbox .= '<input type="hidden" name="sections" value="'.
 3333:                    $env{'request.course.sec'}.'" />'.
 3334:                    $env{'request.course.sec'};
 3335:     }
 3336:     $secbox .= &Apache::lonhtmlcommon::row_closure(1)."\n".
 3337:                &Apache::lonhtmlcommon::end_pick_box().'</div>';
 3338:     return $secbox;
 3339: }
 3340: 
 3341: sub results_header_row {
 3342:     my ($rolefilter,$statusmode,$context,$permission,$mode,$crstype) = @_;
 3343:     my ($description,$showfilter);
 3344:     if ($rolefilter ne 'Any') {
 3345:         $showfilter = $rolefilter;
 3346:     }
 3347:     if ($context eq 'course') {
 3348:         if ($mode eq 'csv' || $mode eq 'excel') {
 3349:             if ($crstype eq 'Community') {
 3350:                 $description = &mt('Community - [_1]:',$env{'course.'.$env{'request.course.id'}.'.description'}).' ';
 3351:             } else {
 3352:                 $description = &mt('Course - [_1]:',$env{'course.'.$env{'request.course.id'}.'.description'}).' ';
 3353:             }
 3354:         }
 3355:         if ($statusmode eq 'Expired') {
 3356:             if ($crstype eq 'Community') {
 3357:                 $description .= &mt('Users in community with expired [_1] roles',$showfilter);
 3358:             } else {
 3359:                 $description .= &mt('Users in course with expired [_1] roles',$showfilter);
 3360:             }
 3361:         } elsif ($statusmode eq 'Future') {
 3362:             if ($crstype eq 'Community') {
 3363:                 $description .= &mt('Users in community with future [_1] roles',$showfilter);
 3364:             } else {
 3365:                 $description .= &mt('Users in course with future [_1] roles',$showfilter);
 3366:             }
 3367:         } elsif ($statusmode eq 'Active') {
 3368:             if ($crstype eq 'Community') {
 3369:                 $description .= &mt('Users in community with active [_1] roles',$showfilter);
 3370:             } else {
 3371:                 $description .= &mt('Users in course with active [_1] roles',$showfilter);
 3372:             }
 3373:         } else {
 3374:             if ($rolefilter eq 'Any') {
 3375:                 if ($crstype eq 'Community') {
 3376:                     $description .= &mt('All users in community');
 3377:                 } else {
 3378:                     $description .= &mt('All users in course');
 3379:                 }
 3380:             } else {
 3381:                 if ($crstype eq 'Community') {
 3382:                     $description .= &mt('All users in community with [_1] roles',$rolefilter);
 3383:                 } else {
 3384:                     $description .= &mt('All users in course with [_1] roles',$rolefilter);
 3385:                 }
 3386:             }
 3387:         }
 3388:         my $constraint;
 3389:         my $viewablesec = &viewable_section($permission);
 3390:         if ($viewablesec ne '') {
 3391:             if ($env{'form.showrole'} eq 'st') {
 3392:                 $constraint = &mt('only users in section "[_1]"',$viewablesec);
 3393:             } elsif (($env{'form.showrole'} ne 'cc') && ($env{'form.showrole'} ne 'co')) {
 3394:                 $constraint = &mt('only users affiliated with no section or section "[_1]"',$viewablesec);
 3395:             }
 3396:             if (($env{'form.grpfilter'} ne 'all') && ($env{'form.grpfilter'} ne '')) {
 3397:                 if ($env{'form.grpfilter'} eq 'none') {
 3398:                     $constraint .= &mt(' and not in any group');
 3399:                 } else {
 3400:                     $constraint .= &mt(' and members of group: "[_1]"',$env{'form.grpfilter'});
 3401:                 }
 3402:             }
 3403:         } else {
 3404:             if (($env{'form.secfilter'} ne 'all') && ($env{'form.secfilter'} ne '')) {
 3405:                 if ($env{'form.secfilter'} eq 'none') {
 3406:                     $constraint = &mt('only users affiliated with no section');
 3407:                 } else {
 3408:                     $constraint = &mt('only users affiliated with section "[_1]"',$env{'form.secfilter'});
 3409:                 }
 3410:             }
 3411:             if (($env{'form.grpfilter'} ne 'all') && ($env{'form.grpfilter'} ne '')) {
 3412:                 if ($env{'form.grpfilter'} eq 'none') {
 3413:                     if ($constraint eq '') {
 3414:                         $constraint = &mt('only users not in any group');
 3415:                     } else {
 3416:                         $constraint .= &mt(' and also not in any group'); 
 3417:                     }
 3418:                 } else {
 3419:                     if ($constraint eq '') {
 3420:                         $constraint = &mt('only members of group: "[_1]"',$env{'form.grpfilter'});
 3421:                     } else {
 3422:                         $constraint .= &mt(' and also members of group: "[_1]"'.$env{'form.grpfilter'});
 3423:                     }
 3424:                 }
 3425:             }
 3426:         }
 3427:         if ($constraint ne '') {
 3428:             $description .= ' ('.$constraint.')';
 3429:         } 
 3430:     } elsif ($context eq 'author') {
 3431:         $description = 
 3432:             &mt('Author space for [_1]'
 3433:                 ,'<span class="LC_cusr_emph">'
 3434:                 .&Apache::loncommon::plainname($env{'user.name'},$env{'user.domain'})
 3435:                 .'</span>')
 3436:             .':&nbsp;&nbsp;';
 3437:         if ($statusmode eq 'Expired') {
 3438:             $description .= &mt('Co-authors with expired [_1] roles',$showfilter);
 3439:         } elsif ($statusmode eq 'Future') {
 3440:             $description .= &mt('Co-authors with future [_1] roles',$showfilter);
 3441:         } elsif ($statusmode eq 'Active') {
 3442:             $description .= &mt('Co-authors with active [_1] roles',$showfilter);
 3443:         } else {
 3444:             if ($rolefilter eq 'Any') {
 3445:                 $description .= &mt('All co-authors');
 3446:             } else {
 3447:                 $description .= &mt('All co-authors with [_1] roles',$rolefilter);
 3448:             }
 3449:         }
 3450:     } elsif ($context eq 'domain') {
 3451:         my $domdesc = &Apache::lonnet::domain($env{'request.role.domain'},'description');
 3452:         $description = &mt('Domain - [_1]:',$domdesc).' ';
 3453:         if ($env{'form.roletype'} eq 'domain') {
 3454:             if ($statusmode eq 'Expired') {
 3455:                 $description .= &mt('Users in domain with expired [_1] roles',$showfilter);
 3456:             } elsif ($statusmode eq 'Future') {
 3457:                 $description .= &mt('Users in domain with future [_1] roles',$showfilter);
 3458:             } elsif ($statusmode eq 'Active') {
 3459:                 $description .= &mt('Users in domain with active [_1] roles',$showfilter);
 3460:             } else {
 3461:                 if ($rolefilter eq 'Any') {
 3462:                     $description .= &mt('All users in domain');
 3463:                 } else {
 3464:                     $description .= &mt('All users in domain with [_1] roles',$rolefilter);
 3465:                 }
 3466:             }
 3467:         } elsif ($env{'form.roletype'} eq 'author') {
 3468:             if ($statusmode eq 'Expired') {
 3469:                 $description .= &mt('Co-authors in domain with expired [_1] roles',$showfilter);
 3470:             } elsif ($statusmode eq 'Future') {
 3471:                 $description .= &mt('Co-authors in domain with future [_1] roles',$showfilter);
 3472:             } elsif ($statusmode eq 'Active') {
 3473:                $description .= &mt('Co-authors in domain with active [_1] roles',$showfilter);
 3474:             } else {
 3475:                 if ($rolefilter eq 'Any') {
 3476:                     $description .= &mt('All users with co-author roles in domain',$showfilter);
 3477:                 } else {
 3478:                     $description .= &mt('All co-authors in domain with [_1] roles',$rolefilter);
 3479:                 }
 3480:             }
 3481:         } elsif (($env{'form.roletype'} eq 'course') || 
 3482:                  ($env{'form.roletype'} eq 'community')) {
 3483:             my $coursefilter = $env{'form.coursepick'};
 3484:             if ($env{'form.roletype'} eq 'course') {
 3485:                 if ($coursefilter eq 'category') {
 3486:                     my $instcode = &instcode_from_coursefilter();
 3487:                     if ($instcode eq '.') {
 3488:                         $description .= &mt('All courses in domain').' - ';
 3489:                     } else {
 3490:                         $description .= &mt('Courses in domain with institutional code: [_1]',$instcode).' - ';
 3491:                     }
 3492:                 } elsif ($coursefilter eq 'selected') {
 3493:                     $description .= &mt('Selected courses in domain').' - ';
 3494:                 } elsif ($coursefilter eq 'all') {
 3495:                     $description .= &mt('All courses in domain').' - ';
 3496:                 }
 3497:             } elsif ($env{'form.roletype'} eq 'community') {
 3498:                 if ($coursefilter eq 'selected') {
 3499:                     $description .= &mt('Selected communities in domain').' - ';
 3500:                 } elsif ($coursefilter eq 'all') {
 3501:                     $description .= &mt('All communities in domain').' - ';
 3502:                 }
 3503:             }
 3504:             if ($statusmode eq 'Expired') {
 3505:                 $description .= &mt('users with expired [_1] roles',$showfilter);
 3506:             } elsif ($statusmode eq 'Future') {
 3507:                 $description .= &mt('users with future [_1] roles',$showfilter);
 3508:             } elsif ($statusmode eq 'Active') {
 3509:                 $description .= &mt('users with active [_1] roles',$showfilter);
 3510:             } else {
 3511:                 if ($rolefilter eq 'Any') {
 3512:                     $description .= &mt('all users');
 3513:                 } else {
 3514:                     $description .= &mt('users with [_1] roles',$rolefilter);
 3515:                 }
 3516:             }
 3517:         }
 3518:     }
 3519:     return $description;
 3520: }
 3521: 
 3522: sub viewable_section {
 3523:     my ($permission) = @_;
 3524:     my $viewablesec;
 3525:     if (ref($permission) eq 'HASH') {
 3526:         if (exists($permission->{'view_section'})) {
 3527:             $viewablesec = $permission->{'view_section'};
 3528:         } elsif (exists($permission->{'cusr_section'})) {
 3529:             $viewablesec = $permission->{'cusr_section'};
 3530:         }
 3531:     }
 3532:     return $viewablesec;
 3533: }
 3534: 
 3535:     
 3536: #################################################
 3537: #################################################
 3538: sub show_drop_list {
 3539:     my ($r,$classlist,$nosort,$permission,$crstype) = @_;
 3540:     my $cid = $env{'request.course.id'};
 3541:     my ($cnum,$cdom) = &get_course_identity($cid);
 3542:     if (! exists($env{'form.sortby'})) {
 3543:         &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},
 3544:                                                 ['sortby']);
 3545:     }
 3546:     my $sortby = $env{'form.sortby'};
 3547:     if ($sortby !~ /^(username|domain|section|groups|fullname|id|start|end)$/) {
 3548:         $sortby = 'username';
 3549:     }
 3550:     my $action = "drop";
 3551:     my $check_uncheck_js = &Apache::loncommon::check_uncheck_jscript();
 3552:     $r->print(<<END);
 3553: <input type="hidden" name="sortby" value="$sortby" />
 3554: <input type="hidden" name="action" value="$action" />
 3555: <input type="hidden" name="state"  value="done" />
 3556: <script type="text/javascript" language="Javascript">
 3557: // <![CDATA[
 3558: $check_uncheck_js
 3559: // ]]>
 3560: </script>
 3561: <p>
 3562: <input type="hidden" name="phase" value="four" />
 3563: END
 3564:     my ($indexhash,$keylist) = &make_keylist_array();
 3565:     my $studentcount = 0;
 3566:     if (ref($classlist) eq 'HASH') {
 3567:         foreach my $student (keys(%{$classlist})) {
 3568:             my $sdata = $classlist->{$student}; 
 3569:             my $status = $sdata->[$indexhash->{'status'}];
 3570:             my $section = $sdata->[$indexhash->{'section'}];
 3571:             if ($status ne 'Active') {
 3572:                 delete($classlist->{$student});
 3573:                 next;
 3574:             }
 3575:             if ($env{'request.course.sec'} ne '') {
 3576:                 if ($section ne $env{'request.course.sec'}) {
 3577:                     delete($classlist->{$student});
 3578:                     next;
 3579:                 }
 3580:             }
 3581:             $studentcount ++;
 3582:         }
 3583:     }
 3584:     if (!$studentcount) {
 3585:         if ($crstype eq 'Community') {
 3586:             $r->print(&mt('There are no members to drop.'));
 3587:         } else {
 3588:             $r->print(&mt('There are no students to drop.'));
 3589:         }
 3590:         return;
 3591:     }
 3592:     my ($classgroups) = &Apache::loncoursedata::get_group_memberships(
 3593:                                               $classlist,$keylist,$cdom,$cnum);
 3594:     my %lt=&Apache::lonlocal::texthash('usrn'   => "username",
 3595:                                        'dom'    => "domain",
 3596:                                        'sn'     => "student name",
 3597:                                        'mn'     => "member name",
 3598:                                        'sec'    => "section",
 3599:                                        'start'  => "start date",
 3600:                                        'end'    => "end date",
 3601:                                        'groups' => "active groups",
 3602:                                       );
 3603:     my $nametitle = $lt{'sn'};
 3604:     if ($crstype eq 'Community') {
 3605:         $nametitle = $lt{'mn'};
 3606:     }
 3607:     if ($nosort) {
 3608:         $r->print(&Apache::loncommon::start_data_table().
 3609:                   &Apache::loncommon::start_data_table_header_row());
 3610:         $r->print(<<END);
 3611:     <th>&nbsp;</th>
 3612:     <th>$lt{'usrn'}</th>
 3613:     <th>$lt{'dom'}</th>
 3614:     <th>ID</th>
 3615:     <th>$nametitle</th>
 3616:     <th>$lt{'sec'}</th>
 3617:     <th>$lt{'start'}</th>
 3618:     <th>$lt{'end'}</th>
 3619:     <th>$lt{'groups'}</th>
 3620: END
 3621:         $r->print(&Apache::loncommon::end_data_table_header_row());
 3622:     } else  {
 3623:         $r->print(&Apache::loncommon::start_data_table().
 3624:                   &Apache::loncommon::start_data_table_header_row());
 3625:         $r->print(<<END);
 3626:     <th>&nbsp;</th>
 3627:     <th>
 3628:        <a href="/adm/createuser?action=$action&sortby=username">$lt{'usrn'}</a>
 3629:     </th><th>
 3630:        <a href="/adm/createuser?action=$action&sortby=domain">$lt{'dom'}</a>
 3631:     </th><th>
 3632:        <a href="/adm/createuser?action=$action&sortby=id">ID</a>
 3633:     </th><th>
 3634:        <a href="/adm/createuser?action=$action&sortby=fullname">$nametitle</a>
 3635:     </th><th>
 3636:        <a href="/adm/createuser?action=$action&sortby=section">$lt{'sec'}</a>
 3637:     </th><th>
 3638:        <a href="/adm/createuser?action=$action&sortby=start">$lt{'start'}</a>
 3639:     </th><th>
 3640:        <a href="/adm/createuser?action=$action&sortby=end">$lt{'end'}</a>
 3641:     </th><th>
 3642:        <a href="/adm/createuser?action=$action&sortby=groups">$lt{'groups'}</a>
 3643:     </th>
 3644: END
 3645:         $r->print(&Apache::loncommon::end_data_table_header_row());
 3646:     }
 3647:     #
 3648:     # Sort the students
 3649:     my $index  = $indexhash->{$sortby};
 3650:     my $second = $indexhash->{'username'};
 3651:     my $third  = $indexhash->{'domain'};
 3652:     my @Sorted_Students = sort {
 3653:         lc($classlist->{$a}->[$index])  cmp lc($classlist->{$b}->[$index])
 3654:             ||
 3655:         lc($classlist->{$a}->[$second]) cmp lc($classlist->{$b}->[$second])
 3656:             ||
 3657:         lc($classlist->{$a}->[$third]) cmp lc($classlist->{$b}->[$third])
 3658:         } (keys(%{$classlist}));
 3659:     foreach my $student (@Sorted_Students) {
 3660:         my $error;
 3661:         my $sdata = $classlist->{$student};
 3662:         my $username = $sdata->[$indexhash->{'username'}];
 3663:         my $domain   = $sdata->[$indexhash->{'domain'}];
 3664:         my $section  = $sdata->[$indexhash->{'section'}];
 3665:         my $name     = $sdata->[$indexhash->{'fullname'}];
 3666:         my $id       = $sdata->[$indexhash->{'id'}];
 3667:         my $start    = $sdata->[$indexhash->{'start'}];
 3668:         my $end      = $sdata->[$indexhash->{'end'}];
 3669:         my $groups = $classgroups->{$student};
 3670:         my $active_groups;
 3671:         if (ref($groups->{active}) eq 'HASH') {
 3672:             $active_groups = join(', ',keys(%{$groups->{'active'}}));
 3673:         }
 3674:         if (! defined($start) || $start == 0) {
 3675:             $start = &mt('none');
 3676:         } else {
 3677:             $start = &Apache::lonlocal::locallocaltime($start);
 3678:         }
 3679:         if (! defined($end) || $end == 0) {
 3680:             $end = &mt('none');
 3681:         } else {
 3682:             $end = &Apache::lonlocal::locallocaltime($end);
 3683:         }
 3684:         my $studentkey = $student.':'.$section;
 3685:         my $startitem = '<input type="hidden" name="'.$studentkey.'_start" value="'.$sdata->[$indexhash->{'start'}].'" />';
 3686:         #
 3687:         $r->print(&Apache::loncommon::start_data_table_row());
 3688:         $r->print(<<"END");
 3689:     <td><input type="checkbox" name="droplist" value="$studentkey" /></td>
 3690:     <td>$username</td>
 3691:     <td>$domain</td>
 3692:     <td>$id</td>
 3693:     <td>$name</td>
 3694:     <td>$section</td>
 3695:     <td>$start $startitem</td>
 3696:     <td>$end</td>
 3697:     <td>$active_groups</td>
 3698: END
 3699:         $r->print(&Apache::loncommon::end_data_table_row());
 3700:     }
 3701:     $r->print(&Apache::loncommon::end_data_table().'<br />');
 3702:     %lt=&Apache::lonlocal::texthash(
 3703:                        'dp'   => "Drop Students",
 3704:                        'dm'   => "Drop Members",
 3705:                        'ca'   => "check all",
 3706:                        'ua'   => "uncheck all",
 3707:                                        );
 3708:     my $btn = $lt{'dp'};
 3709:     if ($crstype eq 'Community') {
 3710:         $btn = $lt{'dm'}; 
 3711:     }
 3712:     $r->print(<<"END");
 3713: </p>
 3714: <p>
 3715: <input type="button" value="$lt{'ca'}" onclick="javascript:checkAll(document.studentform.droplist)" /> &nbsp;
 3716: <input type="button" value="$lt{'ua'}" onclick="javascript:uncheckAll(document.studentform.droplist)" />
 3717: </p>
 3718: <p>
 3719: <input type="submit" value="$btn" />
 3720: </p>
 3721: END
 3722:     return;
 3723: }
 3724: 
 3725: #
 3726: # Print out the initial form to get the file containing a list of users
 3727: #
 3728: sub print_first_users_upload_form {
 3729:     my ($r,$context) = @_;
 3730:     my $str;
 3731:     $str  = '<input type="hidden" name="phase" value="two" />';
 3732:     $str .= '<input type="hidden" name="action" value="upload" />';
 3733:     $str .= '<input type="hidden" name="state"  value="got_file" />';
 3734: 
 3735:     $str .= '<h2>'.&mt('Upload a file containing information about users').'</h2>'."\n";
 3736: 
 3737:     # Excel and CSV Help
 3738:     $str .= '<div class="LC_left_float">'
 3739:            .&Apache::loncommon::help_open_topic("Course_Create_Class_List",
 3740:                 &mt("How do I create a users list from a spreadsheet"))
 3741:            .'</div><div class="LC_left_float">'."\n"
 3742:            .&Apache::loncommon::help_open_topic("Course_Convert_To_CSV",
 3743:                 &mt("How do I create a CSV file from a spreadsheet"))
 3744:            .'</div><br clear="all" />'."\n";
 3745:     $str .= &Apache::lonhtmlcommon::start_pick_box()
 3746:            .&Apache::lonhtmlcommon::row_title(&mt('File'));
 3747:     if (&Apache::lonlocal::current_language() ne 'en') {
 3748:         if ($context eq 'course') { 
 3749:             $str .= '<p class="LC_info">'."\n"
 3750:                    .&mt('Please upload an UTF8 encoded file to ensure a correct character encoding in your classlist.')."\n"
 3751:                    .'</p>'."\n";
 3752:         }
 3753:     }
 3754:     $str .= &Apache::loncommon::upfile_select_html()
 3755:            .&Apache::lonhtmlcommon::row_closure()
 3756:            .&Apache::lonhtmlcommon::row_title(
 3757:                 '<label for="noFirstLine">'
 3758:                .&mt('Ignore First Line')
 3759:                .'</label>')
 3760:            .'<input type="checkbox" name="noFirstLine" id="noFirstLine" />'
 3761:            .&Apache::lonhtmlcommon::row_closure(1)
 3762:            .&Apache::lonhtmlcommon::end_pick_box();
 3763: 
 3764:     $str .= '<p>'
 3765:            .'<input type="submit" name="fileupload" value="'.&mt('Next').'" />'
 3766:            .'</p>';
 3767: 
 3768:     $r->print($str);
 3769:     return;
 3770: }
 3771: 
 3772: # ================================================= Drop/Add from uploaded file
 3773: sub upfile_drop_add {
 3774:     my ($r,$context,$permission) = @_;
 3775:     &Apache::loncommon::load_tmp_file($r);
 3776:     my @userdata=&Apache::loncommon::upfile_record_sep();
 3777:     if($env{'form.noFirstLine'}){shift(@userdata);}
 3778:     my @keyfields = split(/\,/,$env{'form.keyfields'});
 3779:     my %fields=();
 3780:     for (my $i=0; $i<=$env{'form.nfields'}; $i++) {
 3781:         if ($env{'form.upfile_associate'} eq 'reverse') {
 3782:             if ($env{'form.f'.$i} ne 'none') {
 3783:                 $fields{$keyfields[$i]}=$env{'form.f'.$i};
 3784:             }
 3785:         } else {
 3786:             $fields{$env{'form.f'.$i}}=$keyfields[$i];
 3787:         }
 3788:     }
 3789:     if ($env{'form.fullup'} ne 'yes') {
 3790:         $r->print('<form name="studentform" method="post" action="/adm/createuser">'."\n".
 3791:                   '<input type="hidden" name="action" value="'.$env{'form.action'}.'" />');
 3792:     }
 3793:     #
 3794:     # Store the field choices away
 3795:     foreach my $field (qw/username names
 3796:                        fname mname lname gen id sec ipwd email role domain/) {
 3797:         $env{'form.'.$field.'_choice'}=$fields{$field};
 3798:     }
 3799:     &Apache::loncommon::store_course_settings('enrollment_upload',
 3800:                                               { 'username_choice' => 'scalar',
 3801:                                                 'names_choice' => 'scalar',
 3802:                                                 'fname_choice' => 'scalar',
 3803:                                                 'mname_choice' => 'scalar',
 3804:                                                 'lname_choice' => 'scalar',
 3805:                                                 'gen_choice' => 'scalar',
 3806:                                                 'id_choice' => 'scalar',
 3807:                                                 'sec_choice' => 'scalar',
 3808:                                                 'ipwd_choice' => 'scalar',
 3809:                                                 'email_choice' => 'scalar',
 3810:                                                 'role_choice'  => 'scalar',
 3811:                                                 'domain_choice' => 'scalar',
 3812:                                                 'inststatus_choice' => 'scalar'});
 3813:     #
 3814:     my ($cid,$crstype,$setting);
 3815:     if ($context eq 'domain') {
 3816:         $setting = $env{'form.roleaction'};
 3817:     }
 3818:     if ($env{'request.course.id'} ne '') {
 3819:         $cid = $env{'request.course.id'};
 3820:         $crstype = &Apache::loncommon::course_type();
 3821:     } elsif ($setting eq 'course') {
 3822:         if (&Apache::lonnet::is_course($env{'form.dcdomain'},$env{'form.dccourse'})) {
 3823:             $cid = $env{'form.dcdomain'}.'_'.$env{'form.dccourse'};
 3824:             $crstype = &Apache::loncommon::course_type($cid);
 3825:         }
 3826:     }
 3827:     my ($startdate,$enddate) = &get_dates_from_form();
 3828:     if ($env{'form.makedatesdefault'}) {
 3829:         $r->print(&make_dates_default($startdate,$enddate,$context,$crstype));
 3830:     }
 3831:     # Determine domain and desired host (home server)
 3832:     my $defdom=$env{'request.role.domain'};
 3833:     my $domain;
 3834:     if ($env{'form.defaultdomain'} ne '') {
 3835:         $domain = $env{'form.defaultdomain'};
 3836:     } else {
 3837:         $domain = $defdom;
 3838:     }
 3839:     my $desiredhost = $env{'form.lcserver'};
 3840:     if (lc($desiredhost) eq 'default') {
 3841:         $desiredhost = undef;
 3842:     } else {
 3843:         my %home_servers = &Apache::lonnet::get_servers($defdom,'library');
 3844:         if (! exists($home_servers{$desiredhost})) {
 3845:             $r->print('<span class="LC_error">'.&mt('Error').
 3846:                       &mt('Invalid home server specified').'</span>');
 3847:             $r->print(&Apache::loncommon::end_page());
 3848:             return;
 3849:         }
 3850:     }
 3851:     # Determine authentication mechanism
 3852:     my $changeauth;
 3853:     if ($context eq 'domain') {
 3854:         $changeauth = $env{'form.changeauth'};
 3855:     }
 3856:     my $amode  = '';
 3857:     my $genpwd = '';
 3858:     if ($env{'form.login'} eq 'krb') {
 3859:         $amode='krb';
 3860:         $amode.=$env{'form.krbver'};
 3861:         $genpwd=$env{'form.krbarg'};
 3862:     } elsif ($env{'form.login'} eq 'int') {
 3863:         $amode='internal';
 3864:         if ((defined($env{'form.intarg'})) && ($env{'form.intarg'})) {
 3865:             $genpwd=$env{'form.intarg'};
 3866:         }
 3867:     } elsif ($env{'form.login'} eq 'loc') {
 3868:         $amode='localauth';
 3869:         if ((defined($env{'form.locarg'})) && ($env{'form.locarg'})) {
 3870:             $genpwd=$env{'form.locarg'};
 3871:         }
 3872:     }
 3873:     if ($amode =~ /^krb/) {
 3874:         if (! defined($genpwd) || $genpwd eq '') {
 3875:             $r->print('<span class="Error">'.
 3876:                       &mt('Unable to enroll users').' '.
 3877:                       &mt('No Kerberos domain was specified.').'</span></p>');
 3878:             $amode = ''; # This causes the loop below to be skipped
 3879:         }
 3880:     }
 3881:     my ($defaultsec,$defaultrole);
 3882:     if ($context eq 'domain') {
 3883:         if ($setting eq 'domain') {
 3884:             $defaultrole = $env{'form.defaultrole'};
 3885:         } elsif ($setting eq 'course') {
 3886:             $defaultrole = $env{'form.courserole'};
 3887:             $defaultsec = $env{'form.sections'};
 3888:         }  
 3889:     } elsif ($context eq 'author') {
 3890:         $defaultrole = $env{'form.defaultrole'};
 3891:     } elsif ($context eq 'course') {
 3892:         $defaultrole = $env{'form.defaultrole'};
 3893:         $defaultsec = $env{'form.sections'};
 3894:     }
 3895:     # Check to see if user information can be changed
 3896:     my @userinfo = ('firstname','middlename','lastname','generation',
 3897:                     'permanentemail','id');
 3898:     my %canmodify;
 3899:     if (&Apache::lonnet::allowed('mau',$domain)) {
 3900:         push(@userinfo,'inststatus');
 3901:         foreach my $field (@userinfo) {
 3902:             $canmodify{$field} = 1;
 3903:         }
 3904:     }
 3905:     my (%userlist,%modifiable_fields,@poss_roles);
 3906:     my $secidx = &Apache::loncoursedata::CL_SECTION();
 3907:     my @courseroles = &roles_by_context('course',1,$crstype);
 3908:     if (!&Apache::lonnet::allowed('mau',$domain)) {
 3909:         if ($context eq 'course' || $context eq 'author') {
 3910:             @poss_roles =  &curr_role_permissions($context,'','',$crstype);
 3911:             my @statuses = ('active','future');
 3912:             my ($indexhash,$keylist) = &make_keylist_array();
 3913:             my %info;
 3914:             foreach my $role (@poss_roles) {
 3915:                 %{$modifiable_fields{$role}} = &can_modify_userinfo($context,$domain,
 3916:                                                         \@userinfo,[$role]);
 3917:             }
 3918:             if ($context eq 'course') {
 3919:                 my ($cnum,$cdom) = &get_course_identity();
 3920:                 my $roster = &Apache::loncoursedata::get_classlist();
 3921:                 if (ref($roster) eq 'HASH') {
 3922:                     %userlist = %{$roster};
 3923:                 }
 3924:                 my %advrolehash = &Apache::lonnet::get_my_roles($cnum,$cdom,undef,
 3925:                                                          \@statuses,\@poss_roles);
 3926:                 &gather_userinfo($context,'view',\%userlist,$indexhash,\%info,
 3927:                                 \%advrolehash,$permission);
 3928:             } elsif ($context eq 'author') {
 3929:                 my %cstr_roles = &Apache::lonnet::get_my_roles(undef,undef,undef,
 3930:                                                   \@statuses,\@poss_roles);
 3931:                 &gather_userinfo($context,'view',\%userlist,$indexhash,\%info,
 3932:                              \%cstr_roles,$permission);
 3933: 
 3934:             }
 3935:         }
 3936:     }
 3937:     if ( $domain eq &LONCAPA::clean_domain($domain)
 3938:         && ($amode ne '')) {
 3939:         #######################################
 3940:         ##         Add/Modify Users          ##
 3941:         #######################################
 3942:         if ($context eq 'course') {
 3943:             $r->print('<h3>'.&mt('Enrolling Users')."</h3>\n<p>\n");
 3944:         } elsif ($context eq 'author') {
 3945:             $r->print('<h3>'.&mt('Updating Co-authors')."</h3>\n<p>\n");
 3946:         } else {
 3947:             $r->print('<h3>'.&mt('Adding/Modifying Users')."</h3>\n<p>\n");
 3948:         }
 3949:         $r->rflush;
 3950: 
 3951:         my %counts = (
 3952:                        user => 0,
 3953:                        auth => 0,
 3954:                        role => 0,
 3955:                      );
 3956:         my $flushc=0;
 3957:         my %student=();
 3958:         my (%curr_groups,@sections,@cleansec,$defaultwarn,$groupwarn);
 3959:         my %userchg;
 3960:         if ($context eq 'course' || $setting eq 'course') {
 3961:             if ($context eq 'course') {
 3962:                 # Get information about course groups
 3963:                 %curr_groups = &Apache::longroup::coursegroups();
 3964:             } elsif ($setting eq 'course') {
 3965:                 if ($cid) {
 3966:                     %curr_groups =
 3967:                         &Apache::longroup::coursegroups($env{'form.dcdomain'},
 3968:                                                         $env{'form.dccourse'});
 3969:                 }
 3970:             }
 3971:             # determine section number
 3972:             if ($defaultsec =~ /,/) {
 3973:                 push(@sections,split(/,/,$defaultsec));
 3974:             } else {
 3975:                 push(@sections,$defaultsec);
 3976:             }
 3977:             # remove non alphanumeric values from section
 3978:             foreach my $item (@sections) {
 3979:                 $item =~ s/\W//g;
 3980:                 if ($item eq "none" || $item eq 'all') {
 3981:                     $defaultwarn = &mt('Default section name [_1] could not be used as it is a reserved word.',$item);
 3982:                 } elsif ($item ne ''  && exists($curr_groups{$item})) {
 3983:                     $groupwarn = &mt('Default section name "[_1]" is the name of a course group. Section names and group names must be distinct.',$item);
 3984:                 } elsif ($item ne '') {
 3985:                     push(@cleansec,$item);
 3986:                 }
 3987:             }
 3988:             if ($defaultwarn) {
 3989:                 $r->print($defaultwarn.'<br />');
 3990:             }
 3991:             if ($groupwarn) {
 3992:                 $r->print($groupwarn.'<br />');
 3993:             }
 3994:         }
 3995:         my (%curr_rules,%got_rules,%alerts,%cancreate);
 3996:         my %customroles = &my_custom_roles($crstype);
 3997:         my @permitted_roles = 
 3998:             &roles_on_upload($context,$setting,$crstype,%customroles);
 3999:         my %longtypes = &Apache::lonlocal::texthash(
 4000:                             official   => 'Institutional',
 4001:                             unofficial => 'Non-institutional',
 4002:                         );
 4003:         my $newuserdom = $env{'request.role.domain'};
 4004:         map { $cancreate{$_} = &can_create_user($newuserdom,$context,$_); } keys(%longtypes);
 4005:         # Get new users list
 4006:         foreach my $line (@userdata) {
 4007:             my @secs;
 4008:             my %entries=&Apache::loncommon::record_sep($line);
 4009:             # Determine user name
 4010:             $entries{$fields{'username'}} =~ s/^\s+|\s+$//g;
 4011:             unless (($entries{$fields{'username'}} eq '') ||
 4012:                     (!defined($entries{$fields{'username'}}))) {
 4013:                 my ($fname, $mname, $lname,$gen) = ('','','','');
 4014:                 if (defined($fields{'names'})) {
 4015:                     ($lname,$fname,$mname)=($entries{$fields{'names'}}=~
 4016:                                             /([^\,]+)\,\s*(\w+)\s*(.*)$/);
 4017:                 } else {
 4018:                     if (defined($fields{'fname'})) {
 4019:                         $fname=$entries{$fields{'fname'}};
 4020:                     }
 4021:                     if (defined($fields{'mname'})) {
 4022:                         $mname=$entries{$fields{'mname'}};
 4023:                     }
 4024:                     if (defined($fields{'lname'})) {
 4025:                         $lname=$entries{$fields{'lname'}};
 4026:                     }
 4027:                     if (defined($fields{'gen'})) {
 4028:                         $gen=$entries{$fields{'gen'}};
 4029:                     }
 4030:                 }
 4031: 
 4032:                 if ($entries{$fields{'username'}}
 4033:                     ne &LONCAPA::clean_username($entries{$fields{'username'}})) {
 4034:                     my $nowhitespace;
 4035:                     if ($entries{$fields{'username'}} =~ /\s/) {
 4036:                         $nowhitespace = ' - '.&mt('usernames may not contain spaces.');
 4037:                     }
 4038:                     $r->print('<br />'.
 4039:       &mt('[_1]: Unacceptable username for user [_2] [_3] [_4] [_5]',
 4040:           '<b>'.$entries{$fields{'username'}}.'</b>',$fname,$mname,$lname,$gen).
 4041:                               $nowhitespace);
 4042:                     next;
 4043:                 } else {
 4044:                     $entries{$fields{'domain'}} =~ s/^\s+|\s+$//g;
 4045:                     if ($entries{$fields{'domain'}} 
 4046:                         ne &LONCAPA::clean_domain($entries{$fields{'domain'}})) {
 4047:                         $r->print('<br />'. '<b>'.$entries{$fields{'domain'}}.
 4048:                                   '</b>: '.&mt('Unacceptable domain for user [_2] [_3] [_4] [_5]',$fname,$mname,$lname,$gen));
 4049:                         next;
 4050:                     }
 4051:                     my $username = $entries{$fields{'username'}};
 4052:                     my $userdomain = $entries{$fields{'domain'}};
 4053:                     if ($userdomain eq '') {
 4054:                         $userdomain = $domain;
 4055:                     }
 4056:                     if (defined($fields{'sec'})) {
 4057:                         if (defined($entries{$fields{'sec'}})) {
 4058:                             $entries{$fields{'sec'}} =~ s/\W//g;
 4059:                             my $item = $entries{$fields{'sec'}};
 4060:                             if ($item eq "none" || $item eq 'all') {
 4061:                                 $r->print('<br />'.&mt('[_1]: Unable to enroll user [_2] [_3] [_4] [_5] in a section named "[_6]" - this is a reserved word.','<b>'.$username.'</b>',$fname,$mname,$lname,$gen,$item));
 4062:                                 next;
 4063:                             } elsif (exists($curr_groups{$item})) {
 4064:                                 $r->print('<br />'.&mt('[_1]: Unable to enroll user [_2] [_3] [_4] [_5] in a section named "[_6]" - this is a course group.','<b>'.$username.'</b>',$fname,$mname,$lname,$gen,$item).' '.&mt('Section names and group names must be distinct.'));
 4065:                                 next;
 4066:                             } else {
 4067:                                 push(@secs,$item);
 4068:                             }
 4069:                         }
 4070:                     }
 4071:                     if ($env{'request.course.sec'} ne '') {
 4072:                         @secs = ($env{'request.course.sec'});
 4073:                         if (ref($userlist{$username.':'.$userdomain}) eq 'ARRAY') {
 4074:                             my $currsec = $userlist{$username.':'.$userdomain}[$secidx];
 4075:                             if ($currsec ne $env{'request.course.sec'}) {
 4076:                                 $r->print('<br />'.&mt('[_1]: Unable to enroll user [_2] [_3] [_4] [_5] in a section named "[_6]".','<b>'.$username.'</b>',$fname,$mname,$lname,$gen,$secs[0]).'<br />');
 4077:                                 if ($currsec eq '') {
 4078:                                     $r->print(&mt('This user already has an active/future student role in the course, unaffiliated to any section.'));
 4079: 
 4080:                                 } else {
 4081:                                     $r->print(&mt('This user already has an active/future role in section "[_1]" of the course.',$currsec));
 4082:                                 }
 4083:                                 $r->print('<br />'.&mt('Although your current role has privileges to add students to section "[_1]", you do not have privileges to modify existing enrollments in other sections.',$secs[0]).'<br />');
 4084:                                 next;
 4085:                             }
 4086:                         }
 4087:                     } elsif ($context eq 'course' || $setting eq 'course') {
 4088:                         if (@secs == 0) {
 4089:                             @secs = @cleansec;
 4090:                         }
 4091:                     }
 4092:                     # determine id number
 4093:                     my $id='';
 4094:                     if (defined($fields{'id'})) {
 4095:                         if (defined($entries{$fields{'id'}})) {
 4096:                             $id=$entries{$fields{'id'}};
 4097:                         }
 4098:                         $id=~tr/A-Z/a-z/;
 4099:                     }
 4100:                     # determine email address
 4101:                     my $email='';
 4102:                     if (defined($fields{'email'})) {
 4103:                         $entries{$fields{'email'}} =~ s/^\s+|\s+$//g;
 4104:                         if (defined($entries{$fields{'email'}})) {
 4105:                             $email=$entries{$fields{'email'}};
 4106:                             unless ($email=~/^[^\@]+\@[^\@]+$/) { $email=''; }
 4107:                         }
 4108:                     }
 4109:                     # determine affiliation
 4110:                     my $inststatus='';
 4111:                     if (defined($fields{'inststatus'})) {
 4112:                         if (defined($entries{$fields{'inststatus'}})) {
 4113:                             $inststatus=$entries{$fields{'inststatus'}};
 4114:                         }
 4115:                     }
 4116:                     # determine user password
 4117:                     my $password = $genpwd;
 4118:                     if (defined($fields{'ipwd'})) {
 4119:                         if ($entries{$fields{'ipwd'}}) {
 4120:                             $password=$entries{$fields{'ipwd'}};
 4121:                         }
 4122:                     }
 4123:                     # determine user role
 4124:                     my $role = '';
 4125:                     if (defined($fields{'role'})) {
 4126:                         if ($entries{$fields{'role'}}) {
 4127:                             $entries{$fields{'role'}}  =~ s/(\s+$|^\s+)//g;
 4128:                             if ($entries{$fields{'role'}} ne '') {
 4129:                                 if (grep(/^\Q$entries{$fields{'role'}}\E$/,@permitted_roles)) {
 4130:                                     $role = $entries{$fields{'role'}};
 4131:                                 }
 4132:                             }
 4133:                             if ($role eq '') {
 4134:                                 my $rolestr = join(', ',@permitted_roles);
 4135:                                 $r->print('<br />'
 4136:                                          .&mt('[_1]: You do not have permission to add the requested role [_2] for the user.'
 4137:                                              ,'<b>'.$entries{$fields{'username'}}.'</b>'
 4138:                                              ,$entries{$fields{'role'}})
 4139:                                          .'<br />'
 4140:                                          .&mt('Allowable role(s) is/are: [_1].',$rolestr)."\n"
 4141:                                 );
 4142:                                 next;
 4143:                             }
 4144:                         }
 4145:                     }
 4146:                     if ($role eq '') {
 4147:                         $role = $defaultrole;
 4148:                     }
 4149:                     # Clean up whitespace
 4150:                     foreach (\$id,\$fname,\$mname,\$lname,\$gen,\$inststatus) {
 4151:                         $$_ =~ s/(\s+$|^\s+)//g;
 4152:                     }
 4153:                     # check against rules
 4154:                     my $checkid = 0;
 4155:                     my $newuser = 0;
 4156:                     my (%rulematch,%inst_results,%idinst_results);
 4157:                     my $uhome=&Apache::lonnet::homeserver($username,$userdomain);
 4158:                     if ($uhome eq 'no_host') {
 4159:                         if ($userdomain ne $newuserdom) {
 4160:                             if ($context eq 'course') {
 4161:                                 $r->print('<br />'.
 4162:                                           &mt('[_1]: The domain specified ([_2]) is different to that of the course.',
 4163:                                           '<b>'.$username.'</b>',$userdomain).'<br />');
 4164:                             } elsif ($context eq 'author') {
 4165:                                 $r->print(&mt('[_1]: The domain specified ([_2]) is different to that of the author.',
 4166:                                         '<b>'.$username.'</b>',$userdomain).'<br />'); 
 4167:                             } else {
 4168:                                 $r->print(&mt('[_1]: The domain specified ([_2]) is different to that of your current role.',
 4169:                                         '<b>'.$username.'</b>',$userdomain).'<br />');
 4170:                             }
 4171:                             $r->print(&mt('The user does not already exist, and you may not create a new user in a different domain.'));
 4172:                             next;
 4173:                         }
 4174:                         $checkid = 1;
 4175:                         $newuser = 1;
 4176:                         my $user = $username.':'.$newuserdom;
 4177:                         my $checkhash;
 4178:                         my $checks = { 'username' => 1 };
 4179:                         $checkhash->{$username.':'.$newuserdom} = { 'newuser' => 1, };
 4180:                         &Apache::loncommon::user_rule_check($checkhash,$checks,
 4181:                             \%alerts,\%rulematch,\%inst_results,\%curr_rules,
 4182:                             \%got_rules);
 4183:                         if (ref($alerts{'username'}) eq 'HASH') {
 4184:                             if (ref($alerts{'username'}{$newuserdom}) eq 'HASH') {
 4185:                                 if ($alerts{'username'}{$newuserdom}{$username}) {
 4186:                                     $r->print('<br />'.
 4187:                                               &mt('[_1]: matches the username format at your institution, but is not known to your directory service.','<b>'.$username.'</b>').'<br />'.
 4188:                                               &mt('Consequently, the user was not created.'));
 4189:                                     next;
 4190:                                 }
 4191:                             }
 4192:                         }
 4193:                         my $usertype = 'unofficial';
 4194:                         if (ref($rulematch{$user}) eq 'HASH') {
 4195:                             if ($rulematch{$user}{'username'}) {
 4196:                                 $usertype = 'official';
 4197:                             }
 4198:                         }
 4199:                         unless ($cancreate{$usertype}) {
 4200:                             my $showtype = $longtypes{$usertype};
 4201:                             $r->print('<br />'.
 4202:                                       &mt('[_1]: The user does not exist, and you are not permitted to create users of type: [_2].','<b>'.$username.'</b>',$showtype));
 4203:                             next;
 4204:                         }
 4205:                     } else {
 4206:                         if ($context eq 'course' || $context eq 'author') {
 4207:                             if ($userdomain eq $domain ) {
 4208:                                 if ($role eq '') {
 4209:                                     my @checkroles;
 4210:                                     foreach my $role (@poss_roles) {
 4211:                                         my $endkey;
 4212:                                         if ($role ne 'st') {
 4213:                                             $endkey = ':'.$role;
 4214:                                         }
 4215:                                         if (exists($userlist{$username.':'.$userdomain.$endkey})) {
 4216:                                             if (!grep(/^\Q$role\E$/,@checkroles)) {
 4217:                                                 push(@checkroles,$role);
 4218:                                             }
 4219:                                         }
 4220:                                     }
 4221:                                     if (@checkroles > 0) {
 4222:                                         %canmodify = &can_modify_userinfo($context,$domain,\@userinfo,\@checkroles);
 4223:                                     }
 4224:                                 } elsif (ref($modifiable_fields{$role}) eq 'HASH') {
 4225:                                     %canmodify = %{$modifiable_fields{$role}};
 4226:                                 }
 4227:                             }
 4228:                             my @newinfo = (\$fname,\$mname,\$lname,\$gen,\$email,\$id);
 4229:                             for (my $i=0; $i<@newinfo; $i++) {
 4230:                                 if (${$newinfo[$i]} ne '') {
 4231:                                     if (!$canmodify{$userinfo[$i]}) {
 4232:                                         ${$newinfo[$i]} = '';
 4233:                                     }
 4234:                                 }
 4235:                             }
 4236:                         }
 4237:                     }
 4238:                     if ($id ne '') {
 4239:                         if (!$newuser) {
 4240:                             my %idhash = &Apache::lonnet::idrget($userdomain,($username));
 4241:                             if ($idhash{$username} ne $id) {
 4242:                                 $checkid = 1;
 4243:                             }
 4244:                         }
 4245:                         if ($checkid) {
 4246:                             my $checkhash;
 4247:                             my $checks = { 'id' => 1 };
 4248:                             $checkhash->{$username.':'.$userdomain} = { 'newuser' => $newuser,
 4249:                                                                     'id'  => $id };
 4250:                             &Apache::loncommon::user_rule_check($checkhash,$checks,
 4251:                                 \%alerts,\%rulematch,\%idinst_results,\%curr_rules,
 4252:                                 \%got_rules);
 4253:                             if (ref($alerts{'id'}) eq 'HASH') {
 4254:                                 if (ref($alerts{'id'}{$userdomain}) eq 'HASH') {
 4255:                                     if ($alerts{'id'}{$userdomain}{$id}) {
 4256:                                         $r->print(&mt('[_1]: has a student/employee ID matching the format at your institution, but the ID is found by your directory service.',
 4257:                                                   '<b>'.$username.'</b>').'<br />'.
 4258:                                                   &mt('Consequently, the user was not created.'));
 4259:                                         next;
 4260:                                     }
 4261:                                 }
 4262:                             }
 4263:                         }
 4264:                     }
 4265:                     if ($password || $env{'form.login'} eq 'loc') {
 4266:                         my $multiple = 0;
 4267:                         my ($userresult,$authresult,$roleresult,$idresult);
 4268:                         my (%userres,%authres,%roleres,%idres);
 4269:                         my $singlesec = '';
 4270:                         if ($role eq 'st') {
 4271:                             my $sec;
 4272:                             if (@secs > 0) {
 4273:                                 $sec = $secs[0];
 4274:                             }
 4275:                             &modifystudent($userdomain,$username,$cid,$sec,
 4276:                                            $desiredhost,$context);
 4277:                             $roleresult =
 4278:                                 &Apache::lonnet::modifystudent
 4279:                                     ($userdomain,$username,$id,$amode,$password,
 4280:                                      $fname,$mname,$lname,$gen,$sec,$enddate,
 4281:                                      $startdate,$env{'form.forceid'},
 4282:                                      $desiredhost,$email,'manual','',$cid,
 4283:                                      '',$context,$inststatus);
 4284:                             $userresult = $roleresult;
 4285:                         } else {
 4286:                             if ($role ne '') { 
 4287:                                 if ($context eq 'course' || $setting eq 'course') {
 4288:                                     if ($customroles{$role}) {
 4289:                                         $role = 'cr_'.$env{'user.domain'}.'_'.
 4290:                                                 $env{'user.name'}.'_'.$role;
 4291:                                     }
 4292:                                     if (($role ne 'cc') && ($role ne 'co')) { 
 4293:                                         if (@secs > 1) {
 4294:                                             $multiple = 1;
 4295:                                             foreach my $sec (@secs) {
 4296:                                                 ($userres{$sec},$authres{$sec},$roleres{$sec},$idres{$sec}) =
 4297:                                                 &modifyuserrole($context,$setting,
 4298:                                                     $changeauth,$cid,$userdomain,$username,
 4299:                                                     $id,$amode,$password,$fname,
 4300:                                                     $mname,$lname,$gen,$sec,
 4301:                                                     $env{'form.forceid'},$desiredhost,
 4302:                                                     $email,$role,$enddate,
 4303:                                                     $startdate,$checkid,$inststatus);
 4304:                                             }
 4305:                                         } elsif (@secs > 0) {
 4306:                                             $singlesec = $secs[0];
 4307:                                         }
 4308:                                     }
 4309:                                 }
 4310:                             }
 4311:                             if (!$multiple) {
 4312:                                 ($userresult,$authresult,$roleresult,$idresult) = 
 4313:                                     &modifyuserrole($context,$setting,
 4314:                                                     $changeauth,$cid,$userdomain,$username, 
 4315:                                                     $id,$amode,$password,$fname,
 4316:                                                     $mname,$lname,$gen,$singlesec,
 4317:                                                     $env{'form.forceid'},$desiredhost,
 4318:                                                     $email,$role,$enddate,$startdate,
 4319:                                                     $checkid,$inststatus);
 4320:                             }
 4321:                         }
 4322:                         if ($multiple) {
 4323:                             foreach my $sec (sort(keys(%userres))) {
 4324:                                 $flushc =
 4325:                                 &user_change_result($r,$userres{$sec},$authres{$sec},
 4326:                                                     $roleres{$sec},$idres{$sec},\%counts,$flushc,
 4327:                                                     $username,$userdomain,\%userchg);
 4328: 
 4329:                             }
 4330:                         } else {
 4331:                             $flushc = 
 4332:                                 &user_change_result($r,$userresult,$authresult,
 4333:                                                     $roleresult,$idresult,\%counts,$flushc,
 4334:                                                     $username,$userdomain,\%userchg);
 4335:                         }
 4336:                     } else {
 4337:                         if ($context eq 'course') {
 4338:                             $r->print('<br />'. 
 4339:       &mt('[_1]: Unable to enroll. No password specified.','<b>'.$username.'</b>')
 4340:                                      );
 4341:                         } elsif ($context eq 'author') {
 4342:                             $r->print('<br />'.
 4343:       &mt('[_1]: Unable to add co-author. No password specified.','<b>'.$username.'</b>')
 4344:                                      );
 4345:                         } else {
 4346:                             $r->print('<br />'.
 4347:       &mt('[_1]: Unable to add user. No password specified.','<b>'.$username.'</b>')
 4348:                                      );
 4349:                         }
 4350:                     }
 4351:                 }
 4352:             }
 4353:         } # end of foreach (@userdata)
 4354:         # Flush the course logs so reverse user roles immediately updated
 4355:         $r->register_cleanup(\&Apache::lonnet::flushcourselogs);
 4356:         $r->print("</p>\n<p>\n".&mt('Processed [quant,_1,user].',$counts{'user'}).
 4357:                   "</p>\n");
 4358:         if ($counts{'role'} > 0) {
 4359:             $r->print("<p>\n".
 4360:                       &mt('Roles added for [quant,_1,user].',$counts{'role'}).' '.&mt('If a user is currently logged-in to LON-CAPA, any new roles which are active will be available when the user next logs in.')."</p>\n");
 4361:         } else {
 4362:             $r->print('<p>'.&mt('No roles added').'</p>');
 4363:         }
 4364:         if ($counts{'auth'} > 0) {
 4365:             $r->print("<p>\n".
 4366:                       &mt('Authentication changed for [_1] existing users.',
 4367:                           $counts{'auth'})."</p>\n");
 4368:         }
 4369:         $r->print(&print_namespacing_alerts($domain,\%alerts,\%curr_rules));
 4370:         #####################################
 4371:         # Display list of students to drop  #
 4372:         #####################################
 4373:         if ($env{'form.fullup'} eq 'yes') {
 4374:             $r->print('<h3>'.&mt('Students to Drop')."</h3>\n");
 4375:             #  Get current classlist
 4376:             my $classlist = &Apache::loncoursedata::get_classlist();
 4377:             if (! defined($classlist)) {
 4378:                 $r->print('<form name="studentform" method="post" action="/adm/createuser" />'.
 4379:                           '<input type="hidden" name="action" value="'.$env{'form.action'}.'" />'.
 4380:                           &mt('There are no students with current/future access to the course.').
 4381:                           '</form>'."\n");
 4382:             } elsif (ref($classlist) eq 'HASH') {
 4383:                 # Remove the students we just added from the list of students.
 4384:                 foreach my $line (@userdata) {
 4385:                     my %entries=&Apache::loncommon::record_sep($line);
 4386:                     unless (($entries{$fields{'username'}} eq '') ||
 4387:                             (!defined($entries{$fields{'username'}}))) {
 4388:                         delete($classlist->{$entries{$fields{'username'}}.
 4389:                                                 ':'.$domain});
 4390:                     }
 4391:                 }
 4392:                 # Print out list of dropped students.
 4393:                 &show_drop_list($r,$classlist,'nosort',$permission);
 4394:             }
 4395:         }
 4396:     } # end of unless
 4397:     if ($env{'form.fullup'} ne 'yes') {
 4398:         $r->print('</form>');
 4399:     }
 4400: }
 4401: 
 4402: sub print_namespacing_alerts {
 4403:     my ($domain,$alerts,$curr_rules) = @_;
 4404:     my $output;
 4405:     if (ref($alerts) eq 'HASH') {
 4406:         if (keys(%{$alerts}) > 0) {
 4407:             if (ref($alerts->{'username'}) eq 'HASH') {
 4408:                 foreach my $dom (sort(keys(%{$alerts->{'username'}}))) {
 4409:                     my $count;
 4410:                     if (ref($alerts->{'username'}{$dom}) eq 'HASH') {
 4411:                         $count = keys(%{$alerts->{'username'}{$dom}});
 4412:                     }
 4413:                     my $domdesc = &Apache::lonnet::domain($domain,'description');
 4414:                     if (ref($curr_rules->{$dom}) eq 'HASH') {
 4415:                         $output .= &Apache::loncommon::instrule_disallow_msg(
 4416:                                         'username',$domdesc,$count,'upload');
 4417:                     }
 4418:                     $output .= &Apache::loncommon::user_rule_formats($dom,
 4419:                                    $domdesc,$curr_rules->{$dom}{'username'},
 4420:                                    'username');
 4421:                 }
 4422:             }
 4423:             if (ref($alerts->{'id'}) eq 'HASH') {
 4424:                 foreach my $dom (sort(keys(%{$alerts->{'id'}}))) {
 4425:                     my $count;
 4426:                     if (ref($alerts->{'id'}{$dom}) eq 'HASH') {
 4427:                         $count = keys(%{$alerts->{'id'}{$dom}});
 4428:                     }
 4429:                     my $domdesc = &Apache::lonnet::domain($domain,'description');
 4430:                     if (ref($curr_rules->{$dom}) eq 'HASH') {
 4431:                         $output .= &Apache::loncommon::instrule_disallow_msg(
 4432:                                               'id',$domdesc,$count,'upload');
 4433:                     }
 4434:                     $output .= &Apache::loncommon::user_rule_formats($dom,
 4435:                                     $domdesc,$curr_rules->{$dom}{'id'},'id');
 4436:                 }
 4437:             }
 4438:         }
 4439:     }
 4440: }
 4441: 
 4442: sub user_change_result {
 4443:     my ($r,$userresult,$authresult,$roleresult,$idresult,$counts,$flushc,
 4444:         $username,$userdomain,$userchg) = @_;
 4445:     my $okresult = 0;
 4446:     if ($userresult ne 'ok') {
 4447:         if ($userresult =~ /^error:(.+)$/) {
 4448:             my $error = $1;
 4449:             $r->print('<br />'.
 4450:                   &mt('[_1]: Unable to add/modify: [_2]','<b>'.$username.':'.$userdomain.'</b>',$error));
 4451:         }
 4452:     } else {
 4453:         $counts->{'user'} ++;
 4454:         $okresult = 1;
 4455:     }
 4456:     if ($authresult ne 'ok') {
 4457:         if ($authresult =~ /^error:(.+)$/) {
 4458:             my $error = $1;
 4459:             $r->print('<br />'.
 4460:                   &mt('[_1]: Unable to modify authentication: [_2]','<b>'.$username.':'.$userdomain.'</b>',$error));
 4461:         } 
 4462:     } else {
 4463:         $counts->{'auth'} ++;
 4464:         $okresult = 1;
 4465:     }
 4466:     if ($roleresult ne 'ok') {
 4467:         if ($roleresult =~ /^error:(.+)$/) {
 4468:             my $error = $1;
 4469:             $r->print('<br />'.
 4470:                   &mt('[_1]: Unable to add role: [_2]','<b>'.$username.':'.$userdomain.'</b>',$error));
 4471:         }
 4472:     } else {
 4473:         $counts->{'role'} ++;
 4474:         $okresult = 1;
 4475:     }
 4476:     if ($okresult) {
 4477:         $flushc++;
 4478:         $userchg->{$username.':'.$userdomain}=1;
 4479:         $r->print('. ');
 4480:         if ($flushc>15) {
 4481:             $r->rflush;
 4482:             $flushc=0;
 4483:         }
 4484:     }
 4485:     if ($idresult) {
 4486:         $r->print($idresult);
 4487:     }
 4488:     return $flushc;
 4489: }
 4490: 
 4491: # ========================================================= Menu Phase Two Drop
 4492: sub print_drop_menu {
 4493:     my ($r,$context,$permission,$crstype) = @_;
 4494:     my $heading;
 4495:     if ($crstype eq 'Community') {
 4496:         $heading = &mt("Drop Members");
 4497:     } else {
 4498:         $heading = &mt("Drop Students");
 4499:     }
 4500:     $r->print('<h3>'.$heading.'</h3>'."\n".
 4501:               '<form name="studentform" method="post">'."\n");
 4502:     my $classlist = &Apache::loncoursedata::get_classlist();
 4503:     if (! defined($classlist)) {
 4504:         if ($crstype eq 'Community') {
 4505:             $r->print(&mt('There are no members currently enrolled.')."\n");
 4506:         } else {
 4507:             $r->print(&mt('There are no students currently enrolled.')."\n");
 4508:         }
 4509:     } else {
 4510:         &show_drop_list($r,$classlist,'nosort',$permission,$crstype);
 4511:     }
 4512:     $r->print('</form>'. &Apache::loncommon::end_page());
 4513:     return;
 4514: }
 4515: 
 4516: # ================================================================== Phase four
 4517: 
 4518: sub update_user_list {
 4519:     my ($r,$context,$setting,$choice,$crstype) = @_;
 4520:     my $now = time;
 4521:     my $count=0;
 4522:     if ($context eq 'course') {
 4523:         $crstype = &Apache::loncommon::course_type();
 4524:     }
 4525:     my @changelist;
 4526:     if ($choice eq 'drop') {
 4527:         @changelist = &Apache::loncommon::get_env_multiple('form.droplist');
 4528:     } else {
 4529:         @changelist = &Apache::loncommon::get_env_multiple('form.actionlist');
 4530:     }
 4531:     my %result_text = ( ok    => { 'revoke'   => 'Revoked',
 4532:                                    'delete'   => 'Deleted',
 4533:                                    'reenable' => 'Re-enabled',
 4534:                                    'activate' => 'Activated',
 4535:                                    'chgdates' => 'Changed Access Dates for',
 4536:                                    'chgsec'   => 'Changed section(s) for',
 4537:                                    'drop'     => 'Dropped',
 4538:                                  },
 4539:                         error => {'revoke'    => 'revoking',
 4540:                                   'delete'    => 'deleting',
 4541:                                   'reenable'  => 're-enabling',
 4542:                                   'activate'  => 'activating',
 4543:                                   'chgdates'  => 'changing access dates for',
 4544:                                   'chgsec'    => 'changing section for',
 4545:                                   'drop'      => 'dropping',
 4546:                                  },
 4547:                       );
 4548:     my ($startdate,$enddate);
 4549:     if ($choice eq 'chgdates' || $choice eq 'reenable' || $choice eq 'activate') {
 4550:         ($startdate,$enddate) = &get_dates_from_form();
 4551:     }
 4552:     foreach my $item (@changelist) {
 4553:         my ($role,$uname,$udom,$cid,$sec,$scope,$result,$type,$locktype,
 4554:             @sections,$scopestem,$singlesec,$showsecs,$warn_singlesec,
 4555:             $nothingtodo,$keepnosection);
 4556:         if ($choice eq 'drop') {
 4557:             ($uname,$udom,$sec) = split(/:/,$item,-1);
 4558:             $role = 'st';
 4559:             $cid = $env{'request.course.id'};
 4560:             $scopestem = '/'.$cid;
 4561:             $scopestem =~s/\_/\//g;
 4562:             if ($sec eq '') {
 4563:                 $scope = $scopestem;
 4564:             } else {
 4565:                 $scope = $scopestem.'/'.$sec;
 4566:             }
 4567:         } elsif ($context eq 'course') {
 4568:             ($uname,$udom,$role,$sec,$type,$locktype) = split(/\:/,$item,-1);
 4569:             $cid = $env{'request.course.id'};
 4570:             $scopestem = '/'.$cid;
 4571:             $scopestem =~s/\_/\//g;
 4572:             if ($sec eq '') {
 4573:                 $scope = $scopestem;
 4574:             } else {
 4575:                 $scope = $scopestem.'/'.$sec;
 4576:             }
 4577:         } elsif ($context eq 'author') {
 4578:             ($uname,$udom,$role) = split(/\:/,$item,-1);
 4579:             $scope = '/'.$env{'user.domain'}.'/'.$env{'user.name'};
 4580:         } elsif ($context eq 'domain') {
 4581:             if ($setting eq 'domain') {
 4582:                 ($role,$uname,$udom) = split(/\:/,$item,-1);
 4583:                 $scope = '/'.$env{'request.role.domain'}.'/';
 4584:             } elsif ($setting eq 'author') { 
 4585:                 ($uname,$udom,$role,$scope) = split(/\:/,$item);
 4586:             } elsif ($setting eq 'course') {
 4587:                 ($uname,$udom,$role,$cid,$sec,$type,$locktype) = 
 4588:                     split(/\:/,$item);
 4589:                 $scope = '/'.$cid;
 4590:                 $scope =~s/\_/\//g;
 4591:                 if ($sec ne '') {
 4592:                     $scope .= '/'.$sec;
 4593:                 }
 4594:             }
 4595:         }
 4596:         my $plrole = &Apache::lonnet::plaintext($role,$crstype);
 4597:         my $start = $env{'form.'.$item.'_start'};
 4598:         my $end = $env{'form.'.$item.'_end'};
 4599:         if ($choice eq 'drop') {
 4600:             # drop students
 4601:             $end = $now;
 4602:             $type = 'manual';
 4603:             $result =
 4604:                 &Apache::lonnet::modify_student_enrollment($udom,$uname,undef,undef,undef,undef,undef,$sec,$end,$start,$type,$locktype,$cid,'',$context);
 4605:         } elsif ($choice eq 'revoke') {
 4606:             # revoke or delete user role
 4607:             $end = $now; 
 4608:             if ($role eq 'st') {
 4609:                 $result = 
 4610:                     &Apache::lonnet::modify_student_enrollment($udom,$uname,undef,undef,undef,undef,undef,$sec,$end,$start,$type,$locktype,$cid,'',$context);
 4611:             } else {
 4612:                 $result = 
 4613:                     &Apache::lonnet::revokerole($udom,$uname,$scope,$role,
 4614:                                                 '','',$context);
 4615:             }
 4616:         } elsif ($choice eq 'delete') {
 4617:             if ($role eq 'st') {
 4618:                 &Apache::lonnet::modify_student_enrollment($udom,$uname,undef,undef,undef,undef,undef,$sec,$now,$start,$type,$locktype,$cid,'',$context);
 4619:             }
 4620:             $result =
 4621:                 &Apache::lonnet::assignrole($udom,$uname,$scope,$role,$now,
 4622:                                             $start,1,'',$context);
 4623:         } else {
 4624:             #reenable, activate, change access dates or change section
 4625:             if ($choice ne 'chgsec') {
 4626:                 $start = $startdate; 
 4627:                 $end = $enddate;
 4628:             }
 4629:             if ($choice eq 'reenable') {
 4630:                 if ($role eq 'st') {
 4631:                     $result = &Apache::lonnet::modify_student_enrollment($udom,$uname,undef,undef,undef,undef,undef,$sec,$end,$start,$type,$locktype,$cid,'',$context);
 4632:                 } else {
 4633:                     $result = 
 4634:                         &Apache::lonnet::assignrole($udom,$uname,$scope,$role,$end,
 4635:                                                     $now,'','',$context);
 4636:                 }
 4637:             } elsif ($choice eq 'activate') {
 4638:                 if ($role eq 'st') {
 4639:                     $result = &Apache::lonnet::modify_student_enrollment($udom,$uname,undef,undef,undef,undef,undef,$sec,$end,$start,$type,$locktype,$cid,'',$context);
 4640:                 } else {
 4641:                     $result = &Apache::lonnet::assignrole($udom,$uname,$scope,$role,$end,
 4642:                                             $now,'','',$context);
 4643:                 }
 4644:             } elsif ($choice eq 'chgdates') {
 4645:                 if ($role eq 'st') {
 4646:                     $result = &Apache::lonnet::modify_student_enrollment($udom,$uname,undef,undef,undef,undef,undef,$sec,$end,$start,$type,$locktype,$cid,'',$context);
 4647:                 } else {
 4648:                     $result = &Apache::lonnet::assignrole($udom,$uname,$scope,$role,$end,
 4649:                                                 $start,'','',$context);
 4650:                 }
 4651:             } elsif ($choice eq 'chgsec') {
 4652:                 my (@newsecs,$revresult,$nochg,@retained);
 4653:                 if (($role ne 'cc') && ($role ne 'co')) {
 4654:                     my @secs = sort(split(/,/,$env{'form.newsecs'}));
 4655:                     if (@secs) {
 4656:                         my %curr_groups = &Apache::longroup::coursegroups();
 4657:                         foreach my $sec (@secs) {
 4658:                             next if (($sec =~ /\W/) || ($sec eq 'none') ||
 4659:                             (exists($curr_groups{$sec})));
 4660:                             push(@newsecs,$sec);
 4661:                         }
 4662:                     }
 4663:                 }
 4664:                 # remove existing section if not to be retained.   
 4665:                 if (!$env{'form.retainsec'} || ($role eq 'st')) {
 4666:                     if ($sec eq '') {
 4667:                         if (@newsecs == 0) {
 4668:                             $result = 'ok';
 4669:                             $nochg = 1;
 4670:                             $nothingtodo = 1;
 4671:                         } else {
 4672:                             $revresult =
 4673:                                 &Apache::lonnet::revokerole($udom,$uname,
 4674:                                                             $scope,$role,
 4675:                                                             '','',$context);
 4676:                         } 
 4677:                     } else {
 4678:                         if (@newsecs > 0) {
 4679:                             if (grep(/^\Q$sec\E$/,@newsecs)) {
 4680:                                 push(@retained,$sec);
 4681:                             } else {
 4682:                                 $revresult =
 4683:                                     &Apache::lonnet::revokerole($udom,$uname,
 4684:                                                                 $scope,$role,
 4685:                                                                 '','',$context);
 4686:                             }
 4687:                         } else {
 4688:                             $revresult =
 4689:                                 &Apache::lonnet::revokerole($udom,$uname,
 4690:                                                             $scope,$role,
 4691:                                                             '','',$context);
 4692:                         }
 4693:                     }
 4694:                 } else {
 4695:                     if ($sec eq '') {
 4696:                         $nochg = 1;
 4697:                         $keepnosection = 1;
 4698:                     } else {
 4699:                         push(@retained,$sec);
 4700:                     }
 4701:                 }
 4702:                 # add new sections
 4703:                 my (@diffs,@shownew);
 4704:                 if (@retained) {
 4705:                     @diffs = &Apache::loncommon::compare_arrays(\@retained,\@newsecs);
 4706:                 } else {
 4707:                     @diffs = @newsecs;
 4708:                 }
 4709:                 if (@newsecs == 0) {
 4710:                     if ($nochg) {
 4711:                         $result = 'ok';
 4712:                         $nothingtodo = 1;
 4713:                     } else {
 4714:                         if ($role eq 'st') {
 4715:                             $result = 
 4716:                                 &Apache::lonnet::modify_student_enrollment($udom,$uname,undef,undef,undef,undef,undef,undef,$end,$start,$type,$locktype,$cid,'',$context);
 4717:                         } else {
 4718:                             my $newscope = $scopestem;
 4719:                             $result = &Apache::lonnet::assignrole($udom,$uname,$newscope,$role,$end,$start,'','',$context);
 4720:                         }
 4721:                     }
 4722:                     $showsecs = &mt('No section');
 4723:                 } elsif (@diffs == 0) {
 4724:                     $result = 'ok';
 4725:                     $nothingtodo = 1;
 4726:                 } else {
 4727:                     foreach my $newsec (@newsecs) {
 4728:                         if (!grep(/^\Q$newsec\E$/,@retained)) {
 4729:                             if ($role eq 'st') {
 4730:                                 $result = &Apache::lonnet::modify_student_enrollment($udom,$uname,undef,undef,undef,undef,undef,$newsec,$end,$start,$type,$locktype,$cid,'',$context);
 4731:                                 if (@newsecs > 1) {
 4732:                                     my $showsingle; 
 4733:                                     if ($newsec eq '') {
 4734:                                         $showsingle = &mt('No section');
 4735:                                     } else {
 4736:                                         $showsingle = $newsec;
 4737:                                     }
 4738:                                     if ($crstype eq 'Community') {
 4739:                                         $warn_singlesec = &mt('Although more than one section was indicated, a role was only added for the first section - [_1], as each community member may only be in one section at a time.','<i>'.$showsingle.'</i>');
 4740:                                     } else { 
 4741:                                         $warn_singlesec = &mt('Although more than one section was indicated, a role was only added for the first section - [_1], as each student may only be in one section of a course at a time.','<i>'.$showsingle.'</i>');
 4742:                                     }
 4743:                                     $showsecs = $showsingle; 
 4744:                                     last;
 4745:                                 } else {
 4746:                                     if ($newsec eq '') {
 4747:                                         $showsecs = &mt('No section');
 4748:                                     } else {
 4749:                                         $showsecs = $newsec;
 4750:                                     }
 4751:                                 }
 4752:                             } else {
 4753:                                 my $newscope = $scopestem;
 4754:                                 if ($newsec ne '') {
 4755:                                    $newscope .= '/'.$newsec;
 4756:                                    push(@shownew,$newsec); 
 4757:                                 }
 4758:                                 $result = &Apache::lonnet::assignrole($udom,$uname,
 4759:                                                         $newscope,$role,$end,$start);
 4760:                                 
 4761:                             }
 4762:                         }
 4763:                     }
 4764:                 }
 4765:                 unless ($role eq 'st') {
 4766:                     unless ($showsecs) {
 4767:                         my @tolist = sort(@shownew,@retained);
 4768:                         if ($keepnosection) {
 4769:                             push(@tolist,&mt('No section'));
 4770:                         }
 4771:                         $showsecs = join(', ',@tolist);
 4772:                     }
 4773:                 }
 4774:             }
 4775:         }
 4776:         my $extent = $scope;
 4777:         if ($choice eq 'drop' || $context eq 'course') {
 4778:             my ($cnum,$cdom,$cdesc) = &get_course_identity($cid);
 4779:             if ($cdesc) {
 4780:                 $extent = $cdesc;
 4781:             }
 4782:         }
 4783:         if ($result eq 'ok' || $result eq 'ok:') {
 4784:             my $dates;
 4785:             if (($choice eq 'chgsec') || ($choice eq 'chgdates')) {
 4786:                 $dates = &dates_feedback($start,$end,$now);
 4787:             }
 4788:             if ($choice eq 'chgsec') {
 4789:                 if ($nothingtodo) {
 4790:                     $r->print(&mt("Section assignment for role of '[_1]' in [_2] for '[_3]' unchanged.",$plrole,$extent,'<i>'.
 4791:                           &Apache::loncommon::plainname($uname,$udom).
 4792:                           '</i>').' ');
 4793:                     if ($sec eq '') {
 4794:                         $r->print(&mt('[_1]No section[_2] - [_3]','<b>','</b>',$dates));
 4795:                     } else {
 4796:                         $r->print(&mt('Section(s): [_1] - [_2]',
 4797:                                       '<b>'.$showsecs.'</b>',$dates));
 4798:                     }
 4799:                     $r->print('<br />');
 4800:                 } else {
 4801:                     $r->print(&mt("$result_text{'ok'}{$choice} role of '[_1]' in [_2] for '[_3]' to [_4] - [_5]",$plrole,$extent,
 4802:                         '<i>'.&Apache::loncommon::plainname($uname,$udom).'</i>',
 4803:                         '<b>'.$showsecs.'</b>',$dates).'<br />');
 4804:                    $count ++;
 4805:                }
 4806:                if ($warn_singlesec) {
 4807:                    $r->print('<div class="LC_warning">'.$warn_singlesec.'</div>');
 4808:                }
 4809:             } elsif ($choice eq 'chgdates') {
 4810:                 $r->print(&mt("$result_text{'ok'}{$choice} role of '[_1]' in [_2] for '[_3]' - [_4]",$plrole,$extent, 
 4811:                       '<i>'.&Apache::loncommon::plainname($uname,$udom).'</i>',
 4812:                       $dates).'<br />');
 4813:                $count ++;
 4814:             } else {
 4815:                 $r->print(&mt("$result_text{'ok'}{$choice} role of '[_1]' in [_2] for '[_3]'.",$plrole,$extent,
 4816:                       '<i>'.&Apache::loncommon::plainname($uname,$udom).'</i>').
 4817:                           '<br />');
 4818:                 $count ++;
 4819:             }
 4820:         } else {
 4821:             $r->print(
 4822:                 &mt("Error $result_text{'error'}{$choice} [_1] in [_2] for '[_3]': [_4].",
 4823:                     $plrole,$extent,
 4824:                     '<i>'.&Apache::loncommon::plainname($uname,$udom).'</i>',
 4825:                     $result).'<br />');
 4826:         }
 4827:     }
 4828:     $r->print('<form name="studentform" method="post" action="/adm/createuser">'."\n");
 4829:     if ($choice eq 'drop') {
 4830:         $r->print('<input type="hidden" name="action" value="listusers" />'."\n".
 4831:                   '<input type="hidden" name="Status" value="Active" />'."\n".
 4832:                   '<input type="hidden" name="showrole" value="st" />'."\n");
 4833:     } else {
 4834:         foreach my $item ('action','sortby','roletype','showrole','Status','secfilter','grpfilter') {
 4835:             if ($env{'form.'.$item} ne '') {
 4836:                 $r->print('<input type="hidden" name="'.$item.'" value="'.$env{'form.'.$item}.
 4837:                           '" />'."\n");
 4838:             }
 4839:         }
 4840:     }
 4841:     $r->print('<p><b>'.&mt("$result_text{'ok'}{$choice} for [quant,_1,user role,user roles,no user roles].",$count).'</b></p>');
 4842:     if ($count > 0) {
 4843:         if ($choice eq 'revoke' || $choice eq 'drop') {
 4844:             $r->print('<p>'.&mt('Re-enabling will re-activate data for the role.').'</p>');
 4845:         }
 4846:         # Flush the course logs so reverse user roles immediately updated
 4847:         $r->register_cleanup(\&Apache::lonnet::flushcourselogs);
 4848:     }
 4849:     if ($env{'form.makedatesdefault'}) {
 4850:         if ($choice eq 'chgdates' || $choice eq 'reenable' || $choice eq 'activate') {
 4851:             $r->print(&make_dates_default($startdate,$enddate,$context,$crstype));
 4852:         }
 4853:     }
 4854:     my $linktext = &mt('Display User Lists');
 4855:     if ($choice eq 'drop') {
 4856:         $linktext = &mt('Display current class roster');
 4857:     }
 4858:     $r->print('<a href="javascript:document.studentform.submit()">'.$linktext.'</a></form>'."\n");
 4859: }
 4860: 
 4861: sub dates_feedback {
 4862:     my ($start,$end,$now) = @_;
 4863:     my $dates;
 4864:     if ($start < $now) {
 4865:         if ($end == 0) {
 4866:             $dates .= &mt('role(s) active now; no end date');
 4867:         } elsif ($end > $now) {
 4868:             $dates = &mt('role(s) active now; ends [_1].',&Apache::lonlocal::locallocaltime($end));
 4869:         } else {
 4870:             $dates = &mt('role(s) expired: [_1].',&Apache::lonlocal::locallocaltime($end));
 4871:         }
 4872:      } else {
 4873:         if ($end == 0 || $end > $now) {
 4874:             $dates = &mt('future role(s); starts: [_1].',&Apache::lonlocal::locallocaltime($start));
 4875:         } else {
 4876:             $dates = &mt('role(s) expired: [_1].',&Apache::lonlocal::locallocaltime($end));
 4877:         }
 4878:     }
 4879:     return $dates;
 4880: }
 4881: 
 4882: sub classlist_drop {
 4883:     my ($scope,$uname,$udom,$now) = @_;
 4884:     my ($cdom,$cnum) = ($scope=~m{^/($match_domain)/($match_courseid)});
 4885:     if (&Apache::lonnet::is_course($cdom,$cnum)) {
 4886:         if (!&active_student_roles($cnum,$cdom,$uname,$udom)) {
 4887:             my %user;
 4888:             my $result = &update_classlist($cdom,$cnum,$udom,$uname,\%user,$now);
 4889:             return &mt('Drop from classlist: [_1]',
 4890:                        '<b>'.$result.'</b>').'<br />';
 4891:         }
 4892:     }
 4893: }
 4894: 
 4895: sub active_student_roles {
 4896:     my ($cnum,$cdom,$uname,$udom) = @_;
 4897:     my %roles =
 4898:         &Apache::lonnet::get_my_roles($uname,$udom,'userroles',
 4899:                                       ['future','active'],['st']);
 4900:     return exists($roles{"$cnum:$cdom:st"});
 4901: }
 4902: 
 4903: sub section_check_js {
 4904:     my $groupslist= &get_groupslist();
 4905:     return <<"END";
 4906: function validate(caller) {
 4907:     var groups = new Array($groupslist);
 4908:     var secname = caller.value;
 4909:     if ((secname == 'all') || (secname == 'none')) {
 4910:         alert("'"+secname+"' may not be used as the name for a section, as it is a reserved word.\\nPlease choose a different section name.");
 4911:         return 'error';
 4912:     }
 4913:     if (secname != '') {
 4914:         for (var k=0; k<groups.length; k++) {
 4915:             if (secname == groups[k]) {
 4916:                 alert("'"+secname+"' may not be used as the name for a section, as it is the name of a course group.\\nSection names and group names must be distinct. Please choose a different section name.");
 4917:                 return 'error';
 4918:             }
 4919:         }
 4920:     }
 4921:     return 'ok';
 4922: }
 4923: END
 4924: }
 4925: 
 4926: sub set_login {
 4927:     my ($dom,$authformkrb,$authformint,$authformloc) = @_;
 4928:     my %domconfig = &Apache::lonnet::get_dom('configuration',['usercreation'],$dom);
 4929:     my $response;
 4930:     my ($authnum,%can_assign) =
 4931:         &Apache::loncommon::get_assignable_auth($dom);
 4932:     if ($authnum) {
 4933:         $response = &Apache::loncommon::start_data_table();
 4934:         if (($can_assign{'krb4'}) || ($can_assign{'krb5'})) {
 4935:             $response .= &Apache::loncommon::start_data_table_row().
 4936:                          '<td>'.$authformkrb.'</td>'.
 4937:                          &Apache::loncommon::end_data_table_row()."\n";
 4938:         }
 4939:         if ($can_assign{'int'}) {
 4940:             $response .= &Apache::loncommon::start_data_table_row().
 4941:                          '<td>'.$authformint.'</td>'.
 4942:                          &Apache::loncommon::end_data_table_row()."\n"
 4943:         }
 4944:         if ($can_assign{'loc'}) {
 4945:             $response .= &Apache::loncommon::start_data_table_row().
 4946:                          '<td>'.$authformloc.'</td>'.
 4947:                          &Apache::loncommon::end_data_table_row()."\n";
 4948:         }
 4949:         $response .= &Apache::loncommon::end_data_table();
 4950:     }
 4951:     return $response;
 4952: }
 4953: 
 4954: sub course_sections {
 4955:     my ($sections_count,$role,$current_sec) = @_;
 4956:     my $output = '';
 4957:     my @sections = (sort {$a <=> $b} keys %{$sections_count});
 4958:     my $numsec = scalar(@sections);
 4959:     my $is_selected = ' selected="selected"';
 4960:     if ($numsec <= 1) {
 4961:         $output = '<select name="currsec_'.$role.'" >'."\n".
 4962:                   '  <option value="">'.&mt('Select').'</option>'."\n";
 4963:         if ($current_sec eq 'none') {
 4964:             $output .=       
 4965:                   '  <option value=""'.$is_selected.'>'.&mt('No section').'</option>'."\n";
 4966:         } else {
 4967:             $output .=
 4968:                   '  <option value="">'.&mt('No section').'</option>'."\n";
 4969:         }
 4970:         if ($numsec == 1) {
 4971:             if ($current_sec eq $sections[0]) {
 4972:                 $output .=
 4973:                   '  <option value="'.$sections[0].'"'.$is_selected.'>'.$sections[0].'</option>'."\n";
 4974:             } else {
 4975:                 $output .=  
 4976:                   '  <option value="'.$sections[0].'" >'.$sections[0].'</option>'."\n";
 4977:             }
 4978:         }
 4979:     } else {
 4980:         $output = '<select name="currsec_'.$role.'" ';
 4981:         my $multiple = 4;
 4982:         if (scalar(@sections) < 4) { $multiple = scalar(@sections); }
 4983:         if ($role eq 'st') {
 4984:             $output .= '>'."\n".
 4985:                        '  <option value="">'.&mt('Select').'</option>'."\n";
 4986:             if ($current_sec eq 'none') {
 4987:                 $output .= 
 4988:                        '  <option value=""'.$is_selected.'>'.&mt('No section')."</option>\n";
 4989:             } else {
 4990:                 $output .=
 4991:                        '  <option value="">'.&mt('No section')."</option>\n";
 4992:             }
 4993:         } else {
 4994:             $output .= 'multiple="multiple" size="'.$multiple.'">'."\n";
 4995:         }
 4996:         foreach my $sec (@sections) {
 4997:             if ($current_sec eq $sec) {
 4998:                 $output .= '<option value="'.$sec.'"'.$is_selected.'>'.$sec."</option>\n";
 4999:             } else {
 5000:                 $output .= '<option value="'.$sec.'">'.$sec."</option>\n";
 5001:             }
 5002:         }
 5003:     }
 5004:     $output .= '</select>';
 5005:     return $output;
 5006: }
 5007: 
 5008: sub get_groupslist {
 5009:     my $groupslist;
 5010:     my %curr_groups = &Apache::longroup::coursegroups();
 5011:     if (%curr_groups) {
 5012:         $groupslist = join('","',sort(keys(%curr_groups)));
 5013:         $groupslist = '"'.$groupslist.'"';
 5014:     }
 5015:     return $groupslist; 
 5016: }
 5017: 
 5018: sub setsections_javascript {
 5019:     my ($formname,$groupslist,$mode,$checkauth,$crstype) = @_;
 5020:     my ($checkincluded,$finish,$rolecode,$setsection_js);
 5021:     if ($mode eq 'upload') {
 5022:         $checkincluded = 'formname.name == "'.$formname.'"';
 5023:         $finish = "return 'ok';";
 5024:         $rolecode = "var role = formname.defaultrole.options[formname.defaultrole.selectedIndex].value;\n";
 5025:     } elsif ($formname eq 'cu') {
 5026:         $checkincluded = 'formname.elements[i-1].checked == true';
 5027:         if ($checkauth) {
 5028:             $finish = "var authcheck = auth_check();\n".
 5029:                       "   if (authcheck == 'ok') {\n".
 5030:                       "       formname.submit();\n".
 5031:                       "   }\n";
 5032:         } else {
 5033:             $finish = 'formname.submit()';
 5034:         }
 5035:         $rolecode = "var match = str.split('_');
 5036:                 var role = match[3];\n";
 5037:     } elsif ($formname eq 'enrollstudent') {
 5038:         $checkincluded = 'formname.name == "'.$formname.'"';
 5039:         if ($checkauth) {
 5040:             $finish = "var authcheck = auth_check();\n".
 5041:                       "   if (authcheck == 'ok') {\n".
 5042:                       "       formname.submit();\n".
 5043:                       "   }\n";
 5044:         } else {
 5045:             $finish = 'formname.submit()';
 5046:         }
 5047:         $rolecode = "var match = str.split('_');
 5048:                 var role = match[1];\n";
 5049:     } else {
 5050:         $checkincluded = 'formname.name == "'.$formname.'"'; 
 5051:         $finish = "seccheck = 'ok';";
 5052:         $rolecode = "var match = str.split('_');
 5053:                 var role = match[1];\n";
 5054:         $setsection_js = "var seccheck = 'alert';"; 
 5055:     }
 5056:     my %alerts = &Apache::lonlocal::texthash(
 5057:                     secd => 'Section designations do not apply to Course Coordinator roles.',
 5058:                     sedn => 'Section designations do not apply to Coordinator roles.',
 5059:                     accr => 'A course coordinator role will be added with access to all sections.',
 5060:                     acor => 'A coordinator role will be added with access to all sections',
 5061:                     inea => 'In each course, each user may only have one student role at a time.',
 5062:                     inco => 'In each community, each user may only have one member role at a time.',
 5063:                     youh => 'You had selected ',
 5064:                     secs => 'sections.',
 5065:                     plmo => 'Please modify your selections so they include no more than one section.',
 5066:                     mayn => 'may not be used as the name for a section, as it is a reserved word.',
 5067:                     plch => 'Please choose a different section name.',
 5068:                     mnot => 'may not be used as a section name, as it is the name of a course group.',
 5069:                     secn => 'Section names and group names must be distinct. Please choose a different section name.',
 5070:                     nonw => 'Section names may only contain letters or numbers.',
 5071:                  );                
 5072:     $setsection_js .= <<"ENDSECCODE";
 5073: 
 5074: function setSections(formname,crstype) {
 5075:     var re1 = /^currsec_/;
 5076:     var re2 =/\\W/;
 5077:     var trimleading = /^\\s+/;
 5078:     var trimtrailing = /\\s+\$/;
 5079:     var groups = new Array($groupslist);
 5080:     for (var i=0;i<formname.elements.length;i++) {
 5081:         var str = formname.elements[i].name;
 5082:         var checkcurr = str.match(re1);
 5083:         if (checkcurr != null) {
 5084:             var num = i;
 5085:             if ($checkincluded) {
 5086:                 $rolecode
 5087:                 if (role == 'cc' || role == 'co') {
 5088:                     if (role == 'cc') {
 5089:                         alert("$alerts{'secd'}\\n$alerts{'accr'}");
 5090:                     } else {
 5091:                         alert("$alerts{'sedn'}\\n$alerts{'acor'}");
 5092:                     }
 5093:                 } else {
 5094:                     var sections = '';
 5095:                     var numsec = 0;
 5096:                     var fromexisting = new Array();
 5097:                     for (var j=0; j<formname.elements[num].length; j++) {
 5098:                         if (formname.elements[num].options[j].selected == true ) {
 5099:                             var addsec = formname.elements[num].options[j].value;
 5100:                             if ((addsec != "") && (addsec != null)) {
 5101:                                 fromexisting.push(addsec);
 5102:                                 if (numsec == 0) {
 5103:                                     sections = addsec;
 5104:                                 } else {
 5105:                                     sections = sections + "," +  addsec;
 5106:                                 }
 5107:                                 numsec ++;
 5108:                             }
 5109:                         }
 5110:                     }
 5111:                     var newsecs = formname.elements[num+1].value;
 5112:                     var validsecs = new Array();
 5113:                     var validsecstr = '';
 5114:                     var badsecs = new Array();
 5115:                     if (newsecs != null && newsecs != "") {
 5116:                         var numsplit;
 5117:                         if (newsecs.indexOf(',') == -1) {
 5118:                             numsplit = new Array(newsecs);
 5119:                         } else {
 5120:                             numsplit = newsecs.split(/,/g);
 5121:                         }
 5122:                         for (var m=0; m<numsplit.length; m++) {
 5123:                             var newsec = numsplit[m];
 5124:                             newsec = newsec.replace(trimleading,'');
 5125:                             newsec = newsec.replace(trimtrailing,'');
 5126:                             if (re2.test(newsec) == true) {
 5127:                                 badsecs.push(newsec);
 5128:                             } else {
 5129:                                 if (newsec != '') {
 5130:                                     var isnew = 1;
 5131:                                     if (fromexisting != null) {
 5132:                                         for (var n=0; n<fromexisting.length; n++) {
 5133:                                             if (newsec == fromexisting[n]) {
 5134:                                                 isnew = 0;
 5135:                                             }
 5136:                                         }
 5137:                                     }
 5138:                                     if (isnew == 1) {
 5139:                                         validsecs.push(newsec);
 5140:                                     }
 5141:                                 }
 5142:                             }
 5143:                         }
 5144:                         if (badsecs.length > 0) {
 5145:                             alert("$alerts{'nonw'}\\n$alerts{'plch'}");
 5146:                             return;
 5147:                         }
 5148:                         numsec = numsec + validsecs.length;
 5149:                     }
 5150:                     if ((role == 'st') && (numsec > 1)) {
 5151:                         if (crstype == 'Community') {
 5152:                             alert("$alerts{'inea'} $alerts{'youh'} "+numsec+" $alerts{'secs'}\\n$alerts{'plmo'}");
 5153:                         } else {
 5154:                             alert("$alerts{'inco'} $alerts{'youh'} "+numsec+" $alerts{'secs'}\\n$alerts{'plmo'}");
 5155:                         }
 5156:                         return;
 5157:                     } else {
 5158:                         if (validsecs != null) {
 5159:                             for (var j=0; j<validsecs.length; j++) {
 5160:                                 if (validsecstr == '' || validsecstr == null) {
 5161:                                     validsecstr = validsecs[j];
 5162:                                 } else {
 5163:                                     validsecstr += ','+validsecs[j];
 5164:                                 }
 5165:                                 if ((validsecs[j] == 'all') ||
 5166:                                     (validsecs[j] == 'none')) {
 5167:                                     alert("'"+validsecs[j]+"' $alerts{'mayn'}\\n$alerts{'plch'}");
 5168:                                     return;
 5169:                                 }
 5170:                                 for (var k=0; k<groups.length; k++) {
 5171:                                     if (validsecs[j] == groups[k]) {
 5172:                                         alert("'"+validsecs[j]+"' $alerts{'mnot'}\\n$alerts{'secn'}");
 5173:                                         return;
 5174:                                     }
 5175:                                 }
 5176:                             }
 5177:                         }
 5178:                     }
 5179:                     if ((validsecstr != '') && (validsecstr != null)) {
 5180:                         if ((sections == '') || (sections == null)) {
 5181:                             sections = validsecstr;
 5182:                         } else {
 5183:                             sections = sections + "," + validsecstr;
 5184:                         }
 5185:                     }
 5186:                     formname.elements[num+2].value = sections;
 5187:                 }
 5188:             }
 5189:         }
 5190:     }
 5191:     $finish
 5192: }
 5193: ENDSECCODE
 5194:     return $setsection_js; 
 5195: }
 5196: 
 5197: sub can_create_user {
 5198:     my ($dom,$context,$usertype) = @_;
 5199:     my %domconf = &Apache::lonnet::get_dom('configuration',['usercreation'],$dom);
 5200:     my $cancreate = 1;
 5201:     if (&Apache::lonnet::allowed('mau',$dom)) {
 5202:         return $cancreate;
 5203:     }
 5204:     if (ref($domconf{'usercreation'}) eq 'HASH') {
 5205:         if (ref($domconf{'usercreation'}{'cancreate'}) eq 'HASH') {
 5206:             if ($context eq 'course' || $context eq 'author' || $context eq 'requestcrs') {
 5207:                 my $creation = $domconf{'usercreation'}{'cancreate'}{$context};
 5208:                 if ($creation eq 'none') {
 5209:                     $cancreate = 0;
 5210:                 } elsif ($creation ne 'any') {
 5211:                     if (defined($usertype)) {
 5212:                         if ($creation ne $usertype) {
 5213:                             $cancreate = 0;
 5214:                         }
 5215:                     }
 5216:                 }
 5217:             }
 5218:         }
 5219:     }
 5220:     return $cancreate;
 5221: }
 5222: 
 5223: sub can_modify_userinfo {
 5224:     my ($context,$dom,$fields,$userroles) = @_;
 5225:     my %domconfig =
 5226:        &Apache::lonnet::get_dom('configuration',['usermodification'],
 5227:                                 $dom);
 5228:     my %canmodify;
 5229:     if (ref($fields) eq 'ARRAY') {
 5230:         foreach my $field (@{$fields}) {
 5231:             $canmodify{$field}  = 0;
 5232:             if (&Apache::lonnet::allowed('mau',$dom)) {
 5233:                 $canmodify{$field} = 1;
 5234:             } else {
 5235:                 if (ref($domconfig{'usermodification'}) eq 'HASH') {
 5236:                     if (ref($domconfig{'usermodification'}{$context}) eq 'HASH') {
 5237:                         if (ref($userroles) eq 'ARRAY') {
 5238:                             foreach my $role (@{$userroles}) {
 5239:                                 my $testrole;
 5240:                                 if ($context eq 'selfcreate') {
 5241:                                     $testrole = $role;
 5242:                                 } else {
 5243:                                     if ($role =~ /^cr\//) {
 5244:                                         $testrole = 'cr';
 5245:                                     } else {
 5246:                                         $testrole = $role;
 5247:                                     }
 5248:                                 }
 5249:                                 if (ref($domconfig{'usermodification'}{$context}{$testrole}) eq 'HASH') {
 5250:                                     if ($domconfig{'usermodification'}{$context}{$testrole}{$field}) {
 5251:                                         $canmodify{$field} = 1;
 5252:                                         last;
 5253:                                     }
 5254:                                 }
 5255:                             }
 5256:                         } else {
 5257:                             foreach my $key (keys(%{$domconfig{'usermodification'}{$context}})) {
 5258:                                 if (ref($domconfig{'usermodification'}{$context}{$key}) eq 'HASH') {
 5259:                                     if ($domconfig{'usermodification'}{$context}{$key}{$field}) {
 5260:                                         $canmodify{$field} = 1;
 5261:                                         last;
 5262:                                     }
 5263:                                 }
 5264:                             }
 5265:                         }
 5266:                     }
 5267:                 } elsif ($context eq 'course') {
 5268:                     if (ref($userroles) eq 'ARRAY') {
 5269:                         if (grep(/^st$/,@{$userroles})) {
 5270:                             $canmodify{$field} = 1;
 5271:                         }
 5272:                     } else {
 5273:                         $canmodify{$field} = 1;
 5274:                     }
 5275:                 }
 5276:             }
 5277:         }
 5278:     }
 5279:     return %canmodify;
 5280: }
 5281: 
 5282: sub check_usertype {
 5283:     my ($dom,$uname,$rules,$curr_rules,$got_rules) = @_;
 5284:     my $usertype;
 5285:     if ((ref($got_rules) eq 'HASH') && (ref($curr_rules) eq 'HASH')) {
 5286:         if (!$got_rules->{$dom}) {
 5287:             my %domconfig = &Apache::lonnet::get_dom('configuration',
 5288:                                               ['usercreation'],$dom);
 5289:             if (ref($domconfig{'usercreation'}) eq 'HASH') {
 5290:                 foreach my $item ('username','id') {
 5291:                     if (ref($domconfig{'usercreation'}{$item.'_rule'}) eq 'ARRAY') {
 5292:                         $curr_rules->{$dom}{$item} =
 5293:                                 $domconfig{'usercreation'}{$item.'_rule'};
 5294:                     }
 5295:                 }
 5296:             }
 5297:             $got_rules->{$dom} = 1;
 5298:         }
 5299:         if (ref($rules) eq 'HASH') {
 5300:             my @user_rules;
 5301:             if (ref($curr_rules->{$dom}{'username'}) eq 'ARRAY') {
 5302:                 foreach my $rule (keys(%{$rules})) {
 5303:                     if (grep(/^\Q$rule\E/,@{$curr_rules->{$dom}{'username'}})) {
 5304:                         push(@user_rules,$rule);
 5305:                     }
 5306:                 } 
 5307:             }
 5308:             if (@user_rules > 0) {
 5309:                 my %rule_check = &Apache::lonnet::inst_rulecheck($dom,$uname,undef,'username',\@user_rules);
 5310:                 if (keys(%rule_check) > 0) {
 5311:                     $usertype = 'unofficial';
 5312:                     foreach my $item (keys(%rule_check)) {
 5313:                         if ($rule_check{$item}) {
 5314:                             $usertype = 'official';
 5315:                             last;
 5316:                         }
 5317:                     }
 5318:                 }
 5319:             }
 5320:         }
 5321:     }
 5322:     return $usertype;
 5323: }
 5324: 
 5325: sub roles_by_context {
 5326:     my ($context,$custom,$crstype) = @_;
 5327:     my @allroles;
 5328:     if ($context eq 'course') {
 5329:         @allroles = ('st');
 5330:         if ($env{'request.role'} =~ m{^dc\./}) {
 5331:             push(@allroles,'ad');
 5332:         }
 5333:         push(@allroles,('ta','ep','in'));
 5334:         if ($crstype eq 'Community') {
 5335:             push(@allroles,'co');
 5336:         } else {
 5337:             push(@allroles,'cc');
 5338:         }
 5339:         if ($custom) {
 5340:             push(@allroles,'cr');
 5341:         }
 5342:     } elsif ($context eq 'author') {
 5343:         @allroles = ('ca','aa');
 5344:     } elsif ($context eq 'domain') {
 5345:         @allroles = ('li','ad','dg','sc','au','dc');
 5346:     }
 5347:     return @allroles;
 5348: }
 5349: 
 5350: sub get_permission {
 5351:     my ($context,$crstype) = @_;
 5352:     my %permission;
 5353:     if ($context eq 'course') {
 5354:         my $custom = 1;
 5355:         my @allroles = &roles_by_context($context,$custom,$crstype);
 5356:         foreach my $role (@allroles) {
 5357:             if (&Apache::lonnet::allowed('c'.$role,$env{'request.course.id'})) {
 5358:                 $permission{'cusr'} = 1;
 5359:                 last;
 5360:             }
 5361:         }
 5362:         if (&Apache::lonnet::allowed('ccr',$env{'request.course.id'})) {
 5363:             $permission{'custom'} = 1;
 5364:         }
 5365:         if (&Apache::lonnet::allowed('vcl',$env{'request.course.id'})) {
 5366:             $permission{'view'} = 1;
 5367:         }
 5368:         if (!$permission{'view'}) {
 5369:             my $scope = $env{'request.course.id'}.'/'.$env{'request.course.sec'};
 5370:             $permission{'view'} =  &Apache::lonnet::allowed('vcl',$scope);
 5371:             if ($permission{'view'}) {
 5372:                 $permission{'view_section'} = $env{'request.course.sec'};
 5373:             }
 5374:         }
 5375:         if (!$permission{'cusr'}) {
 5376:             if ($env{'request.course.sec'} ne '') {
 5377:                 my $scope = $env{'request.course.id'}.'/'.$env{'request.course.sec'};
 5378:                 $permission{'cusr'} = (&Apache::lonnet::allowed('cst',$scope));
 5379:                 if ($permission{'cusr'}) {
 5380:                     $permission{'cusr_section'} = $env{'request.course.sec'};
 5381:                 }
 5382:             }
 5383:         }
 5384:         if (&Apache::lonnet::allowed('mdg',$env{'request.course.id'})) {
 5385:             $permission{'grp_manage'} = 1;
 5386:         }
 5387:     } elsif ($context eq 'author') {
 5388:         $permission{'cusr'} = &authorpriv($env{'user.name'},$env{'request.role.domain'});
 5389:         $permission{'view'} = $permission{'cusr'};
 5390:     } else {
 5391:         my @allroles = &roles_by_context($context);
 5392:         foreach my $role (@allroles) {
 5393:             if (&Apache::lonnet::allowed('c'.$role,$env{'request.role.domain'})) {
 5394:                 $permission{'cusr'} = 1;
 5395:                 last;
 5396:             }
 5397:         }
 5398:         if (!$permission{'cusr'}) {
 5399:             if (&Apache::lonnet::allowed('mau',$env{'request.role.domain'})) {
 5400:                 $permission{'cusr'} = 1;
 5401:             }
 5402:         }
 5403:         if (&Apache::lonnet::allowed('ccr',$env{'request.role.domain'})) {
 5404:             $permission{'custom'} = 1;
 5405:         }
 5406:         $permission{'view'} = $permission{'cusr'};
 5407:     }
 5408:     my $allowed = 0;
 5409:     foreach my $perm (values(%permission)) {
 5410:         if ($perm) { $allowed=1; last; }
 5411:     }
 5412:     return (\%permission,$allowed);
 5413: }
 5414: 
 5415: # ==================================================== Figure out author access
 5416: 
 5417: sub authorpriv {
 5418:     my ($auname,$audom)=@_;
 5419:     unless ((&Apache::lonnet::allowed('cca',$audom.'/'.$auname))
 5420:          || (&Apache::lonnet::allowed('caa',$audom.'/'.$auname))) { return ''; }    return 1;
 5421: }
 5422: 
 5423: sub roles_on_upload {
 5424:     my ($context,$setting,$crstype,%customroles) = @_;
 5425:     my (@possible_roles,@permitted_roles);
 5426:     @possible_roles = &curr_role_permissions($context,$setting,1,$crstype);
 5427:     foreach my $role (@possible_roles) {
 5428:         if ($role eq 'cr') {
 5429:             push(@permitted_roles,keys(%customroles));
 5430:         } else {
 5431:             push(@permitted_roles,$role);
 5432:         }
 5433:     }
 5434:     return @permitted_roles;
 5435: }
 5436: 
 5437: sub get_course_identity {
 5438:     my ($cid) = @_;
 5439:     my ($cnum,$cdom,$cdesc);
 5440:     if ($cid eq '') {
 5441:         $cid = $env{'request.course.id'}
 5442:     }
 5443:     if ($cid ne '') {
 5444:         $cnum = $env{'course.'.$cid.'.num'};
 5445:         $cdom = $env{'course.'.$cid.'.domain'};
 5446:         $cdesc = $env{'course.'.$cid.'.description'};
 5447:         if ($cnum eq '' || $cdom eq '') {
 5448:             my %coursehash =
 5449:                 &Apache::lonnet::coursedescription($cid,{'one_time' => 1});
 5450:             $cdom = $coursehash{'domain'};
 5451:             $cnum = $coursehash{'num'};
 5452:             $cdesc = $coursehash{'description'};
 5453:         }
 5454:     }
 5455:     return ($cnum,$cdom,$cdesc);
 5456: }
 5457: 
 5458: sub dc_setcourse_js {
 5459:     my ($formname,$mode,$context) = @_;
 5460:     my ($dc_setcourse_code,$authen_check);
 5461:     my $cctext = &Apache::lonnet::plaintext('cc');
 5462:     my $cotext = &Apache::lonnet::plaintext('co');
 5463:     my %alerts = &sectioncheck_alerts();
 5464:     my $role = 'role';
 5465:     if ($mode eq 'upload') {
 5466:         $role = 'courserole';
 5467:     } else {
 5468:         $authen_check = &verify_authen($formname,$context);
 5469:     }
 5470:     $dc_setcourse_code = (<<"SCRIPTTOP");
 5471: $authen_check
 5472: 
 5473: function setCourse() {
 5474:     var course = document.$formname.dccourse.value;
 5475:     if (course != "") {
 5476:         if (document.$formname.dcdomain.value != document.$formname.origdom.value) {
 5477:             alert("$alerts{'curd'}");
 5478:             return;
 5479:         }
 5480:         var userrole = document.$formname.$role.options[document.$formname.$role.selectedIndex].value
 5481:         var section="";
 5482:         var numsections = 0;
 5483:         var newsecs = new Array();
 5484:         for (var i=0; i<document.$formname.currsec.length; i++) {
 5485:             if (document.$formname.currsec.options[i].selected == true ) {
 5486:                 if (document.$formname.currsec.options[i].value != "" && document.$formname.currsec.options[i].value != null) {
 5487:                     if (numsections == 0) {
 5488:                         section = document.$formname.currsec.options[i].value
 5489:                         numsections = 1;
 5490:                     }
 5491:                     else {
 5492:                         section = section + "," +  document.$formname.currsec.options[i].value
 5493:                         numsections ++;
 5494:                     }
 5495:                 }
 5496:             }
 5497:         }
 5498:         if (document.$formname.newsec.value != "" && document.$formname.newsec.value != null) {
 5499:             if (numsections == 0) {
 5500:                 section = document.$formname.newsec.value
 5501:             }
 5502:             else {
 5503:                 section = section + "," +  document.$formname.newsec.value
 5504:             }
 5505:             newsecs = document.$formname.newsec.value.split(/,/g);
 5506:             numsections = numsections + newsecs.length;
 5507:         }
 5508:         if ((userrole == 'st') && (numsections > 1)) {
 5509:             if (document.$formname.crstype.value == 'Community') {
 5510:                 alert("$alerts{'inco'}. $alerts{'youh'} "+numsections+" $alerts{'sect'}.\\n$alerts{'plsm'}.")
 5511:             } else {
 5512:                 alert("$alerts{'inea'}. $alerts{'youh'} "+numsections+" $alerts{'sect'}.\\n$alerts{'plsm'}.")
 5513:             }
 5514:             return;
 5515:         }
 5516:         for (var j=0; j<newsecs.length; j++) {
 5517:             if ((newsecs[j] == 'all') || (newsecs[j] == 'none')) {
 5518:                 alert("'"+newsecs[j]+"' $alerts{'mayn'}.\\n$alerts{'plsc'}.");
 5519:                 return;
 5520:             }
 5521:             if (document.$formname.groups.value != '') {
 5522:                 var groups = document.$formname.groups.value.split(/,/g);
 5523:                 for (var k=0; k<groups.length; k++) {
 5524:                     if (newsecs[j] == groups[k]) {
 5525:                         if (document.$formname.crstype.value == 'Community') {
 5526:                             alert("'"+newsecs[j]+"' $alerts{'mayc'}.\\n$alerts{'secn'}. $alerts{'plsc'}.");
 5527:                         } else {
 5528:                             alert("'"+newsecs[j]+"' $alerts{'mayt'}.\\n$alerts{'secn'}. $alerts{'plsc'}.");
 5529:                         }
 5530:                         return;
 5531:                     }
 5532:                 }
 5533:             }
 5534:         }
 5535:         if ((userrole == 'cc') && (numsections > 0)) {
 5536:             alert("$alerts{'secd'} $cctext $alerts{'role'}.\\n$alerts{'accr'}.");
 5537:             section = "";
 5538:         }
 5539:         if ((userrole == 'co') && (numsections > 0)) {
 5540:             alert("$alerts{'secd'} $cotext $alerts{'role'}.\\n$alerts{'accr'}.");
 5541:             section = "";
 5542:         }
 5543: SCRIPTTOP
 5544:     if ($mode ne 'upload') {
 5545:         $dc_setcourse_code .= (<<"ENDSCRIPT");
 5546:         var coursename = "_$env{'request.role.domain'}"+"_"+course+"_"+userrole
 5547:         var numcourse = getIndex(document.$formname.dccourse);
 5548:         if (numcourse == "-1") {
 5549:             if (document.$formname.type == 'Community') {
 5550:                 alert("$alerts{'thwc'}");
 5551:             } else {
 5552:                 alert("$alerts{'thwa'}");
 5553:             }
 5554:             return;
 5555:         }
 5556:         else {
 5557:             document.$formname.elements[numcourse].name = "act"+coursename;
 5558:             var numnewsec = getIndex(document.$formname.newsec);
 5559:             if (numnewsec != "-1") {
 5560:                 document.$formname.elements[numnewsec].name = "sec"+coursename;
 5561:                 document.$formname.elements[numnewsec].value = section;
 5562:             }
 5563:             var numstart = getIndex(document.$formname.start);
 5564:             if (numstart != "-1") {
 5565:                 document.$formname.elements[numstart].name = "start"+coursename;
 5566:             }
 5567:             var numend = getIndex(document.$formname.end);
 5568:             if (numend != "-1") {
 5569:                 document.$formname.elements[numend].name = "end"+coursename
 5570:             }
 5571:         }
 5572:     }
 5573:     var authcheck = auth_check();
 5574:     if (authcheck == 'ok') {
 5575:         document.$formname.submit();
 5576:     }
 5577: }
 5578: ENDSCRIPT
 5579:     } else {
 5580:         $dc_setcourse_code .=  "
 5581:         document.$formname.sections.value = section;
 5582:     }
 5583:     return 'ok';
 5584: }
 5585: ";
 5586:     }
 5587:     $dc_setcourse_code .= (<<"ENDSCRIPT");
 5588: 
 5589:     function getIndex(caller) {
 5590:         for (var i=0;i<document.$formname.elements.length;i++) {
 5591:             if (document.$formname.elements[i] == caller) {
 5592:                 return i;
 5593:             }
 5594:         }
 5595:         return -1;
 5596:     }
 5597: ENDSCRIPT
 5598:     return $dc_setcourse_code;
 5599: }
 5600: 
 5601: sub verify_authen {
 5602:     my ($formname,$context) = @_;
 5603:     my %alerts = &authcheck_alerts();
 5604:     my $finish = "return 'ok';";
 5605:     if ($context eq 'author') {
 5606:         $finish = "document.$formname.submit();";
 5607:     }
 5608:     my $outcome = <<"ENDSCRIPT";
 5609: 
 5610: function auth_check() {
 5611:     var logintype;
 5612:     if (document.$formname.login.length) {
 5613:         if (document.$formname.login.length > 0) {
 5614:             var loginpicked = 0;
 5615:             for (var i=0; i<document.$formname.login.length; i++) {
 5616:                 if (document.$formname.login[i].checked == true) {
 5617:                     loginpicked = 1;
 5618:                     logintype = document.$formname.login[i].value;
 5619:                 }
 5620:             }
 5621:             if (loginpicked == 0) {
 5622:                 alert("$alerts{'authen'}");
 5623:                 return;
 5624:             }
 5625:         }
 5626:     } else {
 5627:         logintype = document.$formname.login.value;
 5628:     }
 5629:     if (logintype == 'nochange') {
 5630:         return 'ok';
 5631:     }
 5632:     var argpicked = document.$formname.elements[logintype+'arg'].value;
 5633:     if ((argpicked == null) || (argpicked == '') || (typeof argpicked == 'undefined')) {
 5634:         var alertmsg = '';
 5635:         switch (logintype) {
 5636:             case 'krb':
 5637:                 alertmsg = '$alerts{'krb'}';
 5638:                 break;
 5639:             case 'int':
 5640:                 alertmsg = '$alerts{'ipass'}';
 5641:             case 'fsys':
 5642:                 alertmsg = '$alerts{'ipass'}';
 5643:                 break;
 5644:             case 'loc':
 5645:                 alertmsg = '';
 5646:                 break;
 5647:             default:
 5648:                 alertmsg = '';
 5649:         }
 5650:         if (alertmsg != '') {
 5651:             alert(alertmsg);
 5652:             return;
 5653:         }
 5654:     }
 5655:     $finish
 5656: }
 5657: ENDSCRIPT
 5658: }
 5659: 
 5660: sub sectioncheck_alerts {
 5661:     my %alerts = &Apache::lonlocal::texthash(
 5662:                     curd => 'You must select a course or community in the current domain',
 5663:                     inea => 'In each course, each user may only have one student role at a time',
 5664:                     inco => 'In each community, each user may only have one member role at a time', 
 5665:                     youh => 'You had selected',
 5666:                     sect => 'sections',
 5667:                     plsm => 'Please modify your selections so they include no more than one section',
 5668:                     mayn => 'may not be used as the name for a section, as it is a reserved word',
 5669:                     plsc => 'Please choose a different section name',
 5670:                     mayt => 'may not be used as the name for a section, as it is the name of a course group',
 5671:                     mayc => 'may not be used as the name for a section, as it is the name of a community group',
 5672:                     secn => 'Section names and group names must be distinct',
 5673:                     secd => 'Section designations do not apply to ',
 5674:                     role => 'roles',
 5675:                     accr => 'role will be added with access to all sections',
 5676:                     thwa => 'There was a problem with your course selection',
 5677:                     thwc => 'There was a problem with your community selection',
 5678:                  );
 5679:     return %alerts;
 5680: }
 5681: 
 5682: sub authcheck_alerts {
 5683:     my %alerts = 
 5684:         &Apache::lonlocal::texthash(
 5685:                     authen => 'You must choose an authentication type.',
 5686:                     krb    => 'You need to specify the Kerberos domain.',
 5687:                     ipass  => 'You need to specify the initial password.',
 5688:         );
 5689:     return %alerts;
 5690: }
 5691: 
 5692: 1;
 5693: 

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