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

1.20      harris41    1: # The LearningOnline Network with CAPA
1.1       www         2: # Create a user
                      3: #
1.95    ! albertel    4: # $Id: loncreateuser.pm,v 1.94 2004/12/28 22:30:28 matthew Exp $
1.22      albertel    5: #
                      6: # Copyright Michigan State University Board of Trustees
                      7: #
                      8: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
                      9: #
                     10: # LON-CAPA is free software; you can redistribute it and/or modify
                     11: # it under the terms of the GNU General Public License as published by
                     12: # the Free Software Foundation; either version 2 of the License, or
                     13: # (at your option) any later version.
                     14: #
                     15: # LON-CAPA is distributed in the hope that it will be useful,
                     16: # but WITHOUT ANY WARRANTY; without even the implied warranty of
                     17: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
                     18: # GNU General Public License for more details.
                     19: #
                     20: # You should have received a copy of the GNU General Public License
                     21: # along with LON-CAPA; if not, write to the Free Software
                     22: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
                     23: #
                     24: # /home/httpd/html/adm/gpl.txt
                     25: #
                     26: # http://www.lon-capa.org/
                     27: #
1.20      harris41   28: ###
                     29: 
1.1       www        30: package Apache::loncreateuser;
1.66      bowersj2   31: 
                     32: =pod
                     33: 
                     34: =head1 NAME
                     35: 
                     36: Apache::loncreateuser - handler to create users and custom roles
                     37: 
                     38: =head1 SYNOPSIS
                     39: 
                     40: Apache::loncreateuser provides an Apache handler for creating users,
                     41:     editing their login parameters, roles, and removing roles, and
                     42:     also creating and assigning custom roles.
                     43: 
                     44: =head1 OVERVIEW
                     45: 
                     46: =head2 Custom Roles
                     47: 
                     48: In LON-CAPA, roles are actually collections of privileges. "Teaching
                     49: Assistant", "Course Coordinator", and other such roles are really just
                     50: collection of privileges that are useful in many circumstances.
                     51: 
                     52: Creating custom roles can be done by the Domain Coordinator through
                     53: the Create User functionality. That screen will show all privileges
                     54: that can be assigned to users. For a complete list of privileges,
                     55: please see C</home/httpd/lonTabs/rolesplain.tab>.
                     56: 
                     57: Custom role definitions are stored in the C<roles.db> file of the role
                     58: author.
                     59: 
                     60: =cut
1.1       www        61: 
                     62: use strict;
                     63: use Apache::Constants qw(:common :http);
                     64: use Apache::lonnet;
1.54      bowersj2   65: use Apache::loncommon;
1.68      www        66: use Apache::lonlocal;
1.1       www        67: 
1.20      harris41   68: my $loginscript; # piece of javascript used in two separate instances
                     69: my $generalrule;
                     70: my $authformnop;
                     71: my $authformkrb;
                     72: my $authformint;
                     73: my $authformfsys;
                     74: my $authformloc;
                     75: 
1.94      matthew    76: sub initialize_authen_forms {
                     77:     my ($krbdefdom)=( $ENV{'SERVER_NAME'}=~/(\w+\.\w+)$/);
                     78:     $krbdefdom= uc($krbdefdom);
1.31      matthew    79:     my %param = ( formname => 'document.cu',
                     80:                   kerb_def_dom => $krbdefdom 
                     81:                   );
1.48      albertel   82: # no longer static due to configurable kerberos defaults
                     83: #    $loginscript  = &Apache::loncommon::authform_header(%param);
1.31      matthew    84:     $generalrule  = &Apache::loncommon::authform_authorwarning(%param);
                     85:     $authformnop  = &Apache::loncommon::authform_nochange(%param);
1.48      albertel   86: # no longer static due to configurable kerberos defaults
                     87: #    $authformkrb  = &Apache::loncommon::authform_kerberos(%param);
1.31      matthew    88:     $authformint  = &Apache::loncommon::authform_internal(%param);
                     89:     $authformfsys = &Apache::loncommon::authform_filesystem(%param);
                     90:     $authformloc  = &Apache::loncommon::authform_local(%param);
1.20      harris41   91: }
                     92: 
1.43      www        93: 
1.59      www        94: # ======================================================= Existing Custom Roles
                     95: 
                     96: sub my_custom_roles {
                     97:     my %returnhash=();
                     98:     my %rolehash=&Apache::lonnet::dump('roles');
                     99:     foreach (keys %rolehash) {
                    100: 	if ($_=~/^rolesdef\_(\w+)$/) {
1.61      www       101: 	    $returnhash{$1}=$1;
1.59      www       102: 	}
                    103:     }
                    104:     return %returnhash;
                    105: }
1.43      www       106: 
                    107: # ==================================================== Figure out author access
                    108: 
                    109: sub authorpriv {
                    110:     my ($auname,$audom)=@_;
                    111:     if (($auname ne $ENV{'user.name'}) ||
                    112:         (($audom ne $ENV{'user.domain'}) &&
                    113:          ($audom ne $ENV{'request.role.domain'}))) { return ''; }
                    114:     unless (&Apache::lonnet::allowed('cca',$audom)) { return ''; }
                    115:     return 1;
                    116: }
                    117: 
1.2       www       118: # =================================================================== Phase one
1.1       www       119: 
1.42      matthew   120: sub print_username_entry_form {
1.2       www       121:     my $r=shift;
1.42      matthew   122:     my $defdom=$ENV{'request.role.domain'};
1.33      matthew   123:     my @domains = &Apache::loncommon::get_domains();
                    124:     my $domform = &Apache::loncommon::select_dom_form($defdom,'ccdomain');
1.84      albertel  125:     my $bodytag =&Apache::loncommon::bodytag('Create Users, Change User Privileges').&Apache::loncommon::help_open_menu('',undef,undef,'',282,'Instructor Interface');
1.46      www       126:     my $selscript=&Apache::loncommon::studentbrowser_javascript();
                    127:     my $sellink=&Apache::loncommon::selectstudent_link
                    128:                                         ('crtuser','ccuname','ccdomain');
1.59      www       129:     my %existingroles=&my_custom_roles();
                    130:     my $choice=&Apache::loncommon::select_form('make new role','rolename',
                    131: 		('make new role' => 'Generate new role ...',%existingroles));
1.71      sakharuk  132:     my %lt=&Apache::lonlocal::texthash(
                    133: 		    'siur'   => "Set Individual User Roles",
                    134: 		    'usr'  => "Username",
                    135:                     'dom'  => "Domain",
                    136:                     'usrr' => "User Roles",
                    137:                     'ecrp' => "Edit Custom Role Privileges",
1.72      sakharuk  138:                     'nr'   => "Name of Role",
1.71      sakharuk  139:                     'cre'  => "Custom Role Editor"
                    140: 				       );
1.76      www       141:     my $helpsiur=&Apache::loncommon::help_open_topic('Course_Change_Privileges');
                    142:     my $helpecpr=&Apache::loncommon::help_open_topic('Course_Editing_Custom_Roles');
1.33      matthew   143:     $r->print(<<"ENDDOCUMENT");
1.1       www       144: <html>
                    145: <head>
                    146: <title>The LearningOnline Network with CAPA</title>
1.46      www       147: $selscript
1.1       www       148: </head>
1.40      www       149: $bodytag
1.46      www       150: <form action="/adm/createuser" method="post" name="crtuser">
1.42      matthew   151: <input type="hidden" name="phase" value="get_user_info">
1.76      www       152: <h2>$lt{siur}$helpsiur</h2>
1.43      www       153: <table>
1.71      sakharuk  154: <tr><td>$lt{usr}:</td><td><input type="text" size="15" name="ccuname">
1.46      www       155: </td><td rowspan="2">$sellink</td></tr><tr><td>
1.71      sakharuk  156: $lt{'dom'}:</td><td>$domform</td></tr>
1.58      www       157: </table>
1.71      sakharuk  158: <input name="userrole" type="submit" value="$lt{usrr}" />
1.2       www       159: </form>
1.58      www       160: <form action="/adm/createuser" method="post" name="docustom">
                    161: <input type="hidden" name="phase" value="selected_custom_edit">
1.76      www       162: <h2>$lt{'ecrp'}$helpecpr</h2>
1.72      sakharuk  163: $lt{'nr'}: $choice <input type="text" size="15" name="newrolename" /><br />
1.71      sakharuk  164: <input name="customeditor" type="submit" value="$lt{'cre'}" />
1.1       www       165: </body>
                    166: </html>
                    167: ENDDOCUMENT
1.2       www       168: }
                    169: 
                    170: # =================================================================== Phase two
