Annotation of loncom/interface/lonuserutils.pm, revision 1.159

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

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