Annotation of loncom/interface/loncreateuser.pm, revision 1.56
1.20 harris41 1: # The LearningOnline Network with CAPA
1.1 www 2: # Create a user
3: #
1.56 ! www 4: # $Id: loncreateuser.pm,v 1.55 2003/06/19 21:46:38 www 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.1 www 28: # (Create a course
29: # (My Desk
30: #
31: # (Internal Server Error Handler
32: #
33: # (Login Screen
34: # 5/21/99,5/22,5/25,5/26,5/31,6/2,6/10,7/12,7/14,
35: # 1/14/00,5/29,5/30,6/1,6/29,7/1,11/9 Gerd Kortemeyer)
36: #
1.20 harris41 37: # YEAR=2001
1.1 www 38: # 3/1/1 Gerd Kortemeyer)
39: #
40: # 3/1 Gerd Kortemeyer)
41: #
42: # 2/14 Gerd Kortemeyer)
43: #
1.12 www 44: # 2/14,2/17,2/19,2/20,2/21,2/22,2/23,3/2,3/17,3/24,04/12 Gerd Kortemeyer
1.17 www 45: # April Guy Albertelli
1.19 www 46: # 05/10,10/16 Gerd Kortemeyer
1.25 matthew 47: # 02/11/02 Matthew Hall
1.1 www 48: #
1.56 ! www 49: # $Id: loncreateuser.pm,v 1.55 2003/06/19 21:46:38 www Exp $
1.20 harris41 50: ###
51:
1.1 www 52: package Apache::loncreateuser;
53:
54: use strict;
55: use Apache::Constants qw(:common :http);
56: use Apache::lonnet;
1.54 bowersj2 57: use Apache::loncommon;
1.1 www 58:
1.20 harris41 59: my $loginscript; # piece of javascript used in two separate instances
60: my $generalrule;
61: my $authformnop;
62: my $authformkrb;
63: my $authformint;
64: my $authformfsys;
65: my $authformloc;
66:
1.23 harris41 67: BEGIN {
1.20 harris41 68: $ENV{'SERVER_NAME'}=~/(\w+\.\w+)$/;
69: my $krbdefdom=$1;
70: $krbdefdom=~tr/a-z/A-Z/;
1.31 matthew 71: my %param = ( formname => 'document.cu',
72: kerb_def_dom => $krbdefdom
73: );
1.48 albertel 74: # no longer static due to configurable kerberos defaults
75: # $loginscript = &Apache::loncommon::authform_header(%param);
1.31 matthew 76: $generalrule = &Apache::loncommon::authform_authorwarning(%param);
77: $authformnop = &Apache::loncommon::authform_nochange(%param);
1.48 albertel 78: # no longer static due to configurable kerberos defaults
79: # $authformkrb = &Apache::loncommon::authform_kerberos(%param);
1.31 matthew 80: $authformint = &Apache::loncommon::authform_internal(%param);
81: $authformfsys = &Apache::loncommon::authform_filesystem(%param);
82: $authformloc = &Apache::loncommon::authform_local(%param);
1.20 harris41 83: }
84:
1.43 www 85:
86:
87: # ==================================================== Figure out author access
88:
89: sub authorpriv {
90: my ($auname,$audom)=@_;
91: if (($auname ne $ENV{'user.name'}) ||
92: (($audom ne $ENV{'user.domain'}) &&
93: ($audom ne $ENV{'request.role.domain'}))) { return ''; }
94: unless (&Apache::lonnet::allowed('cca',$audom)) { return ''; }
95: return 1;
96: }
97:
1.2 www 98: # =================================================================== Phase one
1.1 www 99:
1.42 matthew 100: sub print_username_entry_form {
1.2 www 101: my $r=shift;
1.42 matthew 102: my $defdom=$ENV{'request.role.domain'};
1.33 matthew 103: my @domains = &Apache::loncommon::get_domains();
104: my $domform = &Apache::loncommon::select_dom_form($defdom,'ccdomain');
1.40 www 105: my $bodytag =&Apache::loncommon::bodytag(
106: 'Create Users, Change User Privileges');
1.46 www 107: my $selscript=&Apache::loncommon::studentbrowser_javascript();
108: my $sellink=&Apache::loncommon::selectstudent_link
109: ('crtuser','ccuname','ccdomain');
1.33 matthew 110: $r->print(<<"ENDDOCUMENT");
1.1 www 111: <html>
112: <head>
113: <title>The LearningOnline Network with CAPA</title>
1.46 www 114: $selscript
1.1 www 115: </head>
1.40 www 116: $bodytag
1.46 www 117: <form action="/adm/createuser" method="post" name="crtuser">
1.42 matthew 118: <input type="hidden" name="phase" value="get_user_info">
1.33 matthew 119: <p>
1.43 www 120: <table>
121: <tr><td>Username:</td><td><input type="text" size="15" name="ccuname">
1.46 www 122: </td><td rowspan="2">$sellink</td></tr><tr><td>
1.43 www 123: Domain:</td><td>$domform</td></tr>
124: </table>
1.33 matthew 125: </p>
1.42 matthew 126: <input type="submit" value="Continue">
1.2 www 127: </form>
1.1 www 128: </body>
129: </html>
130: ENDDOCUMENT
1.2 www 131: }
132:
133: # =================================================================== Phase two
1.42 matthew 134: sub print_user_modification_page {
1.2 www 135: my $r=shift;
136: my $ccuname=$ENV{'form.ccuname'};
137: my $ccdomain=$ENV{'form.ccdomain'};
1.4 www 138:
1.48 albertel 139: my $defdom=$ENV{'request.role.domain'};
140:
141: my ($krbdef,$krbdefdom) =
142: &Apache::loncommon::get_kerberos_defaults($defdom);
143:
1.31 matthew 144: my %param = ( formname => 'document.cu',
1.48 albertel 145: kerb_def_dom => $krbdefdom,
146: kerb_def_auth => $krbdef
1.31 matthew 147: );
148: $loginscript = &Apache::loncommon::authform_header(%param);
1.48 albertel 149: $authformkrb = &Apache::loncommon::authform_kerberos(%param);
1.4 www 150:
1.2 www 151: $ccuname=~s/\W//g;
152: $ccdomain=~s/\W//g;
1.52 matthew 153: my $pjump_def = &Apache::lonhtmlcommon::pjump_javascript_definition();
1.25 matthew 154: my $dochead =<<"ENDDOCHEAD";
1.2 www 155: <html>
156: <head>
157: <title>The LearningOnline Network with CAPA</title>
1.31 matthew 158: <script type="text/javascript" language="Javascript">
1.3 www 159:
160: function pclose() {
161: parmwin=window.open("/adm/rat/empty.html","LONCAPAparms",
162: "height=350,width=350,scrollbars=no,menubar=no");
163: parmwin.close();
164: }
165:
1.52 matthew 166: $pjump_def
1.3 www 167:
168: function dateset() {
169: eval("document.cu."+document.cu.pres_marker.value+
170: ".value=document.cu.pres_value.value");
171: pclose();
172: }
173:
174: </script>
1.2 www 175: </head>
1.25 matthew 176: ENDDOCHEAD
1.40 www 177: $r->print(&Apache::loncommon::bodytag(
178: 'Create Users, Change User Privileges'));
1.25 matthew 179: my $forminfo =<<"ENDFORMINFO";
180: <form action="/adm/createuser" method="post" name="cu">
1.42 matthew 181: <input type="hidden" name="phase" value="update_user_data">
1.25 matthew 182: <input type="hidden" name="ccuname" value="$ccuname">
183: <input type="hidden" name="ccdomain" value="$ccdomain">
184: <input type="hidden" name="pres_value" value="" >
185: <input type="hidden" name="pres_type" value="" >
186: <input type="hidden" name="pres_marker" value="" >
187: ENDFORMINFO
1.2 www 188: my $uhome=&Apache::lonnet::homeserver($ccuname,$ccdomain);
189: my %incdomains;
190: my %inccourses;
1.49 albertel 191: foreach (values(%Apache::lonnet::hostdom)) {
1.13 www 192: $incdomains{$_}=1;
1.24 matthew 193: }
194: foreach (keys(%ENV)) {
1.2 www 195: if ($_=~/^user\.priv\.cm\.\/(\w+)\/(\w+)/) {
196: $inccourses{$1.'_'.$2}=1;
197: }
1.24 matthew 198: }
1.2 www 199: if ($uhome eq 'no_host') {
1.29 matthew 200: my $home_server_list=
1.32 matthew 201: '<option value="default" selected>default</option>'."\n".
202: &Apache::loncommon::home_server_option_list($ccdomain);
203:
1.26 matthew 204: $r->print(<<ENDNEWUSER);
1.25 matthew 205: $dochead
206: <h1>Create New User</h1>
207: $forminfo
208: <h2>New user "$ccuname" in domain $ccdomain</h2>
1.31 matthew 209: <script type="text/javascript" language="Javascript">
1.20 harris41 210: $loginscript
1.31 matthew 211: </script>
1.20 harris41 212: <input type='hidden' name='makeuser' value='1' />
1.4 www 213: <h3>Personal Data</h3>
1.25 matthew 214: <p>
215: <table>
216: <tr><td>First Name </td>
217: <td><input type='text' name='cfirst' size='15' /></td></tr>
218: <tr><td>Middle Name </td>
219: <td><input type='text' name='cmiddle' size='15' /></td></tr>
220: <tr><td>Last Name </td>
221: <td><input type='text' name='clast' size='15' /></td></tr>
222: <tr><td>Generation </td>
223: <td><input type='text' name='cgen' size='5' /></td></tr>
224: </table>
225: ID/Student Number <input type='text' name='cstid' size='15' /></p>
1.29 matthew 226: Home Server: <select name="hserver" size="1"> $home_server_list </select>
1.25 matthew 227: <hr />
1.4 www 228: <h3>Login Data</h3>
1.31 matthew 229: <p>$generalrule </p>
230: <p>$authformkrb </p>
231: <p>$authformint </p>
232: <p>$authformfsys</p>
233: <p>$authformloc </p>
1.26 matthew 234: ENDNEWUSER
1.25 matthew 235: } else { # user already exists
1.26 matthew 236: $r->print(<<ENDCHANGEUSER);
1.25 matthew 237: $dochead
238: <h1>Change User Privileges</h1>
239: $forminfo
240: <h2>User "$ccuname" in domain $ccdomain </h2>
1.26 matthew 241: ENDCHANGEUSER
1.28 matthew 242: # Get the users information
243: my %userenv = &Apache::lonnet::get('environment',
244: ['firstname','middlename','lastname','generation'],
245: $ccdomain,$ccuname);
246: my %rolesdump=&Apache::lonnet::dump('roles',$ccdomain,$ccuname);
247: $r->print(<<END);
248: <hr />
249: <table border="2">
250: <tr>
251: <th>first name</th><th>middle name</th><th>last name</th><th>generation</th>
252: </tr>
253: <tr>
254: END
255: foreach ('firstname','middlename','lastname','generation') {
256: if (&Apache::lonnet::allowed('mau',$ccdomain)) {
257: $r->print(<<"END");
1.53 www 258: <td><input type="text" name="c$_" value="$userenv{$_}" size="15" /></td>
1.28 matthew 259: END
260: } else {
261: $r->print('<td>'.$userenv{$_}.'</td>');
262: }
263: }
264: $r->print(<<END);
265: </tr>
266: </table>
267: END
1.25 matthew 268: # Build up table of user roles to allow revocation of a role.
1.28 matthew 269: my ($tmp) = keys(%rolesdump);
270: unless ($tmp =~ /^(con_lost|error)/i) {
1.2 www 271: my $now=time;
1.37 matthew 272: $r->print(<<END);
273: <hr />
274: <h3>Revoke Existing Roles</h3>
275: <table border=2>
1.53 www 276: <tr><th>Revoke</th><th>Delete</th><th>Role</th><th>Extent</th><th>Start</th><th>End</th>
1.37 matthew 277: END
1.28 matthew 278: foreach my $area (keys(%rolesdump)) {
1.37 matthew 279: next if ($area =~ /^rolesdef/);
280: my $role = $rolesdump{$area};
281: my $thisrole=$area;
282: $area =~ s/\_\w\w$//;
283: my ($role_code,$role_end_time,$role_start_time) =
284: split(/_/,$role);
285: my $bgcol='ffffff';
286: my $allowed=0;
1.53 www 287: my $delallowed=0;
1.37 matthew 288: if ($area =~ /^\/(\w+)\/(\d\w+)/ ) {
289: my %coursedata=
290: &Apache::lonnet::coursedescription($1.'_'.$2);
1.51 albertel 291: my $carea;
292: if (defined($coursedata{'description'})) {
1.53 www 293: $carea='Course: '.$coursedata{'description'}.
294: '<br />Domain: '.$1;
1.51 albertel 295: } else {
296: $carea='Unavailable course: '.$area;
297: }
1.37 matthew 298: $inccourses{$1.'_'.$2}=1;
1.53 www 299: if ((&Apache::lonnet::allowed('c'.$role_code,$1.'/'.$2)) ||
300: (&Apache::lonnet::allowed('c'.$role_code,$ccdomain))) {
1.37 matthew 301: $allowed=1;
302: }
1.53 www 303: if ((&Apache::lonnet::allowed('dro',$1)) ||
304: (&Apache::lonnet::allowed('dro',$ccdomain))) {
305: $delallowed=1;
306: }
1.37 matthew 307: # Compute the background color based on $area
308: $bgcol=$1.'_'.$2;
309: $bgcol=~s/[^8-9b-e]//g;
310: $bgcol=substr($bgcol.$bgcol.$bgcol.'ffffff',0,6);
311: if ($area=~/^\/(\w+)\/(\d\w+)\/(\w+)/) {
1.28 matthew 312: $carea.='<br>Section/Group: '.$3;
1.37 matthew 313: }
314: $area=$carea;
315: } else {
316: # Determine if current user is able to revoke privileges
317: if ($area=~ /^\/(\w+)\//) {
1.53 www 318: if ((&Apache::lonnet::allowed('c'.$role_code,$1)) ||
319: (&Apache::lonnet::allowed('c'.$role_code,$ccdomain))) {
1.37 matthew 320: $allowed=1;
321: }
1.53 www 322: if (((&Apache::lonnet::allowed('dro',$1)) ||
323: (&Apache::lonnet::allowed('dro',$ccdomain))) &&
324: ($role_code ne 'dc')) {
325: $delallowed=1;
326: }
1.37 matthew 327: } else {
328: if (&Apache::lonnet::allowed('c'.$role_code,'/')) {
329: $allowed=1;
330: }
331: }
332: }
1.43 www 333: if ($role_code eq 'ca') {
334: $area=~/\/(\w+)\/(\w+)/;
335: if (&authorpriv($2,$1)) {
336: $allowed=1;
337: } else {
338: $allowed=0;
1.37 matthew 339: }
340: }
341: my $row = '';
342: $row.='<tr bgcolor=#"'.$bgcol.'"><td>';
343: my $active=1;
344: $active=0 if (($role_end_time) && ($now>$role_end_time));
345: if (($active) && ($allowed)) {
346: $row.= '<input type="checkbox" name="rev:'.$thisrole.'">';
347: } else {
1.56 ! www 348: if ($active) {
! 349: $row.=' ';
! 350: } else {
! 351: $row.='expired or revoked';
! 352: }
1.37 matthew 353: }
1.53 www 354: $row.='</td><td>';
355: if ($delallowed) {
356: $row.= '<input type="checkbox" name="del:'.$thisrole.'">';
357: } else {
358: $row.=' ';
359: }
1.37 matthew 360: $row.= '</td><td>'.&Apache::lonnet::plaintext($role_code).
361: '</td><td>'.$area.
362: '</td><td>'.($role_start_time?localtime($role_start_time)
363: : ' ' ).
364: '</td><td>'.($role_end_time ?localtime($role_end_time)
365: : ' ' )
366: ."</td></tr>\n";
367: $r->print($row);
1.28 matthew 368: } # end of foreach (table building loop)
1.2 www 369: $r->print('</table>');
1.28 matthew 370: } # End of unless
1.20 harris41 371: my $currentauth=&Apache::lonnet::queryauthenticate($ccuname,$ccdomain);
1.41 albertel 372: if ($currentauth=~/^krb(4|5):/) {
373: $currentauth=~/^krb(4|5):(.*)/;
1.45 matthew 374: my $krbdefdom=$1;
1.31 matthew 375: my %param = ( formname => 'document.cu',
376: kerb_def_dom => $krbdefdom
377: );
378: $loginscript = &Apache::loncommon::authform_header(%param);
1.20 harris41 379: }
1.26 matthew 380: # Check for a bad authentication type
1.41 albertel 381: unless ($currentauth=~/^krb(4|5):/ or
1.20 harris41 382: $currentauth=~/^unix:/ or
383: $currentauth=~/^internal:/ or
384: $currentauth=~/^localauth:/
1.26 matthew 385: ) { # bad authentication scheme
1.42 matthew 386: if (&Apache::lonnet::allowed('mau',$ENV{'request.role.domain'})) {
1.26 matthew 387: $r->print(<<ENDBADAUTH);
1.21 harris41 388: <hr />
1.31 matthew 389: <script type="text/javascript" language="Javascript">
1.21 harris41 390: $loginscript
1.31 matthew 391: </script>
1.20 harris41 392: <font color='#ff0000'>ERROR:</font>
393: This user has an unrecognized authentication scheme ($currentauth).
394: Please specify login data below.
395: <h3>Login Data</h3>
1.31 matthew 396: <p>$generalrule</p>
397: <p>$authformkrb</p>
398: <p>$authformint</p>
399: <p>$authformfsys</p>
400: <p>$authformloc</p>
1.26 matthew 401: ENDBADAUTH
402: } else {
403: # This user is not allowed to modify the users
404: # authentication scheme, so just notify them of the problem
405: $r->print(<<ENDBADAUTH);
406: <hr />
1.31 matthew 407: <script type="text/javascript" language="Javascript">
1.26 matthew 408: $loginscript
1.31 matthew 409: </script>
1.26 matthew 410: <font color="#ff0000"> ERROR: </font>
411: This user has an unrecognized authentication scheme ($currentauth).
412: Please alert a domain coordinator of this situation.
413: <hr />
414: ENDBADAUTH
415: }
416: } else { # Authentication type is valid
1.20 harris41 417: my $authformcurrent='';
1.26 matthew 418: my $authform_other='';
1.41 albertel 419: if ($currentauth=~/^krb(4|5):/) {
1.20 harris41 420: $authformcurrent=$authformkrb;
1.31 matthew 421: $authform_other="<p>$authformint</p>\n".
422: "<p>$authformfsys</p><p>$authformloc</p>";
1.20 harris41 423: }
424: elsif ($currentauth=~/^internal:/) {
425: $authformcurrent=$authformint;
1.31 matthew 426: $authform_other="<p>$authformkrb</p>".
427: "<p>$authformfsys</p><p>$authformloc</p>";
1.20 harris41 428: }
429: elsif ($currentauth=~/^unix:/) {
430: $authformcurrent=$authformfsys;
1.31 matthew 431: $authform_other="<p>$authformkrb</p>".
432: "<p>$authformint</p><p>$authformloc;</p>";
1.20 harris41 433: }
434: elsif ($currentauth=~/^localauth:/) {
435: $authformcurrent=$authformloc;
1.31 matthew 436: $authform_other="<p>$authformkrb</p>".
437: "<p>$authformint</p><p>$authformfsys</p>";
1.20 harris41 438: }
1.53 www 439: $authformcurrent.=' <i>(will override current values)</i><br />';
1.42 matthew 440: if (&Apache::lonnet::allowed('mau',$ENV{'request.role.domain'})) {
1.26 matthew 441: # Current user has login modification privileges
442: $r->print(<<ENDOTHERAUTHS);
1.21 harris41 443: <hr />
1.31 matthew 444: <script type="text/javascript" language="Javascript">
1.21 harris41 445: $loginscript
1.31 matthew 446: </script>
1.20 harris41 447: <h3>Change Current Login Data</h3>
1.31 matthew 448: <p>$generalrule</p>
449: <p>$authformnop</p>
450: <p>$authformcurrent</p>
1.20 harris41 451: <h3>Enter New Login Data</h3>
1.26 matthew 452: $authform_other
453: ENDOTHERAUTHS
454: }
455: } ## End of "check for bad authentication type" logic
1.25 matthew 456: } ## End of new user/old user logic
1.20 harris41 457: $r->print('<hr /><h3>Add Roles</h3>');
1.17 www 458: #
459: # Co-Author
460: #
1.44 matthew 461: if (&authorpriv($ENV{'user.name'},$ENV{'request.role.domain'}) &&
462: ($ENV{'user.name'} ne $ccuname || $ENV{'user.domain'} ne $ccdomain)) {
463: # No sense in assigning co-author role to yourself
1.17 www 464: my $cuname=$ENV{'user.name'};
1.42 matthew 465: my $cudom=$ENV{'request.role.domain'};
1.17 www 466: $r->print(<<ENDCOAUTH);
467: <h4>Construction Space</h4>
468: <table border=2><tr><th>Activate</th><th>Role</th><th>Extent</th>
469: <th>Start</th><th>End</th></tr>
470: <tr>
471: <td><input type=checkbox name="act_$cudom\_$cuname\_ca"></td>
472: <td>Co-Author</td>
473: <td>$cudom\_$cuname</td>
474: <td><input type=hidden name="start_$cudom\_$cuname\_ca" value=''>
475: <a href=
476: "javascript:pjump('date_start','Start Date Co-Author',document.cu.start_$cudom\_$cuname\_ca.value,'start_$cudom\_$cuname\_ca','cu.pres','dateset')">Set Start Date</a></td>
477: <td><input type=hidden name="end_$cudom\_$cuname\_ca" value=''>
478: <a href=
479: "javascript:pjump('date_end','End Date Co-Author',document.cu.end_$cudom\_$cuname\_ca.value,'end_$cudom\_$cuname\_ca','cu.pres','dateset')">Set End Date</a></td>
480: </tr>
481: </table>
482: ENDCOAUTH
483: }
1.8 www 484: #
485: # Domain level
486: #
487: $r->print('<h4>Domain Level</h4>'.
488: '<table border=2><tr><th>Activate</th><th>Role</th><th>Extent</th>'.
489: '<th>Start</th><th>End</th></tr>');
1.24 matthew 490: foreach ( sort( keys(%incdomains))) {
1.2 www 491: my $thisdomain=$_;
1.24 matthew 492: foreach ('dc','li','dg','au') {
1.2 www 493: if (&Apache::lonnet::allowed('c'.$_,$thisdomain)) {
1.8 www 494: my $plrole=&Apache::lonnet::plaintext($_);
495: $r->print(<<ENDDROW);
496: <tr>
497: <td><input type=checkbox name="act_$thisdomain\_$_"></td>
498: <td>$plrole</td>
499: <td>$thisdomain</td>
500: <td><input type=hidden name="start_$thisdomain\_$_" value=''>
501: <a href=
502: "javascript:pjump('date_start','Start Date $plrole',document.cu.start_$thisdomain\_$_.value,'start_$thisdomain\_$_','cu.pres','dateset')">Set Start Date</a></td>
503: <td><input type=hidden name="end_$thisdomain\_$_" value=''>
504: <a href=
505: "javascript:pjump('date_end','End Date $plrole',document.cu.end_$thisdomain\_$_.value,'end_$thisdomain\_$_','cu.pres','dateset')">Set End Date</a></td>
506: </tr>
507: ENDDROW
1.2 www 508: }
1.24 matthew 509: }
510: }
1.8 www 511: $r->print('</table>');
512: #
513: # Course level
514: #
1.26 matthew 515: $r->print(&course_level_table(%inccourses));
516: $r->print("<hr /><input type=submit value=\"Modify User\">\n");
517: $r->print("</form></body></html>");
1.2 www 518: }
1.1 www 519:
1.4 www 520: # ================================================================= Phase Three
1.42 matthew 521: sub update_user_data {
1.4 www 522: my $r=shift;
1.29 matthew 523: my $uhome=&Apache::lonnet::homeserver($ENV{'form.ccuname'},
524: $ENV{'form.ccdomain'});
1.27 matthew 525: # Error messages
526: my $error = '<font color="#ff0000">Error:</font>';
527: my $end = '</body></html>';
528: # Print header
1.4 www 529: $r->print(<<ENDTHREEHEAD);
530: <html>
531: <head>
532: <title>The LearningOnline Network with CAPA</title>
533: </head>
534: ENDTHREEHEAD
1.40 www 535: my $title;
536: if (exists($ENV{'form.makeuser'})) {
537: $title='Set Privileges for New User';
538: } else {
539: $title='Modify User Privileges';
540: }
541: $r->print(&Apache::loncommon::bodytag($title));
1.27 matthew 542: # Check Inputs
1.29 matthew 543: if (! $ENV{'form.ccuname'} ) {
1.27 matthew 544: $r->print($error.'No login name specified.'.$end);
545: return;
546: }
1.29 matthew 547: if ( $ENV{'form.ccuname'} =~/\W/) {
1.27 matthew 548: $r->print($error.'Invalid login name. '.
549: 'Only letters, numbers, and underscores are valid.'.
550: $end);
551: return;
552: }
1.29 matthew 553: if (! $ENV{'form.ccdomain'} ) {
1.27 matthew 554: $r->print($error.'No domain specified.'.$end);
555: return;
556: }
1.29 matthew 557: if ( $ENV{'form.ccdomain'} =~/\W/) {
1.27 matthew 558: $r->print($error.'Invalid domain name. '.
559: 'Only letters, numbers, and underscores are valid.'.
560: $end);
561: return;
562: }
1.29 matthew 563: if (! exists($ENV{'form.makeuser'})) {
564: # Modifying an existing user, so check the validity of the name
565: if ($uhome eq 'no_host') {
566: $r->print($error.'Unable to determine home server for '.
567: $ENV{'form.ccuname'}.' in domain '.
568: $ENV{'form.ccdomain'}.'.');
569: return;
570: }
571: }
1.27 matthew 572: # Determine authentication method and password for the user being modified
573: my $amode='';
574: my $genpwd='';
575: if ($ENV{'form.login'} eq 'krb') {
1.41 albertel 576: $amode='krb';
577: $amode.=$ENV{'form.krbver'};
1.30 matthew 578: $genpwd=$ENV{'form.krbarg'};
1.27 matthew 579: } elsif ($ENV{'form.login'} eq 'int') {
580: $amode='internal';
1.30 matthew 581: $genpwd=$ENV{'form.intarg'};
1.27 matthew 582: } elsif ($ENV{'form.login'} eq 'fsys') {
583: $amode='unix';
1.30 matthew 584: $genpwd=$ENV{'form.fsysarg'};
1.27 matthew 585: } elsif ($ENV{'form.login'} eq 'loc') {
586: $amode='localauth';
587: $genpwd=$ENV{'form.locarg'};
588: $genpwd=" " if (!$genpwd);
1.35 matthew 589: } elsif (($ENV{'form.login'} eq 'nochange') ||
590: ($ENV{'form.login'} eq '' )) {
1.34 matthew 591: # There is no need to tell the user we did not change what they
592: # did not ask us to change.
1.35 matthew 593: # If they are creating a new user but have not specified login
594: # information this will be caught below.
1.30 matthew 595: } else {
596: $r->print($error.'Invalid login mode or password'.$end);
597: return;
1.27 matthew 598: }
599: if ($ENV{'form.makeuser'}) {
600: # Create a new user
601: $r->print(<<ENDNEWUSERHEAD);
1.29 matthew 602: <h3>Creating user "$ENV{'form.ccuname'}" in domain "$ENV{'form.ccdomain'}"</h2>
1.27 matthew 603: ENDNEWUSERHEAD
604: # Check for the authentication mode and password
605: if (! $amode || ! $genpwd) {
606: $r->print($error.'Invalid login mode or password'.$end);
607: return;
1.18 albertel 608: }
1.29 matthew 609: # Determine desired host
610: my $desiredhost = $ENV{'form.hserver'};
611: if (lc($desiredhost) eq 'default') {
612: $desiredhost = undef;
613: } else {
1.39 matthew 614: my %home_servers = &Apache::loncommon::get_library_servers
1.32 matthew 615: ($ENV{'form.ccdomain'});
1.29 matthew 616: if (! exists($home_servers{$desiredhost})) {
617: $r->print($error.'Invalid home server specified');
618: return;
619: }
620: }
1.27 matthew 621: # Call modifyuser
622: my $result = &Apache::lonnet::modifyuser
1.29 matthew 623: ($ENV{'form.ccdomain'},$ENV{'form.ccuname'},$ENV{'form.cstid'},
624: $amode,$genpwd,$ENV{'form.cfirst'},
625: $ENV{'form.cmiddle'},$ENV{'form.clast'},$ENV{'form.cgen'},
626: undef,$desiredhost
1.27 matthew 627: );
628: $r->print('Generating user: '.$result);
1.29 matthew 629: my $home = &Apache::lonnet::homeserver($ENV{'form.ccuname'},
630: $ENV{'form.ccdomain'});
631: $r->print('<br>Home server: '.$home.' '.
632: $Apache::lonnet::libserv{$home});
1.35 matthew 633: } elsif (($ENV{'form.login'} ne 'nochange') &&
634: ($ENV{'form.login'} ne '' )) {
1.27 matthew 635: # Modify user privileges
636: $r->print(<<ENDMODIFYUSERHEAD);
1.29 matthew 637: <h2>User "$ENV{'form.ccuname'}" in domain "$ENV{'form.ccdomain'}"</h2>
1.27 matthew 638: ENDMODIFYUSERHEAD
639: if (! $amode || ! $genpwd) {
640: $r->print($error.'Invalid login mode or password'.$end);
641: return;
1.20 harris41 642: }
1.27 matthew 643: # Only allow authentification modification if the person has authority
1.36 matthew 644: if (&Apache::lonnet::allowed('mau',$ENV{'form.ccdomain'})) {
1.20 harris41 645: $r->print('Modifying authentication: '.
1.31 matthew 646: &Apache::lonnet::modifyuserauth(
1.29 matthew 647: $ENV{'form.ccdomain'},$ENV{'form.ccuname'},
1.21 harris41 648: $amode,$genpwd));
1.20 harris41 649: $r->print('<br>Home server: '.&Apache::lonnet::homeserver
1.29 matthew 650: ($ENV{'form.ccuname'},$ENV{'form.ccdomain'}));
1.4 www 651: } else {
1.27 matthew 652: # Okay, this is a non-fatal error.
653: $r->print($error.'You do not have the authority to modify '.
654: 'this users authentification information.');
655: }
1.28 matthew 656: }
657: ##
658: if (! $ENV{'form.makeuser'} ) {
659: # Check for need to change
660: my %userenv = &Apache::lonnet::get
661: ('environment',['firstname','middlename','lastname','generation'],
1.29 matthew 662: $ENV{'form.ccdomain'},$ENV{'form.ccuname'});
1.28 matthew 663: my ($tmp) = keys(%userenv);
664: if ($tmp =~ /^(con_lost|error)/i) {
665: %userenv = ();
666: }
667: # Check to see if we need to change user information
668: foreach ('firstname','middlename','lastname','generation') {
669: # Strip leading and trailing whitespace
670: $ENV{'form.c'.$_} =~ s/(\s+$|^\s+)//g;
671: }
1.29 matthew 672: if (&Apache::lonnet::allowed('mau',$ENV{'form.ccdomain'}) &&
1.28 matthew 673: ($ENV{'form.cfirstname'} ne $userenv{'firstname'} ||
674: $ENV{'form.cmiddlename'} ne $userenv{'middlename'} ||
675: $ENV{'form.clastname'} ne $userenv{'lastname'} ||
676: $ENV{'form.cgeneration'} ne $userenv{'generation'} )) {
677: # Make the change
678: my %changeHash;
679: $changeHash{'firstname'} = $ENV{'form.cfirstname'};
680: $changeHash{'middlename'} = $ENV{'form.cmiddlename'};
681: $changeHash{'lastname'} = $ENV{'form.clastname'};
682: $changeHash{'generation'} = $ENV{'form.cgeneration'};
683: my $putresult = &Apache::lonnet::put
684: ('environment',\%changeHash,
1.29 matthew 685: $ENV{'form.ccdomain'},$ENV{'form.ccuname'});
1.28 matthew 686: if ($putresult eq 'ok') {
687: # Tell the user we changed the name
688: $r->print(<<"END");
689: <table border="2">
690: <caption>User Information Changed</caption>
691: <tr><th> </th>
692: <th>first</th>
693: <th>middle</th>
694: <th>last</th>
695: <th>generation</th></tr>
696: <tr><td>Previous</td>
697: <td>$userenv{'firstname'} </td>
698: <td>$userenv{'middlename'} </td>
699: <td>$userenv{'lastname'} </td>
700: <td>$userenv{'generation'} </td></tr>
701: <tr><td>Changed To</td>
702: <td>$ENV{'form.cfirstname'} </td>
703: <td>$ENV{'form.cmiddlename'} </td>
704: <td>$ENV{'form.clastname'} </td>
705: <td>$ENV{'form.cgeneration'} </td></tr>
706: </table>
707: END
708: } else { # error occurred
709: $r->print("<h2>Unable to successfully change environment for ".
1.29 matthew 710: $ENV{'form.ccuname'}." in domain ".
711: $ENV{'form.ccdomain'}."</h2>");
1.28 matthew 712: }
713: } else { # End of if ($ENV ... ) logic
714: # They did not want to change the users name but we can
715: # still tell them what the name is
716: $r->print(<<"END");
1.29 matthew 717: <h2>User "$ENV{'form.ccuname'}" in domain "$ENV{'form.ccdomain'}"</h2>
1.28 matthew 718: <h4>$userenv{'firstname'} $userenv{'middlename'} $userenv{'lastname'} </h4>
719: <h4>Generation: $userenv{'generation'}</h4>
720: END
721: }
1.4 www 722: }
1.27 matthew 723: ##
1.4 www 724: my $now=time;
1.6 www 725: $r->print('<h3>Modifying Roles</h3>');
1.24 matthew 726: foreach (keys (%ENV)) {
1.27 matthew 727: next if (! $ENV{$_});
728: # Revoke roles
729: if ($_=~/^form\.rev/) {
730: if ($_=~/^form\.rev\:([^\_]+)\_([^\_]+)$/) {
1.56 ! www 731: $r->print('Revoking '.$2.' in '.$1.': <b>'.
1.29 matthew 732: &Apache::lonnet::assignrole($ENV{'form.ccdomain'},
1.56 ! www 733: $ENV{'form.ccuname'},$1,$2,$now).'</b><br>');
1.53 www 734: if ($2 eq 'st') {
735: $1=~/^\/(\w+)\/(\w+)/;
736: my $cid=$1.'_'.$2;
1.56 ! www 737: $r->print('Drop from classlist: <b>'.
1.53 www 738: &Apache::lonnet::critical('put:'.
739: $ENV{'course.'.$cid.'.domain'}.':'.
740: $ENV{'course.'.$cid.'.num'}.':classlist:'.
741: &Apache::lonnet::escape($ENV{'form.ccuname'}.':'.
742: $ENV{'form.ccdomain'}).'='.
743: &Apache::lonnet::escape($now.':'),
1.56 ! www 744: $ENV{'course.'.$cid.'.home'}).'</b><br>');
1.53 www 745: }
746: }
747: } elsif ($_=~/^form\.del/) {
748: if ($_=~/^form\.del\:([^\_]+)\_([^\_]+)$/) {
749: $r->print('Deleting '.$2.' in '.$1.': '.
750: &Apache::lonnet::assignrole($ENV{'form.ccdomain'},
751: $ENV{'form.ccuname'},$1,$2,$now,0,1).'<br>');
1.27 matthew 752: if ($2 eq 'st') {
753: $1=~/^\/(\w+)\/(\w+)/;
754: my $cid=$1.'_'.$2;
1.56 ! www 755: $r->print('Drop from classlist: <b>'.
1.27 matthew 756: &Apache::lonnet::critical('put:'.
757: $ENV{'course.'.$cid.'.domain'}.':'.
758: $ENV{'course.'.$cid.'.num'}.':classlist:'.
1.29 matthew 759: &Apache::lonnet::escape($ENV{'form.ccuname'}.':'.
760: $ENV{'form.ccdomain'}).'='.
1.27 matthew 761: &Apache::lonnet::escape($now.':'),
1.56 ! www 762: $ENV{'course.'.$cid.'.home'}).'</b><br>');
1.27 matthew 763: }
764: }
765: } elsif ($_=~/^form\.act/) {
766: if ($_=~/^form\.act\_([^\_]+)\_([^\_]+)\_([^\_]+)$/) {
767: # Activate roles for sections with 3 id numbers
768: # set start, end times, and the url for the class
1.55 www 769:
770: my $start = ( $ENV{'form.start_'.$1.'_'.$2.'_'.$3} ?
771: $ENV{'form.start_'.$1.'_'.$2.'_'.$3} :
1.27 matthew 772: $now );
1.55 www 773: my $end = ( $ENV{'form.end_'.$1.'_'.$2.'_'.$3} ?
774: $ENV{'form.end_'.$1.'_'.$2.'_'.$3} :
1.27 matthew 775: 0 );
776: my $url='/'.$1.'/'.$2;
777: if ($ENV{'form.sec_'.$1.'_'.$2.'_'.$3}) {
778: $url.='/'.$ENV{'form.sec_'.$1.'_'.$2.'_'.$3};
779: }
780: # Assign the role and report it
1.55 www 781: $r->print('Assigning: '.$3.' in '.$url.
782: ($start?', starting '.localtime($start):'').
1.56 ! www 783: ($end?', ending '.localtime($end):'').': <b>'.
1.27 matthew 784: &Apache::lonnet::assignrole(
1.29 matthew 785: $ENV{'form.ccdomain'},$ENV{'form.ccuname'},
1.27 matthew 786: $url,$3,$end,$start).
1.56 ! www 787: '</b><br>');
1.27 matthew 788: # Handle students differently
789: if ($3 eq 'st') {
790: $url=~/^\/(\w+)\/(\w+)/;
791: my $cid=$1.'_'.$2;
1.56 ! www 792: $r->print('Add to classlist: <b>'.
1.27 matthew 793: &Apache::lonnet::critical(
794: 'put:'.$ENV{'course.'.$cid.'.domain'}.':'.
795: $ENV{'course.'.$cid.'.num'}.':classlist:'.
796: &Apache::lonnet::escape(
1.29 matthew 797: $ENV{'form.ccuname'}.':'.
798: $ENV{'form.ccdomain'} ).'='.
1.27 matthew 799: &Apache::lonnet::escape($end.':'.$start),
800: $ENV{'course.'.$cid.'.home'})
1.56 ! www 801: .'</b><br>');
1.27 matthew 802: }
803: } elsif ($_=~/^form\.act\_([^\_]+)\_([^\_]+)$/) {
804: # Activate roles for sections with two id numbers
805: # set start, end times, and the url for the class
806: my $start = ( $ENV{'form.start_'.$1.'_'.$2} ?
807: $ENV{'form.start_'.$1.'_'.$2} :
808: $now );
809: my $end = ( $ENV{'form.end_'.$1.'_'.$2} ?
810: $ENV{'form.end_'.$1.'_'.$2} :
811: 0 );
812: my $url='/'.$1.'/';
813: # Assign the role and report it.
814: $r->print('Assigning: '.$2.' in '.$url.': '.
1.56 ! www 815: ($start?', starting '.localtime($start):'').
! 816: ($end?', ending '.localtime($end):'').': <b>'.
1.27 matthew 817: &Apache::lonnet::assignrole(
1.29 matthew 818: $ENV{'form.ccdomain'},$ENV{'form.ccuname'},
1.27 matthew 819: $url,$2,$end,$start)
1.56 ! www 820: .'</b><br>');
1.10 www 821: }
1.27 matthew 822: }
823: } # End of foreach (keys(%ENV))
1.5 www 824: $r->print('</body></html>');
1.4 www 825: }
826:
1.2 www 827: # ================================================================ Main Handler
828: sub handler {
829: my $r = shift;
830:
831: if ($r->header_only) {
832: $r->content_type('text/html');
833: $r->send_http_header;
834: return OK;
835: }
836:
837: if ((&Apache::lonnet::allowed('cta',$ENV{'request.course.id'})) ||
838: (&Apache::lonnet::allowed('cin',$ENV{'request.course.id'})) ||
839: (&Apache::lonnet::allowed('ccr',$ENV{'request.course.id'})) ||
840: (&Apache::lonnet::allowed('cep',$ENV{'request.course.id'})) ||
1.42 matthew 841: (&Apache::lonnet::allowed('cca',$ENV{'request.role.domain'})) ||
842: (&Apache::lonnet::allowed('mau',$ENV{'request.role.domain'}))) {
1.2 www 843: $r->content_type('text/html');
844: $r->send_http_header;
845: unless ($ENV{'form.phase'}) {
1.42 matthew 846: &print_username_entry_form($r);
1.2 www 847: }
1.42 matthew 848: if ($ENV{'form.phase'} eq 'get_user_info') {
849: &print_user_modification_page($r);
850: } elsif ($ENV{'form.phase'} eq 'update_user_data') {
851: &update_user_data($r);
1.2 www 852: }
1.1 www 853: } else {
854: $ENV{'user.error.msg'}=
1.9 albertel 855: "/adm/createuser:mau:0:0:Cannot modify user data";
1.1 www 856: return HTTP_NOT_ACCEPTABLE;
857: }
858: return OK;
859: }
1.26 matthew 860:
1.27 matthew 861: #-------------------------------------------------- functions for &phase_two
1.26 matthew 862: sub course_level_table {
863: my %inccourses = @_;
864: my $table = '';
865: foreach (sort( keys(%inccourses))) {
866: my $thiscourse=$_;
867: my $protectedcourse=$_;
868: $thiscourse=~s:_:/:g;
869: my %coursedata=&Apache::lonnet::coursedescription($thiscourse);
870: my $area=$coursedata{'description'};
1.50 albertel 871: if (!defined($area)) { $area='Unavailable course: '.$_; }
1.26 matthew 872: my $bgcol=$thiscourse;
873: $bgcol=~s/[^8-9b-e]//g;
874: $bgcol=substr($bgcol.$bgcol.$bgcol.'ffffff',0,6);
875: foreach ('st','ta','ep','ad','in','cc') {
876: if (&Apache::lonnet::allowed('c'.$_,$thiscourse)) {
877: my $plrole=&Apache::lonnet::plaintext($_);
878: $table .= <<ENDEXTENT;
879: <tr bgcolor="#$bgcol">
880: <td><input type="checkbox" name="act_$protectedcourse\_$_"></td>
881: <td>$plrole</td>
882: <td>$area</td>
883: ENDEXTENT
884: if ($_ ne 'cc') {
885: $table .= <<ENDSECTION;
886: <td><input type="text" size="5" name="sec_$protectedcourse\_$_"></td>
887: ENDSECTION
888: } else {
889: $table .= <<ENDSECTION;
890: <td> </td>
891: ENDSECTION
892: }
893: $table .= <<ENDTIMEENTRY;
894: <td><input type=hidden name="start_$protectedcourse\_$_" value=''>
895: <a href=
896: "javascript:pjump('date_start','Start Date $plrole',document.cu.start_$protectedcourse\_$_.value,'start_$protectedcourse\_$_','cu.pres','dateset')">Set Start Date</a></td>
897: <td><input type=hidden name="end_$protectedcourse\_$_" value=''>
898: <a href=
899: "javascript:pjump('date_end','End Date $plrole',document.cu.end_$protectedcourse\_$_.value,'end_$protectedcourse\_$_','cu.pres','dateset')">Set End Date</a></td>
900: ENDTIMEENTRY
901: $table.= "</tr>\n";
902: }
903: }
904: }
905: return '' if ($table eq ''); # return nothing if there is nothing
906: # in the table
907: my $result = <<ENDTABLE;
908: <h4>Course Level</h4>
909: <table border=2><tr><th>Activate</th><th>Role</th><th>Extent</th>
910: <th>Group/Section</th><th>Start</th><th>End</th></tr>
911: $table
912: </table>
913: ENDTABLE
914: return $result;
915: }
1.27 matthew 916: #---------------------------------------------- end functions for &phase_two
1.29 matthew 917:
918: #--------------------------------- functions for &phase_two and &phase_three
919:
920: #--------------------------end of functions for &phase_two and &phase_three
1.1 www 921:
922: 1;
923: __END__
1.2 www 924:
925:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>