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