Annotation of loncom/interface/loncoursequeueadmin.pm, revision 1.58
1.1 raeburn 1: # The LearningOnline Network
1.19 raeburn 2: # Utilities to administer domain course requests and course self-enroll requests
1.1 raeburn 3: #
1.58 ! raeburn 4: # $Id: loncoursequeueadmin.pm,v 1.57 2017/08/03 16:11:46 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: #
24: # /home/httpd/html/adm/gpl.txt
25: #
26: # http://www.lon-capa.org/
27: #
28: ###
29:
1.23 raeburn 30: =pod
31:
1.1 raeburn 32: =head1 NAME
33:
34: Apache::loncoursequeueadmin.pm
35:
36: =head1 SYNOPSIS
37:
1.14 raeburn 38: Utilities used by domain coordinators to administer queued course creation requests,
39: and by course coordinators for queued self-enrollment requests, and by general
40: users to display their queued self-enrollment requests.
1.1 raeburn 41:
42: This is part of the LearningOnline Network with CAPA project
43: described at http://www.lon-capa.org.
44:
45: =head1 SUBROUTINES
46:
47: =over
48:
49: =item send_selfserve_notification()
50:
51: =item display_queued_requests()
52:
1.23 raeburn 53: =item build_queue_display()
54:
1.1 raeburn 55: =item update_request_queue()
56:
57: =item get_student_counts()
58:
1.13 raeburn 59: =item course_creation()
60:
61: =item build_batchcreatehash()
62:
63: =item can_clone_course()
64:
65: =item get_processtype()
66:
1.14 raeburn 67: =item queued_selfenrollment()
68:
1.23 raeburn 69: =item update_coursereq_status()
70:
71: =item process_official_reqs()
72:
1.31 raeburn 73: =item is_active_author()
74:
75: =item author_prompt()
76:
77: =item reqauthor_check()
78:
79: =item process_reqauthor()
80:
1.1 raeburn 81: =back
82:
83: =cut
84:
85: package Apache::loncoursequeueadmin;
86:
87: use strict;
88: use Apache::lonnet;
89: use Apache::loncommon;
90: use Apache::lonmsg;
91: use Apache::lonlocal;
1.2 raeburn 92: use Apache::lonuserutils;
1.45 raeburn 93: use LONCAPA::batchcreatecourse;
1.19 raeburn 94: use LONCAPA qw(:DEFAULT :match);
1.1 raeburn 95:
96: sub send_selfserve_notification {
1.2 raeburn 97: my ($notifylist,$textstr,$cid,$contextdesc,$timestamp,$context,$sender,
1.12 raeburn 98: $approvedlist,$rejectedlist,$crstype) = @_;
1.1 raeburn 99: # FIXME locallocaltime needs to be able to take $sender_lh as an argument
100: # so this can be localized to the recipients date display format/time zone
101: $timestamp =&Apache::lonlocal::locallocaltime($timestamp);
1.26 raeburn 102: my ($msgcc,$rawsubj,@rawmsg,$subject,$message,$reviewer,$msgtxt);
103: my ($senderuname,$senderudom) = split(':',$sender);
1.1 raeburn 104: if ($context eq 'coursemanagers') {
105: $rawsubj = 'Self-enrollment requests processed';
106: push(@rawmsg,{
1.10 raeburn 107: mt => 'Enrollment requests in the following course: [_1] have been processed.',
1.57 raeburn 108: args => ["\n$contextdesc\n"],
1.1 raeburn 109: });
110: } elsif ($context eq 'domainmanagers') {
1.12 raeburn 111: $rawsubj = 'Course/Community requests reviewed';
1.1 raeburn 112: push(@rawmsg,{
1.57 raeburn 113: mt => 'Course/Community creation requests in the following domain: [_1] have been reviewed.',
114: args => ["\n$contextdesc\n"],
1.30 raeburn 115: });
116: if (ref($textstr) eq 'ARRAY') {
117: push(@rawmsg,@{$textstr});
118: }
119: } elsif ($context eq 'authormanagers') {
1.42 bisitz 120: $rawsubj = 'Authoring Space requests reviewed';
1.30 raeburn 121: push(@rawmsg,{
1.57 raeburn 122: mt => 'Authoring requests in the following domain: [_1] have been reviewed.',
123: args => ["\n$contextdesc\n"],
1.1 raeburn 124: });
125: if (ref($textstr) eq 'ARRAY') {
126: push(@rawmsg,@{$textstr});
127: }
1.43 raeburn 128: } elsif ($context eq 'usernamemanagers') {
129: $rawsubj = 'LON-CAPA account requests reviewed';
130: push(@rawmsg,{
1.57 raeburn 131: mt => 'Account requests in the following domain: [_1] have been reviewed.',
132: args => ["\n$contextdesc\n"],
1.43 raeburn 133: });
134: if (ref($textstr) eq 'ARRAY') {
135: push(@rawmsg,@{$textstr});
136: }
1.1 raeburn 137: } elsif ($context eq 'enroller') {
138: $rawsubj = 'Enrollment request';
1.12 raeburn 139: if ($crstype eq 'community') {
140: $msgtxt = 'Your request for enrollment in the following community: [_1]requested on [_2]has been reviewed by a Coordinator.'
141: } else {
142: $msgtxt = 'Your request for enrollment in the following course: [_1]requested on [_2]has been reviewed by a Course Coordinator.';
143: }
1.1 raeburn 144: push(@rawmsg,{
1.12 raeburn 145: mt => $msgtxt,
1.2 raeburn 146: args => ["\n ".$contextdesc.",\n",$timestamp.",\n"],
1.1 raeburn 147:
148: });
149: if (ref($textstr) eq 'ARRAY') {
150: push(@rawmsg,@{$textstr});
151: }
152: } elsif ($context eq 'courserequestor') {
1.12 raeburn 153: if ($crstype eq 'Community') {
154: $rawsubj = 'Community request';
155: $msgtxt = 'Your request for creation of the following community: [_1]requested on [_2]has been reviewed by a Domain Coordinator.';
156: } else {
157: $rawsubj = 'Course request';
158: $msgtxt = 'Your request for creation of the following course: [_1]requested on [_2]has been reviewed by a Domain Coordinator.';
159: }
1.1 raeburn 160: push(@rawmsg,{
1.12 raeburn 161: mt => $msgtxt,
1.2 raeburn 162: args => ["\n".$contextdesc.",\n",$timestamp.",\n"],
1.1 raeburn 163:
164: });
165: if (ref($textstr) eq 'ARRAY') {
166: push(@rawmsg,@{$textstr});
167: }
1.26 raeburn 168: } elsif ($context eq 'pendingrequestor') {
169: if ($crstype eq 'Community') {
170: $rawsubj = 'Community request';
171: } else {
172: $rawsubj = 'Processed course request';
173: }
174: if (ref($textstr) eq 'ARRAY') {
175: push(@rawmsg,@{$textstr});
176: }
1.1 raeburn 177: } elsif ($context eq 'coursereq') {
1.12 raeburn 178: if ($crstype eq 'community') {
179: $rawsubj = 'Community request to review';
180: $msgtxt = 'Creation of the following community: [_1]was requested by [_2] on [_3].';
181: } else {
182: $rawsubj = 'Course request to review';
183: $msgtxt = 'Creation of the following course: [_1]was requested by [_2] on [_3].';
184: }
1.1 raeburn 185: push(@rawmsg,{
1.12 raeburn 186: mt => $msgtxt,
1.2 raeburn 187: args => ["\n $contextdesc\n",$textstr,$timestamp],
1.1 raeburn 188: },
189: {
1.12 raeburn 190: mt =>'[_1]As Domain Coordinator, use: [_2]Main Menu -> Course and community creation -> Approve or reject requests[_3]to display a list of pending requests, which you can either approve or reject.',
1.31 raeburn 191: args => ["\n","\n\n","\n\n"],
1.1 raeburn 192: });
193: } elsif ($context eq 'selfenrollreq') {
194: $rawsubj = 'Self-enrollment request';
1.12 raeburn 195: if ($crstype eq 'community') {
1.31 raeburn 196: $msgtxt = 'Enrollment in the following community: [_1]was requested by [_2] on [_3].'
1.12 raeburn 197: } else {
1.31 raeburn 198: $msgtxt = 'Enrollment in the following course: [_1]was requested by [_2] on [_3].'
1.12 raeburn 199: }
1.1 raeburn 200: push(@rawmsg,{
1.12 raeburn 201: mt => $msgtxt,
1.2 raeburn 202: args => ["\n $contextdesc\n",$textstr,$timestamp."\n"],
203: });
1.12 raeburn 204: my $directions;
205: if ($crstype eq 'community') {
206: $directions = 'As Coordinator, use: [_1]Main Menu -> Manage Community Users -> Enrollment Requests[_2]to display a list of pending enrollment requests, which you can either approve or reject.';
1.2 raeburn 207: } else {
1.12 raeburn 208: $directions = 'As Course Coordinator, use: [_1]Main Menu -> Manage Course Users -> Enrollment Requests[_2]to display a list of pending enrollment requests, which you can either approve or reject.';
209: }
210: push(@rawmsg,
1.1 raeburn 211: {
1.12 raeburn 212: mt => $directions,
1.2 raeburn 213: args => [" \n\n","\n"],
1.1 raeburn 214: });
1.30 raeburn 215: } elsif ($context eq 'authorreq') {
1.42 bisitz 216: $rawsubj = 'Authoring Space request to review';
1.31 raeburn 217: $msgtxt = 'Assignment of an author role in the [_1] domain[_2]was requested by [_3] on [_4].';
1.30 raeburn 218: push(@rawmsg,{
219: mt => $msgtxt,
220: args => [$contextdesc,"\n",$textstr,$timestamp],
221: },
222: {
1.42 bisitz 223: mt =>'[_1]As Domain Coordinator, use: [_2]Main Menu -> Create users or modify the roles and privileges of users -> Authoring Space requests[_3]to display a list of pending requests, which you can either approve or reject.',
1.30 raeburn 224: args => ["\n","\n\n ","\n\n"],
225: });
226: } elsif ($context eq 'requestauthor') {
1.42 bisitz 227: $rawsubj = 'Authoring Space request';
228: $msgtxt = 'Your request for an Authoring Space requested on [_1]has been reviewed by a Domain Coordinator.';
1.30 raeburn 229: push(@rawmsg,{
230: mt => $msgtxt,
231: args => [$timestamp."\n"],
232: });
233: if (ref($textstr) eq 'ARRAY') {
234: push(@rawmsg,@{$textstr});
235: }
1.43 raeburn 236: } elsif ($context eq 'usernamereq') {
237: $rawsubj = 'LON-CAPA account request';
238: $msgtxt = 'Creation of a LON-CAPA account in the [_1] domain[_2]was requested by [_3] on [_4].';
239: push(@rawmsg,{
240: mt => $msgtxt,
241: args => [$contextdesc,"\n",$textstr,$timestamp],
242: },
243: {
244: mt =>'[_1]As Domain Coordinator, use: [_2]Main Menu -> Create users or modify the roles and privileges of users
245: -> LON-CAPA account requests[_3]to display a list of pending requests, which you can either approve or reject.',
246: args => ["\n","\n\n ","\n\n"],
247: });
248: } elsif ($context eq 'requestusername') {
249: $rawsubj = 'LON-CAPA account request';
250: $msgtxt = 'Your request for a LON-CAPA account requested on [_1]has been reviewed by a Domain Coordinator.';
251: push(@rawmsg,{
252: mt => $msgtxt,
253: args => [$timestamp."\n"],
254: });
255: if (ref($textstr) eq 'ARRAY') {
256: push(@rawmsg,@{$textstr});
257: }
1.39 raeburn 258: } elsif ($context eq 'uniquecode') {
259: $rawsubj = 'Course Identifier';
260: if (ref($textstr) eq 'ARRAY') {
261: push(@rawmsg,@{$textstr});
262: }
1.41 raeburn 263: } elsif ($context eq 'queuedcrsreq') {
264: $rawsubj = 'Course Request Queued';
265: if (ref($textstr) eq 'ARRAY') {
266: push(@rawmsg,@{$textstr});
267: }
268: } elsif ($context eq 'createdcrsreq') {
269: $rawsubj = 'Course Creation Information';
270: if (ref($textstr) eq 'ARRAY') {
271: push(@rawmsg,@{$textstr});
272: }
1.1 raeburn 273: }
274: my @to_notify = split(/,/,$notifylist);
275: my $numsent = 0;
276: my @recusers;
277: my @recudoms;
278: foreach my $cc (@to_notify) {
279: my ($ccname,$ccdom) = split(/:/,$cc);
280: if (!exists($msgcc->{$ccname.':'.$ccdom})) {
281: push(@recusers,$ccname);
282: push(@recudoms,$ccdom);
283: $msgcc->{$ccname.':'.$ccdom}='';
284: $numsent ++;
285: }
286: }
287: my %reciphash = (
288: cc => $msgcc,
289: );
1.43 raeburn 290: my ($uname,$udom,$need_temp_env);
1.1 raeburn 291: if ($sender =~ /:/) {
292: ($uname,$udom) = split(/:/,$sender);
1.43 raeburn 293: if ($context eq 'usernamereq') {
294: unless ($env{'user.name'} && $env{'user.domain'}) {
295: $need_temp_env = 1;
296: }
297: }
1.2 raeburn 298: } elsif ($context eq 'course') {
1.1 raeburn 299: $uname = $sender;
300: my %courseinfo = &Apache::lonnet::coursedescription($cid);
301: $udom = $courseinfo{'num'};
302: }
303: my %sentmessage;
304: my $stamp = time;
305: my $msgcount = &Apache::lonmsg::get_uniq();
306: my $sender_lh = &Apache::loncommon::user_lang($uname,$udom,$cid);
307: $subject = &Apache::lonlocal::mt_user($sender_lh,$rawsubj);
308: $message = '';
309: foreach my $item (@rawmsg) {
310: if (ref($item) eq 'HASH') {
311: $message .= &Apache::lonlocal::mt_user($sender_lh,$item->{mt},@{$item->{args}})."\n";
312: }
313: }
1.43 raeburn 314: &Apache::lonmsg::process_sent_mail($subject,'',$numsent,$stamp,$uname,$udom,$msgcount,$cid,$$,$message,
315: \@recusers,\@recudoms,undef,undef,undef,undef,$senderuname,$senderudom);
1.1 raeburn 316: my ($recipid,$recipstatus) = &Apache::lonmsg::store_recipients($subject,$uname,$udom,\%reciphash);
317: my $status;
1.43 raeburn 318: if ($need_temp_env) {
319: $env{'user.name'} = $uname;
320: $env{'user.domain'} = $udom;
321: }
1.1 raeburn 322: foreach my $recip (sort(keys(%{$msgcc}))) {
323: my ($ccname,$ccdom) = split(/:/,$recip);
324: my $recip_lh = &Apache::loncommon::user_lang($ccname,$ccdom,$cid);
325: my $subject = &Apache::lonlocal::mt_user($sender_lh,$rawsubj);
326: my $message = '';
327: foreach my $item (@rawmsg) {
328: if (ref($item) eq 'HASH') {
329: $message .= &Apache::lonlocal::mt_user($sender_lh,$item->{mt},
330: @{$item->{args}})."\n";
331: }
332: }
1.10 raeburn 333: if ($context eq 'coursemanagers') {
1.1 raeburn 334: if ($approvedlist) {
335: $message .= "\n\n".&Apache::lonlocal::mt_user($sender_lh,'Approved enrollments:')."\n".$approvedlist;
336: }
337: if ($rejectedlist) {
338: $message .= "\n\n".&Apache::lonlocal::mt_user($sender_lh,'Rejected enrollments:')."\n".$rejectedlist;
339: }
340: } elsif ($context eq 'domainmanagers') {
341: if ($approvedlist) {
342: $message .= "\n\n".&Apache::lonlocal::mt_user($sender_lh,'Approved course requests:')."\n".$approvedlist;
343: }
344: if ($rejectedlist) {
345: $message .= "\n\n".&Apache::lonlocal::mt_user($sender_lh,'Rejected course requests:')."\n".$rejectedlist;
346: }
1.30 raeburn 347: } elsif ($context eq 'authormanagers') {
348: if ($approvedlist) {
349: $message .= "\n\n".&Apache::lonlocal::mt_user($sender_lh,'Approved author role requests:')."\n".$approvedlist;
350: }
351: if ($rejectedlist) {
352: $message .= "\n\n".&Apache::lonlocal::mt_user($sender_lh,'Rejected author role requests:')."\n".$rejectedlist;
353: }
1.43 raeburn 354: } elsif ($context eq 'usernamemanagers') {
355: if ($approvedlist) {
356: $message .= "\n\n".&Apache::lonlocal::mt_user($sender_lh,'Approved LON-CAPA account requests:')."\n".$approvedlist;
357: }
358: if ($rejectedlist) {
359: $message .= "\n\n".&Apache::lonlocal::mt_user($sender_lh,'Rejected LON-CAPA account requests:')."\n".$rejectedlist;
360: }
1.1 raeburn 361: }
1.43 raeburn 362: $status .= &Apache::lonmsg::user_normal_msg($ccname,$ccdom,$subject,$message,undef,undef,undef,1,
363: \%sentmessage,undef,undef,undef,1,$recipid).',';
1.1 raeburn 364: }
365: $status =~ s/,$//;
1.43 raeburn 366: if ($need_temp_env) {
367: undef($env{'user.name'});
368: undef($env{'user.domain'});
369: }
1.1 raeburn 370: return ($recipstatus,$status);
371: }
372:
373: sub display_queued_requests {
374: my ($context,$dom,$cnum) = @_;
1.2 raeburn 375: my ($namespace,$formaction,$nextelement,%requesthash);
1.1 raeburn 376: if ($context eq 'course') {
377: $formaction = '/adm/createuser';
378: $namespace = 'selfenrollrequests';
379: %requesthash = &Apache::lonnet::dump($namespace,$dom,$cnum);
1.2 raeburn 380: $nextelement = '<input type="hidden" name="state" value="done" />';
1.30 raeburn 381: } elsif ($context eq 'requestauthor') {
382: $formaction = '/adm/createuser';
383: $namespace = 'requestauthorqueue';
384: %requesthash = &Apache::lonnet::dump_dom($namespace,$dom);
385: $nextelement = '<input type="hidden" name="state" value="done" />';
1.43 raeburn 386: } elsif ($context eq 'requestusername') {
387: $formaction = '/adm/createuser';
388: $namespace = 'usernamequeue';
389: %requesthash = &Apache::lonnet::dump_dom($namespace,$dom);
390: $nextelement = '<input type="hidden" name="state" value="done" />';
1.1 raeburn 391: } else {
392: $formaction = '/adm/createcourse';
393: $namespace = 'courserequestqueue';
1.23 raeburn 394: my $disposition = 'approval';
1.24 raeburn 395: my $nextphase = 'requestchange';
1.23 raeburn 396: if ($context eq 'pending') {
397: $disposition = 'pending';
1.24 raeburn 398: $nextphase = 'requestvalidation';
1.56 raeburn 399: } elsif ($context eq 'displaypending') {
400: $disposition = 'pending';
1.23 raeburn 401: }
402: %requesthash = &Apache::lonnet::dump_dom($namespace,$dom,'_'.$disposition);
1.24 raeburn 403: $nextelement = '<input type="hidden" name="phase" value="'.$nextphase.'" />';
1.1 raeburn 404: }
1.23 raeburn 405: my ($output,%queue_by_date);
1.1 raeburn 406: if (keys(%requesthash) > 0) {
1.2 raeburn 407: $output = '<form method="post" name="changequeue" action="'.$formaction.'" />'."\n".
408: '<input type="hidden" name="action" value="'.$env{'form.action'}.'" />'."\n".
1.23 raeburn 409: $nextelement."\n";
1.1 raeburn 410: foreach my $item (keys(%requesthash)) {
1.23 raeburn 411: my ($timestamp,$entry,$pending);
1.1 raeburn 412: if ($context eq 'course') {
413: ($timestamp, my $usec) = split(/:/,$requesthash{$item});
414: $entry = $item.':'.$usec;
1.30 raeburn 415: } elsif ($context eq 'requestauthor') {
416: $timestamp = $requesthash{$item};
417: ($entry) = ($item =~ /^($match_username)_approval$/);
1.43 raeburn 418: } elsif ($context eq 'requestusername') {
419: $timestamp = $requesthash{$item};
420: ($entry) = (&unescape($item) =~ /^($match_username)_approval$/);
1.1 raeburn 421: } else {
422: $timestamp = $requesthash{$item}{'timestamp'};
423: if (ref($requesthash{$item}) eq 'HASH') {
1.2 raeburn 424: my ($cnum,$disposition) = split('_',$item);
425: $entry = $cnum.':'.$requesthash{$item}{'ownername'}.':'.
1.23 raeburn 426: $requesthash{$item}{'ownerdom'}.':';
1.56 raeburn 427: if (($context eq 'pending') || ($context eq 'displaypending')) {
1.23 raeburn 428: $entry .= $requesthash{$item}{'instcode'};
429: } else {
430: $entry .= $requesthash{$item}{'crstype'};
431: }
432: $entry .= ':'.$requesthash{$item}{'description'};
1.1 raeburn 433: }
434: }
435: if ($entry ne '') {
1.23 raeburn 436: if (ref($queue_by_date{$timestamp}) eq 'ARRAY') {
437: push(@{$queue_by_date{$timestamp}},$entry);
1.1 raeburn 438: } else {
1.23 raeburn 439: $queue_by_date{$timestamp} = [$entry];
1.1 raeburn 440: }
441: }
442: }
1.23 raeburn 443: if (keys(%queue_by_date) > 0) {
444: if ($context eq 'course') {
445: $output .= '<h3>'.&mt('Self-enrollment requests queued pending approval by a Coordinator').'</h3>';
1.56 raeburn 446: } elsif (($context eq 'pending') || ($context eq 'displaypending')) {
1.23 raeburn 447: $output .= '<h3>'.&mt('Requests for official courses queued pending validation').'</h3>'.
448: '<p>'.&mt('Requests are validated against institutional data to confirm that the requestor is an instructor of record.').'<br />'.
1.56 raeburn 449: &mt('Validation is attempted when the request is submitted.').' '.
450: &mt('If unvalidated, the request will be held in a queue.').' '.
451: &mt('Validation of pending requests is automatically repeated daily.').'</p>';
1.30 raeburn 452: } elsif ($context eq 'requestauthor') {
1.42 bisitz 453: $output .= '<h3>'.&mt('Requests for Authoring Space queued pending approval by a Domain Coordinator').'</h3>';
1.43 raeburn 454: } elsif ($context eq 'requestusername') {
455: $output .= '<h3>'.&mt('Requests for LON-CAPA accounts queued pending approval by a Domain Coordinator').'</h3>';
1.23 raeburn 456: } else {
1.30 raeburn 457: $output .= '<h3>'.&mt('Course/Community requests queued pending approval by a Domain Coordinator').'</h3>';
1.23 raeburn 458: }
459: $output .= &build_queue_display($dom,$context,\%queue_by_date).
460: '<input type="hidden" name="queue" value="approval" />';
461: } else {
462: $output .= '<div class="LC_info">';
463: if ($context eq 'course') {
464: $output .= &mt('There are currently no enrollment requests awaiting approval.');
465: } elsif ($context eq 'pending') {
466: $output .= &mt('There are currently no requests for official courses awaiting validation.');
1.30 raeburn 467: } elsif ($context eq 'requestauthor') {
1.42 bisitz 468: $output .= &mt('There are currently no requests for Authoring Space awaiting approval.');
1.43 raeburn 469: } elsif ($context eq 'requestusername') {
470: $output .= &mt('There are currently no requests for LON-CAPA accounts awaiting approval.');
1.23 raeburn 471: } elsif ($context eq 'domain') {
472: $output .= &mt('There are currently no course or community requests awaiting approval.');
473: }
474: $output .= '</div>';
475: }
476: if ($context eq 'pending') {
1.24 raeburn 477: $output .= '<br /><input type="submit" name="validationcheck" value="'.
478: &mt('Validate').'" /><br />'."\n".
1.56 raeburn 479: '<p>'.&mt('Any course/community requests which are successfully validated will be created immediately.').' '.
480: &mt('Unvalidated requests will be listed for manual approval/rejection.').'</p>';
481: } elsif (($context ne 'helpdesk') && ($context ne 'displaypending')) {
1.23 raeburn 482: $output .= '<br /><input type="submit" name="processqueue" value="'.&mt('Save').'" />';
483: }
484: $output .= '</form>';
485: } else {
486: $output .= '<div class="LC_info">';
487: if ($context eq 'course') {
488: $output .= &mt('There are currently no enrollment requests awaiting approval.');
1.56 raeburn 489: } elsif (($context eq 'pending') || ($context eq 'displaypending')) {
1.23 raeburn 490: $output .= &mt('There are currently no requests for official courses awaiting validation.');
1.43 raeburn 491: } elsif ($context eq 'requestauthor') {
492: $output .= &mt('There are currently no requests for Authoring Space awaiting approval.');
493: } elsif ($context eq 'requestusername') {
494: $output .= &mt('There are currently no requests for LON-CAPA accounts awaiting approval.');
1.23 raeburn 495: } else {
496: $output .= &mt('There are currently no course or community requests awaiting approval.');
497: }
498: $output .= '</div>';
499: }
500: return $output;
501: }
1.1 raeburn 502:
1.23 raeburn 503: sub build_queue_display {
504: my ($dom,$context,$queue) = @_;
505: return unless (ref($queue) eq 'HASH');
506: my %crstypes;
507: my $output = &Apache::loncommon::start_data_table().
508: &Apache::loncommon::start_data_table_header_row();
1.56 raeburn 509: unless (($context eq 'pending') || ($context eq 'displaypending') || ($context eq 'helpdesk')) {
1.23 raeburn 510: $output .= '<th>'.&mt('Action').'</th>';
511: }
512: $output .= '<th>'.&mt('Requestor').'</th>';
513: if ($context eq 'course') {
514: $output .= '<th>'.&mt('Section').'</th>'.
515: '<th>'.&mt('Date requested').'</th>';
1.30 raeburn 516: } elsif ($context eq 'requestauthor') {
517: $output .= '<th>'.&mt('Date requested').'</th>';
1.43 raeburn 518: } elsif ($context eq 'requestusername') {
519: $output .= '<th>'.&mt('Date requested').'</th>'.
520: '<th>'.&mt('Details').'</th>';
1.56 raeburn 521: } elsif ($context eq 'pending' || $context eq 'displaypending' || $context eq 'stillpending') {
1.23 raeburn 522: $output .= '<th>'.&mt('Institutional code').'</th>'.
523: '<th>'.&mt('Date requested').'</th>'.
524: '<th>'.&mt('Details').'</th>';
525: } else {
526: %crstypes = &Apache::lonlocal::texthash (
527: official => 'Official course',
528: unofficial => 'Unofficial course',
529: community => 'Community',
1.38 raeburn 530: textbook => 'Textbook course',
1.53 raeburn 531: placement => 'Placement test',
1.23 raeburn 532: );
533: $output .= '<th>'.&mt('Type').'</th>'.
534: '<th>'.&mt('Date requested').'</th>'.
535: '<th>'.&mt('Details').'</th>';
536: }
537: $output .= &Apache::loncommon::end_data_table_header_row();
538: my @sortedtimes = sort {$a <=> $b} (keys(%{$queue}));
539: my $count = 0;
540: foreach my $item (@sortedtimes) {
541: if (ref($queue->{$item}) eq 'ARRAY') {
542: foreach my $request (sort(@{$queue->{$item}})) {
543: my ($row,$approve,$reject,$showtime,$showsec,$namelink,
544: $detailslink,$crstype,$instcode);
545: $showtime = &Apache::lonlocal::locallocaltime($item);
546: if ($context eq 'course') {
547: my ($puname,$pudom,$pusec) = split(/:/,$request);
548: $approve = $count.':'.$puname.':'.$pudom.':'.$pusec;
549: $reject = $puname.':'.$pudom;
550: $showsec = $pusec;
551: if ($showsec eq '') {
552: $showsec = &mt('none');
553: }
554: $namelink = &Apache::loncommon::aboutmewrapper(
555: &Apache::loncommon::plainname($puname,$pudom),
556: $puname,$pudom);
1.30 raeburn 557: } elsif ($context eq 'requestauthor') {
558: if (&Apache::lonnet::homeserver($request,$dom) ne 'no_host') {
559: $approve = $count.':'.$request;
560: $reject = $request;
561: $namelink = &Apache::loncommon::aboutmewrapper(
562: &Apache::loncommon::plainname($request,$dom),
563: $request,$dom);
564: }
1.43 raeburn 565: } elsif ($context eq 'requestusername') {
566: if (&Apache::lonnet::homeserver($request,$dom) eq 'no_host') {
567: my $queued = 'approval';
568: $approve = $count.':'.$request;
569: $reject = $request;
570: $detailslink='<a href="javascript:openusernamereqdisplay('.
571: "'$dom','$request','$queued'".');">'.$request.'</a>';
572: $namelink = $request;
573: }
1.23 raeburn 574: } else {
575: my ($cnum,$ownername,$ownerdom,$type,$cdesc);
1.43 raeburn 576: my $queued = 'approval';
1.56 raeburn 577: if ($context eq 'pending' || $context eq 'displaypending' || $context eq 'stillpending') {
1.23 raeburn 578: ($cnum,$ownername,$ownerdom,$instcode,$cdesc)=split(/:/,$request,5);
1.43 raeburn 579: $queued = 'pending';
1.1 raeburn 580: } else {
1.23 raeburn 581: ($cnum,$ownername,$ownerdom,$type,$cdesc)=split(/:/,$request,5);
1.1 raeburn 582: $crstype = $type;
583: if (defined($crstypes{$type})) {
584: $crstype = $crstypes{$type};
585: }
586: }
1.23 raeburn 587: $detailslink='<a href="javascript:opencoursereqdisplay('.
1.43 raeburn 588: "'$dom','$cnum','$queued'".');">'.$cdesc.'</a>';
1.23 raeburn 589: $approve = $count.':'.$cnum;
590: $reject = $cnum;
591: $namelink = &Apache::loncommon::aboutmewrapper(
592: &Apache::loncommon::plainname($ownername,$ownerdom),
593: $ownername,$ownerdom);
594: }
1.56 raeburn 595: unless (($context eq 'pending') || ($context eq 'displaypending') || ($context eq 'helpdesk')) {
1.1 raeburn 596: $row = '<td><span class="LC_nobreak"><label>'.
1.30 raeburn 597: '<input type="radio" value="'.$approve.'" name="'.$count.'radioreq" />'.&mt('Approve').'</label>'.
598: '<label>'.(' 'x2).
599: '<input type="radio" value="'.$reject.'" name="'.$count.'radioreq" />'.&mt('Reject').'</label>'.
600: '<label>'.(' 'x2).
1.29 golterma 601: '<input type="radio" value="'."later:".$reject.'" name="'.$count.'radioreq" checked />'.&mt('Decide Later').
602: '</label></span><br /></td>';
1.1 raeburn 603: }
1.23 raeburn 604: $row .= '<td>'.$namelink.'</td>'."\n";
605: if ($context eq 'course') {
606: $row .= '<td>'.$showsec.'</td>'."\n".
607: '<td>'.$showtime.'</td>'."\n";
1.30 raeburn 608: } elsif ($context eq 'requestauthor') {
609: $row .= '<td>'.$showtime.'</td>'."\n";
1.43 raeburn 610: } elsif ($context eq 'requestusername') {
611: $row .= '<td>'.$showtime.'</td>'."\n".
612: '<td>'.$detailslink.'</td>'."\n";
1.23 raeburn 613: } else {
1.56 raeburn 614: if ($context eq 'pending' || $context eq 'displaypending' || $context eq 'stillpending') {
1.23 raeburn 615: $row .= '<td>'.$instcode.'</td>'."\n";
616: } else {
617: $row .= '<td>'.$crstype.'</td>'."\n";
618: }
619: $row .= '<td>'.$showtime.'</td>'."\n".
620: '<td>'.$detailslink.'</td>'."\n";
621: }
622: $output .= &Apache::loncommon::start_data_table_row()."\n".
623: $row.
624: &Apache::loncommon::end_data_table_row()."\n";
625: $count ++;
1.1 raeburn 626: }
627: }
628: }
1.23 raeburn 629: $output .= &Apache::loncommon::end_data_table();
1.1 raeburn 630: return $output;
631: }
632:
633: sub update_request_queue {
634: my ($context,$cdom,$cnum,$coursedesc) = @_;
635: my ($output,$access_start,$access_end,$limit,$cap,$notifylist,$namespace,
1.26 raeburn 636: $stucounts,$idx,$classlist,%requesthash,$cid,$domdesc,$now,
637: $sender,$approvedmsg,$rejectedmsg,$beneficiary,
1.2 raeburn 638: @existing,@missingreq,@invalidusers,@limitexceeded,@completed,
1.19 raeburn 639: @processing_errors,@warn_approves,@warn_rejects,@approvals,@warn_dels,
1.30 raeburn 640: @rejections,@rejectionerrors,@nopermissions,%courseroles,@toremove,
641: %communityroles,%domdefs,%approvalmsg,%rejectionmsg,$crstype,$queue,
1.39 raeburn 642: $firsturl,$uniquecode,%codes);
1.29 golterma 643: my $count=0;
1.43 raeburn 644: while (my $item = $env{'form.'.$count.'radioreq'}) {
645: if ($item =~ /^\d+:/) {
646: push(@approvals,$item);
647: } elsif ($item !~ /^later:/) {
648: push(@rejections,$item);
1.29 golterma 649: }
1.43 raeburn 650: $count ++;
1.29 golterma 651: }
652:
1.1 raeburn 653: $now = time;
654: $sender = $env{'user.name'}.':'.$env{'user.domain'};
655: if ($context eq 'course') {
656: $namespace = 'selfenrollrequests';
657: $beneficiary = 'enroller';
658: $cid = $env{'request.course.id'};
1.12 raeburn 659: $crstype = lc(&Apache::loncommon::course_type());
1.54 raeburn 660: $firsturl = &Apache::lonnet::course_portal_url($cnum,$cdom);
1.1 raeburn 661: %requesthash = &Apache::lonnet::dump($namespace,$cdom,$cnum);
662: $access_start = $env{'course.'.$cid.'.internal.selfenroll_start_access'};
663: $access_end = $env{'course.'.$cid.'.internal.selfenroll_end_access'};
664: $limit = $env{'course.'.$cid.'.internal.selfenroll_limit'};
665: $cap = $env{'course.'.$cid.'.internal.selfenroll_cap'};
666: $notifylist = $env{'course.'.$cid.'.internal.selfenroll_notifylist'};
667: ($stucounts,$idx,$classlist) = &get_student_counts($cdom,$cnum);
668: $approvedmsg = [{
669: mt => 'Your request for enrollment has been approved.',
670: },
671: {
1.28 raeburn 672: mt => 'Visit [_1] to log-in and access the course',
1.25 raeburn 673: args => [$firsturl],
1.1 raeburn 674: }];
675: $rejectedmsg = [{
676: mt => 'Your request for enrollment has not been approved.',
677: }];
1.30 raeburn 678: } elsif ($context eq 'requestauthor') {
679: $namespace = 'requestauthorqueue';
680: $beneficiary = 'requestauthor';
681: %requesthash = &Apache::lonnet::dump_dom($namespace,$cdom);
682: my %domdefs = &Apache::lonnet::get_domain_defaults($cdom);
683: if (ref($domdefs{'requestauthor'}) eq 'HASH') {
684: if (ref($domdefs{'requestauthor'}{'notify'}) eq 'HASH') {
685: $notifylist = $domdefs{'requestauthor'}{'notify'}{'approval'};
686: }
687: }
688: my $domconfiguser = &Apache::lonnet::get_domainconfiguser($cdom);
1.54 raeburn 689: $firsturl = &Apache::lonnet::course_portal_url($domconfiguser,$cdom);
1.30 raeburn 690: $approvedmsg = [{
1.42 bisitz 691: mt => 'Your request for Authoring Space has been approved.',
1.30 raeburn 692: },
693: {
694: mt => 'Visit [_1] to log-in and select your author role',
695: args => [$firsturl],
696: }];
697: $rejectedmsg = [{
1.42 bisitz 698: mt => 'Your request for Authoring Space has not been approved.',
1.30 raeburn 699: }];
700: $domdesc = &Apache::lonnet::domain($cdom);
1.43 raeburn 701: } elsif ($context eq 'requestusername') {
702: $namespace = 'usernamequeue';
703: $beneficiary = 'requestusername';
704: %requesthash = &Apache::lonnet::dump_dom($namespace,$cdom);
705: my %domconfig = &Apache::lonnet::get_dom('configuration',['usercreation'],$cdom);
706: if (ref($domconfig{'usercreation'}) eq 'HASH') {
707: if (ref($domconfig{'usercreation'}{'cancreate'}) eq 'HASH') {
708: if (ref($domconfig{'usercreation'}{'cancreate'}{'notify'}) eq 'HASH') {
709: $notifylist = $domconfig{'usercreation'}{'cancreate'}{'notify'}{'approval'};
710: }
711: }
712: }
713: my $domconfiguser = &Apache::lonnet::get_domainconfiguser($cdom);
1.54 raeburn 714: $firsturl = &Apache::lonnet::course_portal_url($domconfiguser,$cdom);
1.43 raeburn 715: $approvedmsg = [{
716: mt => 'Your request for a LON-CAPA account has been approved.',
717: },
718: {
719: mt => 'Visit [_1] to log-in.',
720: args => [$firsturl],
721: }];
722: $rejectedmsg = [{
723: mt => 'Your request for a LON-CAPA account has not been approved.',
724: }];
725: $domdesc = &Apache::lonnet::domain($cdom);
1.1 raeburn 726: } else {
1.2 raeburn 727: $domdesc = &Apache::lonnet::domain($cdom);
728: $namespace = 'courserequestqueue';
729: $beneficiary = 'courserequestor';
1.23 raeburn 730: $queue = 'approval';
731: if ($env{'form.queue'} eq 'pending') {
732: $queue = 'pending';
733: }
734: %requesthash = &Apache::lonnet::dump_dom($namespace,$cdom,'_'.$queue);
1.2 raeburn 735: my %domconfig = &Apache::lonnet::get_dom('configuration',['requestcourses'],$cdom);
736: if (ref($domconfig{'requestcourses'}) eq 'HASH') {
737: if (ref($domconfig{'requestcourses'}{'notify'}) eq 'HASH') {
738: $notifylist = $domconfig{'requestcourses'}{'notify'}{'approval'};
739: }
740: }
1.12 raeburn 741: $approvalmsg{'course'} =
742: [{
1.2 raeburn 743: mt => 'Your course request has been approved.',
744: },
745: {
1.28 raeburn 746: mt => 'Visit [_1] to log-in and access the course',
747: args => [],
1.2 raeburn 748: }];
1.12 raeburn 749: $rejectionmsg{'course'} =
750: [{
1.2 raeburn 751: mt => 'Your course request has not been approved.',
752: }];
1.12 raeburn 753:
754: $approvalmsg{'community'} =
755: [{
756: mt => 'Your community request has been approved.',
757: },
758: {
1.28 raeburn 759: mt => 'Visit [_1] to log-in and access the community',
760: args => [],
1.12 raeburn 761: }];
762:
763: $rejectionmsg{'community'} =
764: [{
765: mt => 'Your community request has not been approved.',
766: }];
767:
1.2 raeburn 768: %domdefs = &Apache::lonnet::get_domain_defaults($cdom);
769: my @roles = &Apache::lonuserutils::roles_by_context('course');
770: foreach my $role (@roles) {
771: $courseroles{$role}=&Apache::lonnet::plaintext($role,'Course');
772: }
773: foreach my $role (@roles) {
774: $communityroles{$role}=&Apache::lonnet::plaintext($role,'Community');
775: }
1.1 raeburn 776: }
777: foreach my $item (sort {$a <=> $b} @approvals) {
778: if ($context eq 'course') {
779: my ($num,$uname,$udom,$usec) = split(/:/,$item);
780: my $uhome = &Apache::lonnet::homeserver($uname,$udom);
781: if ($uhome ne 'no_host') {
782: if (exists($requesthash{$uname.':'.$udom})) {
783: if (exists($classlist->{$uname.':'.$udom})) {
784: if (ref($classlist->{$uname.':'.$udom}) eq 'ARRAY') {
785: if (($classlist->{$uname.':'.$udom}->[$idx->{'status'}] eq 'Active') ||
786: ($classlist->{$uname.':'.$udom}->[$idx->{'status'}] eq 'Future')) {
787: push(@existing,$uname.':'.$udom);
788: next;
789: }
790: }
791: }
792: } else {
793: push(@missingreq,$uname.':'.$udom);
794: next;
795: }
796: if (!grep(/^\Q$item\E$/,@rejections)) {
797: if ($limit eq 'allstudents') {
798: if ($stucounts->{$limit} >= $cap) {
799: push(@limitexceeded,$uname.':'.$udom);
800: last;
801: }
802: } elsif ($limit eq 'selfenrolled') {
803: if ($stucounts->{$limit} >= $cap) {
804: push(@limitexceeded,$uname.':'.$udom);
805: last;
806: }
807: }
808: my $result =
809: &Apache::lonnet::modify_student_enrollment($udom,$uname,undef,undef,undef,undef,undef,$usec,$access_end,$access_start,'selfenroll',undef,$cdom.'_'.$cnum,1);
810: if ($result eq 'ok') {
1.2 raeburn 811: push(@completed,$uname.':'.$udom);
1.1 raeburn 812: $stucounts->{'allstudents'} ++;
813: $stucounts->{'selfenrolled'} ++;
814: &send_selfserve_notification($uname.':'.$udom,$approvedmsg,
1.26 raeburn 815: $cid,$coursedesc,$now,$beneficiary,$sender,
816: undef,undef,$crstype);
1.2 raeburn 817: my %userrequest = (
818: $cdom.'_'.$cnum => {
819: timestamp => $now,
820: section => $usec,
821: adjudicator => $env{'user.name'}.':'.$env{'user.domain'},
822: status => 'approved',
823: }
824: );
1.1 raeburn 825: my $userresult =
826: &Apache::lonnet::put($namespace,\%userrequest,$udom,$uname);
827: if ($userresult ne 'ok') {
828: push(@warn_approves,$uname.':'.$udom);
829: }
830: } else {
1.2 raeburn 831: push(@processing_errors,$uname.':'.$udom);
1.1 raeburn 832: }
833: }
834: } else {
835: push(@invalidusers,$uname.':'.$udom);
836: }
1.30 raeburn 837: } elsif ($context eq 'requestauthor') {
838: my ($num,$uname) = split(/:/,$item);
839: my $uhome = &Apache::lonnet::homeserver($uname,$cdom);
840: if ($uhome ne 'no_host') {
841: my ($user_is_adv,$user_is_author) = &Apache::lonnet::is_advanced_user($cdom,$uname);
842: if ($user_is_author) {
843: push(@existing,$uname);
844: } elsif (&Apache::lonnet::usertools_access($uname,$cdom,'requestauthor',
845: undef,'requestauthor')) {
846: if (&Apache::lonnet::allowed('cau',$cdom)) {
847: if (&Apache::lonnet::assignrole($cdom,$uname,'/'.$cdom.'/','au',undef,time,undef,undef,'requestauthor') eq 'ok') {
848: push(@completed,$uname);
849: &send_selfserve_notification($uname.':'.$cdom,
850: $approvedmsg,undef,undef,$now,
851: $beneficiary,$sender);
852: my %userrequest = (
853: author => {
854: timestamp => $now,
855: adjudicator => $env{'user.name'}.':'.$env{'user.domain'},
856: status => 'approved',
857: },
858: author_status => 'approved',
859: );
860: my $userresult =
861: &Apache::lonnet::put('requestauthor',\%userrequest,$cdom,$uname);
862: if ($userresult ne 'ok') {
1.43 raeburn 863: push(@warn_approves,$uname.':'.$cdom);
1.30 raeburn 864: }
865: } else {
866: push(@processing_errors,$uname);
867: }
868: } else {
869: push(@nopermissions,$uname);
870: }
871: } else {
872: push(@nopermissions,$uname);
873: }
874: } else {
875: push(@invalidusers,$uname.':'.$cdom);
876: }
877: push(@toremove,(@invalidusers,@nopermissions));
1.43 raeburn 878: } elsif ($context eq 'requestusername') {
879: my ($num,$uname) = split(/:/,$item);
880: my $dbname = 'nohist_requestedusernames';
881: my $domconfiguser = &Apache::lonnet::get_domainconfiguser($cdom);
882: my %curr = &Apache::lonnet::get($dbname,[$uname],$cdom,$domconfiguser);
1.58 ! raeburn 883:
1.43 raeburn 884: if (ref($curr{$uname}) eq 'HASH') {
1.58 ! raeburn 885: my ($logtoken,$serverid,$encpass,$courseid,$id,$firstname,
! 886: $middlename,$lastname,$generation,$inststatus,$email);
1.43 raeburn 887: $curr{$uname}{'timestamp'} = $now;
888: $curr{$uname}{'adjudicator'} = $env{'user.name'}.':'.$env{'user.domain'};
889: $courseid = $curr{$uname}{'courseid'};
890: $id = $curr{$uname}{'id'};
891: $firstname = $curr{$uname}{'firstname'};
892: $middlename = $curr{$uname}{'middlename'};
893: $lastname = $curr{$uname}{'lastname'};
894: $generation = $curr{$uname}{'generation'};
1.46 raeburn 895: $inststatus = $curr{$uname}{'inststatus'};
1.43 raeburn 896:
1.58 ! raeburn 897: if ($curr{$uname}{'email'} ne '') {
! 898: $email = $curr{$uname}{'email'};
! 899: } elsif ($uname =~ /^[^\@]+\@[^\@]+$/) {
! 900: $email = $uname;
! 901: }
! 902:
! 903: my $upass;
! 904: if ($curr{$uname}{'tmpinfo'}) {
! 905: my ($key,$caller)=split(/&/,$curr{$uname}{'tmpinfo'});
! 906: if ($caller eq 'createaccount') {
! 907: if ($curr{$uname}{'upass'} eq '') {
! 908: $upass = $curr{$uname}{'upass'};
! 909: } else {
! 910: $upass = &Apache::loncommon::des_decrypt($key,$curr{$uname}{'upass'});
! 911: }
! 912: } else {
! 913: push(@processing_errors,$uname);
! 914: }
! 915: } else {
! 916: $upass = $curr{$uname}{'upass'};
! 917: }
! 918: if ($upass eq '') {
! 919: push(@processing_errors,$uname);
! 920: } else {
1.43 raeburn 921: undef($curr{$uname}{'upass'});
922: my $result =
923: &Apache::lonnet::modifyuser($cdom,$uname,$id,'internal',$upass,
924: $firstname,$middlename,$lastname,
1.58 ! raeburn 925: $generation,undef,undef,$email);
1.43 raeburn 926: if ($result eq 'ok') {
927: $curr{$uname}{'status'} = 'created';
928: push(@completed,$uname);
929: my $uhome = &Apache::lonnet::homeserver($uname,$cdom);
930: if ($uhome eq 'no_host') {
931: push(@warn_approves,$uname);
932: } else {
1.44 raeburn 933: unless (($inststatus eq 'default') || ($inststatus eq '')) {
934: &Apache::lonnet::put('environment',{inststatus => $inststatus},$cdom,$uname);
935: }
1.43 raeburn 936: &send_selfserve_notification($uname.':'.$cdom,
937: $approvedmsg,undef,undef,$now,
938: $beneficiary,$sender);
939: if (&Apache::lonnet::put($dbname,\%curr,$cdom,$domconfiguser) ne 'ok') {
940: push(@warn_approves,$uname);
941: }
942: }
943: } else {
944: push(@processing_errors,$uname);
945: }
946: }
947: } else {
948: push(@invalidusers,$uname);
949: }
950: push(@toremove,@invalidusers);
1.1 raeburn 951: } else {
1.2 raeburn 952: my ($num,$cnum) = split(':',$item);
1.23 raeburn 953: if (ref($requesthash{$cnum.'_'.$queue}) eq 'HASH') {
1.2 raeburn 954: if (&Apache::lonnet::homeserver($cnum,$cdom) eq 'no_host') {
1.23 raeburn 955: my $ownername = $requesthash{$cnum.'_'.$queue}{'ownername'};
956: my $ownerdom = $requesthash{$cnum.'_'.$queue}{'ownerdom'};
957: $crstype = $requesthash{$cnum.'_'.$queue}{'crstype'};
958: my $coursedesc = $requesthash{$cnum.'_'.$queue}{'description'};
1.2 raeburn 959: my $longroles = \%courseroles;
960: if ($crstype eq 'community') {
961: $longroles = \%communityroles;
962: }
1.5 raeburn 963: my $cancreate;
964: if ($cdom eq $ownerdom) {
965: if (&Apache::lonnet::usertools_access($ownername,$ownerdom,$crstype,
966: undef,'requestcourses')) {
967: $cancreate = 1;
968: }
969: } else {
970: my %userenv = &Apache::lonnet::userenvironment($ownerdom,$ownername,'reqcrsotherdom.'.$crstype);
971: if ($userenv{'reqcrsotherdom.'.$crstype}) {
972: my @doms = split(',',$userenv{'reqcrsotherdom.'.$crstype});
973: if (grep(/^\Q$cdom\E:/,@doms)) {
974: $cancreate = 1;
975: }
976: }
977: }
978: if ($cancreate) {
1.2 raeburn 979: my $requestkey = $cdom.'_'.$cnum;
980: my %history =
981: &Apache::lonnet::restore($requestkey,'courserequests',
982: $ownerdom,$ownername);
983: if ((ref($history{'details'}) eq 'HASH') &&
1.23 raeburn 984: ($history{'disposition'} eq $queue)) {
1.41 raeburn 985: my ($logmsg,$newusermsg,$addresult,$enrollcount,$response,$keysmsg,$code,%customitems);
986: my $fullname = '';
987: my $inprocess = &Apache::lonnet::auto_crsreq_update($cdom,$cnum,$crstype,'process',$ownername,
988: $ownerdom,$fullname,$coursedesc);
989: if (ref($inprocess) eq 'HASH') {
990: foreach my $key (keys(%{$inprocess})) {
991: if (exists($history{'details'}{$key})) {
992: $customitems{$key} = $history{'details'}{$key};
993: }
994: }
995: }
1.50 raeburn 996: if ($history{'details'}{'clonecrs'}) {
997: $customitems{'_LC_clonefrom'} = $history{'details'}{'clonedom'}.'_'.$history{'details'}{'clonecrs'};
998: }
1.41 raeburn 999: my ($result,$postprocess) = &course_creation($cdom,$cnum,$context,$history{'details'},\$logmsg,
1000: \$newusermsg,\$addresult,\$enrollcount,
1001: \$response,\$keysmsg,\%domdefs,$longroles,\$code,\%customitems);
1.2 raeburn 1002: if ($result eq 'created') {
1.12 raeburn 1003: if ($crstype eq 'community') {
1004: $approvedmsg = $approvalmsg{'community'};
1005: } else {
1006: $approvedmsg = $approvalmsg{'course'};
1007: }
1.54 raeburn 1008: my $firsturl = &Apache::lonnet::course_portal_url($cnum,$cdom);
1.28 raeburn 1009: if (ref($approvedmsg) eq 'ARRAY') {
1010: if (ref($approvedmsg->[1]) eq 'HASH') {
1011: $approvedmsg->[1]->{'args'} = [$firsturl];
1012: }
1.39 raeburn 1013: if ($code) {
1014: push(@{$approvedmsg},
1015: {
1016: mt => 'Students can automatically select your course by entering this code: [_1]',
1017: args => [$code],
1018: });
1019: $codes{$cnum} = $code;
1020: }
1.41 raeburn 1021: if (ref($postprocess) eq 'HASH') {
1022: if (ref($postprocess->{'createdmsg'}) eq 'ARRAY') {
1023: foreach my $item (@{$postprocess->{'createdmsg'}}) {
1024: if (ref($item) eq 'HASH') {
1025: if ($item->{'mt'} ne '') {
1026: push(@{$approvedmsg},$item);
1027: }
1028: }
1029: }
1030: }
1031: }
1.28 raeburn 1032: }
1.2 raeburn 1033: push(@completed,$cnum);
1.19 raeburn 1034:
1.23 raeburn 1035: unless (&Apache::lonnet::del_dom($namespace,[$cnum.'_'.$queue],$cdom) eq 'ok') {
1.19 raeburn 1036: push(@warn_dels,$cnum);
1037: }
1.26 raeburn 1038: &send_selfserve_notification($ownername.':'.$ownerdom,
1039: $approvedmsg,$cid,$coursedesc,$now,
1040: $beneficiary,$sender,undef,undef,$crstype);
1.2 raeburn 1041: my %reqhash = (
1042: reqtime => $history{'reqtime'},
1043: crstype => $history{'crstype'},
1044: details => $history{'details'},
1045: disposition => $history{'disposition'},
1046: status => 'created',
1047: adjudicator => $env{'user.name'}.':'.
1048: $env{'user.domain'},
1049: );
1050: my $userresult =
1051: &Apache::lonnet::store_userdata(\%reqhash,$requestkey,
1052: 'courserequests',$ownerdom,$ownername);
1053: if ($userresult eq 'ok') {
1054: my %status = (
1055: 'status:'.$cdom.':'.$cnum => 'created'
1056: );
1057: my $statusresult =
1058: &Apache::lonnet::put('courserequests',\%status,
1059: $ownerdom,$ownername);
1060: if ($statusresult ne 'ok') {
1061: push(@warn_approves,$cnum);
1062: }
1063: }
1064: if ($userresult ne 'ok') {
1065: push(@warn_approves,$cnum);
1066: }
1067: } else {
1068: push(@processing_errors,$cnum);
1069: }
1070: } else {
1071: push(@processing_errors,$cnum);
1072: }
1073: } else {
1.5 raeburn 1074: push(@nopermissions,$cnum);
1.2 raeburn 1075: }
1076: } else {
1077: push(@existing,$cnum);
1078: }
1079: } else {
1080: push(@missingreq,$cnum);
1081: }
1.1 raeburn 1082: }
1083: }
1.2 raeburn 1084: my @changes = (@completed,@rejections);
1085: if ($context eq 'domain') {
1.23 raeburn 1086: @changes = map {$_.'_'.$queue} (@changes);
1.30 raeburn 1087: } elsif ($context eq 'requestauthor') {
1088: @changes = map {$_.'_approval'} (@changes);
1.43 raeburn 1089: } elsif ($context eq 'requestusername') {
1090: @changes = map {&escape($_).'_approval'} (@changes);
1.2 raeburn 1091: }
1.1 raeburn 1092: if (@rejections) {
1.3 raeburn 1093: foreach my $item (@rejections) {
1.30 raeburn 1094: if (($context eq 'course') || ($context eq 'requestauthor')) {
1.43 raeburn 1095: my ($user,$uname,$udom,%userrequest,$key,$dbname);
1.30 raeburn 1096: if ($context eq 'requestauthor') {
1097: $uname = $item;
1098: $udom = $cdom;
1099: $user = $uname.':'.$udom;
1100: $key = 'author';
1.43 raeburn 1101: $dbname = 'requestauthor';
1.30 raeburn 1102: } else {
1103: $user = $item;
1104: ($uname,$udom) = split(/:/,$user);
1105: $key = $cdom.'_'.$cnum;
1.43 raeburn 1106: $dbname = $namespace;
1.30 raeburn 1107: }
1.2 raeburn 1108: &send_selfserve_notification($user,$rejectedmsg,$cid,$coursedesc,
1.26 raeburn 1109: $now,$beneficiary,$sender,undef,undef,
1110: $crstype);
1.30 raeburn 1111: %userrequest = (
1112: $key => {
1.1 raeburn 1113: timestamp => $now,
1114: adjudicator => $env{'user.name'}.':'.$env{'user.domain'},
1.30 raeburn 1115: status => 'rejection',
1.1 raeburn 1116: }
1117: );
1.30 raeburn 1118: if ($context eq 'requestauthor') {
1119: $userrequest{'author_status'} = 'rejection';
1120: }
1.1 raeburn 1121: my $userresult =
1.43 raeburn 1122: &Apache::lonnet::put($dbname,\%userrequest,$udom,$uname);
1.1 raeburn 1123: if ($userresult ne 'ok') {
1.30 raeburn 1124: push(@warn_rejects,$item);
1.1 raeburn 1125: }
1.43 raeburn 1126: } elsif ($context eq 'requestusername') {
1127: my ($uname,$udom,$dbname);
1128: $uname = $item;
1129: $udom = $cdom;
1130: $dbname = 'nohist_requestedusernames';
1131: my $domconfiguser = &Apache::lonnet::get_domainconfiguser($cdom);
1132: my %curr = &Apache::lonnet::get($dbname,[$uname],$cdom,$domconfiguser);
1133: if (ref($curr{$uname}) eq 'HASH') {
1134: $curr{$uname}{'status'} = 'rejected';
1135: $curr{$uname}{'timestamp'} = $now;
1136: $curr{$uname}{'adjudicator'} = $env{'user.name'}.':'.$env{'user.domain'};
1137: undef($curr{$uname}{'tmpinfo'});
1138: undef($curr{$uname}{'upass'});
1139: }
1140: my $userresult =
1141: &Apache::lonnet::put($dbname,\%curr,$cdom,$domconfiguser);
1142: if ($userresult ne 'ok') {
1143: push(@warn_rejects,$uname);
1144: }
1.1 raeburn 1145: } else {
1.3 raeburn 1146: my $cnum = $item;
1.23 raeburn 1147: if (ref($requesthash{$cnum.'_'.$queue}) eq 'HASH') {
1.3 raeburn 1148: if (&Apache::lonnet::homeserver($cnum,$cdom) eq 'no_host') {
1149: my $requestkey = $cdom.'_'.$cnum;
1.23 raeburn 1150: my $ownername = $requesthash{$cnum.'_'.$queue}{'ownername'};
1151: my $ownerdom = $requesthash{$cnum.'_'.$queue}{'ownerdom'};
1152: my $coursedesc = $requesthash{$cnum.'_'.$queue}{'description'};
1153: $crstype = $requesthash{$cnum.'_'.$queue}{'crstype'};
1.12 raeburn 1154: if ($crstype eq 'community') {
1155: $rejectedmsg = $rejectionmsg{'community'};
1156: } else {
1157: $rejectedmsg = $rejectionmsg{'course'};
1158: }
1.2 raeburn 1159: &send_selfserve_notification($ownername.':'.$ownerdom,$rejectedmsg,
1160: $cid,$coursedesc,$now,$beneficiary,
1.12 raeburn 1161: $sender,undef,undef,$crstype);
1.2 raeburn 1162: my %history =
1.3 raeburn 1163: &Apache::lonnet::restore($requestkey,'courserequests',
1.2 raeburn 1164: $ownerdom,$ownername);
1165: if ((ref($history{'details'}) eq 'HASH') &&
1.23 raeburn 1166: ($history{'disposition'} eq $queue)) {
1.2 raeburn 1167: my %reqhash = (
1168: reqtime => $history{'reqtime'},
1169: crstype => $history{'crstype'},
1170: details => $history{'details'},
1171: disposition => $history{'disposition'},
1172: status => 'rejected',
1173: adjudicator => $env{'user.name'}.':'.$env{'user.domain'},
1174: );
1175: my $userresult =
1.3 raeburn 1176: &Apache::lonnet::store_userdata(\%reqhash,$requestkey,
1177: 'courserequests',$ownerdom,$ownername);
1178: if ($userresult eq 'ok') {
1179: my %status = (
1180: 'status:'.$cdom.':'.$cnum => 'rejected'
1181: );
1182: my $statusresult =
1183: &Apache::lonnet::put('courserequests',\%status,
1184: $ownerdom,$ownername);
1185: if ($statusresult ne 'ok') {
1186: push(@warn_rejects,$cnum);
1187: }
1188: } else {
1189: push(@warn_rejects,$cnum);
1.2 raeburn 1190: }
1.23 raeburn 1191: unless (&Apache::lonnet::del_dom($namespace,[$cnum.'_'.$queue],$cdom) eq 'ok') {
1.19 raeburn 1192: push(@warn_dels,$cnum);
1193: }
1.3 raeburn 1194: } else {
1195: push(@warn_rejects,$cnum);
1.2 raeburn 1196: }
1.3 raeburn 1197: } else {
1198: push(@existing,$cnum);
1.2 raeburn 1199: }
1.3 raeburn 1200: } else {
1201: push(@rejectionerrors,$cnum);
1.2 raeburn 1202: }
1.1 raeburn 1203: }
1204: }
1205: }
1.30 raeburn 1206: if (@toremove) {
1.43 raeburn 1207: my $domconfiguser = &Apache::lonnet::get_domainconfiguser($cdom);
1.30 raeburn 1208: foreach my $item (@toremove) {
1.43 raeburn 1209: if ($context eq 'requestauthor') {
1210: my %userrequest = (
1211: author => {
1212: timestamp => $now,
1213: adjudicator => $env{'user.name'}.':'.$env{'user.domain'},
1214: status => 'deleted',
1215: },
1216: author_status => 'deleted',
1217: );
1218: &Apache::lonnet::put('requestauthor',\%userrequest,$cdom,$item);
1219: } elsif ($context eq 'requestusername') {
1220: my $dbname = 'nohist_requestedusernames';
1221: my %curr = &Apache::lonnet::get($dbname,[$item],$cdom,$domconfiguser);
1222: if (ref($curr{$item}) eq 'HASH') {
1223: $curr{$item}{'status'} = 'deleted';
1224: $curr{$item}{'timestamp'} = $now;
1225: $curr{$item}{'adjudicator'} = $env{'user.name'}.':'.$env{'user.domain'};
1226: undef($curr{$item}{'upass'});
1227: undef($curr{$item}{'tmpinfo'});
1228: }
1229: }
1.30 raeburn 1230: }
1231: @toremove = map {$_.'_approval'} (@toremove);
1232: my $delresult = &Apache::lonnet::del_dom($namespace,\@toremove,$cdom);
1233: }
1.1 raeburn 1234: if (@changes) {
1235: my $delresult;
1236: if ($context eq 'course') {
1237: $delresult = &Apache::lonnet::del($namespace,\@changes,$cdom,$cnum);
1238: } else {
1239: $delresult = &Apache::lonnet::del_dom($namespace,\@changes,$cdom);
1240: }
1241: if ($delresult eq 'ok') {
1242: my $namelink =
1243: &Apache::loncommon::plainname($env{'user.name'},$env{'user.domain'}).' ('.$env{'user.name'}.':'.$env{'user.domain'}.')';
1244: my ($chgmsg,$approvedlist,$rejectedlist);
1245: if ($context eq 'course') {
1246: $chgmsg = "'Action was taken on the following enrollment requests by [_1].',$namelink";
1.2 raeburn 1247: if (@completed) {
1248: $approvedlist = join("\n",@completed);
1.12 raeburn 1249: if ($crstype eq 'community') {
1250: $output .= '<p>'.&mt('The following were enrolled in the community:').'<ul>';
1251: } else {
1252: $output .= '<p>'.&mt('The following were enrolled in the course:').'<ul>';
1253: }
1.2 raeburn 1254: foreach my $user (@completed) {
1.1 raeburn 1255: my ($uname,$udom) = split(/:/,$user);
1256: my $userlink =
1257: &Apache::loncommon::aboutmewrapper(&Apache::loncommon::plainname($uname,$udom),$uname,$udom);
1258: $output .= '<li>'.$userlink.'</li>';
1259: }
1260: $output .= '</ul></p>';
1261: }
1262: if (@rejections) {
1263: $rejectedlist = join("\n",@rejections);
1264: $output .= '<p>'.&mt('The following enrollment requests were rejected:').'<ul>';
1265: foreach my $user (@rejections) {
1266: $output .= '<li>'.$user.'</li>';
1267: }
1268: $output .= '</ul></p>';
1269: }
1.2 raeburn 1270: if ($notifylist ne '') {
1271: &send_selfserve_notification($notifylist,$chgmsg,$cid,$coursedesc,
1272: $now,'coursemanagers',$sender,
1.12 raeburn 1273: $approvedlist,$rejectedlist,$crstype);
1.2 raeburn 1274: }
1.30 raeburn 1275: } elsif ($context eq 'requestauthor') {
1.42 bisitz 1276: $chgmsg = "'Action was taken on the following Authoring Space requests by [_1].',$namelink";
1.30 raeburn 1277: if (@completed) {
1278: $approvedlist = join("\n",@completed);
1279: $output .= '<p>'.&mt('The following requests were approved:').'<ul>';
1280: foreach my $uname (@completed) {
1281: my $userlink =
1282: &Apache::loncommon::aboutmewrapper(&Apache::loncommon::plainname($uname,$cdom),$uname,$cdom);
1283: $output .= '<li>'.$userlink.'</li>';
1284:
1285: }
1286: $output .= '</ul></p>';
1287: }
1288: if (@rejections) {
1289: $rejectedlist = join("\n",@rejections);
1290: $output .= '<p>'.&mt('The following requests were rejected:').'<ul>';
1291: foreach my $uname (@rejections) {
1292: my $userlink =
1293: &Apache::loncommon::aboutmewrapper(&Apache::loncommon::plainname($uname,$cdom),$uname,$cdom);
1294: $output .= '<li>'.$userlink.'</li>';
1295: }
1296: $output .= '</ul></p>';
1297: }
1298: if ($notifylist ne '') {
1299: &send_selfserve_notification($notifylist,$chgmsg,undef,$domdesc,
1300: $now,'authormanagers',$sender,
1301: $approvedlist,$rejectedlist);
1302: }
1.43 raeburn 1303: } elsif ($context eq 'requestusername') {
1304: $chgmsg = "'Action was taken on the following LON-CAPA account requests by [_1].',$namelink";
1305: if (@completed) {
1306: $approvedlist = join("\n",@completed);
1307: $output .= '<p>'.&mt('The following requests were approved:').'<ul>';
1308: foreach my $uname (@completed) {
1309: $output .= '<li>'.$uname.'</li>';
1310:
1311: }
1312: $output .= '</ul></p>';
1313: }
1314: if (@rejections) {
1315: $rejectedlist = join("\n",@rejections);
1316: $output .= '<p>'.&mt('The following requests were rejected:').'<ul>';
1317: foreach my $uname (@rejections) {
1318: $output .= '<li>'.$uname.'</li>';
1319: }
1320: $output .= '</ul></p>';
1321: }
1322: if ($notifylist ne '') {
1323: &send_selfserve_notification($notifylist,$chgmsg,undef,$domdesc,
1324: $now,'usernamemanagers',$sender,
1325: $approvedlist,$rejectedlist);
1326: }
1.1 raeburn 1327: } else {
1.12 raeburn 1328: $chgmsg = "'Action was taken on the following course and community requests by [_1].',$namelink";
1.2 raeburn 1329: if (@completed) {
1330: $approvedlist = join("\n",@completed);
1.12 raeburn 1331: $output .= '<p>'.&mt('The following courses/communities were created:').'<ul>';
1.2 raeburn 1332: foreach my $cnum (@completed) {
1333: my $showcourse;
1.23 raeburn 1334: if (ref($requesthash{$cnum.'_'.$queue})) {
1335: $showcourse = $requesthash{$cnum.'_'.$queue}{'description'};
1.2 raeburn 1336: } else {
1337: $showcourse = $cnum;
1338: }
1339: my $syllabuslink =
1340: &Apache::loncommon::syllabuswrapper($showcourse,$cnum,$cdom);
1.40 raeburn 1341: if ($codes{$cnum}) {
1.49 raeburn 1342: $syllabuslink .= ' '.&mt('Unique code: [_1]',$codes{$cnum});
1.39 raeburn 1343: }
1.2 raeburn 1344: $output .= '<li>'.$syllabuslink.'</li>';
1345: }
1346: $output .= '</ul></p>';
1347: }
1348: if (@rejections) {
1349: $rejectedlist = join("\n",@rejections);
1350: $output .= '<p>'.&mt('The following requests were rejected:').'<ul>';
1351: foreach my $cnum (@rejections) {
1352: my $showcourse;
1.23 raeburn 1353: if (ref($requesthash{$cnum.'_'.$queue})) {
1354: $showcourse = $requesthash{$cnum.'_'.$queue}{'description'};
1.2 raeburn 1355: } else {
1356: $showcourse = $cnum;
1357: }
1358: $output .= '<li>'.$showcourse.'</li>';
1359: }
1360: $output .= '</ul></p>';
1361: }
1362: if ($notifylist ne '') {
1363: &send_selfserve_notification($notifylist,$chgmsg,$cid,$domdesc,
1364: $now,'domainmanagers',$sender,
1.12 raeburn 1365: $approvedlist,$rejectedlist,$crstype);
1.2 raeburn 1366: }
1.1 raeburn 1367: }
1.43 raeburn 1368: } else {
1369: if (($context eq 'requestauthor') || ($context eq 'requestusername')) {
1370: push(@warn_dels,@changes);
1371: }
1.1 raeburn 1372: }
1373: }
1374: if (@existing) {
1375: if ($context eq 'course') {
1376: $output .= '<p>'.&mt('The following enrollment requests were deleted because the user is already enrolled in the course:').'<ul>';
1377: foreach my $user (@existing) {
1378: $output .= '<li>'.$user.'</li>';
1379: }
1380: $output .= '</ul></p>';
1.30 raeburn 1381: } elsif ($context eq 'requestauthor') {
1.42 bisitz 1382: $output .= '<p>'.&mt('Authoring Space requests from the following users were deleted because one already exists:').'<ul>';
1.30 raeburn 1383: foreach my $uname (@existing) {
1384: my $userlink =
1385: &Apache::loncommon::aboutmewrapper(&Apache::loncommon::plainname($uname,$cdom),$uname,$cdom);
1386: $output .= '<li>'.$userlink.'</li>';
1387: }
1388: $output .= '</ul></p>';
1.1 raeburn 1389: } else {
1.12 raeburn 1390: $output .= '<p>'.&mt('The following course/community creation requests were deleted because the course or community has already been created:').'<ul>';
1.2 raeburn 1391: foreach my $cnum (@existing) {
1392: my $showcourse;
1393: my %coursehash = &Apache::lonnet::coursedescription($cdom.'/'.$cnum);
1394: if ($coursehash{'description'} ne '') {
1395: $showcourse = $coursehash{'description'};
1396: } else {
1397: $showcourse = $cnum;
1398: }
1399: $output .= '<li>'.$showcourse.'</li>';
1400: }
1401: $output .= '</ul></p>';
1.1 raeburn 1402: }
1403: }
1404: if (@missingreq) {
1405: if ($context eq 'course') {
1406: $output .= '<p>'.&mt('The following enrollment requests were ignored because the request is no longer in the enrollment queue:').'<ul>';
1407: foreach my $user (@missingreq) {
1408: $output .= '<li>'.$user.'</li>';
1409: }
1410: $output .= '</ul></p>';
1.30 raeburn 1411: } elsif ($context eq 'requestauthor') {
1412: $output .= '<p>'.&mt('The following requests were ignored because the request is no longer in the queue:').'<ul>';
1413: foreach my $uname (@missingreq) {
1414: my $userlink =
1415: &Apache::loncommon::aboutmewrapper(&Apache::loncommon::plainname($uname,$cdom),$uname,$cdom);
1416: $output .= '<li>'.$userlink.'</li>';
1417: }
1418: $output .= '</ul></p>';
1.2 raeburn 1419: } else {
1.12 raeburn 1420: $output .= '<p>'.&mt('The following course/community creation requests were ignored because the request is no longer in the queue:').'<ul>';
1.2 raeburn 1421: foreach my $cnum (@missingreq) {
1422: $output .= '<li>'.$cnum.'</li>';
1423: }
1424: $output .= '</ul></p>';
1.1 raeburn 1425: }
1426: }
1427: if (@invalidusers) {
1428: if ($context eq 'course') {
1429: $output .= '<p>'.&mt('The following enrollment requests were deleted because the requestor does not have a LON-CAPA account:').'<ul>';
1430: foreach my $user (@invalidusers) {
1431: $output .= '<li>'.$user.'</li>';
1432: }
1433: $output .= '</ul></p>';
1.30 raeburn 1434: } elsif ($context eq 'requestauthor') {
1.42 bisitz 1435: $output .= '<p>'.&mt('The following Authoring Space requests were deleted because the requestor does not have a LON-CAPA account:').'<ul>';
1.30 raeburn 1436: foreach my $uname (@invalidusers) {
1437: my $userlink =
1438: &Apache::loncommon::aboutmewrapper(&Apache::loncommon::plainname($uname,$cdom),$uname,$cdom);
1439: $output .= '<li>'.$userlink.'</li>';
1440: }
1441: $output .= '</ul></p>';
1.1 raeburn 1442: }
1443: }
1444: if (@limitexceeded) {
1445: if ($context eq 'course') {
1446: $output .= '<p>'.&mt('The following enrollment requests were skipped because the enrollment limit has been reached for the course:').'<ul>';
1447: foreach my $user (@limitexceeded) {
1448: $output .= '<li>'.$user.'</li>';
1449: }
1450: $output .= '</ul></p>';
1451: }
1452: }
1.5 raeburn 1453: if (@nopermissions) {
1.30 raeburn 1454: if ($context eq 'course') {
1455: $output .= '<p>'.&mt('The following course/community creation requests could not be processed because the owner does not have rights to create this type of course:').'<ul>';
1456: foreach my $cnum (@nopermissions) {
1457: my $showcourse;
1458: if (ref($requesthash{$cnum.'_'.$queue})) {
1459: $showcourse = $requesthash{$cnum.'_'.$queue}{'description'};
1460: } else {
1461: $showcourse = $cnum;
1462: }
1463: $output .= '<li>'.$showcourse.'</li>';
1464: }
1465: $output .= '</ul></p>';
1466: } elsif ($context eq 'requestauthor') {
1.42 bisitz 1467: $output .= '<p>'.&mt('The following requests could not be processed because the requestor does not have rights to request an Authoring Space:').'<ul>';
1.30 raeburn 1468: foreach my $uname (@nopermissions) {
1469: my $userlink =
1470: &Apache::loncommon::aboutmewrapper(&Apache::loncommon::plainname($uname,$cdom),$uname,$cdom);
1471: $output .= '<li>'.$userlink.'</li>';
1.5 raeburn 1472: }
1.30 raeburn 1473: $output .= '</ul></p>';
1.5 raeburn 1474: }
1475: }
1.2 raeburn 1476: if (@processing_errors) {
1.1 raeburn 1477: if ($context eq 'course') {
1478: $output .= '<p>'.&mt('The following enrollment requests could not be processed because an error occurred:').'<ul>';
1.2 raeburn 1479: foreach my $user (@processing_errors) {
1.1 raeburn 1480: $output .= '<li>'.$user.'</li>';
1481: }
1482: $output .= '</ul></p>';
1.30 raeburn 1483: } elsif ($context eq 'requestauthor') {
1484: $output .= '<p>'.&mt('The following requests could not be processed because an error occurred:').'<ul>';
1485: foreach my $uname (@processing_errors) {
1486: my $userlink =
1487: &Apache::loncommon::aboutmewrapper(&Apache::loncommon::plainname($uname,$cdom),$uname,$cdom);
1488: $output .= '<li>'.$userlink.'</li>';
1489: }
1490: $output .= '</ul></p>';
1.43 raeburn 1491: } elsif ($context eq 'requestusername') {
1492: $output .= '<p>'.&mt('The following requests could not be processed because an error occurred:').'<ul>';
1493: foreach my $uname (@processing_errors) {
1494: $output .= '<li>'.$uname.'</li>';
1495: }
1496: $output .= '</ul></p>';
1.1 raeburn 1497: } else {
1.12 raeburn 1498: $output .= '<p>'.&mt('The following course/community creation requests could not be processed because an error occurred:').'<ul>';
1.2 raeburn 1499: foreach my $cnum (@processing_errors) {
1500: my $showcourse;
1.23 raeburn 1501: if (ref($requesthash{$cnum.'_'.$queue})) {
1502: $showcourse = $requesthash{$cnum.'_'.$queue}{'description'};
1.2 raeburn 1503: } else {
1504: $showcourse = $cnum;
1505: }
1506: $output .= '<li>'.$showcourse.'</li>';
1507: }
1508: $output .= '</ul></p>';
1.1 raeburn 1509: }
1510: }
1.3 raeburn 1511: if (@rejectionerrors) {
1.12 raeburn 1512: $output .= '<p>'.&mt('The following course/community creation request rejections could not be fully processed because an error occurred:').'<ul>';
1.3 raeburn 1513: foreach my $cnum (@rejectionerrors) {
1514: my $showcourse;
1.23 raeburn 1515: if (ref($requesthash{$cnum.'_'.$queue})) {
1516: $showcourse = $requesthash{$cnum.'_'.$queue}{'description'};
1.3 raeburn 1517: } else {
1518: $showcourse = $cnum;
1519: }
1520: $output .= '<li>'.$showcourse.'</li>';
1521: }
1522: $output .= '</ul></p>';
1523: }
1.2 raeburn 1524: if (@warn_approves || @warn_rejects) {
1.1 raeburn 1525: if ($context eq 'course') {
1526: $output .= '<p>'.&mt("For the following users, an error occurred when updating the user's own self-enroll requests record:").'<ul>';
1527: foreach my $user (@warn_approves) {
1528: $output .= '<li>'.$user.'</li>';
1529: }
1530: $output .= '</ul></p>';
1.30 raeburn 1531: } elsif ($context eq 'requestauthor') {
1532: $output .= '<p>'.&mt("For the following users, an error occurred when updating the user's own author request record:").'<ul>';
1533: foreach my $uname (@warn_approves,@warn_rejects) {
1534: my $userlink =
1535: &Apache::loncommon::aboutmewrapper(&Apache::loncommon::plainname($uname,$cdom),$uname,$cdom);
1536: $output .= '<li>'.$userlink.'</li>';
1537: }
1538: $output .= '</ul></p>';
1.43 raeburn 1539: } elsif ($context eq 'requestusername') {
1540: $output .= '<p>'.&mt("For the following users, an error occurred when updating the account request record for the user:").'<ul>';
1541: foreach my $uname (@warn_approves,@warn_rejects) {
1542: $output .= '<li>'.$uname.'</li>';
1543: }
1544: $output .= '</ul></p>';
1.1 raeburn 1545: } else {
1.12 raeburn 1546: $output .= '<p>'.&mt("For the following course/community requests an error occurred when updating the requestor's own requests record:").'<ul>';
1.2 raeburn 1547: foreach my $cnum (@warn_approves,@warn_rejects) {
1548: my $showcourse;
1.23 raeburn 1549: if (ref($requesthash{$cnum.'_'.$queue})) {
1550: $showcourse = $requesthash{$cnum.'_'.$queue}{'description'};
1.2 raeburn 1551: } else {
1552: $showcourse = $cnum;
1553: }
1554: $output .= '<li>'.$showcourse.'</li>';
1.1 raeburn 1555: }
1556: $output .= '</ul></p>';
1557: }
1558: }
1.19 raeburn 1559: if (@warn_dels) {
1.30 raeburn 1560: if ($context eq 'requestauthor') {
1561: $output .= '<p>'.&mt("For the following requests an error occurred when removing the request from the queue:").'<ul>';
1562: foreach my $uname (@warn_dels) {
1563: my $userlink =
1564: &Apache::loncommon::aboutmewrapper(&Apache::loncommon::plainname($uname,$cdom),$uname,$cdom);
1565: $output .= '<li>'.$userlink.'</li>';
1566: }
1567: $output .= '</ul></p>';
1.43 raeburn 1568: } elsif ($context eq 'requestusername') {
1569: $output .= '<p>'.&mt("For the following requests an error occurred when removing the request from the queue:").'<ul>';
1570: foreach my $item (@warn_dels) {
1571: my ($escuname) = split(/_/,$item);
1572: $output .= '<li>'.&unescape($escuname).'</li>';
1573: }
1574: $output .= '</ul></p>';
1.30 raeburn 1575: } else {
1.36 bisitz 1576: $output .= '<p>'.&mt("For the following course/community requests an error occurred when removing requests from the pending queue:").'<ul>';
1.30 raeburn 1577: foreach my $cnum (@warn_dels) {
1578: my $showcourse;
1579: if (ref($requesthash{$cnum.'_'.$queue})) {
1580: $showcourse = $requesthash{$cnum.'_'.$queue}{'description'};
1581: } else {
1582: $showcourse = $cnum;
1583: }
1584: $output .= '<li>'.$showcourse.'</li>';
1.19 raeburn 1585: }
1.30 raeburn 1586: $output .= '</ul></p>';
1.19 raeburn 1587: }
1588: }
1.1 raeburn 1589: return $output;
1590: }
1591:
1592: sub get_student_counts {
1593: my ($cdom,$cnum) = @_;
1594: my (%idx,%stucounts);
1595: my $classlist = &Apache::loncoursedata::get_classlist($cdom,$cnum);
1596: $idx{'type'} = &Apache::loncoursedata::CL_TYPE();
1597: $idx{'status'} = &Apache::loncoursedata::CL_STATUS();
1598: while (my ($student,$data) = each(%$classlist)) {
1599: if (($data->[$idx{'status'}] eq 'Active') ||
1600: ($data->[$idx{'status'}] eq 'Future')) {
1601: if ($data->[$idx{'type'}] eq 'selfenroll') {
1602: $stucounts{'selfenroll'} ++;
1603: }
1604: $stucounts{'allstudents'} ++;
1605: }
1606: }
1607: return (\%stucounts,\%idx,$classlist);
1608: }
1609:
1.2 raeburn 1610: sub course_creation {
1611: my ($dom,$cnum,$context,$details,$logmsg,$newusermsg,$addresult,$enrollcount,$output,
1.41 raeburn 1612: $keysmsg,$domdefs,$longroles,$coderef,$customhash) = @_;
1.2 raeburn 1613: unless ((ref($details) eq 'HASH') && (ref($domdefs) eq 'HASH') &&
1614: (ref($longroles) eq 'HASH')) {
1.53 raeburn 1615: return ('error: Invalid request');
1.2 raeburn 1616: }
1617: my ($result,$ownername,$ownerdom);
1618: my $crstype = $details->{'crstype'};
1.41 raeburn 1619: my $coursedesc = $details->{'cdescr'};
1.47 raeburn 1620: my $accessstart = $details->{'accessstart'};
1621: my $accessend = $details->{'accessend'};
1622: my %domconfig = &Apache::lonnet::get_dom('configuration',['requestcourses'],$dom);
1.40 raeburn 1623: if (ref($domconfig{'requestcourses'}) eq 'HASH') {
1624: if (ref($domconfig{'requestcourses'}{'uniquecode'}) eq 'HASH') {
1625: if ($domconfig{'requestcourses'}{'uniquecode'}{$crstype}) {
1626: $details->{'uniquecode'} = 1;
1627: }
1628: }
1629: }
1.2 raeburn 1630: if ($context eq 'domain') {
1631: $ownername = $details->{'owner'};
1632: $ownerdom = $details->{'domain'};
1633: } else {
1634: $ownername = $env{'user.name'};
1635: $ownerdom = $env{'user.domain'};
1636: }
1.41 raeburn 1637: my $fullname = &Apache::loncommon::plainname($ownername,$ownerdom);
1.2 raeburn 1638: my $owneremail;
1639: my %emails = &Apache::loncommon::getemails($ownername,$ownerdom);
1640: foreach my $email ('permanentemail','critnotification','notification') {
1641: $owneremail = $emails{$email};
1642: last if ($owneremail ne '');
1643: }
1.8 raeburn 1644: my %reqdetails = &build_batchcreatehash($dom,$context,$details,$owneremail,$domdefs);
1.2 raeburn 1645: my $cid = &LONCAPA::batchcreatecourse::build_course($dom,$cnum,'requestcourses',
1.22 raeburn 1646: \%reqdetails,$longroles,$logmsg,$newusermsg,$addresult,
1.39 raeburn 1647: $enrollcount,$output,$keysmsg,$ownerdom,$ownername,$cnum,$crstype,$coderef);
1.41 raeburn 1648: my $postprocess;
1.2 raeburn 1649: if ($cid eq "/$dom/$cnum") {
1650: $result = 'created';
1.41 raeburn 1651: my $code;
1652: if (ref($coderef)) {
1653: $code = $$coderef;
1654: }
1655: $postprocess = &Apache::lonnet::auto_crsreq_update($dom,$cnum,$crstype,$result,$ownername,
1.47 raeburn 1656: $ownerdom,$fullname,$coursedesc,$code,
1657: $accessstart,$accessend,$customhash);
1.2 raeburn 1658: } else {
1659: $result = 'error: '.$cid;
1660: }
1.41 raeburn 1661: return ($result,$postprocess);
1.2 raeburn 1662: }
1663:
1664: sub build_batchcreatehash {
1.8 raeburn 1665: my ($dom,$context,$details,$owneremail,$domdefs) = @_;
1.2 raeburn 1666: my %batchhash;
1.39 raeburn 1667: my @items = qw{owner domain coursehome clonecrs clonedom datemode dateshift enrollstart enrollend accessstart accessend sections crosslists users uniquecode};
1.2 raeburn 1668: if ((ref($details) eq 'HASH') && (ref($domdefs) eq 'HASH')) {
1.17 raeburn 1669: my $emailenc = &escape($owneremail);
1.2 raeburn 1670: my $owner = $details->{'owner'}.':'.$details->{'domain'};
1671: foreach my $item (@items) {
1672: $batchhash{$item} = $details->{$item};
1673: }
1674: $batchhash{'title'} = $details->{'cdescr'};
1675: $batchhash{'coursecode'} = $details->{'instcode'};
1.35 raeburn 1676: if ($domdefs->{'officialcredits'} || $domdefs->{'unofficialcredits'}) {
1677: $batchhash{'defaultcredits'} = $details->{'defaultcredits'};
1678: }
1.2 raeburn 1679: $batchhash{'emailenc'} = $emailenc;
1680: $batchhash{'adds'} = $details->{'autoadds'};
1681: $batchhash{'drops'} = $details->{'autodrops'};
1682: $batchhash{'authtype'} = $domdefs->{'auth_def'};
1683: $batchhash{'authparam'} = $domdefs->{'auth_arg_def'};
1684: if ($details->{'crstype'} eq 'community') {
1685: $batchhash{'crstype'} = 'Community';
1.53 raeburn 1686: } elsif ($details->{'crstype'} eq 'placement') {
1687: $batchhash{'crstype'} = 'Placement';
1.2 raeburn 1688: } else {
1.41 raeburn 1689: if ($details->{'crstype'} eq 'textbook') {
1690: if ($details->{'clonecrs'} && $details->{'clonedom'}) {
1691: my %clonedfrom = &Apache::lonnet::coursedescription($details->{'clonedom'}.'_'.$details->{'clonecrs'});
1692: $batchhash{'textbook'} = $clonedfrom{'description'};
1693: }
1694: }
1.2 raeburn 1695: $batchhash{'crstype'} = 'Course';
1696: }
1.8 raeburn 1697: my ($owner_firstname,$owner_lastname);
1698: if ($context eq 'domain') {
1699: my %userenv = &Apache::lonnet::userenvironment($details->{'domain'},
1700: $details->{'owner'},
1701: 'firstname','lastname');
1702: $owner_firstname = $userenv{'firstname'};
1703: $owner_lastname = $userenv{'lastname'};
1704: } else {
1705: $owner_firstname = $env{'environment.firstname'};
1706: $owner_lastname = $env{'environment.lastname'};
1707: }
1708: if (ref($details->{'personnel'}) eq 'HASH') {
1709: %{$batchhash{'users'}} = %{$details->{'personnel'}};
1710: if (ref($batchhash{'users'}) eq 'HASH') {
1711: foreach my $userkey (keys(%{$batchhash{'users'}})) {
1712: if (ref($batchhash{'users'}{$userkey}) eq 'HASH') {
1713: if (ref($batchhash{'users'}{$userkey}{'roles'}) eq 'ARRAY') {
1714: foreach my $role (@{$batchhash{'users'}{$userkey}{'roles'}}) {
1715: my $start = '';
1716: my $end = '';
1717: if ($role eq 'st') {
1718: $start = $details->{'accessstart'};
1719: $end = $details->{'accessend'};
1720: }
1721: $batchhash{'users'}{$userkey}{$role}{'start'} = $start;
1722: $batchhash{'users'}{$userkey}{$role}{'end'} = $end;
1723: }
1724: }
1725: }
1726: }
1727: }
1728: }
1729: $batchhash{'users'}{$owner}{firstname} = $owner_firstname;
1730: $batchhash{'users'}{$owner}{lastname} = $owner_lastname;
1731: $batchhash{'users'}{$owner}{emailenc} = $emailenc;
1732: $batchhash{'users'}{$owner}{owneremail} = $owneremail;
1.55 raeburn 1733: $batchhash{'setcomment'} = 1;
1.2 raeburn 1734: }
1735: return %batchhash;
1736: }
1737:
1.4 raeburn 1738: sub can_clone_course {
1.51 raeburn 1739: my ($uname,$udom,$clonecrs,$clonedom,$crstype,$dom,$instcode) = @_;
1.4 raeburn 1740: my $canclone;
1.11 raeburn 1741: my $ccrole = 'cc';
1.12 raeburn 1742: if ($crstype eq 'community') {
1.11 raeburn 1743: $ccrole = 'co';
1744: }
1.4 raeburn 1745: my %roleshash = &Apache::lonnet::get_my_roles($uname,$udom,'userroles',['active'],
1.11 raeburn 1746: [$ccrole],[$clonedom]);
1747: if (exists($roleshash{$clonecrs.':'.$clonedom.':'.$ccrole})) {
1.4 raeburn 1748: $canclone = 1;
1749: } else {
1.51 raeburn 1750: my %courseenv = &Apache::lonnet::userenvironment($clonedom,$clonecrs,
1751: ('cloners','internal.coursecode'));
1.4 raeburn 1752: my $cloners = $courseenv{'cloners'};
1.51 raeburn 1753: my $clonefromcode = $courseenv{'internal.coursecode'};
1.4 raeburn 1754: if ($cloners ne '') {
1755: my @cloneable = split(',',$cloners);
1756: if (grep(/^\*$/,@cloneable)) {
1757: $canclone = 1;
1.51 raeburn 1758: } elsif (grep(/^\*:\Q$udom\E$/,@cloneable)) {
1759: $canclone = 1;
1760: } elsif (grep(/^\Q$uname\E:\Q$udom\E$/,@cloneable)) {
1761: $canclone = 1;
1.4 raeburn 1762: }
1.51 raeburn 1763: unless ($canclone) {
1764: if (($clonefromcode) && ($instcode) && ($clonedom eq $dom)) {
1765: my (%gotdomdefaults,%gotcodedefaults);
1766: foreach my $cloner (@cloneable) {
1767: if (($cloner ne '*') && ($cloner !~ /^\*\:$match_domain$/) &&
1768: ($cloner !~ /^$match_username\:$match_domain$/) && ($cloner ne '')) {
1769: if ($cloner =~ /\=/) {
1770: my (%codedefaults,@code_order);
1771: if (ref($gotcodedefaults{$clonedom}) eq 'HASH') {
1772: if (ref($gotcodedefaults{$clonedom}{'defaults'}) eq 'HASH') {
1773: %codedefaults = %{$gotcodedefaults{$clonedom}{'defaults'}};
1774: }
1775: if (ref($gotcodedefaults{$clonedom}{'order'}) eq 'ARRAY') {
1776: @code_order = @{$gotcodedefaults{$dom}{'order'}};
1777: }
1778: } else {
1779: &Apache::lonnet::auto_instcode_defaults($clonedom,
1780: \%codedefaults,
1781: \@code_order);
1782: $gotcodedefaults{$clonedom}{'defaults'} = \%codedefaults;
1783: $gotcodedefaults{$clonedom}{'order'} = \@code_order;
1784: }
1785: if (@code_order > 0) {
1786: if (&Apache::lonnet::check_instcode_cloning(\%codedefaults,\@code_order,
1787: $cloner,$clonefromcode,$instcode)) {
1788: $canclone = 1;
1789: last;
1790: }
1791: }
1792: }
1793: }
1794: }
1795: }
1.4 raeburn 1796: }
1.51 raeburn 1797: } else {
1798: my %domdefs = &Apache::lonnet::get_domain_defaults($clonedom);
1799: if ($domdefs{'canclone'}) {
1800: unless ($domdefs{'canclone'} eq 'none') {
1801: if ($domdefs{'canclone'} eq 'domain') {
1802: if ($udom eq $clonedom) {
1803: $canclone = 1;
1804: }
1805: } elsif (($clonefromcode) && ($instcode) &&
1806: ($clonedom eq $dom)) {
1807: if (&Apache::lonnet::default_instcode_cloning($clonedom,$domdefs{'canclone'},
1808: $clonefromcode,$instcode)) {
1809: $canclone = 1;
1810: }
1811: }
1812: }
1.4 raeburn 1813: }
1814: }
1.18 raeburn 1815: unless ($canclone) {
1816: if (&Apache::lonnet::is_course_owner($clonedom,$clonecrs,$uname,$udom)) {
1.20 bisitz 1817: $canclone = 1;
1.18 raeburn 1818: }
1819: }
1.4 raeburn 1820: }
1821: return $canclone;
1822: }
1823:
1.13 raeburn 1824: sub get_processtype {
1.30 raeburn 1825: my ($context,$uname,$udom,$isadv,$dom,$crstype,$inststatuses,$domconfig) = @_;
1.13 raeburn 1826: return unless ((ref($inststatuses) eq 'ARRAY') && (ref($domconfig) eq 'HASH'));
1827: if ($uname eq '' || $udom eq '') {
1828: $uname = $env{'user.name'};
1829: $udom = $env{'user.domain'};
1830: $isadv = $env{'user.adv'};
1831: }
1.30 raeburn 1832: my (%userenv,%settings,$val,@options,$envkey);
1833: if ($context eq 'course') {
1834: @options = ('autolimit','validate','approval');
1835: $envkey = 'requestcourses.'.$crstype;
1836: if (ref($domconfig->{'requestcourses'}) eq 'HASH') {
1837: if (ref($domconfig->{'requestcourses'}->{$crstype}) eq 'HASH') {
1838: %settings = %{$domconfig->{'requestcourses'}->{$crstype}};
1839: }
1840: }
1841: } else {
1842: @options = ('automatic','approval');
1843: $envkey = 'requestauthor';
1844: if (ref($domconfig->{'requestauthor'}) eq 'HASH') {
1845: %settings = %{$domconfig->{'requestauthor'}};
1846: }
1847: }
1848: if (($dom eq $udom) || ($context eq 'requestauthor')) {
1.13 raeburn 1849: %userenv =
1.30 raeburn 1850: &Apache::lonnet::userenvironment($udom,$uname,$envkey,'inststatus');
1851: if ($userenv{$envkey}) {
1852: $val = $userenv{$envkey};
1.13 raeburn 1853: @{$inststatuses} = ('_custom_');
1854: } else {
1.30 raeburn 1855: my %alltasks;
1856: if (($isadv) && ($settings{'_LC_adv'} ne '')) {
1.33 raeburn 1857: $val = $settings{'_LC_adv'};
1.30 raeburn 1858: @{$inststatuses} = ('_LC_adv_');
1859: } else {
1860: if ($userenv{'inststatus'} ne '') {
1861: @{$inststatuses} = split(',',$userenv{'inststatus'});
1862: } else {
1863: @{$inststatuses} = ('default');
1864: }
1865: foreach my $status (@{$inststatuses}) {
1866: if (exists($settings{$status})) {
1867: my $value = $settings{$status};
1868: next unless ($value);
1869: unless (exists($alltasks{$value})) {
1870: if (ref($alltasks{$value}) eq 'ARRAY') {
1871: unless(grep(/^\Q$status\E$/,@{$alltasks{$value}})) {
1872: push(@{$alltasks{$value}},$status);
1.13 raeburn 1873: }
1.30 raeburn 1874: } else {
1875: @{$alltasks{$value}} = ($status);
1.13 raeburn 1876: }
1877: }
1.30 raeburn 1878: }
1879: }
1880: my $maxlimit = 0;
1881: if ($context eq 'course') {
1882: foreach my $key (sort(keys(%alltasks))) {
1883: if ($key =~ /^autolimit=(\d*)$/) {
1884: if ($1 eq '') {
1885: $val ='autolimit=';
1886: last;
1887: } elsif ($1 > $maxlimit) {
1888: $maxlimit = $1;
1.13 raeburn 1889: }
1890: }
1.30 raeburn 1891: }
1892: }
1893: if (($context eq 'requestauthor') || (!$val)) {
1894: if ($context eq 'course' && $maxlimit) {
1895: $val = 'autolimit='.$maxlimit;
1896: } else {
1897: foreach my $option (@options) {
1898: if ($alltasks{$option}) {
1899: $val = $option;
1900: last;
1.13 raeburn 1901: }
1902: }
1903: }
1904: }
1905: }
1906: }
1907: } else {
1908: %userenv = &Apache::lonnet::userenvironment($udom,$uname,'reqcrsotherdom.'.$crstype);
1909: if ($userenv{'reqcrsotherdom.'.$crstype}) {
1910: my @doms = split(',',$userenv{'reqcrsotherdom.'.$crstype});
1911: my $optregex = join('|',@options);
1912: foreach my $item (@doms) {
1913: my ($extdom,$extopt) = split(':',$item);
1914: if ($extdom eq $dom) {
1915: if ($extopt =~ /^($optregex)(=?\d*)$/) {
1916: $val = $1.$2;
1917: }
1918: last;
1919: }
1920: }
1921: @{$inststatuses} = ('_external_');
1922: }
1923: }
1924: return $val;
1925: }
1926:
1.14 raeburn 1927: sub queued_selfenrollment {
1928: my ($notitle) = @_;
1929: my $output;
1930: my %selfenrollrequests = &Apache::lonnet::dump('selfenrollrequests');
1931: my %reqs_by_date;
1932: foreach my $item (keys(%selfenrollrequests)) {
1933: if (ref($selfenrollrequests{$item}) eq 'HASH') {
1934: if ($selfenrollrequests{$item}{'status'} eq 'request') {
1935: if ($selfenrollrequests{$item}{'timestamp'}) {
1936: push(@{$reqs_by_date{$selfenrollrequests{$item}{'timestamp'}}},$item);
1937: }
1938: }
1939: }
1940: }
1941: if (keys(%reqs_by_date)) {
1942: unless ($notitle) {
1.32 raeburn 1943: $output .= '<br /><b>'.&mt('Enrollment requests pending Course Coordinator approval').'</b><br />';
1.14 raeburn 1944: }
1945: $output .= &Apache::loncommon::start_data_table().
1946: &Apache::loncommon::start_data_table_header_row().
1947: '<th>'.&mt('Date requested').'</th><th>'.&mt('Course title').'</th>'.
1948: '<th>'.&mt('User role').'</th><th>'.&mt('Section').'</th>'.
1949: &Apache::loncommon::end_data_table_header_row();
1950: my @sorted = sort { $a <=> $b } (keys(%reqs_by_date));
1951: foreach my $item (@sorted) {
1952: if (ref($reqs_by_date{$item}) eq 'ARRAY') {
1953: foreach my $crs (@{$reqs_by_date{$item}}) {
1954: my %courseinfo = &Apache::lonnet::coursedescription($crs);
1955: my $usec = $selfenrollrequests{$crs}{'section'};
1.16 raeburn 1956: my $rolename = &Apache::lonnet::plaintext('st',$courseinfo{'type'},$crs);
1.14 raeburn 1957: if ($usec eq '') {
1958: $usec = &mt('No section');
1959: }
1960: $output .= &Apache::loncommon::start_data_table_row().
1961: '<td>'.&Apache::lonlocal::locallocaltime($item).'</td>'.
1962: '<td>'.$courseinfo{'description'}.'</td>'.
1963: '<td>'.$rolename.'</td><td>'.$usec.'</td>'.
1964: &Apache::loncommon::end_data_table_row();
1965: }
1966: }
1967: }
1968: $output .= &Apache::loncommon::end_data_table();
1969: }
1970: return $output;
1971: }
1972:
1.19 raeburn 1973: sub update_coursereq_status {
1.26 raeburn 1974: my ($reqhash,$dom,$cnum,$reqstatus,$context,$udom,$uname) = @_;
1.19 raeburn 1975: my ($storeresult,$statusresult,$output);
1976: my $requestkey = $dom.'_'.$cnum;
1977: if ($requestkey =~ /^($match_domain)_($match_courseid)$/) {
1978: $storeresult = &Apache::lonnet::store_userdata($reqhash,$requestkey,
1.26 raeburn 1979: 'courserequests',$udom,$uname);
1.19 raeburn 1980: if ($storeresult eq 'ok') {
1981: my %status = (
1982: 'status:'.$dom.':'.$cnum => $reqstatus,
1983: );
1.26 raeburn 1984: $statusresult = &Apache::lonnet::put('courserequests',\%status,$udom,$uname);
1.19 raeburn 1985: }
1986: } else {
1987: $storeresult = 'error: invalid requestkey format';
1988: }
1989: if ($storeresult ne 'ok') {
1990: $output = &mt('An error occurred saving a record of the details of your request: [_1].',$storeresult);
1991: if ($context eq 'domain') {
1992: $output .= "\n";
1993: } else {
1994: $output = '<span class="LC_warning">'.$output.'</span><br />';
1995: }
1.26 raeburn 1996: &Apache::lonnet::logthis("Error saving course request - $requestkey for $uname:$udom - $storeresult");
1.19 raeburn 1997: } elsif ($statusresult ne 'ok') {
1998: $output = &mt('An error occurred saving a record of the status of your request: [_1].',$statusresult);
1999: if ($context eq 'domain') {
2000: $output .= "\n";
2001: } else {
2002: $output = '<span class="LC_warning">'.$output.'</span><br />';
2003: }
1.26 raeburn 2004: &Apache::lonnet::logthis("Error saving course request status for $requestkey (for $uname:$udom) - $statusresult");
1.19 raeburn 2005: }
2006: return ($storeresult,$output);
2007: }
2008:
1.23 raeburn 2009: sub process_official_reqs {
1.26 raeburn 2010: my ($context,$dom,$dcname,$dcdom) = @_;
1.23 raeburn 2011: my $reqsnamespace = 'courserequestqueue';
2012: my %requesthash =
1.24 raeburn 2013: &Apache::lonnet::dump_dom($reqsnamespace,$dom,'_pending');
1.23 raeburn 2014: my (%newcids,%longroles,%stillpending);
2015: my @courseroles = ('cc','in','ta','ep','ad','st');
2016: foreach my $role (@courseroles) {
2017: $longroles{$role}=&Apache::lonnet::plaintext($role);
2018: }
2019: my %domdefs = &Apache::lonnet::get_domain_defaults($dom);
2020: my ($output,$linefeed);
2021: if ($context eq 'auto') {
2022: $linefeed = "\n";
2023: } else {
2024: $linefeed = '<br />'."\n";
2025: }
2026: foreach my $key (keys(%requesthash)) {
2027: my ($cnum,$status) = split('_',$key);
2028: next if (&Apache::lonnet::homeserver($cnum,$dom) ne 'no_host');
2029: if (ref($requesthash{$key}) eq 'HASH') {
2030: my $ownername = $requesthash{$key}{'ownername'};
2031: my $ownerdom = $requesthash{$key}{'ownerdom'};
2032: next if (&Apache::lonnet::homeserver($ownername,$ownerdom) eq 'no_host');
2033: my $inststatus;
2034: my %userenv =
2035: &Apache::lonnet::get('environment',['inststatus'],
2036: $ownerdom,$ownername);
2037: my ($tmp) = keys(%userenv);
2038: if ($tmp !~ /^(con_lost|error|no_such_host)/i) {
2039: $inststatus = $userenv{'inststatus'};
2040: } else {
2041: undef(%userenv);
2042: }
2043: my $reqkey = $dom.'_'.$cnum;
2044: my %history = &Apache::lonnet::restore($reqkey,'courserequests',
2045: $ownerdom,$ownername);
2046: if (ref($history{'details'}) eq 'HASH') {
2047: my $instcode = $history{'details'}{'instcode'};
2048: my $crstype = $history{'details'}{'crstype'};
2049: my $reqtime = $history{'details'}{'reqtime'};
2050: my $cdescr = $history{'details'}{'cdescr'};
2051: my @currsec;
2052: my $sections = $history{'details'}{'sections'};
2053: if (ref($sections) eq 'HASH') {
2054: foreach my $i (sort(keys(%{$sections}))) {
2055: if (ref($sections->{$i}) eq 'HASH') {
2056: my $sec = $sections->{$i}{'inst'};
2057: if (!grep(/^\Q$sec\E$/,@currsec)) {
2058: push(@currsec,$sec);
2059: }
2060: }
2061: }
2062: }
2063: my $instseclist = join(',',@currsec);
2064: my ($validationchk,$disposition,$reqstatus,$message,
2065: $validation,$validationerror);
2066: $validationchk =
2067: &Apache::lonnet::auto_courserequest_validation($dom,
2068: $ownername.':'.$ownerdom,$crstype,$inststatus,
2069: $instcode,$instseclist);
2070: if ($validationchk =~ /:/) {
2071: ($validation,$message) = split(':',$validationchk);
2072: } else {
2073: $validation = $validationchk;
2074: }
2075: if ($validation =~ /^error(.*)$/) {
2076: $disposition = 'approval';
2077: $validationerror = $1;
2078: } else {
2079: $disposition = $validation;
2080: }
2081: $reqstatus = $disposition;
2082: if ($disposition eq 'process') {
1.39 raeburn 2083: my ($logmsg,$newusermsg,$addresult,$enrollcount,$response,$keysmsg,$code);
1.41 raeburn 2084: my %customitems;
2085: my $fullname = &Apache::loncommon::plainname($ownername,$ownerdom);
2086: my $inprocess = &Apache::lonnet::auto_crsreq_update($dom,$cnum,$crstype,'process',$ownername,
2087: $ownerdom,$fullname,$cdescr);
2088: if (ref($inprocess) eq 'HASH') {
2089: foreach my $key (keys(%{$inprocess})) {
2090: if (exists($history{'details'}{$key})) {
2091: $customitems{$key} = $history{'details'}{$key};
2092: }
2093: }
2094: }
1.50 raeburn 2095: if ($history{'details'}{'clonecrs'}) {
2096: $customitems{'_LC_clonefrom'} = $history{'details'}{'clonedom'}.'_'.$history{'details'}{'clonecrs'};
2097: }
1.41 raeburn 2098: my ($result,$postprocess) =
2099: &course_creation($dom,$cnum,'domain',$history{'details'},\$logmsg,\$newusermsg,\$addresult,
2100: \$enrollcount,\$response,\$keysmsg,\%domdefs,\%longroles,\$code,\%customitems);
1.23 raeburn 2101: if ($result eq 'created') {
2102: $disposition = 'created';
2103: $reqstatus = 'created';
1.26 raeburn 2104: my $cid = $dom.'_'.$cnum;
2105: push(@{$newcids{$instcode}},$cid);
2106: if ($dcname && $dcdom) {
1.54 raeburn 2107: my $firsturl = &Apache::lonnet::course_portal_url($cnum,$dom);
1.26 raeburn 2108: my $beneficiary = 'pendingrequestor';
2109: my $now = time;
2110: my $owner = $ownername.':'.$ownerdom;
2111: my $approvedmsg =
2112: [{
1.27 raeburn 2113: mt => 'Your requested course: [_1], (queued pending validation) has now been created.',
2114: args => [$cdescr],
1.26 raeburn 2115: },
2116: {
1.28 raeburn 2117: mt => 'Visit [_1] to log-in and access the course.',
1.26 raeburn 2118: args => [$firsturl],
1.27 raeburn 2119: },
2120: {
2121: mt => 'If currently logged-in to LON-CAPA, log-out and log-in again to select your new course role.'
1.26 raeburn 2122: }];
2123: my $sender = $dcname.':'.$dcdom;
1.41 raeburn 2124: if (ref($postprocess) eq 'HASH') {
2125: if (ref($postprocess->{'createdmsg'}) eq 'ARRAY') {
2126: foreach my $item (@{$postprocess->{'createdmsg'}}) {
2127: if (ref($item) eq 'HASH') {
2128: if ($item->{'mt'} ne '') {
2129: push(@{$approvedmsg},$item);
2130: }
2131: }
2132: }
2133: }
1.48 raeburn 2134: if (ref($postprocess->{'createdactions'}) eq 'HASH') {
2135: if (ref($postprocess->{'createdactions'}{'environment'}) eq 'HASH') {
2136: &postprocess_crsenv($dom,$cnum,$postprocess->{'createdactions'}{'environment'});
2137: }
2138: }
1.41 raeburn 2139: }
1.26 raeburn 2140: &send_selfserve_notification($owner,$approvedmsg,
2141: $cid,$cdescr,$now,
2142: $beneficiary,$sender,
2143: undef,undef,$crstype);
2144: }
1.23 raeburn 2145: }
2146: } elsif ($disposition eq 'rejected') {
2147: $output .= &mt('Queued course request for [_1] submitted by [_2] with status [_3] rejected when validating.',$instcode,$ownername.':'.$ownerdom,$inststatus).$linefeed;
2148: } elsif ($disposition eq 'approval') {
2149: $output .= &mt('Queued course request for [_1] submitted by [_2] with status [_3] switched to "approval by DC" because of validation error: [_4].',$instcode,$ownername.':'.$ownerdom,$inststatus,$validationerror).$linefeed;
2150:
2151: my $requestid = $cnum.'_'.$disposition;
2152: my $request = {
2153: $requestid => {
2154: timestamp => $reqtime,
2155: crstype => $crstype,
2156: ownername => $ownername,
2157: ownerdom => $ownerdom,
2158: description => $cdescr,
2159: },
2160: };
2161: my $putresult = &Apache::lonnet::newput_dom('courserequestqueue',$request,$dom);
2162: unless ($putresult eq 'ok') {
2163: $output .= &mt("An error occurred saving the modified course request for [_1] submitted by [_2] in the domain's courserequestqueue.db.",$instcode,$ownername.':'.$ownerdom).$linefeed;
2164: }
2165: } elsif ($disposition eq 'pending') {
2166: my $instcode = $requesthash{$key}{'instcode'};
2167: my $description = $requesthash{$key}{'description'};
2168: my $timestamp = $requesthash{$key}{'timestamp'};
2169: my $entry = $cnum.':'.$ownername.':'.$ownerdom.':'.
2170: $instcode.':'.$description;
2171: if (ref($stillpending{$timestamp}) eq 'ARRAY') {
2172: push(@{$stillpending{$timestamp}},$entry);
2173: } else {
2174: $stillpending{$timestamp} = [$entry];
2175: }
2176: }
2177: unless ($disposition eq 'pending') {
2178: my ($statusresult,$output) =
2179: &update_coursereq_status(\%requesthash,$dom,$cnum,
1.26 raeburn 2180: $reqstatus,'domain',$ownerdom,
2181: $ownername);
1.23 raeburn 2182: unless (&Apache::lonnet::del_dom($reqsnamespace,[$cnum.'_pending'],$dom) eq 'ok') {
2183: $output .= &mt('An error occurred when removing the request for [_1] submitted by [_2] from the pending queue.',$instcode,$ownername.':'.$ownerdom).$linefeed;
2184: }
2185: }
2186: }
2187: }
2188: }
2189: foreach my $key (sort(keys(%newcids))) {
2190: if (ref($newcids{$key}) eq 'ARRAY') {
2191: $output .= "created course from queued request: $key - ".join(', ',@{$newcids{$key}}).$linefeed;
2192: my $newcourse = &LONCAPA::escape($key.':'.$newcids{$key});
2193: }
2194: }
2195: unless ($context eq 'auto') {
2196: if (keys(%stillpending) > 0) {
2197: $output .= '<form method="post" name="changequeue" action="/adm/createcourse" />'."\n".
2198: '<input type="hidden" name="action" value="'.$env{'form.action'}.'" />'."\n".
2199: '<input type="hidden" name="phase" value="requestchange" />'.
2200: '<p>'.&mt('For the following requests, the requestor could [_1]not[_2] be validated as official course personnel, so the request remains in the pending queue.','<b>','</b>').'<br />'.&mt('Requests may be left in the queue, or you can manually approve or reject them.').'</p>'.
2201: &build_queue_display($dom,'stillpending',\%stillpending).
2202: '<br /><input type="hidden" name="queue" value="pending" />'."\n".
2203: '<input type="submit" name="processqueue" value="'.&mt('Save').'" />'.
2204: '</form>';
2205: }
2206: }
2207: return $output;
2208: }
2209:
1.48 raeburn 2210: sub postprocess_crsenv {
2211: my ($dom,$cnum,$postprocessenv) = @_;
2212: if (ref($postprocessenv) eq 'HASH') {
2213: my $cid = $dom.'_'.$cnum;
2214: my %settablecrsenv = (
2215: 'internal.selfenroll_types' => 1,
2216: 'internal.selfenroll_registered' => 1,
2217: 'internal.selfenroll_section' => 1,
2218: 'internal.selfenroll_start_access' => 1,
2219: 'internal.selfenroll_end_access' => 1,
2220: 'internal.selfenroll_limit' => 1,
2221: 'internal.selfenroll_cap' => 1,
2222: 'internal.selfenroll_approval' => 1,
2223: 'internal.selfenroll_notifylist' => 1,
2224: );
2225: my %needcrsidput = (
2226: 'internal.selfenroll_types' => 1,
2227: 'internal.selfenroll_start_date' => 1,
2228: 'internal. selfenroll_end_date' => 1,
2229: );
2230: my (@needupdate,%newcrsenv);
2231: foreach my $key (keys(%{$postprocessenv})) {
2232: if ($settablecrsenv{$key}) {
2233: $newcrsenv{$key} = $postprocessenv->{$key};
2234: if ($needcrsidput{$key}) {
2235: push(@needupdate,$key);
2236: }
2237: }
2238: if (keys(%newcrsenv)) {
2239: my $putresult = &Apache::lonnet::put('environment',\%newcrsenv,$dom,$cnum);
2240: if ($putresult eq 'ok') {
2241: if (@needupdate) {
2242: my %crsinfo =
2243: &Apache::lonnet::courseiddump($dom,'.',1,'.','.',$cnum,undef,undef,'.');
2244: if (ref($crsinfo{$cid}) eq 'HASH') {
2245: foreach my $key (@needupdate) {
2246: $crsinfo{$cid}{$key} = $newcrsenv{$key};
2247: }
2248: my $chome = &Apache::lonnet::homeserver($cnum,$dom);
2249: &Apache::lonnet::courseidput($dom,\%crsinfo,$chome,'notime');
2250: }
2251: }
2252: }
2253: }
2254: }
2255: }
2256: return;
2257: }
2258:
2259:
1.45 raeburn 2260: sub requestcourses_validation_types {
2261: my @items = ('url','fields','button','markup');
2262: my %names = &Apache::lonlocal::texthash (
2263: url => 'Web address of validation server/script',
2264: fields => 'Form fields to send to validator',
2265: button => 'Text for validation button',
2266: markup => 'Validation description (HTML)',
2267: );
2268: my @fields = ('owner','course','coursetype','description');
2269: return (\@items,\%names,\@fields);
2270: }
2271:
1.31 raeburn 2272: sub is_active_author {
2273: if ($env{'user.role.au./'.$env{'user.domain'}.'/'} =~ /^(\d*)\.(\d*)$/) {
2274: if ((!$1 || $1 < time) &&
2275: (!$2 || $2 > time)) {
2276: return 1;
2277: }
2278: }
2279: }
2280:
2281: sub author_prompt {
2282: my ($is_active_author,$offer_author);
2283: if ($env{'environment.canrequest.author'}) {
2284: unless (&is_active_author()) {
1.32 raeburn 2285: unless (&reqauthor_check() =~ /^approval:\d+$/) {
2286: $offer_author = 1;
1.31 raeburn 2287: }
2288: }
2289: }
2290: return $offer_author;
2291: }
2292:
2293: sub reqauthor_check {
2294: my $queued = $env{'environment.requestauthorqueued'};
2295: my %reqauthor = &Apache::lonnet::get('requestauthor',['author_status','author'],
2296: $env{'user.domain'},$env{'user.name'});
2297: my $reqstatus = $reqauthor{'author_status'};
2298: if (($reqstatus eq '' && $queued ne '') ||
2299: ($env{'environment.requestauthorqueued'} !~ /^\Q$reqstatus\E/)) {
2300: if (ref($reqauthor{'author'}) eq 'HASH') {
2301: $queued = $reqstatus.':'.$reqauthor{'author'}{'timestamp'};
2302: } else {
2303: undef($queued);
2304: }
2305: &Apache::lonnet::appenv({'environment.requestauthorqueued' => $queued});
2306: }
2307: return $queued;
2308: }
2309:
2310: sub process_reqauthor {
2311: my ($dispositionref,$updateref) = @_;
2312: if (&is_active_author()) {
2313: return '<span class="LC_warning">'.
1.42 bisitz 2314: &mt('An Authoring Space has already been assigned to you.').'<br />'.
1.31 raeburn 2315: &mt('Please select the Author role from your [_1]roles page[_2].','<a href="/adm/roles">',
2316: '</a>').'</span>';
2317: }
2318: unless ($env{'environment.canrequest.author'}) {
2319: return '<span class="LC_warning">'.
1.42 bisitz 2320: &mt('You do not currently have rights to request an Authoring Space.').'<br />'.
1.37 raeburn 2321: &mt('Please contact the [_1]helpdesk[_2] for assistance.','<a href="/adm/helpdesk">',
1.31 raeburn 2322: '</a>').'</span>';
2323: }
2324: my $queued = &reqauthor_check();
2325: if ($queued =~ /^approval:(\d+)$/) {
2326: my $timestamp = $1;
2327: return '<span class="LC_info">'.
1.42 bisitz 2328: &mt('A request for Authoring Space submitted on [_1] is awaiting approval',
1.31 raeburn 2329: &Apache::lonlocal::locallocaltime($timestamp)).
2330: '</span>';
2331: } elsif ($queued =~ /^approved:(\d+)$/) {
2332: my $timestamp = $1;
2333: my %roleshash = &Apache::lonnet::get_my_roles($env{'user.name'},$env{'user.domain'},'userroles',
2334: ['active'],['au'],[$env{'user.domain'}]);
2335: if (keys(%roleshash) > 0) {
2336: return '<span class="LC_info">'.
1.42 bisitz 2337: &mt('A request for Authoring Space submitted on [_1] has been approved.',
1.31 raeburn 2338: &Apache::lonlocal::locallocaltime($timestamp)).
2339: '</span>';
2340: }
2341: }
2342: my ($output,@inststatuses,%domconfig);
2343: %domconfig = &Apache::lonnet::get_dom('configuration',['requestauthor'],
2344: $env{'user.domain'});
2345: my $val = &get_processtype('requestauthor',$env{'user.name'},$env{'user.domain'},
2346: $env{'user.adv'},$env{'user.domain'},undef,
2347: \@inststatuses,\%domconfig);
2348: my $now = time;
2349: if ($val eq 'automatic') {
2350: my $start = $now-1;
2351: if (&Apache::lonnet::assignrole($env{'user.domain'},$env{'user.name'},'/'.$env{'user.domain'}.'/',
2352: 'au',undef,$start,undef,undef,'requestauthor') eq 'ok') {
2353: $output = '<span class="LC_info">'.
1.42 bisitz 2354: &mt('Access to Authoring Space has been activated').'</span><br />';
1.31 raeburn 2355: &Apache::lonroles::update_session_roles();
2356: &Apache::lonnet::appenv({'user.update.time' => $now});
2357: if (ref($updateref)) {
2358: $$updateref = $now;
2359: }
2360: if (ref($dispositionref)) {
2361: $$dispositionref = 'created';
2362: }
2363: } else {
2364: $output = '<span class="LC_info">'.
1.42 bisitz 2365: &mt('An error occurred while activating your access to Authoring Space');
1.31 raeburn 2366: }
2367: } elsif ($val eq 'approval') {
2368: my $domconfiguser = &Apache::lonnet::get_domainconfiguser($env{'user.domain'});
2369: if (&Apache::lonnet::put('requestauthorqueue',{ $env{'user.name'}.'_'.$val => $now },
2370: $env{'user.domain'},$domconfiguser) eq 'ok') {
2371: my %userrequest = (
2372: author => {
2373: timestamp => $now,
2374: status => $val,
2375: },
2376: author_status => $val,
2377: );
2378: my $req_notifylist;
2379: if (ref($domconfig{'requestauthor'}) eq 'HASH') {
2380: if (ref($domconfig{'requestauthor'}{'notify'}) eq 'HASH') {
2381: my $req_notifylist = $domconfig{'requestauthor'}{'notify'}{'approval'};
2382: if ($req_notifylist) {
2383: my $fullname = &Apache::loncommon::plainname($env{'user.name'},
2384: $env{'user.domain'});
2385: my $sender = $env{'user.name'}.':'.$env{'user.domain'};
2386: my $domdesc = &Apache::lonnet::domain($env{'user.domain'},'description');
2387: &send_selfserve_notification($req_notifylist,
2388: "$fullname ($env{'user.name'}:$env{'user.domain'})",
2389: undef,$domdesc,$now,'authorreq',$sender);
2390: }
2391: }
2392: }
2393: my $userresult =
2394: &Apache::lonnet::put('requestauthor',\%userrequest,$env{'user.domain'},$env{'user.name'});
2395: $output = '<span class="LC_info">'.
1.42 bisitz 2396: &mt('Your request for Authoring Space has been submitted for approval.').
1.31 raeburn 2397: '</span>';
2398: &Apache::lonnet::appenv({'environment.requestauthorqueued' => $val.':'.$now});
2399: } else {
2400: $output = '<span class="LC_info">'.
1.42 bisitz 2401: &mt('An error occurred saving your request for Authoring Space.').
1.31 raeburn 2402: '</span>';
2403: }
2404: }
2405: return $output;
2406: }
2407:
1.1 raeburn 2408: 1;
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>