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