1.42      matthew   171: sub print_user_modification_page {
1.2       www       172:     my $r=shift;
                    173:     my $ccuname=$ENV{'form.ccuname'};
                    174:     my $ccdomain=$ENV{'form.ccdomain'};
1.4       www       175: 
1.85      albertel  176:     $ccuname=~s/[\W|_]//gs;
                    177:     $ccdomain=~s/[\W|_]//gs;
1.58      www       178: 
                    179:     unless (($ccuname) && ($ccdomain)) {
                    180: 	&print_username_entry_form($r);
                    181:         return;
                    182:     }
                    183: 
1.48      albertel  184:     my $defdom=$ENV{'request.role.domain'};
                    185: 
                    186:     my ($krbdef,$krbdefdom) =
                    187:        &Apache::loncommon::get_kerberos_defaults($defdom);
                    188: 
1.31      matthew   189:     my %param = ( formname => 'document.cu',
1.48      albertel  190:                   kerb_def_dom => $krbdefdom,
                    191:                   kerb_def_auth => $krbdef
1.31      matthew   192:                   );
                    193:     $loginscript  = &Apache::loncommon::authform_header(%param);
1.48      albertel  194:     $authformkrb  = &Apache::loncommon::authform_kerberos(%param);
1.4       www       195: 
1.2       www       196:     $ccuname=~s/\W//g;
                    197:     $ccdomain=~s/\W//g;
1.52      matthew   198:     my $pjump_def = &Apache::lonhtmlcommon::pjump_javascript_definition();
1.88      raeburn   199:     my $dc_setcourse_code = '';
                    200:     my $loaditem;
                    201:     if ($ENV{'request.role'} =~ m-^dc\./(\w+)/$-) {
                    202:         my $dcdom = $1;
                    203:         $loaditem = qq|OnLoad="document.cu.coursedesc.value=''"|;
                    204:         $dc_setcourse_code = <<"ENDSCRIPT";
                    205:     function setCourse() {
                    206:         var course = document.cu.dccourse.value;
                    207:         if (course != "") {
                    208:             if (document.cu.dcdomain.value != document.cu.origdom.value) {
                    209:                 alert("You must select a course in the current domain");
                    210:                 return;
                    211:             } 
                    212:             var userrole = document.cu.role.options[document.cu.role.selectedIndex].value
1.91      raeburn   213:             var section="";
1.88      raeburn   214:             var numsections = 0;
1.89      raeburn   215:             for (var i=0; i<document.cu.currsec.length; i++) {
                    216:                 if (document.cu.currsec.options[i].selected == true ) {
                    217:                     if (document.cu.currsec.options[i].value != "" && document.cu.currsec.options[i].value != null) { 
                    218:                         if (numsections == 0) {
                    219:                             section = document.cu.currsec.options[i].value
                    220:                             numsections = 1;
                    221:                         }
                    222:                         else {
                    223:                             section = section + "," +  document.cu.currsec.options[i].value
                    224:                             numsections ++;
1.88      raeburn   225:                         }
                    226:                     }
                    227:                 }
1.89      raeburn   228:             }
                    229:             if (document.cu.newsec.value != "" && document.cu.newsec.value != null) {
                    230:                 if (numsections == 0) {
                    231:                     section = document.cu.newsec.value
                    232:                 }
                    233:                 else {
                    234:                     section = section + "," +  document.cu.newsec.value
1.88      raeburn   235:                 }
1.89      raeburn   236:                 var numsplit = document.cu.newsec.value.split(/,/g);
                    237:                 numsections = numsections + numsplit.length;
                    238:             }
                    239:             if ((userrole == 'st') && (numsections > 1)) {
                    240:                 alert("In each course, each user may only have one student role at a time. You had selected "+numsections+" sections.\\nPlease modify your selections so they include no more than one section.")
                    241:                 return;
                    242:             }
                    243:             if ((userrole == 'cc') && (numsections > 0)) {
                    244:                 alert("Section designations do not apply to Course Coordinator roles.\\nA course coordinator role will be added with access to all sections.");
                    245:                 section = "";
1.88      raeburn   246:             }
                    247:             var numcourse = getIndex(document.cu.dccourse);
                    248:             if (numcourse == "-1") {
                    249:                 alert("There was a problem with your course selection");
                    250:                 return
                    251:             }
                    252:             else { 
                    253:                 var coursename = "_$dcdom"+"_"+course+"_"+userrole
                    254:                 document.cu.elements[numcourse].name = "act"+coursename
                    255:                 document.cu.elements[numcourse+4].name = "sec"+coursename
                    256:                 document.cu.elements[numcourse+4].value = section
                    257:                 document.cu.elements[numcourse+5].name = "start"+coursename
                    258:                 document.cu.elements[numcourse+6].name = "end"+coursename
                    259:             }
                    260:         }
                    261:         document.cu.submit();
                    262:     }
                    263: 
                    264:     function getIndex(caller) {
                    265:         for (var i=0;i<document.cu.elements.length;i++) {
                    266:             if (document.cu.elements[i] == caller) {
                    267:                 return i;
                    268:             }
                    269:         }
                    270:         return -1;
                    271:     }
                    272: ENDSCRIPT
                    273:     }
1.25      matthew   274:     my $dochead =<<"ENDDOCHEAD";
1.2       www       275: <html>
                    276: <head>
                    277: <title>The LearningOnline Network with CAPA</title>
1.31      matthew   278: <script type="text/javascript" language="Javascript">
1.3       www       279: 
                    280:     function pclose() {
                    281:         parmwin=window.open("/adm/rat/empty.html","LONCAPAparms",
                    282:                  "height=350,width=350,scrollbars=no,menubar=no");
                    283:         parmwin.close();
                    284:     }
                    285: 
1.52      matthew   286:     $pjump_def
1.88      raeburn   287:     $dc_setcourse_code
1.3       www       288: 
                    289:     function dateset() {
                    290:         eval("document.cu."+document.cu.pres_marker.value+
                    291:             ".value=document.cu.pres_value.value");
                    292:         pclose();
                    293:     }
                    294: 
1.89      raeburn   295:     function setSections() {
                    296:         var re1 = /^currsec_/;
                    297:         for (var i=0;i<document.cu.elements.length;i++) {
                    298:             var str = document.cu.elements[i].name;
                    299:             var checkcurr = str.match(re1);
                    300:             if (checkcurr != null) {
                    301:                 var re2 = /^currsec_[a-zA-Z0-9]+_[a-zA-Z0-9]+_(\\w+)\$/;
                    302:                 if (document.cu.elements[i-1].checked == true) {
                    303:                     var re2 = /^currsec_[a-zA-Z0-9]+_[a-zA-Z0-9]+_(\\w+)\$/;
                    304:                     match = re2.exec(str);
                    305:                     var role = match[1];
                    306:                     if (role == 'cc') {
                    307:                         alert("Section designations do not apply to Course Coordinator roles.\\nA course coordinator role will be added with access to all sections.");
                    308:                     }
                    309:                     else {
                    310:                         var sections = '';
                    311:                         var numsec = 0;
                    312:                         var sections;
                    313:                         for (var j=0; j<document.cu.elements[i].length; j++) {
                    314:                             if (document.cu.elements[i].options[j].selected == true ) {
                    315:                                 if (document.cu.elements[i].options[j].value != "") {
                    316:                                     if (numsec == 0) {
                    317:                                         if (document.cu.elements[i].options[j].value != "") {
                    318:                                             sections = document.cu.elements[i].options[j].value;
                    319:                                             numsec ++;
                    320:                                         }
                    321:                                     }
                    322:                                     else {
                    323:                                         sections = sections + "," +  document.cu.elements[i].options[j].value
                    324:                                         numsec ++;
                    325:                                     }
                    326:                                 }
                    327:                             }
                    328:                         }
                    329:                         if (numsec > 0) {
                    330:                             if (document.cu.elements[i+1].value != "" && document.cu.elements[i+1].value != null) {
                    331:                                 sections = sections + "," +  document.cu.elements[i+1].value;
                    332:                             } 
                    333:                         }
                    334:                         else {
                    335:                             sections = document.cu.elements[i+1].value;    
                    336:                         }
                    337:                         var newsecs = document.cu.elements[i+1].value;
                    338:                         if (newsecs != null && newsecs != "") {
                    339:                             var numsplit = newsecs.split(/,/g);
                    340:                             numsec = numsec + numsplit.length;
                    341:                         }
                    342:                         if ((role == 'st') && (numsec > 1)) {
                    343:                             alert("In each course, each user may only have one student role at a time. You had selected "+numsec+" sections.\\nPlease modify your selections so they include no more than one section.")  
                    344:                             return;
                    345:                         }
                    346:                         else { 
                    347:                             document.cu.elements[i+2].value = sections;
                    348:                         }
                    349:                     }
                    350:                 }
                    351:             }
                    352:         }
                    353:         document.cu.submit();
                    354:     }
1.3       www       355: </script>
1.2       www       356: </head>
1.25      matthew   357: ENDDOCHEAD
1.40      www       358:     $r->print(&Apache::loncommon::bodytag(
1.88      raeburn   359:                                      'Create Users, Change User Privileges',undef,$loaditem));
1.25      matthew   360:     my $forminfo =<<"ENDFORMINFO";
                    361: <form action="/adm/createuser" method="post" name="cu">
1.42      matthew   362: <input type="hidden" name="phase"       value="update_user_data">
1.25      matthew   363: <input type="hidden" name="ccuname"     value="$ccuname">
                    364: <input type="hidden" name="ccdomain"    value="$ccdomain">
                    365: <input type="hidden" name="pres_value"  value="" >
                    366: <input type="hidden" name="pres_type"   value="" >
                    367: <input type="hidden" name="pres_marker" value="" >
                    368: ENDFORMINFO
1.2       www       369:     my $uhome=&Apache::lonnet::homeserver($ccuname,$ccdomain);
                    370:     my %incdomains; 
                    371:     my %inccourses;
1.49      albertel  372:     foreach (values(%Apache::lonnet::hostdom)) {
1.13      www       373:        $incdomains{$_}=1;
1.24      matthew   374:     }
                    375:     foreach (keys(%ENV)) {
1.2       www       376: 	if ($_=~/^user\.priv\.cm\.\/(\w+)\/(\w+)/) {
                    377: 	    $inccourses{$1.'_'.$2}=1;
                    378:         }
1.24      matthew   379:     }
1.2       www       380:     if ($uhome eq 'no_host') {
1.29      matthew   381:         my $home_server_list=
1.32      matthew   382:             '<option value="default" selected>default</option>'."\n".
                    383:                 &Apache::loncommon::home_server_option_list($ccdomain);
                    384:         
1.79      albertel  385: 	my %lt=&Apache::lonlocal::texthash(
1.72      sakharuk  386:                     'cnu'  => "Create New User",
                    387:                     'nu'   => "New User",
                    388:                     'id'   => "in domain",
                    389:                     'pd'   => "Personal Data",
                    390:                     'fn'   => "First Name",
                    391:                     'mn'   => "Middle Name",
                    392:                     'ln'   => "Last Name",
                    393:                     'gen'  => "Generation",
                    394:                     'idsn' => "ID/Student Number",
                    395:                     'hs'   => "Home Server",
                    396:                     'lg'   => "Login Data"
                    397: 				       );
1.78      www       398: 	my $genhelp=&Apache::loncommon::help_open_topic('Generation');
1.94      matthew   399:         &initialize_authen_forms();
1.26      matthew   400: 	$r->print(<<ENDNEWUSER);
1.25      matthew   401: $dochead
1.72      sakharuk  402: <h1>$lt{'cnu'}</h1>
1.25      matthew   403: $forminfo
1.72      sakharuk  404: <h2>$lt{'nu'} "$ccuname" $lt{'id'} $ccdomain</h2>
1.31      matthew   405: <script type="text/javascript" language="Javascript">
1.20      harris41  406: $loginscript
1.31      matthew   407: </script>
1.20      harris41  408: <input type='hidden' name='makeuser' value='1' />
1.72      sakharuk  409: <h3>$lt{'pd'}</h3>
1.25      matthew   410: <p>
                    411: <table>
1.72      sakharuk  412: <tr><td>$lt{'fn'}  </td>
1.25      matthew   413:     <td><input type='text' name='cfirst'  size='15' /></td></tr>
1.72      sakharuk  414: <tr><td>$lt{'mn'} </td> 
1.25      matthew   415:     <td><input type='text' name='cmiddle' size='15' /></td></tr>
1.72      sakharuk  416: <tr><td>$lt{'ln'}   </td>
1.25      matthew   417:     <td><input type='text' name='clast'   size='15' /></td></tr>
1.78      www       418: <tr><td>$lt{'gen'}$genhelp</td>
1.25      matthew   419:     <td><input type='text' name='cgen'    size='5'  /></td></tr>
                    420: </table>
1.72      sakharuk  421: $lt{'idsn'} <input type='text' name='cstid'   size='15' /></p>
1.74      sakharuk  422: $lt{'hs'}: <select name="hserver" size="1"> $home_server_list </select>
1.25      matthew   423: <hr />
1.72      sakharuk  424: <h3>$lt{'lg'}</h3>
1.31      matthew   425: <p>$generalrule </p>
                    426: <p>$authformkrb </p>
                    427: <p>$authformint </p>
                    428: <p>$authformfsys</p>
                    429: <p>$authformloc </p>
1.26      matthew   430: ENDNEWUSER
1.25      matthew   431:     } else { # user already exists
1.79      albertel  432: 	my %lt=&Apache::lonlocal::texthash(
1.72      sakharuk  433:                     'cup'  => "Change User Privileges",
                    434:                     'usr'  => "User",                    
                    435:                     'id'   => "in domain",
                    436:                     'fn'   => "first name",
                    437:                     'mn'   => "middle name",
                    438:                     'ln'   => "last name",
                    439:                     'gen'  => "generation"
                    440: 				       );
1.26      matthew   441: 	$r->print(<<ENDCHANGEUSER);
1.25      matthew   442: $dochead
1.72      sakharuk  443: <h1>$lt{'cup'}</h1>
1.25      matthew   444: $forminfo
1.72      sakharuk  445: <h2>$lt{'usr'} "$ccuname" $lt{'id'} "$ccdomain"</h2>
1.26      matthew   446: ENDCHANGEUSER
1.28      matthew   447:         # Get the users information
                    448:         my %userenv = &Apache::lonnet::get('environment',
                    449:                           ['firstname','middlename','lastname','generation'],
                    450:                           $ccdomain,$ccuname);
                    451:         my %rolesdump=&Apache::lonnet::dump('roles',$ccdomain,$ccuname);
                    452:         $r->print(<<END);
                    453: <hr />
                    454: <table border="2">
                    455: <tr>
1.72      sakharuk  456: <th>$lt{'fn'}</th><th>$lt{'mn'}</th><th>$lt{'ln'}</th><th>$lt{'gen'}</th>
1.28      matthew   457: </tr>
                    458: <tr>
                    459: END
                    460:         foreach ('firstname','middlename','lastname','generation') {
                    461:            if (&Apache::lonnet::allowed('mau',$ccdomain)) {
                    462:               $r->print(<<"END");            
1.53      www       463: <td><input type="text" name="c$_" value="$userenv{$_}" size="15" /></td>
1.28      matthew   464: END
                    465:            } else {
                    466:                $r->print('<td>'.$userenv{$_}.'</td>');
                    467:            }
                    468:         }
1.72      sakharuk  469:       $r->print(<<END);
1.28      matthew   470: </tr>
                    471: </table>
                    472: END
1.25      matthew   473:         # Build up table of user roles to allow revocation of a role.
1.28      matthew   474:         my ($tmp) = keys(%rolesdump);
                    475:         unless ($tmp =~ /^(con_lost|error)/i) {
1.2       www       476:            my $now=time;
1.72      sakharuk  477: 	   my %lt=&Apache::lonlocal::texthash(
                    478: 		    'rer'  => "Revoke Existing Roles",
                    479:                     'rev'  => "Revoke",                    
                    480:                     'del'  => "Delete",
1.81      albertel  481: 		    'ren'  => "Re-Enable",
1.72      sakharuk  482:                     'rol'  => "Role",
                    483:                     'ext'  => "Extent",
                    484:                     'sta'  => "Start",
                    485:                     'end'  => "End"
                    486: 				       );
1.89      raeburn   487:            my (%roletext,%sortrole,%roleclass,%rolepriv);
1.67      albertel  488: 	   foreach my $area (sort { my $a1=join('_',(split('_',$a))[1,0]);
                    489: 				    my $b1=join('_',(split('_',$b))[1,0]);
                    490: 				    return $a1 cmp $b1;
                    491: 				} keys(%rolesdump)) {
1.37      matthew   492:                next if ($area =~ /^rolesdef/);
1.79      albertel  493: 	       my $envkey=$area;
1.37      matthew   494:                my $role = $rolesdump{$area};
                    495:                my $thisrole=$area;
                    496:                $area =~ s/\_\w\w$//;
                    497:                my ($role_code,$role_end_time,$role_start_time) = 
                    498:                    split(/_/,$role);
1.64      www       499: # Is this a custom role? Get role owner and title.
                    500: 	       my ($croleudom,$croleuname,$croletitle)=
                    501: 	           ($role_code=~/^cr\/(\w+)\/(\w+)\/(\w+)$/);
1.37      matthew   502:                my $bgcol='ffffff';
                    503:                my $allowed=0;
1.53      www       504:                my $delallowed=0;
1.79      albertel  505: 	       my $sortkey=$role_code;
                    506: 	       my $class='Unknown';
1.37      matthew   507:                if ($area =~ /^\/(\w+)\/(\d\w+)/ ) {
1.79      albertel  508: 		   $class='Course';
1.57      matthew   509:                    my ($coursedom,$coursedir) = ($1,$2);
1.79      albertel  510: 		   $sortkey.="\0$1";
1.57      matthew   511:                    # $1.'_'.$2 is the course id (eg. 103_12345abcef103l3).
1.37      matthew   512:                    my %coursedata=
                    513:                        &Apache::lonnet::coursedescription($1.'_'.$2);
1.51      albertel  514: 		   my $carea;
                    515: 		   if (defined($coursedata{'description'})) {
1.79      albertel  516: 		       $carea=$coursedata{'description'}.
1.72      sakharuk  517:                            '<br />'.&mt('Domain').': '.$coursedom.('&nbsp;'x8).
1.57      matthew   518:      &Apache::loncommon::syllabuswrapper('Syllabus',$coursedir,$coursedom);
1.79      albertel  519: 		       $sortkey.="\0".$coursedata{'description'};
1.51      albertel  520: 		   } else {
1.72      sakharuk  521: 		       $carea=&mt('Unavailable course').': '.$area;
1.86      albertel  522: 		       $sortkey.="\0".&mt('Unavailable course').': '.$area;
1.51      albertel  523: 		   }
1.37      matthew   524:                    $inccourses{$1.'_'.$2}=1;
1.53      www       525:                    if ((&Apache::lonnet::allowed('c'.$role_code,$1.'/'.$2)) ||
                    526:                        (&Apache::lonnet::allowed('c'.$role_code,$ccdomain))) {
1.37      matthew   527:                        $allowed=1;
                    528:                    }
1.53      www       529:                    if ((&Apache::lonnet::allowed('dro',$1)) ||
                    530:                        (&Apache::lonnet::allowed('dro',$ccdomain))) {
                    531:                        $delallowed=1;
                    532:                    }
1.64      www       533: # - custom role. Needs more info, too
                    534: 		   if ($croletitle) {
                    535: 		       if (&Apache::lonnet::allowed('ccr',$1.'/'.$2)) {
                    536: 			   $allowed=1;
                    537: 			   $thisrole.='.'.$role_code;
                    538: 		       }
                    539: 		   }
1.37      matthew   540:                    # Compute the background color based on $area
                    541:                    $bgcol=$1.'_'.$2;
1.62      www       542:                    $bgcol=~s/[^7-9a-e]//g;
                    543:                    $bgcol=substr($bgcol.$bgcol.$bgcol.'ffffff',2,6);
1.37      matthew   544:                    if ($area=~/^\/(\w+)\/(\d\w+)\/(\w+)/) {
1.28      matthew   545:                        $carea.='<br>Section/Group: '.$3;
1.87      albertel  546: 		       $sortkey.="\0$3";
1.37      matthew   547:                    }
                    548:                    $area=$carea;
                    549:                } else {
1.79      albertel  550: 		   $sortkey.="\0".$area;
1.37      matthew   551:                    # Determine if current user is able to revoke privileges
                    552:                    if ($area=~ /^\/(\w+)\//) {
1.53      www       553:                        if ((&Apache::lonnet::allowed('c'.$role_code,$1)) ||
                    554:                        (&Apache::lonnet::allowed('c'.$role_code,$ccdomain))) {
1.37      matthew   555:                            $allowed=1;
                    556:                        }
1.53      www       557:                        if (((&Apache::lonnet::allowed('dro',$1))  ||
                    558:                             (&Apache::lonnet::allowed('dro',$ccdomain))) &&
                    559:                            ($role_code ne 'dc')) {
                    560:                            $delallowed=1;
                    561:                        }
1.37      matthew   562:                    } else {
                    563:                        if (&Apache::lonnet::allowed('c'.$role_code,'/')) {
                    564:                            $allowed=1;
                    565:                        }
                    566:                    }
1.79      albertel  567: 		   if ($role_code eq 'ca' || $role_code eq 'au') {
                    568: 		       $class='Construction Space';
                    569: 		   } elsif ($role_code eq 'su') {
                    570: 		       $class='System';
                    571: 		   } else {
                    572: 		       $class='Domain';
                    573: 		   }
1.37      matthew   574:                }
1.43      www       575:                if ($role_code eq 'ca') {
                    576:                    $area=~/\/(\w+)\/(\w+)/;
                    577: 		   if (&authorpriv($2,$1)) {
                    578: 		       $allowed=1;
                    579:                    } else {
                    580:                        $allowed=0;
1.37      matthew   581:                    }
                    582:                }
1.79      albertel  583: 	       $bgcol='77FF77';
1.37      matthew   584:                my $row = '';
1.62      www       585:                $row.='<tr bgcolor="#'.$bgcol.'"><td>';
1.37      matthew   586:                my $active=1;
                    587:                $active=0 if (($role_end_time) && ($now>$role_end_time));
                    588:                if (($active) && ($allowed)) {
                    589:                    $row.= '<input type="checkbox" name="rev:'.$thisrole.'">';
                    590:                } else {
1.56      www       591:                    if ($active) {
                    592:                       $row.='&nbsp;';
                    593: 		   } else {
1.72      sakharuk  594:                       $row.=&mt('expired or revoked');
1.56      www       595: 		   }
1.37      matthew   596:                }
1.53      www       597: 	       $row.='</td><td>';
1.81      albertel  598:                if ($allowed && !$active) {
                    599:                    $row.= '<input type="checkbox" name="ren:'.$thisrole.'">';
                    600:                } else {
                    601:                    $row.='&nbsp;';
                    602:                }
                    603: 	       $row.='</td><td>';
1.53      www       604:                if ($delallowed) {
                    605:                    $row.= '<input type="checkbox" name="del:'.$thisrole.'">';
                    606:                } else {
                    607:                    $row.='&nbsp;';
                    608:                }
1.64      www       609: 	       my $plaintext='';
                    610: 	       unless ($croletitle) {
                    611: 		   $plaintext=&Apache::lonnet::plaintext($role_code);
                    612: 	       } else {
                    613: 	           $plaintext=
                    614: 		"Customrole '$croletitle' defined by $croleuname\@$croleudom";
                    615: 	       }
                    616:                $row.= '</td><td>'.$plaintext.
1.37      matthew   617:                       '</td><td>'.$area.
                    618:                       '</td><td>'.($role_start_time?localtime($role_start_time)
                    619:                                                    : '&nbsp;' ).
                    620:                       '</td><td>'.($role_end_time  ?localtime($role_end_time)
                    621:                                                    : '&nbsp;' )
                    622:                       ."</td></tr>\n";
1.79      albertel  623: 	       $sortrole{$sortkey}=$envkey;
                    624: 	       $roletext{$envkey}=$row;
                    625: 	       $roleclass{$envkey}=$class;
1.89      raeburn   626:                $rolepriv{$envkey}=$allowed;
1.79      albertel  627:                #$r->print($row);
1.28      matthew   628:            } # end of foreach        (table building loop)
1.89      raeburn   629:            my $rolesdisplay = 0;
                    630:            my %output = ();
1.79      albertel  631: 	   foreach my $type ('Construction Space','Course','Domain','System','Unknown') {
1.89      raeburn   632: 	       $output{$type} = '';
1.79      albertel  633: 	       foreach my $which (sort {uc($a) cmp uc($b)} (keys(%sortrole))) {
1.89      raeburn   634: 		   if ( ($roleclass{$sortrole{$which}} =~ /^\Q$type\E/ ) && ($rolepriv{$sortrole{$which}}) ) { 
                    635: 		       $output{$type}.=$roletext{$sortrole{$which}};
1.79      albertel  636: 		   }
                    637: 	       }
1.89      raeburn   638: 	       unless($output{$type} eq '') {
                    639: 		   $output{$type} = "<tr bgcolor='#BBffBB'>".
                    640: 			     "<td align='center' colspan='7'>".&mt($type)."</td>".
                    641:                               $output{$type};
                    642:                    $rolesdisplay = 1;
1.79      albertel  643: 	       }
                    644: 	   }
1.89      raeburn   645:            if ($rolesdisplay == 1) {
                    646:                $r->print(<<END);
                    647: <hr />
                    648: <h3>$lt{'rer'}</h3>
                    649: <table>
                    650: <tr><th>$lt{'rev'}</th><th>$lt{'ren'}</th><th>$lt{'del'}</th><th>$lt{'rol'}</th><th>$lt{'e
                    651: xt'}</th><th>$lt{'sta'}</th><th>$lt{'end'}</th>
                    652: END
                    653:                foreach my $type ('Construction Space','Course','Domain','System','Unknown') {
                    654:                    if ($output{$type}) {
                    655:                        $r->print($output{$type}."\n");
                    656:                    }
                    657:                }
                    658: 	       $r->print('</table>');
                    659:            }
1.28      matthew   660:         }  # End of unless
1.20      harris41  661: 	my $currentauth=&Apache::lonnet::queryauthenticate($ccuname,$ccdomain);
1.41      albertel  662: 	if ($currentauth=~/^krb(4|5):/) {
                    663: 	    $currentauth=~/^krb(4|5):(.*)/;
1.45      matthew   664: 	    my $krbdefdom=$1;
1.31      matthew   665:             my %param = ( formname => 'document.cu',
                    666:                           kerb_def_dom => $krbdefdom 
                    667:                           );
                    668:             $loginscript  = &Apache::loncommon::authform_header(%param);
1.20      harris41  669: 	}
1.26      matthew   670: 	# Check for a bad authentication type
1.41      albertel  671:         unless ($currentauth=~/^krb(4|5):/ or
1.20      harris41  672: 		$currentauth=~/^unix:/ or
                    673: 		$currentauth=~/^internal:/ or
                    674: 		$currentauth=~/^localauth:/
1.26      matthew   675: 		) { # bad authentication scheme
1.42      matthew   676: 	    if (&Apache::lonnet::allowed('mau',$ENV{'request.role.domain'})) {
1.94      matthew   677:                 &initialize_authen_forms();
1.73      sakharuk  678: 		my %lt=&Apache::lonlocal::texthash(
                    679:                                'err'   => "ERROR",
                    680: 			       'uuas'  => "This user has an unrecognized authentication scheme",
                    681:                                'sldb'  => "Please specify login data below",
                    682:                                'ld'    => "Login Data"
                    683: 						   );
1.26      matthew   684: 		$r->print(<<ENDBADAUTH);
1.21      harris41  685: <hr />
1.31      matthew   686: <script type="text/javascript" language="Javascript">
1.21      harris41  687: $loginscript
1.31      matthew   688: </script>
1.73      sakharuk  689: <font color='#ff0000'>$lt{'err'}:</font>
                    690: $lt{'uuas'} ($currentauth). $lt{'sldb'}.
                    691: <h3>$lt{'ld'}</h3>
1.31      matthew   692: <p>$generalrule</p>
                    693: <p>$authformkrb</p>
                    694: <p>$authformint</p>
                    695: <p>$authformfsys</p>
                    696: <p>$authformloc</p>
1.26      matthew   697: ENDBADAUTH
                    698:             } else { 
                    699:                 # This user is not allowed to modify the users 
                    700:                 # authentication scheme, so just notify them of the problem
1.73      sakharuk  701: 		my %lt=&Apache::lonlocal::texthash(
                    702:                                'err'   => "ERROR",
                    703: 			       'uuas'  => "This user has an unrecognized authentication scheme",
                    704:                                'adcs'  => "Please alert a domain coordinator of this situation"
                    705: 						   );
1.26      matthew   706: 		$r->print(<<ENDBADAUTH);
                    707: <hr />
1.31      matthew   708: <script type="text/javascript" language="Javascript">
1.26      matthew   709: $loginscript
1.31      matthew   710: </script>
1.73      sakharuk  711: <font color="#ff0000"> $lt{'err'}: </font>
                    712: $lt{'uuas'} ($currentauth). $lt{'adcs'}.
1.26      matthew   713: <hr />
                    714: ENDBADAUTH
                    715:             }
                    716:         } else { # Authentication type is valid
1.20      harris41  717: 	    my $authformcurrent='';
1.26      matthew   718: 	    my $authform_other='';
1.94      matthew   719:             &initialize_authen_forms();
1.41      albertel  720: 	    if ($currentauth=~/^krb(4|5):/) {
1.20      harris41  721: 		$authformcurrent=$authformkrb;
1.31      matthew   722: 		$authform_other="<p>$authformint</p>\n".
                    723:                     "<p>$authformfsys</p><p>$authformloc</p>";
1.20      harris41  724: 	    }
                    725: 	    elsif ($currentauth=~/^internal:/) {
                    726: 		$authformcurrent=$authformint;
1.31      matthew   727: 		$authform_other="<p>$authformkrb</p>".
                    728:                     "<p>$authformfsys</p><p>$authformloc</p>";
1.20      harris41  729: 	    }
                    730: 	    elsif ($currentauth=~/^unix:/) {
                    731: 		$authformcurrent=$authformfsys;
1.31      matthew   732: 		$authform_other="<p>$authformkrb</p>".
                    733:                     "<p>$authformint</p><p>$authformloc;</p>";
1.20      harris41  734: 	    }
                    735: 	    elsif ($currentauth=~/^localauth:/) {
                    736: 		$authformcurrent=$authformloc;
1.31      matthew   737: 		$authform_other="<p>$authformkrb</p>".
                    738:                     "<p>$authformint</p><p>$authformfsys</p>";
1.20      harris41  739: 	    }
1.53      www       740:             $authformcurrent.=' <i>(will override current values)</i><br />';
1.42      matthew   741:             if (&Apache::lonnet::allowed('mau',$ENV{'request.role.domain'})) {
1.26      matthew   742: 		# Current user has login modification privileges
1.73      sakharuk  743: 		my %lt=&Apache::lonlocal::texthash(
                    744:                                'ccld'  => "Change Current Login Data",
                    745: 			       'enld'  => "Enter New Login Data"
                    746: 						   );
1.26      matthew   747: 		$r->print(<<ENDOTHERAUTHS);
1.21      harris41  748: <hr />
1.31      matthew   749: <script type="text/javascript" language="Javascript">
1.21      harris41  750: $loginscript
1.31      matthew   751: </script>
1.73      sakharuk  752: <h3>$lt{'ccld'}</h3>
1.31      matthew   753: <p>$generalrule</p>
                    754: <p>$authformnop</p>
                    755: <p>$authformcurrent</p>
1.73      sakharuk  756: <h3>$lt{'enld'}</h3>
1.26      matthew   757: $authform_other
                    758: ENDOTHERAUTHS
                    759:             }
                    760:         }  ## End of "check for bad authentication type" logic
1.25      matthew   761:     } ## End of new user/old user logic
1.72      sakharuk  762:     $r->print('<hr /><h3>'.&mt('Add Roles').'</h3>');
1.17      www       763: #
                    764: # Co-Author
                    765: # 
1.44      matthew   766:     if (&authorpriv($ENV{'user.name'},$ENV{'request.role.domain'}) &&
                    767:         ($ENV{'user.name'} ne $ccuname || $ENV{'user.domain'} ne $ccdomain)) {
                    768:         # No sense in assigning co-author role to yourself
1.17      www       769: 	my $cuname=$ENV{'user.name'};
1.42      matthew   770:         my $cudom=$ENV{'request.role.domain'};
1.72      sakharuk  771: 	   my %lt=&Apache::lonlocal::texthash(
                    772: 		    'cs'   => "Construction Space",
                    773:                     'act'  => "Activate",                    
                    774:                     'rol'  => "Role",
                    775:                     'ext'  => "Extent",
                    776:                     'sta'  => "Start",
1.80      www       777:                     'end'  => "End",
1.72      sakharuk  778:                     'cau'  => "Co-Author",
                    779:                     'ssd'  => "Set Start Date",
                    780:                     'sed'  => "Set End Date"
                    781: 				       );
1.17      www       782:        $r->print(<<ENDCOAUTH);
1.72      sakharuk  783: <h4>$lt{'cs'}</h4>
1.74      sakharuk  784: <table border=2><tr><th>$lt{'act'}</th><th>$lt{'rol'}</th><th>$lt{'ext'}</th>
1.72      sakharuk  785: <th>$lt{'sta'}</th><th>$lt{'end'}</th></tr>
1.17      www       786: <tr>
1.80      www       787: <td><input type=checkbox name="act_$cudom\_$cuname\_ca" /></td>
1.72      sakharuk  788: <td>$lt{'cau'}</td>
1.17      www       789: <td>$cudom\_$cuname</td>
1.80      www       790: <td><input type=hidden name="start_$cudom\_$cuname\_ca" value='' />
1.17      www       791: <a href=
1.72      sakharuk  792: "javascript:pjump('date_start','Start Date Co-Author',document.cu.start_$cudom\_$cuname\_ca.value,'start_$cudom\_$cuname\_ca','cu.pres','dateset')">$lt{'ssd'}</a></td>
1.80      www       793: <td><input type=hidden name="end_$cudom\_$cuname\_ca" value='' />
1.17      www       794: <a href=
1.72      sakharuk  795: "javascript:pjump('date_end','End Date Co-Author',document.cu.end_$cudom\_$cuname\_ca.value,'end_$cudom\_$cuname\_ca','cu.pres','dateset')">$lt{'sed'}</a></td>
1.17      www       796: </tr>
                    797: </table>
                    798: ENDCOAUTH
                    799:     }
1.8       www       800: #
                    801: # Domain level
                    802: #
1.89      raeburn   803:     my $num_domain_level = 0;
                    804:     my $domaintext = 
                    805:     '<h4>'.&mt('Domain Level').'</h4>'.
1.73      sakharuk  806:     '<table border=2><tr><th>'.&mt('Activate').'</th><th>'.&mt('Role').'</th><th>'.&mt('Extent').'</th>'.
1.89      raeburn   807:     '<th>'.&mt('Start').'</th><th>'.&mt('End').'</th></tr>';
1.24      matthew   808:     foreach ( sort( keys(%incdomains))) {
1.2       www       809: 	my $thisdomain=$_;
1.69      albertel  810:         foreach ('dc','li','dg','au','sc') {
1.2       www       811:             if (&Apache::lonnet::allowed('c'.$_,$thisdomain)) {
1.8       www       812:                my $plrole=&Apache::lonnet::plaintext($_);
1.72      sakharuk  813: 	       my %lt=&Apache::lonlocal::texthash(
                    814:                     'ssd'  => "Set Start Date",
                    815:                     'sed'  => "Set End Date"
                    816: 				       );
1.89      raeburn   817:                $num_domain_level ++;
                    818:                $domaintext .= <<"ENDDROW";
1.8       www       819: <tr>
                    820: <td><input type=checkbox name="act_$thisdomain\_$_"></td>
                    821: <td>$plrole</td>
                    822: <td>$thisdomain</td>
                    823: <td><input type=hidden name="start_$thisdomain\_$_" value=''>
                    824: <a href=
1.72      sakharuk  825: "javascript:pjump('date_start','Start Date $plrole',document.cu.start_$thisdomain\_$_.value,'start_$thisdomain\_$_','cu.pres','dateset')">$lt{'ssd'}</a></td>
1.8       www       826: <td><input type=hidden name="end_$thisdomain\_$_" value=''>
                    827: <a href=
1.72      sakharuk  828: "javascript:pjump('date_end','End Date $plrole',document.cu.end_$thisdomain\_$_.value,'end_$thisdomain\_$_','cu.pres','dateset')">$lt{'sed'}</a></td>
1.8       www       829: </tr>
                    830: ENDDROW
1.2       www       831:             }
1.24      matthew   832:         } 
                    833:     }
1.89      raeburn   834:     $domaintext.='</table>';
                    835:     if ($num_domain_level > 0) {
                    836:         $r->print($domaintext);
                    837:     }
1.8       www       838: #
                    839: # Course level
                    840: #
1.89      raeburn   841:     my $num_sections;
1.88      raeburn   842: 
                    843:     if ($ENV{'request.role'} =~ m-^dc\./(\w+)/$-) {
                    844:         $r->print(&course_level_dc($1));
                    845:         $r->print('<hr /><input type="button" value="'.&mt('Modify User').'" onClick="setCourse()">'."\n");
                    846:     } else {
                    847:         $r->print(&course_level_table(%inccourses));
1.89      raeburn   848:         $r->print('<hr /><input type="button" value="'.&mt('Modify User').'" onClick="setSections()">'."\n");
1.88      raeburn   849:     }
1.26      matthew   850:     $r->print("</form></body></html>");
1.2       www       851: }
1.1       www       852: 
1.4       www       853: # ================================================================= Phase Three
1.42      matthew   854: sub update_user_data {
1.4       www       855:     my $r=shift;
1.29      matthew   856:     my $uhome=&Apache::lonnet::homeserver($ENV{'form.ccuname'},
                    857:                                           $ENV{'form.ccdomain'});
1.27      matthew   858:     # Error messages
1.73      sakharuk  859:     my $error     = '<font color="#ff0000">'.&mt('Error').':</font>';
1.27      matthew   860:     my $end       = '</body></html>';
                    861:     # Print header
1.4       www       862:     $r->print(<<ENDTHREEHEAD);
                    863: <html>
                    864: <head>
                    865: <title>The LearningOnline Network with CAPA</title>
                    866: </head>
                    867: ENDTHREEHEAD
1.40      www       868:     my $title;
                    869:     if (exists($ENV{'form.makeuser'})) {
                    870: 	$title='Set Privileges for New User';
                    871:     } else {
                    872:         $title='Modify User Privileges';
                    873:     }
                    874:     $r->print(&Apache::loncommon::bodytag($title));
1.27      matthew   875:     # Check Inputs
1.29      matthew   876:     if (! $ENV{'form.ccuname'} ) {
1.73      sakharuk  877: 	$r->print($error.&mt('No login name specified').'.'.$end);
1.27      matthew   878: 	return;
                    879:     }
1.29      matthew   880:     if (  $ENV{'form.ccuname'}  =~/\W/) {
1.73      sakharuk  881: 	$r->print($error.&mt('Invalid login name').'.  '.
                    882: 		  &mt('Only letters, numbers, and underscores are valid').'.'.
1.27      matthew   883: 		  $end);
                    884: 	return;
                    885:     }
1.29      matthew   886:     if (! $ENV{'form.ccdomain'}       ) {
1.73      sakharuk  887: 	$r->print($error.&mt('No domain specified').'.'.$end);
1.27      matthew   888: 	return;
                    889:     }
1.29      matthew   890:     if (  $ENV{'form.ccdomain'} =~/\W/) {
1.73      sakharuk  891: 	$r->print($error.&mt ('Invalid domain name').'.  '.
                    892: 		  &mt('Only letters, numbers, and underscores are valid').'.'.
1.27      matthew   893: 		  $end);
                    894: 	return;
                    895:     }
1.29      matthew   896:     if (! exists($ENV{'form.makeuser'})) {
                    897:         # Modifying an existing user, so check the validity of the name
                    898:         if ($uhome eq 'no_host') {
1.73      sakharuk  899:             $r->print($error.&mt('Unable to determine home server for ').
                    900:                       $ENV{'form.ccuname'}.&mt(' in domain ').
1.29      matthew   901:                       $ENV{'form.ccdomain'}.'.');
                    902:             return;
                    903:         }
                    904:     }
1.27      matthew   905:     # Determine authentication method and password for the user being modified
                    906:     my $amode='';
                    907:     my $genpwd='';
                    908:     if ($ENV{'form.login'} eq 'krb') {
1.41      albertel  909: 	$amode='krb';
                    910: 	$amode.=$ENV{'form.krbver'};
1.30      matthew   911: 	$genpwd=$ENV{'form.krbarg'};
1.27      matthew   912:     } elsif ($ENV{'form.login'} eq 'int') {
                    913: 	$amode='internal';
1.30      matthew   914: 	$genpwd=$ENV{'form.intarg'};
1.27      matthew   915:     } elsif ($ENV{'form.login'} eq 'fsys') {
                    916: 	$amode='unix';
1.30      matthew   917: 	$genpwd=$ENV{'form.fsysarg'};
1.27      matthew   918:     } elsif ($ENV{'form.login'} eq 'loc') {
                    919: 	$amode='localauth';
                    920: 	$genpwd=$ENV{'form.locarg'};
                    921: 	$genpwd=" " if (!$genpwd);
1.35      matthew   922:     } elsif (($ENV{'form.login'} eq 'nochange') ||
                    923:              ($ENV{'form.login'} eq ''        )) { 
1.34      matthew   924:         # There is no need to tell the user we did not change what they
                    925:         # did not ask us to change.
1.35      matthew   926:         # If they are creating a new user but have not specified login
                    927:         # information this will be caught below.
1.30      matthew   928:     } else {
1.73      sakharuk  929: 	    $r->print($error.&mt('Invalid login mode or password').$end);    
1.30      matthew   930: 	    return;
1.27      matthew   931:     }
                    932:     if ($ENV{'form.makeuser'}) {
                    933:         # Create a new user
1.73      sakharuk  934: 	my %lt=&Apache::lonlocal::texthash(
                    935:                     'cru'  => "Creating user",                    
                    936:                     'id'   => "in domain"
                    937: 					   );
1.27      matthew   938: 	$r->print(<<ENDNEWUSERHEAD);
1.73      sakharuk  939: <h3>$lt{'cru'} "$ENV{'form.ccuname'}" $lt{'id'} "$ENV{'form.ccdomain'}"</h3>
1.27      matthew   940: ENDNEWUSERHEAD
                    941:         # Check for the authentication mode and password
                    942:         if (! $amode || ! $genpwd) {
1.73      sakharuk  943: 	    $r->print($error.&mt('Invalid login mode or password').$end);    
1.27      matthew   944: 	    return;
1.18      albertel  945: 	}
1.29      matthew   946:         # Determine desired host
                    947:         my $desiredhost = $ENV{'form.hserver'};
                    948:         if (lc($desiredhost) eq 'default') {
                    949:             $desiredhost = undef;
                    950:         } else {
1.39      matthew   951:             my %home_servers = &Apache::loncommon::get_library_servers
1.32      matthew   952:                 ($ENV{'form.ccdomain'});  
1.29      matthew   953:             if (! exists($home_servers{$desiredhost})) {
1.73      sakharuk  954:                 $r->print($error.&mt('Invalid home server specified'));
1.29      matthew   955:                 return;
                    956:             }
                    957:         }
1.27      matthew   958: 	# Call modifyuser
                    959: 	my $result = &Apache::lonnet::modifyuser
1.29      matthew   960: 	    ($ENV{'form.ccdomain'},$ENV{'form.ccuname'},$ENV{'form.cstid'},
                    961:              $amode,$genpwd,$ENV{'form.cfirst'},
                    962:              $ENV{'form.cmiddle'},$ENV{'form.clast'},$ENV{'form.cgen'},
                    963:              undef,$desiredhost
1.27      matthew   964: 	     );
1.77      www       965: 	$r->print(&mt('Generating user').': '.$result);
1.29      matthew   966:         my $home = &Apache::lonnet::homeserver($ENV{'form.ccuname'},
                    967:                                                $ENV{'form.ccdomain'});
1.77      www       968:         $r->print('<br />'.&mt('Home server').': '.$home.' '.
1.29      matthew   969:                   $Apache::lonnet::libserv{$home});
1.35      matthew   970:     } elsif (($ENV{'form.login'} ne 'nochange') &&
                    971:              ($ENV{'form.login'} ne ''        )) {
1.27      matthew   972: 	# Modify user privileges
1.73      sakharuk  973:     my %lt=&Apache::lonlocal::texthash(
                    974:                     'usr'  => "User",                    
                    975:                     'id'   => "in domain"
                    976: 				       );
1.27      matthew   977: 	$r->print(<<ENDMODIFYUSERHEAD);
1.73      sakharuk  978: <h2>$lt{'usr'} "$ENV{'form.ccuname'}" $lt{'id'} "$ENV{'form.ccdomain'}"</h2>
1.27      matthew   979: ENDMODIFYUSERHEAD
                    980:         if (! $amode || ! $genpwd) {
                    981: 	    $r->print($error.'Invalid login mode or password'.$end);    
                    982: 	    return;
1.20      harris41  983: 	}
1.27      matthew   984: 	# Only allow authentification modification if the person has authority
1.36      matthew   985: 	if (&Apache::lonnet::allowed('mau',$ENV{'form.ccdomain'})) {
1.20      harris41  986: 	    $r->print('Modifying authentication: '.
1.31      matthew   987:                       &Apache::lonnet::modifyuserauth(
1.29      matthew   988: 		       $ENV{'form.ccdomain'},$ENV{'form.ccuname'},
1.21      harris41  989:                        $amode,$genpwd));
1.73      sakharuk  990:             $r->print('<br>'.&mt('Home server').': '.&Apache::lonnet::homeserver
1.29      matthew   991: 		  ($ENV{'form.ccuname'},$ENV{'form.ccdomain'}));
1.4       www       992: 	} else {
1.27      matthew   993: 	    # Okay, this is a non-fatal error.
1.73      sakharuk  994: 	    $r->print($error.&mt('You do not have the authority to modify this users authentification information').'.');    
1.27      matthew   995: 	}
1.28      matthew   996:     }
                    997:     ##
                    998:     if (! $ENV{'form.makeuser'} ) {
                    999:         # Check for need to change
                   1000:         my %userenv = &Apache::lonnet::get
                   1001:             ('environment',['firstname','middlename','lastname','generation'],
1.29      matthew  1002:              $ENV{'form.ccdomain'},$ENV{'form.ccuname'});
1.28      matthew  1003:         my ($tmp) = keys(%userenv);
                   1004:         if ($tmp =~ /^(con_lost|error)/i) { 
                   1005:             %userenv = ();
                   1006:         }
                   1007:         # Check to see if we need to change user information
                   1008:         foreach ('firstname','middlename','lastname','generation') {
                   1009:             # Strip leading and trailing whitespace
                   1010:             $ENV{'form.c'.$_} =~ s/(\s+$|^\s+)//g; 
                   1011:         }
1.29      matthew  1012:         if (&Apache::lonnet::allowed('mau',$ENV{'form.ccdomain'}) && 
1.28      matthew  1013:             ($ENV{'form.cfirstname'}  ne $userenv{'firstname'}  ||
                   1014:              $ENV{'form.cmiddlename'} ne $userenv{'middlename'} ||
                   1015:              $ENV{'form.clastname'}   ne $userenv{'lastname'}   ||
                   1016:              $ENV{'form.cgeneration'} ne $userenv{'generation'} )) {
                   1017:             # Make the change
                   1018:             my %changeHash;
                   1019:             $changeHash{'firstname'}  = $ENV{'form.cfirstname'};
                   1020:             $changeHash{'middlename'} = $ENV{'form.cmiddlename'};
                   1021:             $changeHash{'lastname'}   = $ENV{'form.clastname'};
                   1022:             $changeHash{'generation'} = $ENV{'form.cgeneration'};
                   1023:             my $putresult = &Apache::lonnet::put
                   1024:                 ('environment',\%changeHash,
1.29      matthew  1025:                  $ENV{'form.ccdomain'},$ENV{'form.ccuname'});
1.28      matthew  1026:             if ($putresult eq 'ok') {
                   1027:             # Tell the user we changed the name
1.73      sakharuk 1028: 		my %lt=&Apache::lonlocal::texthash(
                   1029:                              'uic'  => "User Information Changed",             
                   1030:                              'frst' => "first",
                   1031:                              'mddl' => "middle",
                   1032:                              'lst'  => "last",
                   1033: 			     'gen'  => "generation",
                   1034:                              'prvs' => "Previous",
                   1035:                              'chto' => "Changed To"
                   1036: 						   );
1.28      matthew  1037:                 $r->print(<<"END");
                   1038: <table border="2">
1.73      sakharuk 1039: <caption>$lt{'uic'}</caption>
1.28      matthew  1040: <tr><th>&nbsp;</th>
1.73      sakharuk 1041:     <th>$lt{'frst'}</th>
                   1042:     <th>$lt{'mddl'}</th>
                   1043:     <th>$lt{'lst'}</th>
                   1044:     <th>$lt{'gen'}</th></tr>
                   1045: <tr><td>$lt{'prvs'}</td>
1.28      matthew  1046:     <td>$userenv{'firstname'}  </td>
                   1047:     <td>$userenv{'middlename'} </td>
                   1048:     <td>$userenv{'lastname'}   </td>
                   1049:     <td>$userenv{'generation'} </td></tr>
1.73      sakharuk 1050: <tr><td>$lt{'chto'}</td>
1.28      matthew  1051:     <td>$ENV{'form.cfirstname'}  </td>
                   1052:     <td>$ENV{'form.cmiddlename'} </td>
                   1053:     <td>$ENV{'form.clastname'}   </td>
                   1054:     <td>$ENV{'form.cgeneration'} </td></tr>
                   1055: </table>
                   1056: END
                   1057:             } else { # error occurred
1.73      sakharuk 1058:                 $r->print("<h2>".&mt('Unable to successfully change environment for')." ".
                   1059:                       $ENV{'form.ccuname'}." ".&mt('in domain')." ".
1.29      matthew  1060:                       $ENV{'form.ccdomain'}."</h2>");
1.28      matthew  1061:             }
                   1062:         }  else { # End of if ($ENV ... ) logic
                   1063:             # They did not want to change the users name but we can
                   1064:             # still tell them what the name is
1.73      sakharuk 1065: 	    my %lt=&Apache::lonlocal::texthash(
                   1066:                            'usr'  => "User",                    
                   1067:                            'id'   => "in domain",
                   1068:                            'gen'  => "Generation"
                   1069: 					       );
1.28      matthew  1070:                 $r->print(<<"END");
1.74      sakharuk 1071: <h2>$lt{'usr'} "$ENV{'form.ccuname'}" $lt{'id'} "$ENV{'form.ccdomain'}"</h2>
1.28      matthew  1072: <h4>$userenv{'firstname'} $userenv{'middlename'} $userenv{'lastname'} </h4>
1.73      sakharuk 1073: <h4>$lt{'gen'}: $userenv{'generation'}</h4>
1.28      matthew  1074: END
                   1075:         }
1.4       www      1076:     }
1.27      matthew  1077:     ##
1.4       www      1078:     my $now=time;
1.73      sakharuk 1079:     $r->print('<h3>'.&mt('Modifying Roles').'</h3>');
1.24      matthew  1080:     foreach (keys (%ENV)) {
1.27      matthew  1081: 	next if (! $ENV{$_});
                   1082: 	# Revoke roles
                   1083: 	if ($_=~/^form\.rev/) {
1.64      www      1084: 	    if ($_=~/^form\.rev\:([^\_]+)\_([^\_\.]+)$/) {
                   1085: # Revoke standard role
1.73      sakharuk 1086: 	        $r->print(&mt('Revoking').' '.$2.' in '.$1.': <b>'.
1.65      www      1087:                      &Apache::lonnet::revokerole($ENV{'form.ccdomain'},
                   1088:                      $ENV{'form.ccuname'},$1,$2).'</b><br>');
1.53      www      1089: 		if ($2 eq 'st') {
                   1090: 		    $1=~/^\/(\w+)\/(\w+)/;
                   1091: 		    my $cid=$1.'_'.$2;
1.73      sakharuk 1092: 		    $r->print(&mt('Drop from classlist').': <b>'.
1.53      www      1093: 			 &Apache::lonnet::critical('put:'.
                   1094:                              $ENV{'course.'.$cid.'.domain'}.':'.
                   1095: 	                     $ENV{'course.'.$cid.'.num'}.':classlist:'.
                   1096:                          &Apache::lonnet::escape($ENV{'form.ccuname'}.':'.
                   1097:                              $ENV{'form.ccdomain'}).'='.
                   1098:                          &Apache::lonnet::escape($now.':'),
1.56      www      1099: 	                     $ENV{'course.'.$cid.'.home'}).'</b><br>');
1.53      www      1100: 		}
                   1101: 	    } 
1.64      www      1102: 	    if ($_=~/^form\.rev\:([^\_]+)\_cr\.cr\/(\w+)\/(\w+)\/(\w+)$/) {
                   1103: # Revoke custom role
1.73      sakharuk 1104: 		$r->print(&mt('Revoking custom role').
                   1105:                       ' '.$4.' by '.$3.'@'.$2.' in '.$1.': <b>'.
                   1106:                       &Apache::lonnet::revokecustomrole($ENV{'form.ccdomain'},
1.65      www      1107: 				  $ENV{'form.ccuname'},$1,$2,$3,$4).
1.64      www      1108: 		'</b><br>');
                   1109: 	    }
1.53      www      1110: 	} elsif ($_=~/^form\.del/) {
                   1111: 	    if ($_=~/^form\.del\:([^\_]+)\_([^\_]+)$/) {
1.73      sakharuk 1112: 	        $r->print(&mt('Deleting').' '.$2.' in '.$1.': '.
1.53      www      1113:                      &Apache::lonnet::assignrole($ENV{'form.ccdomain'},
                   1114:                      $ENV{'form.ccuname'},$1,$2,$now,0,1).'<br>');
1.27      matthew  1115: 		if ($2 eq 'st') {
                   1116: 		    $1=~/^\/(\w+)\/(\w+)/;
                   1117: 		    my $cid=$1.'_'.$2;
1.73      sakharuk 1118: 		    $r->print(&mt('Drop from classlist').': <b>'.
1.27      matthew  1119: 			 &Apache::lonnet::critical('put:'.
                   1120:                              $ENV{'course.'.$cid.'.domain'}.':'.
                   1121: 	                     $ENV{'course.'.$cid.'.num'}.':classlist:'.
1.29      matthew  1122:                          &Apache::lonnet::escape($ENV{'form.ccuname'}.':'.
                   1123:                              $ENV{'form.ccdomain'}).'='.
1.27      matthew  1124:                          &Apache::lonnet::escape($now.':'),
1.56      www      1125: 	                     $ENV{'course.'.$cid.'.home'}).'</b><br>');
1.81      albertel 1126: 		}
                   1127: 	    } 
                   1128: 	} elsif ($_=~/^form\.ren/) {
                   1129: 	    if ($_=~/^form\.ren\:([^\_]+)\_([^\_]+)$/) {
1.89      raeburn  1130:                 my $url = $1;
                   1131:                 my $role = $2;
                   1132:                 my $logmsg;
                   1133:                 my $output;
                   1134:                 if ($role eq 'st') {
                   1135:                     if ($url =~ m-^/(\w+)/(\w+)/?(\w*)$-) {
                   1136:                         my $result = &commit_studentrole(\$logmsg,$url,$role,$now,0,$1,$2,$3);
                   1137:                         if (($result =~ /^error/) || ($result eq 'not_in_class') || ($result eq 'unknown_course')) {
                   1138:                             $output = "Error: $result\n";
                   1139:                         } else {
                   1140:                             $output = &mt('Assigning').' '.$role.' in '.$url.
                   1141:                                       &mt('starting').' '.localtime($now).
                   1142:                                       ': <br />'.$logmsg.'<br />'.
                   1143:                                       &mt('Add to classlist').': <b>ok</b><br />';
                   1144:                         }
                   1145:                     }
                   1146:                 } else {
                   1147: 		    my $result=&Apache::lonnet::assignrole($ENV{'form.ccdomain'},
                   1148:                                $ENV{'form.ccuname'},$url,$role,0,$now);
                   1149: 		    $output = &mt('Re-Enabling [_1] in [_2]: [_3]',
                   1150: 			      $role,$url,$result).'<br />';
1.27      matthew  1151: 		}
1.89      raeburn  1152:                 $r->print($output);
1.27      matthew  1153: 	    } 
                   1154: 	} elsif ($_=~/^form\.act/) {
1.83      albertel 1155: 	    if ($_=~/^form\.act\_([^\_]+)\_([^\_]+)\_cr_cr_([^\_]+)_(\w+)_([^\_]+)$/) {
1.65      www      1156:                 # Activate a custom role
1.83      albertel 1157: 		my ($one,$two,$three,$four,$five)=($1,$2,$3,$4,$5);
                   1158: 		my $url='/'.$one.'/'.$two;
                   1159: 		my $full=$one.'_'.$two.'_cr_cr_'.$three.'_'.$four.'_'.$five;
1.65      www      1160: 
1.88      raeburn  1161:                 my $start = ( $ENV{'form.start_'.$full} ?
                   1162:                               $ENV{'form.start_'.$full} :
                   1163:                               $now );
                   1164:                 my $end   = ( $ENV{'form.end_'.$full} ?
                   1165:                               $ENV{'form.end_'.$full} :
                   1166:                               0 );
                   1167:                                                                                      
                   1168:                 # split multiple sections
                   1169:                 my %sections = ();
1.89      raeburn  1170:                 my $num_sections = &build_roles($ENV{'form.sec_'.$full},\%sections,$5);
1.88      raeburn  1171:                 if ($num_sections == 0) {
                   1172:                     $r->print(&commit_customrole($url,$three,$four,$five,$start,$end));
                   1173:                 } else {
                   1174:                     foreach (sort {$a cmp $b} keys %sections) {
                   1175:                         my $securl = $url.'/'.$_;
                   1176: 		        $r->print(&commit_customrole($securl,$three,$four,$five,$start,$end));
                   1177:                     }
                   1178:                 }
1.65      www      1179: 	    } elsif ($_=~/^form\.act\_([^\_]+)\_([^\_]+)\_([^\_]+)$/) {
1.27      matthew  1180: 		# Activate roles for sections with 3 id numbers
                   1181: 		# set start, end times, and the url for the class
1.83      albertel 1182: 		my ($one,$two,$three)=($1,$2,$3);
                   1183: 		my $start = ( $ENV{'form.start_'.$one.'_'.$two.'_'.$three} ? 
                   1184: 			      $ENV{'form.start_'.$one.'_'.$two.'_'.$three} : 
1.27      matthew  1185: 			      $now );
1.83      albertel 1186: 		my $end   = ( $ENV{'form.end_'.$one.'_'.$two.'_'.$three} ? 
                   1187: 			      $ENV{'form.end_'.$one.'_'.$two.'_'.$three} :
1.27      matthew  1188: 			      0 );
1.83      albertel 1189: 		my $url='/'.$one.'/'.$two;
1.88      raeburn  1190:                 my $type = 'three';
                   1191:                 # split multiple sections
                   1192:                 my %sections = ();
1.89      raeburn  1193:                 my $num_sections = &build_roles($ENV{'form.sec_'.$one.'_'.$two.'_'.$three},\%sections,$three);
1.88      raeburn  1194:                 if ($num_sections == 0) {
1.89      raeburn  1195:                     $r->print(&commit_standardrole($url,$three,$start,$end,$one,$two,''));
1.88      raeburn  1196:                 } else {
                   1197:                     my $emptysec = 0;
                   1198:                     foreach my $sec (sort {$a cmp $b} keys %sections) {
                   1199:                         $sec =~ s/\W//g;
                   1200:                         if ($sec ne '') {  
                   1201:                             my $securl = $url.'/'.$sec;
1.89      raeburn  1202:                             $r->print(&commit_standardrole($securl,$three,$start,$end,$one,$two,$sec));
1.88      raeburn  1203:                         } else {
                   1204:                             $emptysec = 1;
                   1205:                         }
                   1206:                     }
                   1207:                     if ($emptysec) {
1.89      raeburn  1208:                         $r->print(&commit_standardrole($url,$three,$start,$end,$one,$two,''));
1.88      raeburn  1209:                     }
                   1210:                 } 
1.27      matthew  1211: 	    } elsif ($_=~/^form\.act\_([^\_]+)\_([^\_]+)$/) {
                   1212: 		# Activate roles for sections with two id numbers
                   1213: 		# set start, end times, and the url for the class
                   1214: 		my $start = ( $ENV{'form.start_'.$1.'_'.$2} ? 
                   1215: 			      $ENV{'form.start_'.$1.'_'.$2} : 
                   1216: 			      $now );
                   1217: 		my $end   = ( $ENV{'form.end_'.$1.'_'.$2} ? 
                   1218: 			      $ENV{'form.end_'.$1.'_'.$2} :
                   1219: 			      0 );
                   1220: 		my $url='/'.$1.'/';
1.88      raeburn  1221:                 # split multiple sections
                   1222:                 my %sections = ();
1.89      raeburn  1223:                 my $num_sections = &build_roles($ENV{'form.sec_'.$1.'_'.$2},\%sections,$2);
1.88      raeburn  1224:                 if ($num_sections == 0) {
1.89      raeburn  1225:                     $r->print(&commit_standardrole($url,$2,$start,$end,$1,undef,''));
1.88      raeburn  1226:                 } else {
                   1227:                     my $emptysec = 0;
                   1228:                     foreach my $sec (sort {$a cmp $b} keys %sections) {
                   1229:                         if ($sec ne '') {
                   1230:                             my $securl = $url.'/'.$sec;
1.89      raeburn  1231:                             $r->print(&commit_standardrole($securl,$2,$start,$end,$1,undef,$sec));
1.88      raeburn  1232:                         } else {
                   1233:                             $emptysec = 1;
                   1234:                         }
                   1235:                     }
                   1236:                     if ($emptysec) {
1.89      raeburn  1237:                         $r->print(&commit_standardrole($url,$2,$start,$end,$1,undef,''));
1.88      raeburn  1238:                     }
                   1239:                 }
1.27      matthew  1240: 		# Assign the role and report it.
1.73      sakharuk 1241: 		$r->print(&mt('Assigning').' '.$2.' in '.$url.': '.
                   1242:                          ($start?', '.&mt('starting').' '.localtime($start):'').
                   1243:                          ($end?', '.&mt('ending').' '.localtime($end):'').': <b>'.
1.27      matthew  1244:                           &Apache::lonnet::assignrole(
1.29      matthew  1245:                               $ENV{'form.ccdomain'},$ENV{'form.ccuname'},
1.27      matthew  1246:                               $url,$2,$end,$start)
1.56      www      1247: 			  .'</b><br>');
1.64      www      1248: 	    } else {
1.73      sakharuk 1249: 		$r->print('<p>'.&mt('ERROR').': '.&mt('Unknown command').' <tt>'.$_.'</tt></p><br>');
1.64      www      1250:             }
1.27      matthew  1251: 	} 
                   1252:     } # End of foreach (keys(%ENV))
1.75      www      1253: # Flush the course logs so reverse user roles immediately updated
                   1254:     &Apache::lonnet::flushcourselogs();
1.5       www      1255:     $r->print('</body></html>');
1.4       www      1256: }
                   1257: 
1.88      raeburn  1258: sub commit_customrole {
                   1259:     my ($url,$three,$four,$five,$end,$start) = @_;
                   1260:     my $output = &mt('Assigning custom role').' "'.$five.'" by '.$four.'@'.$three.' in '.$url.
                   1261:                          ($start?', '.&mt('starting').' '.localtime($start):'').
                   1262:                          ($end?', ending '.localtime($end):'').': <b>'.
                   1263:               &Apache::lonnet::assigncustomrole(
                   1264:         $ENV{'form.ccdomain'},$ENV{'form.ccuname'},$url,$three,$four,$five,$end,$start).
                   1265:               '</b><br>';
                   1266:     return $output;
                   1267: }
                   1268: 
                   1269: sub commit_standardrole {
1.89      raeburn  1270:     my ($url,$three,$start,$end,$one,$two,$sec) = @_;
                   1271:     my $output;
                   1272:     my $logmsg;
                   1273:     if ($three eq 'st') {
                   1274:         my $result = &commit_studentrole(\$logmsg,$url,$three,$start,$end,$one,$two,$sec);
                   1275:         if (($result =~ /^error/) || ($result eq 'not_in_class') || ($result eq 'unknown_course')) {
                   1276:             $output = "Error: $result\n"; 
                   1277:         } else {
                   1278:             $output = &mt('Assigning').' '.$three.' in '.$url.
                   1279:                ($start?', '.&mt('starting').' '.localtime($start):'').
                   1280:                ($end?', '.&mt('ending').' '.localtime($end):'').
                   1281:                ': <b>'.$result.'</b><br />'.
                   1282:                &mt('Add to classlist').': <b>ok</b><br />';
                   1283:         }
                   1284:     } else {
1.92      raeburn  1285:         $output = &mt('Assigning').' '.$three.' in '.$url.
1.89      raeburn  1286:                ($start?', '.&mt('starting').' '.localtime($start):'').
                   1287:                ($end?', '.&mt('ending').' '.localtime($end):'').': <b>'.
                   1288:                &Apache::lonnet::assignrole(
                   1289:                    $ENV{'form.ccdomain'},$ENV{'form.ccuname'},
                   1290:                    $url,$three,$end,$start).
1.92      raeburn  1291:                    '</b><br>';
1.88      raeburn  1292:     }
                   1293:     return $output;
                   1294: }
                   1295: 
1.89      raeburn  1296: sub commit_studentrole {
                   1297:     my ($logmsg,$url,$three,$start,$end,$one,$two,$sec) = @_;
                   1298:     my $udom = $ENV{'form.ccdomain'};
                   1299:     my $uname = $ENV{'form.ccuname'};
                   1300:     my $linefeed =  '<br />'."\n";
                   1301:     my $result;
                   1302:     if (defined($one) && defined($two)) {
                   1303:         my $cid=$one.'_'.$two;
                   1304:         my $oldsec=&Apache::lonnet::getsection($udom,$uname,$cid);
                   1305:         my $secchange = 0;
                   1306:         my $expire_role_result;
                   1307:         my $modify_section_result;
                   1308:         unless ($oldsec eq '-1') {
                   1309:             unless ($sec eq $oldsec) {
                   1310:                 $secchange = 1;
                   1311:                 my $uurl='/'.$cid;
                   1312:                 $uurl=~s/\_/\//g;
                   1313:                 if ($oldsec) {
                   1314:                     $uurl.='/'.$oldsec;
                   1315:                 }
                   1316:                 $expire_role_result = &Apache::lonnet::assignrole($udom,$uname,$uurl,'st',time);
                   1317:                 $result = $expire_role_result;
                   1318:             }
                   1319:         }
                   1320:         if (($expire_role_result eq 'ok') || ($secchange == 0)) {
                   1321:             $modify_section_result = &Apache::lonnet::modify_student_enrollment($udom,$uname,undef,undef,undef,undef,undef,$sec,$end,$start,'','',$cid);
                   1322:             if ($modify_section_result =~ /^ok/) {
                   1323:                 if ($secchange == 1) {
                   1324:                     $$logmsg .= "Section for $uname switched from old section: $oldsec to new section: $sec".$linefeed;
                   1325:                 } elsif ($oldsec eq '-1') {
                   1326:                     $$logmsg .= "New student role for $uname in section $sec in course $cid".$linefeed;
                   1327:                 } else {
                   1328:                     $$logmsg .= "Student $uname assigned to unchanged section $sec in course $cid".$linefeed;
                   1329:                 }
                   1330:             } else {
                   1331:                 $$logmsg .= "Error when attempting section change for $uname from old section $oldsec to new section: $sec in course $cid -error: $modify_section_result".$linefeed;
                   1332:             }
                   1333:             $result = $modify_section_result;
                   1334:         } elsif ($secchange == 1) {
                   1335:             $$logmsg .= "Error when attempting to expire role for $uname in old section $oldsec in course $cid -error: $expire_role_result".$linefeed;
                   1336:         }
                   1337:     } else {
                   1338:         $$logmsg .= "Incomplete course id defined.  Addition of user $uname from domain $udom to course $one\_$two, section $sec not completed.$linefeed";
                   1339:         $result = "Error: incomplete course id\n";
                   1340:     }
                   1341:     return $result;
                   1342: }
1.88      raeburn  1343: 
                   1344: sub build_roles {
1.89      raeburn  1345:     my ($sectionstr,$sections,$role) = @_;
1.88      raeburn  1346:     my $num_sections = 0;
                   1347:     if ($sectionstr=~ /,/) {
                   1348:         my @secnums = split/,/,$sectionstr;
1.89      raeburn  1349:         if ($role eq 'st') {
                   1350:             $secnums[0] =~ s/\W//g;
                   1351:             $$sections{$secnums[0]} = 1;
                   1352:             $num_sections = 1;
                   1353:         } else {
                   1354:             foreach my $sec (@secnums) {
                   1355:                 $sec =~ ~s/\W//g;
                   1356:                 unless ($sec eq "") {
                   1357:                     if (exists($$sections{$sec})) {
                   1358:                         $$sections{$sec} ++;
                   1359:                     } else {
                   1360:                         $$sections{$sec} = 1;
                   1361:                         $num_sections ++;
                   1362:                     }
1.88      raeburn  1363:                 }
                   1364:             }
                   1365:         }
                   1366:     } else {
                   1367:         $sectionstr=~s/\W//g;
                   1368:         unless ($sectionstr eq '') {
                   1369:             $$sections{$sectionstr} = 1;
                   1370:             $num_sections ++;
                   1371:         }
                   1372:     }
                   1373:                                                                                      
                   1374:     return $num_sections;
                   1375: }
                   1376: 
1.58      www      1377: # ========================================================== Custom Role Editor
                   1378: 
                   1379: sub custom_role_editor {
                   1380:     my $r=shift;
                   1381:     my $rolename=$ENV{'form.rolename'};
                   1382: 
1.59      www      1383:     if ($rolename eq 'make new role') {
                   1384: 	$rolename=$ENV{'form.newrolename'};
                   1385:     }
                   1386: 
1.63      www      1387:     $rolename=~s/[^A-Za-z0-9]//gs;
1.58      www      1388: 
                   1389:     unless ($rolename) {
                   1390: 	&print_username_entry_form($r);
                   1391:         return;
                   1392:     }
                   1393: 
                   1394:     $r->print(&Apache::loncommon::bodytag(
1.59      www      1395:                      'Create Users, Change User Privileges').'<h2>');
1.61      www      1396:     my $syspriv='';
                   1397:     my $dompriv='';
                   1398:     my $coursepriv='';
1.59      www      1399:     my ($rdummy,$roledef)=
                   1400: 			 &Apache::lonnet::get('roles',["rolesdef_$rolename"]);
1.60      www      1401: # ------------------------------------------------------- Does this role exist?
1.59      www      1402:     if (($rdummy ne 'con_lost') && ($roledef ne '')) {
1.73      sakharuk 1403: 	$r->print(&mt('Existing Role').' "');
1.61      www      1404: # ------------------------------------------------- Get current role privileges
                   1405: 	($syspriv,$dompriv,$coursepriv)=split(/\_/,$roledef);
1.59      www      1406:     } else {
1.73      sakharuk 1407: 	$r->print(&mt('New Role').' "');
1.59      www      1408: 	$roledef='';
                   1409:     }
                   1410:     $r->print($rolename.'"</h2>');
1.60      www      1411: # ------------------------------------------------------- What can be assigned?
                   1412:     my %full=();
                   1413:     my %courselevel=();
1.61      www      1414:     my %courselevelcurrent=();
1.60      www      1415:     foreach (split(/\:/,$Apache::lonnet::pr{'cr:c'})) {
                   1416: 	my ($priv,$restrict)=split(/\&/,$_);
                   1417:         unless ($restrict) { $restrict='F'; }
                   1418:         $courselevel{$priv}=$restrict;
1.61      www      1419:         if ($coursepriv=~/\:$priv/) {
                   1420: 	    $courselevelcurrent{$priv}=1;
                   1421: 	}
1.60      www      1422: 	$full{$priv}=1;
                   1423:     }
                   1424:     my %domainlevel=();
1.61      www      1425:     my %domainlevelcurrent=();
1.60      www      1426:     foreach (split(/\:/,$Apache::lonnet::pr{'cr:d'})) {
                   1427: 	my ($priv,$restrict)=split(/\&/,$_);
                   1428:         unless ($restrict) { $restrict='F'; }
                   1429:         $domainlevel{$priv}=$restrict;
1.61      www      1430:         if ($dompriv=~/\:$priv/) {
                   1431: 	    $domainlevelcurrent{$priv}=1;
                   1432: 	}
1.60      www      1433: 	$full{$priv}=1;
                   1434:     }
1.61      www      1435:     my %systemlevel=();
                   1436:     my %systemlevelcurrent=();
                   1437:     foreach (split(/\:/,$Apache::lonnet::pr{'cr:s'})) {
                   1438: 	my ($priv,$restrict)=split(/\&/,$_);
                   1439:         unless ($restrict) { $restrict='F'; }
                   1440:         $systemlevel{$priv}=$restrict;
                   1441:         if ($syspriv=~/\:$priv/) {
                   1442: 	    $systemlevelcurrent{$priv}=1;
                   1443: 	}
                   1444: 	$full{$priv}=1;
                   1445:     }
1.73      sakharuk 1446:     my %lt=&Apache::lonlocal::texthash(
                   1447: 		    'prv'  => "Privilege",
                   1448: 		    'crl'  => "Course Level",
                   1449:                     'dml'  => "Domain Level",
                   1450:                     'ssl'  => "System Level"
                   1451: 				       );
1.61      www      1452:     $r->print(<<ENDCCF);
                   1453: <form method="post">
                   1454: <input type="hidden" name="phase" value="set_custom_roles" />
                   1455: <input type="hidden" name="rolename" value="$rolename" />
                   1456: <table border="2">
1.73      sakharuk 1457: <tr><th>$lt{'prv'}</th><th>$lt{'crl'}</th><th>$lt{'dml'}</th>
                   1458: <th>$lt{'ssl'}</th></tr>
1.61      www      1459: ENDCCF
1.60      www      1460:     foreach (sort keys %full) {
                   1461: 	$r->print('<tr><td>'.&Apache::lonnet::plaintext($_).'</td><td>'.
1.61      www      1462:     ($courselevel{$_}?'<input type="checkbox" name="'.$_.':c" '.
                   1463:     ($courselevelcurrent{$_}?'checked="1"':'').' />':'&nbsp;').
                   1464:     '</td><td>'.
                   1465:     ($domainlevel{$_}?'<input type="checkbox" name="'.$_.':d" '.
                   1466:     ($domainlevelcurrent{$_}?'checked="1"':'').' />':'&nbsp;').
                   1467:     '</td><td>'.
                   1468:     ($systemlevel{$_}?'<input type="checkbox" name="'.$_.':s" '.
                   1469:     ($systemlevelcurrent{$_}?'checked="1"':'').' />':'&nbsp;').
                   1470:     '</td></tr>');
1.60      www      1471:     }
1.61      www      1472:     $r->print(
1.73      sakharuk 1473:    '<table><input type="submit" value="'.&mt('Define Role').'" /></form></body></html>');
1.61      www      1474: }
                   1475: 
                   1476: # ---------------------------------------------------------- Call to definerole
                   1477: sub set_custom_role {
                   1478:     my $r=shift;
                   1479: 
                   1480:     my $rolename=$ENV{'form.rolename'};
                   1481: 
1.63      www      1482:     $rolename=~s/[^A-Za-z0-9]//gs;
1.61      www      1483: 
                   1484:     unless ($rolename) {
                   1485: 	&print_username_entry_form($r);
                   1486:         return;
                   1487:     }
                   1488: 
                   1489:     $r->print(&Apache::loncommon::bodytag(
                   1490:                      'Create Users, Change User Privileges').'<h2>');
                   1491:     my ($rdummy,$roledef)=
                   1492: 			 &Apache::lonnet::get('roles',["rolesdef_$rolename"]);
                   1493: # ------------------------------------------------------- Does this role exist?
                   1494:     if (($rdummy ne 'con_lost') && ($roledef ne '')) {
1.73      sakharuk 1495: 	$r->print(&mt('Existing Role').' "');
1.61      www      1496:     } else {
1.73      sakharuk 1497: 	$r->print(&mt('New Role').' "');
1.61      www      1498: 	$roledef='';
                   1499:     }
                   1500:     $r->print($rolename.'"</h2>');
                   1501: # ------------------------------------------------------- What can be assigned?
                   1502:     my $sysrole='';
                   1503:     my $domrole='';
                   1504:     my $courole='';
                   1505: 
                   1506:     foreach (split(/\:/,$Apache::lonnet::pr{'cr:c'})) {
                   1507: 	my ($priv,$restrict)=split(/\&/,$_);
                   1508:         unless ($restrict) { $restrict=''; }
                   1509:         if ($ENV{'form.'.$priv.':c'}) {
                   1510: 	    $courole.=':'.$_;
                   1511: 	}
                   1512:     }
                   1513: 
                   1514:     foreach (split(/\:/,$Apache::lonnet::pr{'cr:d'})) {
                   1515: 	my ($priv,$restrict)=split(/\&/,$_);
                   1516:         unless ($restrict) { $restrict=''; }
                   1517:         if ($ENV{'form.'.$priv.':d'}) {
                   1518: 	    $domrole.=':'.$_;
                   1519: 	}
                   1520:     }
                   1521: 
                   1522:     foreach (split(/\:/,$Apache::lonnet::pr{'cr:s'})) {
                   1523: 	my ($priv,$restrict)=split(/\&/,$_);
                   1524:         unless ($restrict) { $restrict=''; }
                   1525:         if ($ENV{'form.'.$priv.':s'}) {
                   1526: 	    $sysrole.=':'.$_;
                   1527: 	}
                   1528:     }
1.63      www      1529:     $r->print('<br />Defining Role: '.
1.61      www      1530: 	   &Apache::lonnet::definerole($rolename,$sysrole,$domrole,$courole));
1.63      www      1531:     if ($ENV{'request.course.id'}) {
                   1532:         my $url='/'.$ENV{'request.course.id'};
                   1533:         $url=~s/\_/\//g;
1.73      sakharuk 1534: 	$r->print('<br />'.&mt('Assigning Role to Self').': '.
1.63      www      1535: 	      &Apache::lonnet::assigncustomrole($ENV{'user.domain'},
                   1536: 						$ENV{'user.name'},
                   1537: 						$url,
                   1538: 						$ENV{'user.domain'},
                   1539: 						$ENV{'user.name'},
                   1540: 						$rolename));
                   1541:     }
1.61      www      1542:     $r->print('</body></html>');
1.58      www      1543: }
                   1544: 
1.2       www      1545: # ================================================================ Main Handler
                   1546: sub handler {
                   1547:     my $r = shift;
                   1548: 
                   1549:     if ($r->header_only) {
1.68      www      1550:        &Apache::loncommon::content_type($r,'text/html');
1.2       www      1551:        $r->send_http_header;
                   1552:        return OK;
                   1553:     }
                   1554: 
                   1555:     if ((&Apache::lonnet::allowed('cta',$ENV{'request.course.id'})) ||
                   1556:         (&Apache::lonnet::allowed('cin',$ENV{'request.course.id'})) || 
                   1557:         (&Apache::lonnet::allowed('ccr',$ENV{'request.course.id'})) || 
                   1558:         (&Apache::lonnet::allowed('cep',$ENV{'request.course.id'})) ||
1.42      matthew  1559:         (&Apache::lonnet::allowed('cca',$ENV{'request.role.domain'})) ||
                   1560:         (&Apache::lonnet::allowed('mau',$ENV{'request.role.domain'}))) {
1.68      www      1561:        &Apache::loncommon::content_type($r,'text/html');
1.2       www      1562:        $r->send_http_header;
                   1563:        unless ($ENV{'form.phase'}) {
1.42      matthew  1564: 	   &print_username_entry_form($r);
1.2       www      1565:        }
1.42      matthew  1566:        if ($ENV{'form.phase'} eq 'get_user_info') {
                   1567:            &print_user_modification_page($r);
                   1568:        } elsif ($ENV{'form.phase'} eq 'update_user_data') {
                   1569:            &update_user_data($r);
1.58      www      1570:        } elsif ($ENV{'form.phase'} eq 'selected_custom_edit') {
                   1571:            &custom_role_editor($r);
1.61      www      1572:        } elsif ($ENV{'form.phase'} eq 'set_custom_roles') {
                   1573: 	   &set_custom_role($r);
1.2       www      1574:        }
1.1       www      1575:    } else {
                   1576:       $ENV{'user.error.msg'}=
1.9       albertel 1577:         "/adm/createuser:mau:0:0:Cannot modify user data";
1.1       www      1578:       return HTTP_NOT_ACCEPTABLE; 
                   1579:    }
                   1580:    return OK;
                   1581: } 
1.26      matthew  1582: 
1.27      matthew  1583: #-------------------------------------------------- functions for &phase_two
1.26      matthew  1584: sub course_level_table {
1.89      raeburn  1585:     my (%inccourses) = @_;
1.26      matthew  1586:     my $table = '';
1.62      www      1587: # Custom Roles?
                   1588: 
                   1589:     my %customroles=&my_custom_roles();
1.89      raeburn  1590:     my %lt=&Apache::lonlocal::texthash(
                   1591:             'exs'  => "Existing sections",
                   1592:             'new'  => "Define new section",
                   1593:             'ssd'  => "Set Start Date",
                   1594:             'sed'  => "Set End Date",
                   1595:             'crl'  => "Course Level",
                   1596:             'act'  => "Activate",
                   1597:             'rol'  => "Role",
                   1598:             'ext'  => "Extent",
                   1599:             'grs'  => "Group/Section",
                   1600:             'sta'  => "Start",
                   1601:             'end'  => "End"
                   1602:     );
1.62      www      1603: 
1.26      matthew  1604:     foreach (sort( keys(%inccourses))) {
                   1605: 	my $thiscourse=$_;
                   1606: 	my $protectedcourse=$_;
                   1607: 	$thiscourse=~s:_:/:g;
                   1608: 	my %coursedata=&Apache::lonnet::coursedescription($thiscourse);
                   1609: 	my $area=$coursedata{'description'};
1.72      sakharuk 1610: 	if (!defined($area)) { $area=&mt('Unavailable course').': '.$_; }
1.26      matthew  1611: 	my $bgcol=$thiscourse;
1.62      www      1612: 	$bgcol=~s/[^7-9a-e]//g;
                   1613: 	$bgcol=substr($bgcol.$bgcol.$bgcol.'ffffff',2,6);
1.89      raeburn  1614: 	my ($domain,$cnum)=split(/\//,$thiscourse);
                   1615:         my %sections_count = ();
1.92      raeburn  1616:         my $num_sections = 0;
                   1617:         if (defined($ENV{'request.course.id'})) {
                   1618:             if ($ENV{'request.course.id'} eq $domain.'_'.$cnum) {
                   1619:                 $num_sections = &Apache::loncommon::get_sections($domain,$cnum,\%sections_count);
                   1620:             }
                   1621:         }
1.26      matthew  1622: 	foreach  ('st','ta','ep','ad','in','cc') {
                   1623: 	    if (&Apache::lonnet::allowed('c'.$_,$thiscourse)) {
                   1624: 		my $plrole=&Apache::lonnet::plaintext($_);
                   1625: 		$table .= <<ENDEXTENT;
                   1626: <tr bgcolor="#$bgcol">
                   1627: <td><input type="checkbox" name="act_$protectedcourse\_$_"></td>
                   1628: <td>$plrole</td>
1.82      albertel 1629: <td>$area<br />Domain: $domain</td>
1.26      matthew  1630: ENDEXTENT
                   1631: 	        if ($_ ne 'cc') {
1.89      raeburn  1632:                     if ($num_sections > 0) {
                   1633:                         my $currsec = &course_sections($num_sections,\%sections_count,$protectedcourse.'_'.$_);
                   1634:                         $table .= 
                   1635:                     '<td><table border="0" cellspacing="0" cellpadding="0">'.
                   1636:                      '<tr><td valign="top">'.$lt{'exs'}.'<br />'.
                   1637:                         $currsec.'</td>'.
                   1638:                      '<td>&nbsp;&nbsp;</td>'.
                   1639:                      '<td valign="top">&nbsp;'.$lt{'new'}.'<br />'.
                   1640:                      '<input type="text" name="newsec_'.$protectedcourse.'_'.$_.'" value="" /></td>'.
                   1641:                      '<input type="hidden" '.
                   1642:                      'name="sec_'.$protectedcourse.'_'.$_.'"></td>'.
                   1643:                      '</tr></table></td>';
                   1644:                     } else {
                   1645:                         $table .= '<td><input type="text" size="10" '.
                   1646:                      'name="sec_'.$protectedcourse.'_'.$_.'"></td>';
                   1647:                     }
1.26      matthew  1648:                 } else { 
1.89      raeburn  1649: 		    $table .= '<td>&nbsp</td>';
1.26      matthew  1650:                 }
                   1651: 		$table .= <<ENDTIMEENTRY;
                   1652: <td><input type=hidden name="start_$protectedcourse\_$_" value=''>
                   1653: <a href=
1.73      sakharuk 1654: "javascript:pjump('date_start','Start Date $plrole',document.cu.start_$protectedcourse\_$_.value,'start_$protectedcourse\_$_','cu.pres','dateset')">$lt{'ssd'}</a></td>
1.26      matthew  1655: <td><input type=hidden name="end_$protectedcourse\_$_" value=''>
                   1656: <a href=
1.73      sakharuk 1657: "javascript:pjump('date_end','End Date $plrole',document.cu.end_$protectedcourse\_$_.value,'end_$protectedcourse\_$_','cu.pres','dateset')">$lt{'sed'}</a></td>
1.26      matthew  1658: ENDTIMEENTRY
                   1659:                 $table.= "</tr>\n";
                   1660:             }
                   1661:         }
1.62      www      1662:         foreach (sort keys %customroles) {
1.65      www      1663: 	    if (&Apache::lonnet::allowed('ccr',$thiscourse)) {
                   1664: 		my $plrole=$_;
                   1665:                 my $customrole=$protectedcourse.'_cr_cr_'.$ENV{'user.domain'}.
                   1666: 		    '_'.$ENV{'user.name'}.'_'.$plrole;
1.89      raeburn  1667: 		$table .= <<END;
1.62      www      1668: <tr bgcolor="#$bgcol">
1.65      www      1669: <td><input type="checkbox" name="act_$customrole"></td>
1.62      www      1670: <td>$plrole</td>
                   1671: <td>$area</td>
1.89      raeburn  1672: END
                   1673:                 if ($num_sections > 0) {
                   1674:                     my $currsec = &course_sections($num_sections,\%sections_count,$customrole);
                   1675:                     $table.=
                   1676:                    '<td><table border="0" cellspacing="0" cellpadding="0">'.
                   1677:                    '<tr><td valign="top">'.$lt{'exs'}.'<br />'.
                   1678:                      $currsec.'</td>'.
                   1679:                    '<td>&nbsp;&nbsp;</td>'.
                   1680:                    '<td valign="top">&nbsp;'.$lt{'new'}.'<br />'.
                   1681:                    '<input type="text" name="newsec_'.$customrole.'" value="" /></td>'.
                   1682:                    '<input type="hidden" '.
                   1683:                    'name="sec_'.$customrole.'"></td>'.
                   1684:                    '</tr></table></td>';
                   1685:                 } else {
                   1686:                     $table .= '<td><input type="text" size="10" '.
                   1687:                      'name="sec_'.$customrole.'"></td>';
                   1688:                 }
                   1689:                 $table .= <<ENDENTRY;
1.65      www      1690: <td><input type=hidden name="start_$customrole" value=''>
1.62      www      1691: <a href=
1.73      sakharuk 1692: "javascript:pjump('date_start','Start Date $plrole',document.cu.start_$customrole.value,'start_$customrole','cu.pres','dateset')">$lt{'ssd'}</a></td>
1.65      www      1693: <td><input type=hidden name="end_$customrole" value=''>
1.62      www      1694: <a href=
1.73      sakharuk 1695: "javascript:pjump('date_end','End Date $plrole',document.cu.end_$customrole.value,'end_$customrole','cu.pres','dateset')">$lt{'sed'}</a></td></tr>
1.62      www      1696: ENDENTRY
1.65      www      1697:            }
1.62      www      1698: 	}
1.26      matthew  1699:     }
                   1700:     return '' if ($table eq ''); # return nothing if there is nothing 
                   1701:                                  # in the table
                   1702:     my $result = <<ENDTABLE;
1.73      sakharuk 1703: <h4>$lt{'crl'}</h4>
                   1704: <table border=2><tr><th>$lt{'act'}</th><th>$lt{'rol'}</th><th>$lt{'ext'}</th>
                   1705: <th>$lt{'grs'}</th><th>$lt{'sta'}</th><th>$lt{'end'}</th></tr>
1.26      matthew  1706: $table
                   1707: </table>
                   1708: ENDTABLE
                   1709:     return $result;
                   1710: }
1.88      raeburn  1711: 
1.89      raeburn  1712: sub course_sections {
                   1713:     my ($num_sections,$sections_count,$role) = @_;
                   1714:     my $output = '';
                   1715:     my @sections = (sort {$a <=> $b} keys %{$sections_count});
1.92      raeburn  1716:     if ($num_sections == 1) {
                   1717:         $output = '<select name="currsec_'.$role.'" >'."\n".
                   1718:                   '  <option value="">Select</option>'."\n".
1.93      raeburn  1719:                   '  <option value="">No section</option>'."\n".
1.92      raeburn  1720:                   '  <option value="'.$sections[0].'" >'.$sections[0].'</option>'."\n";
                   1721:     } else {
                   1722:         $output = '<select name="currsec_'.$role.'" ';
                   1723:         my $multiple = 4;
                   1724:         if ($num_sections <4) { $multiple = $num_sections; }
1.95    ! albertel 1725:         $output .= '"multiple" size="'.$multiple.'">'."\n";
1.92      raeburn  1726:         foreach (@sections) {
                   1727:             $output .= '<option value="'.$_.'">'.$_."</option>\n";
                   1728:         }
1.89      raeburn  1729:     }
                   1730:     $output .= '</select>'; 
                   1731:     return $output;
                   1732: }
                   1733: 
1.88      raeburn  1734: sub course_level_dc {
                   1735:     my ($dcdom) = @_;
                   1736:     my %customroles=&my_custom_roles();
                   1737:     my $hiddenitems = '<input type="hidden" name="dcdomain" value="'.$dcdom.'" />'.
                   1738:                       '<input type="hidden" name="origdom" value="'.$dcdom.'" />'.
                   1739:                       '<input type="hidden" name="dccourse" value="" />';
                   1740:     my $courseform='<b>'.&Apache::loncommon::selectcourse_link
                   1741:                      ('cu','dccourse','dcdomain','coursedesc').'</b>';
                   1742:                                                                                       
                   1743:     my $cb_jscript = &Apache::loncommon::coursebrowser_javascript($dcdom,$dcdom);
                   1744:     my %lt=&Apache::lonlocal::texthash(
                   1745:                     'crl'  => "Course Level",
                   1746:                     'crt'  => "Course Title",
                   1747:                     'rol'  => "Role",
                   1748:                     'grs'  => "Group/Section",
                   1749:                     'exs'  => "Existing sections",
                   1750:                     'new'  => "Define new section", 
                   1751:                     'sta'  => "Start",
                   1752:                     'end'  => "End",
                   1753:                     'ssd'  => "Set Start Date",
                   1754:                     'sed'  => "Set End Date"
                   1755:                   );
                   1756:     my $header = '<h4>'.$lt{'crl'}.'</h4>'.
                   1757:                  '<table border="2"><tr><th>'.$courseform.'</th><th>'.$lt{'rol'}.'</th><th>'.$lt{'grs'}.'</th><th>'.$lt{'sta'}.'</th><th>'.$lt{'end'}.'</th></tr>';
1.89      raeburn  1758:     my $otheritems = '<tr><td><input type="text" name="coursedesc" value="" onFocus="this.blur();opencrsbrowser('."'".'cu'."'".','."'".'dccourse'."'".','."'".'dcdomain'."'".','."'".'coursedesc'."',''".')" /></td>'.
1.88      raeburn  1759:                      '<td><select name="role">'."\n";
                   1760:     foreach  ('st','ta','ep','ad','in','cc') {
                   1761:         my $plrole=&Apache::lonnet::plaintext($_);
                   1762:         $otheritems .= '  <option value="'.$_.'">'.$plrole;
                   1763:     }
                   1764:     if ( keys %customroles > 0) {
                   1765:         foreach (sort keys %customroles) {
                   1766:             my $custrole='cr_cr_'.$ENV{'user.domain'}.
                   1767:                     '_'.$ENV{'user.name'}.'_'.$_;
                   1768:             $otheritems .= '  <option value="'.$custrole.'">'.$_;
                   1769:         }
                   1770:     }
                   1771:     $otheritems .= '</select></td><td>'.
                   1772:                      '<table border="0" cellspacing="0" cellpadding="0">'.
                   1773:                      '<tr><td valign="top"><b>'.$lt{'exs'}.'</b><br /><select name="currsec">'.
                   1774:                      ' <option value=""><--'.&mt('Pick course first').'</select></td>'.
                   1775:                      '<td>&nbsp;&nbsp;</td>'.
                   1776:                      '<td valign="top">&nbsp;<b>'.$lt{'new'}.'</b><br />'.
                   1777:                      '<input type="text" name="newsec" value="" /></td>'.
                   1778:                      '</tr></table></td>';
                   1779:     $otheritems .= <<ENDTIMEENTRY;
                   1780: <td><input type=hidden name="start" value=''>
                   1781: <a href=
                   1782: "javascript:pjump('date_start','Start Date',document.cu.start.value,'start','cu.pres','dateset')">$lt{'ssd'}</a></td>
                   1783: <td><input type=hidden name="end" value=''>
                   1784: <a href=
                   1785: "javascript:pjump('date_end','End Date',document.cu.end.value,'end','cu.pres','dateset')">$lt{'sed'}</a></td>
                   1786: ENDTIMEENTRY
                   1787:     $otheritems .= "</tr></table>\n";
                   1788:     return $cb_jscript.$header.$hiddenitems.$otheritems;
                   1789: }
                   1790: 
1.27      matthew  1791: #---------------------------------------------- end functions for &phase_two
1.29      matthew  1792: 
                   1793: #--------------------------------- functions for &phase_two and &phase_three
                   1794: 
                   1795: #--------------------------end of functions for &phase_two and &phase_three
1.1       www      1796: 
                   1797: 1;
                   1798: __END__
1.2       www      1799: 
                   1800: 

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