Annotation of loncom/interface/lonrequestcourse.pm, revision 1.101
1.1 raeburn 1: # The LearningOnline Network
2: # Request a course
3: #
1.101 ! raeburn 4: # $Id: lonrequestcourse.pm,v 1.100 2017/08/07 20:22:13 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:
30: =head1 NAME
31:
32: Apache::lonrequestcourse.pm
33:
34: =head1 SYNOPSIS
35:
36: Allows users to request creation of new courses.
37:
38: This is part of the LearningOnline Network with CAPA project
39: described at http://www.lon-capa.org.
40:
41: =head1 SUBROUTINES
42:
43: =over
44:
45: =item handler()
46:
1.27 raeburn 47: =item get_breadcrumbs()
48:
1.12 raeburn 49: =item header()
50:
51: =item form_elements()
52:
53: =item onload_action()
54:
55: =item print_main_menu()
56:
57: =item request_administration()
58:
1.27 raeburn 59: =item close_popup_form()
60:
61: =item get_instcode()
62:
1.12 raeburn 63: =item print_request_form()
64:
65: =item print_enrollment_menu()
66:
1.27 raeburn 67: =item show_invalid_crosslists()
68:
1.12 raeburn 69: =item inst_section_selector()
70:
71: =item date_setting_table()
72:
73: =item print_personnel_menu()
74:
75: =item print_request_status()
76:
77: =item print_request_logs()
78:
79: =item print_review()
80:
81: =item dates_from_form()
82:
83: =item courseinfo_form()
84:
85: =item clone_form()
86:
87: =item clone_text()
88:
89: =item coursecode_form()
90:
91: =item get_course_dom()
92:
93: =item display_navbuttons()
94:
95: =item print_request_outcome()
96:
97: =item check_autolimit()
98:
99: =item retrieve_settings()
100:
101: =item get_request_settings()
102:
1.27 raeburn 103: =item extract_instcode()
104:
105: =item generate_date_items()
106:
1.1 raeburn 107: =back
108:
109: =cut
110:
111: package Apache::lonrequestcourse;
112:
113: use strict;
114: use Apache::Constants qw(:common :http);
115: use Apache::lonnet;
116: use Apache::loncommon;
117: use Apache::lonlocal;
1.8 raeburn 118: use Apache::loncoursequeueadmin;
1.30 raeburn 119: use Apache::lonuserutils;
1.4 raeburn 120: use LONCAPA qw(:DEFAULT :match);
1.1 raeburn 121:
122: sub handler {
123: my ($r) = @_;
1.20 raeburn 124: &Apache::loncommon::content_type($r,'text/html');
125: $r->send_http_header;
1.1 raeburn 126: if ($r->header_only) {
127: return OK;
128: }
129:
1.27 raeburn 130: &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},
1.73 raeburn 131: ['action','showdom','cnum','state','crstype','queue','tabs']);
1.2 raeburn 132: &Apache::lonhtmlcommon::clear_breadcrumbs();
133: my $dom = &get_course_dom();
1.1 raeburn 134: my $action = $env{'form.action'};
135: my $state = $env{'form.state'};
1.27 raeburn 136: my (%states,%stored);
1.72 raeburn 137: my ($jscript,$uname,$udom,$result,$warning,$showcredits,$instcredits,%can_request,
138: %request_domains,@incdoms);
1.66 raeburn 139: my %domdefs = &Apache::lonnet::get_domain_defaults($dom);
1.69 raeburn 140: if ($domdefs{'officialcredits'} || $domdefs{'unofficialcredits'} || $domdefs{'textbookcredits'}) {
1.66 raeburn 141: $showcredits = 1;
142: }
1.27 raeburn 143:
1.72 raeburn 144: my $canreq =
145: &Apache::lonnet::check_can_request($dom,\%can_request,\%request_domains);
146:
147: foreach my $item (keys(%request_domains)) {
148: if (ref($request_domains{$item}) eq 'ARRAY') {
149: foreach my $possdom (@{$request_domains{$item}}) {
150: unless(grep(/^\Q$possdom\E$/,@incdoms)) {
151: push(@incdoms,$possdom);
152: }
153: }
154: }
155: }
156:
157: if ($canreq) {
1.73 raeburn 158: if (($env{'form.crstype'} eq 'textbook') ||
159: (scalar(keys(%can_request)) == 1) && ($can_request{'textbook'})) {
1.72 raeburn 160: my %domconfig = &Apache::lonnet::get_dom('configuration',['requestcourses'],$dom);
161: if ($action eq 'log') {
1.73 raeburn 162: my $usetabs;
163: if ((scalar(keys(%can_request)) == 1) && ($can_request{'textbook'})) {
164: $usetabs = 1;
165: } elsif ($env{'form.tabs'} eq 'on') {
166: $usetabs = 1;
167: }
1.72 raeburn 168: &Apache::lonhtmlcommon::add_breadcrumb({text=>'Course Request'});
169: my $crumb = &Apache::lonhtmlcommon::breadcrumbs('Course Requests','Course_Requests');
1.73 raeburn 170: &print_request_logs($r,$dom,undef,undef,$crumb,$usetabs);
1.72 raeburn 171: } elsif ($action eq 'process') {
1.73 raeburn 172: if ($can_request{'textbook'}) {
173: &process_textbook_request($r,$dom,$action,\%domdefs,\%domconfig,\%can_request);
174: } else {
1.85 raeburn 175: &textbook_request_disabled($r,$dom,$action,\%can_request);
1.73 raeburn 176: }
1.83 raeburn 177: } elsif ($action eq 'display') {
178: my ($uname,$udom,$result,$warning) = &domcoord_display($dom);
179: if ($warning ne '') {
180: my $args = { only_body => 1 };
181: $r->print(&header('Course/Community Requests','','' ,'',$args).
182: '<h3>'.&mt('Course/Community Request Details').'</h3>'.
183: '<div class="LC_warning">'.$warning.'</div>'.
184: &close_popup_form());
185: } else {
186: $states{'display'} = ['details'];
187: my $loaditems = &onload_action($action,$state);
188: my $page = 0;
189: &request_administration($r,$action,$state,$page,\%states,$dom,$jscript,
190: $loaditems,'','','','','',$showcredits,'','',
191: $uname,$udom);
192: }
1.72 raeburn 193: } else {
1.73 raeburn 194: if ($can_request{'textbook'}) {
195: &print_textbook_form($r,$dom,\@incdoms,\%domdefs,$domconfig{'requestcourses'},\%can_request);
196: } else {
1.85 raeburn 197: &textbook_request_disabled($r,$dom,$action,\%can_request);
1.73 raeburn 198: }
1.72 raeburn 199: }
200: return OK;
201: }
202: }
203:
1.27 raeburn 204: $states{'display'} = ['details'];
205: $states{'view'} = ['pick_request','details','cancel','removal'];
1.48 raeburn 206: $states{'log'} = ['display'];
1.27 raeburn 207: $states{'new'} = ['courseinfo','enrollment','personnel','review','process'];
208:
209: if (($action eq 'new') && ($env{'form.crstype'} eq 'official')) {
210: unless ($env{'form.state'} eq 'crstype') {
211: unshift(@{$states{'new'}},'codepick');
212: }
213: }
214:
1.65 raeburn 215: if (($action eq 'new') && (&Apache::loncoursequeueadmin::author_prompt())) {
216: if (ref($states{$action}) eq 'ARRAY') {
217: push(@{$states{$action}},'reqauthor');
218: }
219: }
220:
1.27 raeburn 221: foreach my $key (keys(%states)) {
222: if (ref($states{$key}) eq 'ARRAY') {
223: unshift (@{$states{$key}},'crstype');
224: }
225: }
226:
227: my @invalidcrosslist;
228: my %trail = (
1.73 raeburn 229: crstype => 'Pick Action',
1.27 raeburn 230: codepick => 'Category',
231: courseinfo => 'Description',
232: enrollment => 'Access Dates',
233: personnel => 'Personnel',
234: review => 'Review',
235: process => 'Result',
1.65 raeburn 236: reqauthor => 'Authoring Space Result',
1.27 raeburn 237: pick_request => 'Display Summary',
238: details => 'Request Details',
239: cancel => 'Cancel Request',
240: removal => 'Outcome',
1.48 raeburn 241: display => 'Request Logs',
1.27 raeburn 242: );
243:
244: if (($env{'form.crstype'} eq 'official') && (&Apache::lonnet::auto_run('',$dom))) {
245: $trail{'enrollment'} = 'Enrollment';
246: }
247:
1.66 raeburn 248: my ($page,$crumb,$newinstcode,$codechk,$checkedcode,$description) =
1.27 raeburn 249: &get_breadcrumbs($dom,$action,\$state,\%states,\%trail);
1.26 raeburn 250: if ($action eq 'display') {
1.83 raeburn 251: ($uname,$udom,$result,$warning) = &domcoord_display($dom);
1.26 raeburn 252: } elsif ((defined($state)) && (defined($action))) {
1.16 raeburn 253: if (($action eq 'view') && ($state eq 'details')) {
254: if ((defined($env{'form.showdom'})) && (defined($env{'form.cnum'}))) {
255: my $result = &retrieve_settings($env{'form.showdom'},$env{'form.cnum'});
1.2 raeburn 256: }
1.27 raeburn 257: } elsif ($env{'form.crstype'} eq 'official') {
258: if (&Apache::lonnet::auto_run('',$dom)) {
259: if (($action eq 'new') && (($state eq 'enrollment') ||
260: ($state eq 'personnel'))) {
261: my $checkcrosslist = 0;
262: for (my $i=0; $i<$env{'form.crosslisttotal'}; $i++) {
263: if ($env{'form.crosslist_'.$i}) {
264: $checkcrosslist ++;
265: }
266: }
267: if ($checkcrosslist) {
268: my %codechk;
269: my (@codetitles,%cat_titles,%cat_order,@code_order,$lastitem);
270: &Apache::lonnet::auto_possible_instcodes($dom,\@codetitles,
271: \%cat_titles,
272: \%cat_order,
273: \@code_order);
274: my $numtitles = scalar(@codetitles);
275: if ($numtitles) {
276: for (my $i=0; $i<$env{'form.crosslisttotal'}; $i++) {
277: if ($env{'form.crosslist_'.$i}) {
278: my $codecheck;
279: my $crosslistcode = '';
280: foreach my $item (@code_order) {
281: $crosslistcode .= $env{'form.crosslist_'.$i.'_'.$item};
282: }
283: if ($crosslistcode ne '') {
1.36 raeburn 284: ($codechk{$i}, my $rest) =
1.27 raeburn 285: &Apache::lonnet::auto_validate_instcode('',$dom,$crosslistcode);
286: }
287: unless ($codechk{$i} eq 'valid') {
288: $env{'form.crosslist_'.$i} = '';
289: push(@invalidcrosslist,$crosslistcode);
290: }
291: }
292: }
293: }
294: }
295: }
296: }
1.2 raeburn 297: }
1.66 raeburn 298: (my $elements,$instcredits) = &form_elements($dom,$showcredits);
1.2 raeburn 299: my $elementsref = {};
1.66 raeburn 300: if ((ref($elements) eq 'HASH') && (ref($elements->{$action}) eq 'HASH')) {
301: if (ref($elements->{$action}{$state}) eq 'HASH') {
302: $elementsref = $elements->{$action}{$state};
1.2 raeburn 303: }
304: }
1.16 raeburn 305: if (($state eq 'courseinfo') && ($env{'form.clonedom'} eq '')) {
306: $env{'form.clonedom'} = $dom;
307: }
1.30 raeburn 308: if ($state eq 'crstype') {
309: $jscript = &mainmenu_javascript();
310: } else {
311: $jscript = &Apache::lonhtmlcommon::set_form_elements($elementsref,\%stored);
1.45 raeburn 312: if ($state eq 'courseinfo') {
313: $jscript .= &cloning_javascript();
1.84 raeburn 314: } elsif ($state eq 'process') {
315: $jscript .= &processing_javascript();
1.45 raeburn 316: }
1.30 raeburn 317: }
1.2 raeburn 318: }
319:
320: if ($state eq 'personnel') {
321: $jscript .= "\n".&Apache::loncommon::userbrowser_javascript();
322: }
323:
324: my $loaditems = &onload_action($action,$state);
325:
1.1 raeburn 326: if ($action eq 'new') {
327: if ($canreq) {
328: if ($state eq 'crstype') {
1.3 raeburn 329: &print_main_menu($r,\%can_request,\%states,$dom,$jscript,$loaditems,
1.72 raeburn 330: $crumb,\@incdoms);
1.1 raeburn 331: } else {
1.27 raeburn 332: &request_administration($r,$action,$state,$page,\%states,$dom,
333: $jscript,$loaditems,$crumb,$newinstcode,
1.36 raeburn 334: $codechk,$checkedcode,$description,
1.66 raeburn 335: $showcredits,$instcredits,\@invalidcrosslist);
1.1 raeburn 336: }
337: } else {
1.40 raeburn 338: $r->print(&header('Course/Community Requests').$crumb.
1.1 raeburn 339: '<div class="LC_warning">'.
1.40 raeburn 340: &mt('You do not have privileges to request creation of courses or communities.').
1.2 raeburn 341: '</div>'.&Apache::loncommon::end_page());
1.1 raeburn 342: }
343: } elsif ($action eq 'view') {
1.10 raeburn 344: if ($state eq 'crstype') {
1.72 raeburn 345: &print_main_menu($r,\%can_request,\%states,$dom,$jscript,$loaditems,$crumb,\@incdoms);
1.26 raeburn 346: } else {
347: &request_administration($r,$action,$state,$page,\%states,$dom,$jscript,
1.66 raeburn 348: $loaditems,$crumb,'','','','',$showcredits);
1.26 raeburn 349: }
350: } elsif ($action eq 'display') {
351: if ($warning ne '') {
352: my $args = { only_body => 1 };
1.49 raeburn 353: $r->print(&header('Course/Community Requests','','' ,'',$args).$crumb.
1.40 raeburn 354: '<h3>'.&mt('Course/Community Request Details').'</h3>'.
1.26 raeburn 355: '<div class="LC_warning">'.$warning.'</div>'.
356: &close_popup_form());
1.11 raeburn 357: } else {
1.26 raeburn 358: &request_administration($r,$action,$state,$page,\%states,$dom,$jscript,
1.66 raeburn 359: $loaditems,$crumb,'','','','',$showcredits,'','',
360: $uname,$udom);
1.10 raeburn 361: }
1.1 raeburn 362: } elsif ($action eq 'log') {
1.48 raeburn 363: if ($state eq 'crstype') {
1.72 raeburn 364: &print_main_menu($r,\%can_request,\%states,$dom,$jscript,'',$crumb,\@incdoms);
1.48 raeburn 365: } else {
366: $jscript .= <<ENDJS;
367:
368: function backPage(formname,prevstate) {
369: formname.state.value = prevstate;
370: formname.submit();
371: }
372:
373: function setPage(formname) {
374: formname.page.value = '1';
375: return;
376: }
377:
378: ENDJS
1.73 raeburn 379: &print_request_logs($r,$dom,$jscript,$loaditems,$crumb,\%can_request);
1.48 raeburn 380: }
1.1 raeburn 381: } else {
1.72 raeburn 382: &print_main_menu($r,\%can_request,\%states,$dom,$jscript,'',$crumb,\@incdoms);
1.1 raeburn 383: }
384: return OK;
385: }
386:
1.30 raeburn 387: sub mainmenu_javascript {
388: return <<"END";
389: function setType(courseForm) {
390: for (var i=0; i<courseForm.crstype.length; i++) {
391: if (courseForm.crstype.options[i].value == "$env{'form.crstype'}") {
392: courseForm.crstype.options[i].selected = true;
393: } else {
394: courseForm.crstype.options[i].selected = false;
395: }
396: }
397: }
398:
399: function setAction(courseForm) {
400: for (var i=0; i<courseForm.action.length; i++) {
401: if (courseForm.action.options[i].value == "$env{'form.action'}") {
402: courseForm.action.options[i].selected = true;
403: } else {
404: courseForm.action.options[i].selected = false;
405: }
406: }
407: }
408: END
409: }
410:
1.45 raeburn 411: sub cloning_javascript {
412: return <<"END";
413: function setCloneDisplay(courseForm) {
414: if (courseForm.cloning.length > 1) {
415: for (var i=0; i<courseForm.cloning.length; i++) {
416: if (courseForm.cloning[i].checked) {
417: if (courseForm.cloning[i].value == 1) {
1.84 raeburn 418: document.getElementById('cloneoptions').style.display="block";
1.45 raeburn 419: }
420: }
421: }
422: }
423: }
424: END
425: }
426:
1.84 raeburn 427: sub processing_javascript {
428: return <<"END";
429: function hideProcessing() {
430: if (document.getElementById('processing')) {
431: document.getElementById('processing').style.display="none";
432: }
433: }
434:
435: END
436: }
437:
1.27 raeburn 438: sub get_breadcrumbs {
439: my ($dom,$action,$state,$states,$trail) = @_;
1.36 raeburn 440: my ($crumb,$newinstcode,$codechk,$checkedcode,$numtitles,$description);
1.27 raeburn 441: my $page = 0;
442: if ((ref($states) eq 'HASH') && (ref($trail) eq 'HASH') && (ref($state))) {
443: if (defined($action)) {
444: my $done = 0;
445: my $i=0;
446: if (ref($states->{$action}) eq 'ARRAY') {
447: while ($i<@{$states->{$action}} && !$done) {
448: if ($states->{$action}[$i] eq $$state) {
449: $page = $i;
450: $done = 1;
451: }
452: $i++;
453: }
454: }
455: if ($env{'form.crstype'} eq 'official') {
456: if ($page > 1) {
457: if ($states->{$action}[$page-1] eq 'codepick') {
458: if ($env{'form.instcode'} eq '') {
459: ($newinstcode,$numtitles) = &get_instcode($dom);
460: if ($numtitles) {
461: if ($newinstcode eq '') {
462: $$state = 'codepick';
463: $page --;
464: } else {
1.36 raeburn 465: ($codechk,$description) =
1.27 raeburn 466: &Apache::lonnet::auto_validate_instcode('',
467: $dom,$newinstcode);
468: if ($codechk ne 'valid') {
469: $$state = 'codepick';
470: $page --;
471: }
472: $checkedcode = 1;
473: }
474: }
475: }
476: }
477: }
478: }
1.85 raeburn 479: if (ref($states->{$action}) eq 'ARRAY') {
480: for (my $i=0; $i<@{$states->{$action}}; $i++) {
481: if ($$state eq $states->{$action}[$i]) {
1.27 raeburn 482: &Apache::lonhtmlcommon::add_breadcrumb(
1.85 raeburn 483: {text=>"$trail->{$$state}"});
484: $crumb = &Apache::lonhtmlcommon::breadcrumbs('Course/Community Requests','Course_Requests');
485: last;
1.27 raeburn 486: } else {
1.85 raeburn 487: if (($$state eq 'process') || ($$state eq 'removal') || ($$state eq 'reqauthor')) {
488: &Apache::lonhtmlcommon::add_breadcrumb(
489: { href => '/adm/requestcourse',
490: text => "$trail->{$states->{$action}[$i]}",
491: }
492: );
493: } else {
494: &Apache::lonhtmlcommon::add_breadcrumb(
1.27 raeburn 495: { href => "javascript:backPage(document.requestcrs,'$states->{$action}[$i]')",
496: text => "$trail->{$states->{$action}[$i]}", }
1.85 raeburn 497: );
498: }
499: }
500: }
501: }
1.27 raeburn 502: } else {
503: &Apache::lonhtmlcommon::add_breadcrumb(
504: {text=>'Pick Action'});
1.40 raeburn 505: $crumb = &Apache::lonhtmlcommon::breadcrumbs('Course/Community Requests','Course_Requests');
1.27 raeburn 506: }
507: } else {
508: &Apache::lonhtmlcommon::add_breadcrumb(
509: {text=>'Pick Action'});
1.40 raeburn 510: $crumb = &Apache::lonhtmlcommon::breadcrumbs('Course/Community Requests','Course_Requests');
1.27 raeburn 511: }
1.36 raeburn 512: return ($page,$crumb,$newinstcode,$codechk,$checkedcode,$description);
1.27 raeburn 513: }
514:
1.2 raeburn 515: sub header {
1.26 raeburn 516: my ($bodytitle,$jscript,$loaditems,$jsextra,$args) = @_;
1.2 raeburn 517: if ($jscript) {
1.6 raeburn 518: $jscript = '<script type="text/javascript">'."\n".
519: '// <![CDATA['."\n".
520: $jscript."\n".'// ]]>'."\n".'</script>'."\n";
1.2 raeburn 521: }
522: if ($loaditems) {
1.26 raeburn 523: if (ref($args) eq 'HASH') {
524: my %loadhash = (
525: 'add_entries' => $loaditems,
526: );
527: my %arghash = (%loadhash,%{$args});
528: $args = \%arghash;
529: } else {
530: $args = {'add_entries' => $loaditems,};
531: }
1.3 raeburn 532: }
1.26 raeburn 533: return &Apache::loncommon::start_page($bodytitle,$jscript.$jsextra,$args);
1.2 raeburn 534: }
535:
536: sub form_elements {
1.66 raeburn 537: my ($dom,$showcredits) = @_;
538: my $instcredits;
1.2 raeburn 539: my %elements =
540: (
541: new => {
542: crstype => {
543: crstype => 'selectbox',
544: action => 'selectbox',
1.16 raeburn 545: origcnum => 'hidden',
1.2 raeburn 546: },
547: courseinfo => {
548: cdescr => 'text',
1.45 raeburn 549: cloning => 'radio',
1.13 raeburn 550: clonecrs => 'text',
551: clonedom => 'selectbox',
1.2 raeburn 552: datemode => 'radio',
553: dateshift => 'text',
554: },
555: enrollment => {
1.13 raeburn 556: accessstart_month => 'selectbox',
557: accessstart_hour => 'selectbox',
558: accessend_month => 'selectbox',
559: accessend_hour => 'selectbox',
560: accessstart_day => 'text',
561: accessstart_year => 'text',
562: accessstart_minute => 'text',
563: accessstart_second => 'text',
564: accessend_day => 'text',
565: accessend_year => 'text',
566: accessend_minute => 'text',
567: accessend_second => 'text',
1.2 raeburn 568: no_end_date => 'checkbox',
569: },
570: personnel => {
571: addperson => 'checkbox',
572: },
1.13 raeburn 573: review => {
574: cnum => 'hidden',
575: },
1.2 raeburn 576: },
577: view => {
578: crstype => {
579: crstype => 'selectbox',
580: action => 'selectbox',
581: },
582: },
583: );
1.13 raeburn 584: my %servers = &Apache::lonnet::get_servers($dom,'library');
585: my $numlib = keys(%servers);
586: if ($numlib > 1) {
587: $elements{'new'}{'courseinfo'}{'chome'} = 'selectbox';
588: } else {
589: $elements{'new'}{'courseinfo'}{'chome'} = 'hidden';
590: }
1.2 raeburn 591: my (@codetitles,%cat_titles,%cat_order,@code_order,$lastitem);
592: &Apache::lonnet::auto_possible_instcodes($dom,\@codetitles,\%cat_titles,
593: \%cat_order,\@code_order);
594: my $numtitles = scalar(@codetitles);
595: if ($numtitles) {
596: my %extras;
597: $lastitem = pop(@codetitles);
598: $extras{'instcode_'.$lastitem} = 'text';
599: foreach my $item (@codetitles) {
600: $extras{'instcode_'.$item} = 'selectbox';
601: }
602: $elements{'new'}{'codepick'} = \%extras;
603: }
604: if (&Apache::lonnet::auto_run('',$dom)) {
605: my %extras = (
1.13 raeburn 606: enrollstart_month => 'selectbox',
607: enrollstart_hour => 'selectbox',
608: enrollend_month => 'selectbox',
609: enrollend_hour => 'selectbox',
610: enrollstart_day => 'text',
611: enrollstart_year => 'text',
612: enrollstart_minute => 'text',
613: enrollstart_second => 'text',
614: enrollend_day => 'text',
615: enrollend_year => 'text',
616: enrollend_minute => 'text',
617: enrollend_second => 'text',
1.2 raeburn 618: addcrosslist => 'checkbox',
619: autoadds => 'radio',
620: autodrops => 'radio',
1.61 raeburn 621: );
622: my ($instcode,$titlescount) = &get_instcode($dom);
623: if ($instcode) {
624: my @sections = &Apache::lonnet::auto_get_sections(undef,$dom,$instcode);
625: if (@sections) {
626: $extras{'sectotal'} = 'hidden';
627: if ($env{'form.sectotal'} > 0) {
628: for (my $i=0; $i<$env{'form.sectotal'}; $i++) {
629: $extras{'sec_'.$i} = 'radio';
630: $extras{'secnum_'.$i} = 'text';
631: $extras{'loncapasec_'.$i} = 'text';
632: }
633: }
634: } else {
635: $extras{'addsection'} = 'checkbox';
636: my $sectotal = $env{'form.sectotal'};
637: if ($env{'form.addsection'}) {
638: $sectotal ++;
639: }
640: for (my $i=0; $i<$sectotal; $i++) {
641: $extras{'sec_'.$i} = 'checkbox';
642: $extras{'secnum_'.$i} = 'text',
643: $extras{'loncapasec_'.$i} = 'text',
644: }
1.2 raeburn 645: }
1.66 raeburn 646: (my $outcome,my $desc,$instcredits) =
647: &Apache::lonnet::auto_validate_instcode(undef,$dom,$instcode);
648: if ($showcredits && $instcredits eq '') {
649: $extras{'coursecredits'} = 'text';
650: }
1.69 raeburn 651: } elsif (($env{'form.crstype'} eq 'unofficial') || ($env{'form.crstype'} eq 'textbook')) {
1.66 raeburn 652: if ($showcredits) {
653: $extras{'coursecredits'} = 'text';
654: }
1.2 raeburn 655: }
656: my $crosslisttotal = $env{'form.crosslisttotal'};
1.16 raeburn 657: if ($env{'form.addcrosslist'}) {
658: $crosslisttotal ++;
659: }
1.24 raeburn 660: if (!$crosslisttotal) {
1.2 raeburn 661: $crosslisttotal = 1;
662: }
1.24 raeburn 663: for (my $i=0; $i<$env{'form.crosslisttotal'}; $i++) {
664: if ($numtitles) {
665: $extras{'crosslist_'.$i.'_'.$lastitem} = 'text';
666: }
667: if (@codetitles > 0) {
668: foreach my $item (@codetitles) {
669: $extras{'crosslist_'.$i.'_'.$item} = 'selectbox';
1.2 raeburn 670: }
671: }
1.24 raeburn 672: $extras{'crosslist_'.$i} = 'checkbox';
673: $extras{'crosslist_'.$i.'_instsec'} = 'text',
674: $extras{'crosslist_'.$i.'_lcsec'} = 'text',
1.2 raeburn 675: }
676: my %mergedhash = (%{$elements{'new'}{'enrollment'}},%extras);
677: %{$elements{'new'}{'enrollment'}} = %mergedhash;
678: }
679: my %people;
680: my $persontotal = $env{'form.persontotal'};
1.16 raeburn 681: if ($env{'form.addperson'}) {
682: $persontotal ++;
683: }
684: if ((!defined($persontotal)) || (!$persontotal)) {
1.2 raeburn 685: $persontotal = 1;
686: }
687: for (my $i=0; $i<$persontotal; $i++) {
1.13 raeburn 688: $people{'person_'.$i.'_uname'} = 'text',
689: $people{'person_'.$i.'_dom'} = 'selectbox',
690: $people{'person_'.$i.'_hidedom'} = 'hidden',
691: $people{'person_'.$i.'_firstname'} = 'text',
692: $people{'person_'.$i.'_lastname'} = 'text',
693: $people{'person_'.$i.'_emailaddr'} = 'text',
694: $people{'person_'.$i.'_role'} = 'selectbox',
695: $people{'person_'.$i.'_sec'} = 'selectbox',
696: $people{'person_'.$i.'_newsec'} = 'text',
1.2 raeburn 697: }
698: my %personnelhash = (%{$elements{'new'}{'personnel'}},%people);
699: %{$elements{'new'}{'personnel'}} = %personnelhash;
1.66 raeburn 700: return (\%elements,$instcredits);;
1.2 raeburn 701: }
702:
703: sub onload_action {
704: my ($action,$state) = @_;
705: my %loaditems;
706: if (($action eq 'new') || ($action eq 'view')) {
1.30 raeburn 707: if ($state eq 'crstype') {
708: $loaditems{'onload'} = 'javascript:setAction(document.mainmenu_action);javascript:setType(document.mainmenu_coursetype)';
709: } else {
1.45 raeburn 710: $loaditems{'onload'} = 'javascript:setFormElements(document.requestcrs);';
711: }
712: if ($state eq 'courseinfo') {
713: $loaditems{'onload'} .= 'javascript:setCloneDisplay(document.requestcrs);';
1.30 raeburn 714: }
1.84 raeburn 715: if ($state eq 'process') {
716: $loaditems{'onload'} .= 'javascript:hideProcessing();';
717: }
1.2 raeburn 718: }
719: return \%loaditems;
720: }
721:
1.1 raeburn 722: sub print_main_menu {
1.72 raeburn 723: my ($r,$can_request,$states,$dom,$jscript,$loaditems,$crumb,$incdoms) = @_;
1.37 raeburn 724: my ($types,$typename) = &Apache::loncommon::course_types();
1.52 bisitz 725: my $onchange = 'this.form.submit()';
1.2 raeburn 726: my $nextstate_setter = "\n";
727: if (ref($states) eq 'HASH') {
728: foreach my $key (keys(%{$states})) {
729: if (ref($states->{$key}) eq 'ARRAY') {
730: $nextstate_setter .=
731: " if (actionchoice == '$key') {
732: nextstate = '".$states->{$key}[1]."';
733: }
734: ";
735: }
736: }
737: }
1.1 raeburn 738:
1.2 raeburn 739: my $js = <<"END";
1.1 raeburn 740:
1.2 raeburn 741: function nextPage(formname) {
1.27 raeburn 742: var crschoice = document.mainmenu_coursetype.crstype.value;
743: var actionchoice = document.mainmenu_action.action.value;
1.2 raeburn 744: if (check_can_request(crschoice,actionchoice) == true) {
745: if ((actionchoice == 'new') && (crschoice == 'official')) {
746: nextstate = 'codepick';
747: } else {
748: $nextstate_setter
1.27 raeburn 749: }
750: formname.crstype.value = crschoice;
751: formname.action.value = actionchoice;
1.1 raeburn 752: formname.state.value= nextstate;
753: formname.submit();
754: }
755: return;
756: }
757:
1.2 raeburn 758: function check_can_request(crschoice,actionchoice) {
1.1 raeburn 759: var official = '';
760: var unofficial = '';
1.69 raeburn 761: var community = '';
762: var textbook = '';
1.96 raeburn 763: var placement = '';
1.1 raeburn 764: END
1.39 raeburn 765: if (ref($can_request) eq 'HASH') {
766: foreach my $item (keys(%{$can_request})) {
767: $js .= "
1.1 raeburn 768: $item = 1;
769: ";
1.39 raeburn 770: }
1.1 raeburn 771: }
1.89 damieng 772: my %js_lt = &Apache::lonlocal::texthash(
1.1 raeburn 773: official => 'You are not permitted to request creation of an official course in this domain.',
774: unofficial => 'You are not permitted to request creation of an unofficial course in this domain.',
1.69 raeburn 775: community => 'You are not permitted to request creation of a community in this domain.',
776: textbook => 'You are not permitted to request creation of a textbook course in this domain',
1.96 raeburn 777: placement => 'You are not permitted to request creation of a placement test in this domain',
1.67 raeburn 778: all => 'You must choose a specific course type when making a new course request.',
779: allt => '"All types" is not allowed.',
1.1 raeburn 780: );
1.89 damieng 781: &js_escape(\%js_lt);
1.1 raeburn 782: $js .= <<END;
783: if (crschoice == 'official') {
784: if (official != 1) {
1.89 damieng 785: alert("$js_lt{'official'}");
1.1 raeburn 786: return false;
787: }
788: } else {
789: if (crschoice == 'unofficial') {
790: if (unofficial != 1) {
1.89 damieng 791: alert("$js_lt{'unofficial'}");
1.1 raeburn 792: return false;
793: }
794: } else {
795: if (crschoice == 'community') {
796: if (community != 1) {
1.89 damieng 797: alert("$js_lt{'community'}");
1.1 raeburn 798: return false;
799: }
800: } else {
1.69 raeburn 801: if (crschoice == 'textbook') {
802: if (textbook != 1) {
1.89 damieng 803: alert("$js_lt{'textbook'}");
1.69 raeburn 804: return false;
805: }
806: } else {
1.96 raeburn 807: if (crschoice == 'placement') {
808: if (placement != 1) {
809: alert("$js_lt{'placement'}");
810: return false;
811: }
812: } else {
813: if (actionchoice == 'new') {
814: alert('$js_lt{'all'}'+'\\n'+'$js_lt{'allt'}');
815: return false;
816: }
1.69 raeburn 817: }
818: }
1.1 raeburn 819: }
820: }
821: }
822: return true;
823: }
824: END
1.75 raeburn 825: my ($pagetitle,$pageinfo,$domaintitle,$earlyout);
1.39 raeburn 826: if (ref($can_request) eq 'HASH') {
1.96 raeburn 827: if (($can_request->{'official'}) || ($can_request->{'unofficial'}) || ($can_request->{'textbook'}) || ($can_request->{'placement'})) {
1.39 raeburn 828: if ($can_request->{'community'}) {
829: $pagetitle = 'Course/Community Requests';
830: $pageinfo = &mt('Request creation of a new course or community, or review your pending requests.');
831: $domaintitle = &mt('Course/Community Domain');
832: } else {
833: $pagetitle = 'Course Requests';
834: $pageinfo = &mt('Request creation of a new course, or review your pending course requests.');
835: $domaintitle = &mt('Course Domain');
836: }
837: } elsif ($can_request->{'community'}) {
1.40 raeburn 838: $pagetitle = 'Community Requests';
839: $pageinfo = &mt('Request creation of a new course, or review your pending requests.');
1.39 raeburn 840: $domaintitle = &mt('Community Domain');
1.75 raeburn 841: } elsif ((ref($incdoms) eq 'ARRAY') && ((@{$incdoms} > 1) ||
842: ((@{$incdoms} == 1) && ($incdoms->[0] ne $dom)))) {
1.39 raeburn 843: $pagetitle = 'Course/Community Requests';
844: $pageinfo = &mt('You do not have rights to request creation of courses in this domain; please choose a different domain.');
845: $domaintitle = &mt('Course/Community Domain');
1.75 raeburn 846: } else {
847: $pagetitle = 'Course/Community Requests';
848: $pageinfo = &mt('You do not have rights to request creation of courses or communities.');
849: $earlyout = 1;
1.39 raeburn 850: }
851: }
852: $r->print(&header($pagetitle,$js.$jscript,$loaditems).$crumb.
1.75 raeburn 853: '<p>'.$pageinfo.'</p>');
854: if ($earlyout) {
855: $r->print(&Apache::loncommon::end_page());
856: return;
857: }
858: $r->print('<div>'.
1.27 raeburn 859: &Apache::lonhtmlcommon::start_pick_box().
1.39 raeburn 860: &Apache::lonhtmlcommon::row_title($domaintitle).
1.1 raeburn 861: '<form name="domforcourse" method="post" action="/adm/requestcourse">'.
1.72 raeburn 862: &Apache::loncommon::select_dom_form($dom,'showdom','',1,$onchange,$incdoms));
1.1 raeburn 863: if (!$onchange) {
864: $r->print(' <input type="submit" name="godom" value="'.
865: &mt('Change').'" />');
866: }
1.39 raeburn 867: unless ((ref($can_request) eq 'HASH') && (keys(%{$can_request}) > 0)) {
1.72 raeburn 868: $r->print('</form>'.&Apache::lonhtmlcommon::row_closure(1)."\n".
1.39 raeburn 869: &Apache::lonhtmlcommon::end_pick_box().'</div>'."\n".
870: &Apache::loncommon::end_page());
871: return;
872: }
1.27 raeburn 873: $r->print('</form>'.&Apache::lonhtmlcommon::row_closure());
1.2 raeburn 874: my $formname = 'requestcrs';
1.1 raeburn 875: my $nexttext = &mt('Next');
1.27 raeburn 876: $r->print(&Apache::lonhtmlcommon::row_title(&mt('Action')).'
877: <form name="mainmenu_action" method="post" action="">
1.1 raeburn 878: <select size="1" name="action" >
1.2 raeburn 879: <option value="new">'.&mt('New request').'</option>
1.1 raeburn 880: <option value="view">'.&mt('View/Modify/Cancel pending requests').'</option>
881: <option value="log">'.&mt('View request history').'</option>
1.27 raeburn 882: </select></form>'.
1.46 wenzelju 883: &Apache::lonhtmlcommon::row_closure().
1.39 raeburn 884: &Apache::lonhtmlcommon::row_title(&mt('Type')).'
1.27 raeburn 885: <form name="mainmenu_coursetype" method="post" action="">
1.39 raeburn 886: <select size="1" name="crstype">');
887: if (ref($can_request) eq 'HASH') {
888: if (keys(%{$can_request}) > 1) {
889: $r->print(' <option value="any">'.&mt('All types').'</option>');
890: }
891: if ((ref($types) eq 'ARRAY') && (ref($typename) eq 'HASH')) {
892: foreach my $type (@{$types}) {
893: next unless($can_request->{$type});
894: my $selected = '';
895: if ($env{'form.crstype'} eq '') {
896: if ($type eq 'official') {
897: $selected = ' selected="selected"';
898: }
899: } else {
900: if ($type eq $env{'form.crstype'}) {
901: $selected = ' selected="selected"';
902: }
903: }
904: $r->print('<option value="'.$type.'"'.$selected.'>'.&mt($typename->{$type}).
905: '</option>'."\n");
1.4 raeburn 906: }
907: }
908: }
1.27 raeburn 909: $r->print('</select></form>'."\n".
910: &Apache::lonhtmlcommon::row_closure(1)."\n".
911: &Apache::lonhtmlcommon::end_pick_box().'</div>'."\n".
1.38 raeburn 912: '<div><form name="'.$formname.'" method="post" action="/adm/requestcourse">'."\n".
1.27 raeburn 913: '<input type="hidden" name="state" value="crstype" />'."\n".
914: '<input type="hidden" name="showdom" value="'.$dom.'" />'."\n".
915: '<input type="hidden" name="crstype" value="" />'."\n".
916: '<input type="hidden" name="action" value="" />'."\n".
917: '<input type="button" name="next" value="'.$nexttext.
918: '" onclick="javascript:nextPage(document.'.$formname.')" />'."\n".
919: '</form></div>');
1.1 raeburn 920: $r->print(&Apache::loncommon::end_page());
921: return;
922: }
923:
924: sub request_administration {
1.27 raeburn 925: my ($r,$action,$state,$page,$states,$dom,$jscript,$loaditems,$crumb,
1.66 raeburn 926: $newinstcode,$codechk,$checkedcode,$description,$showcredits,
927: $instcredits,$invalidcrosslist,$uname,$udom) = @_;
1.2 raeburn 928: my $js;
1.16 raeburn 929: if (($action eq 'new') || (($action eq 'view') && ($state eq 'pick_request'))) {
1.2 raeburn 930: $js = <<END;
1.1 raeburn 931:
932: function nextPage(formname,nextstate) {
933: formname.state.value= nextstate;
934: formname.submit();
935: }
1.16 raeburn 936:
937: END
938: }
939: if (($action eq 'new') || ($action eq 'view')) {
940: $js .= <<END;
941:
1.1 raeburn 942: function backPage(formname,prevstate) {
943: formname.state.value = prevstate;
944: formname.submit();
945: }
946:
947: END
1.2 raeburn 948: }
949: if ($action eq 'new') {
950: my $jsextra;
1.54 raeburn 951: if (($state eq 'courseinfo') || ($state eq 'codepick')) {
1.87 raeburn 952: $jsextra = "\n".&Apache::loncommon::coursebrowser_javascript($dom,'','','','','',
953: $newinstcode);
1.31 raeburn 954: } elsif ($state eq 'enrollment') {
955: if (($env{'form.crstype'} eq 'official') &&
956: (&Apache::lonnet::auto_run('',$dom))) {
957: $js .= "\n".§ion_check_javascript()."\n".&enrollment_lcsec_js();
958: }
959: } elsif ($state eq 'personnel') {
960: $js .= "\n".§ion_check_javascript()."\n".&personnel_lcsec_js();
1.1 raeburn 961: }
1.40 raeburn 962: my $title;
963: if ($env{'form.crstype'} eq 'community') {
964: $title = 'Request a community';
965: } else {
966: $title = 'Request a course';
967: }
968: $r->print(&header($title,$js.$jscript,$loaditems,$jsextra).$crumb);
1.27 raeburn 969: &print_request_form($r,$action,$state,$page,$states,$dom,$newinstcode,
1.66 raeburn 970: $codechk,$checkedcode,$description,$showcredits,
971: $instcredits,$invalidcrosslist);
1.2 raeburn 972: } elsif ($action eq 'view') {
1.16 raeburn 973: my $jsextra;
974: my $formname = 'requestcrs';
975: my $prev = $states->{$action}[$page-1];
976: my $next = $states->{$action}[$page+1];
977: if ($state eq 'pick_request') {
978: $next = $states->{$action}[$page+1];
979: $jsextra = &viewrequest_javascript($formname,$next);
980: } elsif ($state eq 'details') {
981: $jsextra = &viewdetails_javascript($formname);
982:
983: } elsif ($state eq 'cancel') {
984: $jsextra = &viewcancel_javascript($formname);
985: }
1.40 raeburn 986: my $title;
987: if ($env{'form.crstype'} eq 'community') {
988: $title = 'Manage community requests';
989: } else {
990: $title = 'Manage course requests';
991: }
992: $r->print(&header($title,$js.$jscript.$jsextra,$loaditems).$crumb);
1.16 raeburn 993: my $form = '<form method="post" name="'.$formname.'" action="/adm/requestcourse" />';
1.11 raeburn 994: if ($state eq 'pick_request') {
1.40 raeburn 995: my $title;
996: if ($env{'form.crstype'} eq 'community') {
997: $title = &mt('Pending community requests');
998: } elsif ($env{'form.crstype'} eq 'official') {
999: $title = &mt('Pending requests for official courses');
1000: } elsif ($env{'form.crstype'} eq 'unofficial') {
1001: $title = &mt('Pending requests for unofficial courses');
1.69 raeburn 1002: } elsif ($env{'form.crstype'} eq 'textbook') {
1003: $title = &mt('Pending requests for textbook courses');
1.96 raeburn 1004: } elsif ($env{'form.crstype'} eq 'textbook') {
1005: $title = &mt('Pending requests for placement tests');
1.40 raeburn 1006: } else {
1007: $title = &mt('Pending course/community requests');
1008: }
1009: $r->print('<h3>'.$title.'</h3><div>'."\n".$form."\n".
1.48 raeburn 1010: &print_request_status($dom,$action).'</form></div>');
1.16 raeburn 1011: } elsif ($state eq 'details') {
1012: my (@codetitles,%cat_titles,%cat_order,@code_order,$instcode,$code_chk);
1013: my $origcnum = $env{'form.cnum'};
1014: if ($origcnum eq '') {
1015: $origcnum = $env{'form.origcnum'};
1016: }
1017: if ($env{'form.crstype'} eq 'official') {
1018: &Apache::lonnet::auto_possible_instcodes($dom,\@codetitles,\%cat_titles,
1019: \%cat_order,\@code_order);
1020: }
1.40 raeburn 1021: my $title;
1022: if ($env{'form.crstype'} eq 'community') {
1023: $title = &mt('Community Request Details');
1024: } else {
1025: $title = &mt('Course Request Details');
1026: }
1027: $r->print('<h3>'.$title.'</h3><div>'."\n".$form."\n".
1.26 raeburn 1028: &print_review($dom,\@codetitles,\%cat_titles,\%cat_order,
1.66 raeburn 1029: \@code_order,'','','','',$instcredits)."\n".
1.16 raeburn 1030: '<input name="origcnum" value="'.$origcnum.'" type="hidden" />'."\n");
1.66 raeburn 1031: my @excluded = &get_excluded_elements($dom,$states,'new','review',
1032: $showcredits);
1.16 raeburn 1033: push(@excluded,'origcnum');
1034: $r->print(&Apache::lonhtmlcommon::echo_form_input(\@excluded).'</div>');
1035: my $other = 'modify';
1036: my %navtxt = &Apache::lonlocal::texthash (
1037: prev => 'Back',
1038: other => 'Modify Request',
1039: next => 'Cancel Request',
1040: );
1.31 raeburn 1041: &display_navbuttons($r,$dom,$formname,$prev,$navtxt{'prev'},$next,
1042: $navtxt{'next'},$state,$other,$navtxt{'other'});
1.16 raeburn 1043: $r->print('</form>');
1044: } elsif ($state eq 'cancel') {
1.40 raeburn 1045: my $title;
1046: if ($env{'form.crstype'} eq 'community') {
1047: $title = &mt('Cancel community request');
1048: } else {
1049: $title = &mt('Cancel course request');
1050: }
1.16 raeburn 1051: my ($result,$output) = &print_cancel_request($dom,$env{'form.origcnum'});
1.40 raeburn 1052: $r->print('<h3>'.$title.'</h3><div>'."\n".$form."\n".
1.16 raeburn 1053: $output);
1.66 raeburn 1054: my @excluded = &get_excluded_elements($dom,$states,'view','cancel',
1055: $showcredits);
1.16 raeburn 1056: $r->print(&Apache::lonhtmlcommon::echo_form_input(\@excluded).'</div>');
1057: my %navtxt = &Apache::lonlocal::texthash (
1058: prev => 'Back',
1059: next => 'Confirm Cancellation',
1060: );
1061: if ($result eq 'ok') {
1.31 raeburn 1062: &display_navbuttons($r,$dom,$formname,$prev,$navtxt{'prev'},$next,
1.16 raeburn 1063: $navtxt{'next'},$state);
1064: } else {
1.31 raeburn 1065: &display_navbuttons($r,$dom,$formname,$prev,$navtxt{'prev'},undef,
1066: '',$state);
1.16 raeburn 1067: }
1068: $r->print('</form>');
1069: } elsif ($state eq 'removal') {
1070: my $cnum = $env{'form.origcnum'};
1071: my $statuskey = 'status:'.$dom.':'.$cnum;
1072: my %userreqhash = &Apache::lonnet::get('courserequests',[$statuskey],
1073: $env{'user.domain'},$env{'user.name'});
1074: my $currstatus = $userreqhash{$statuskey};
1075: my ($result,$error);
1076: if (($currstatus eq 'approval') || ($currstatus eq 'pending')) {
1077: my %status = (
1078: $statuskey => 'cancelled',
1079: );
1080: my $statusresult = &Apache::lonnet::put('courserequests',\%status);
1081: if ($statusresult eq 'ok') {
1082: my $delresult =
1083: &Apache::lonnet::del_dom('courserequestqueue',
1084: [$cnum.'_'.$currstatus],$dom);
1085: if ($delresult eq 'ok') {
1086: $result = 'ok';
1087: } else {
1088: $error = &mt('An error occurred when updating the pending requests queue: [_1]',$delresult);
1089: }
1090: } else {
1091: $error = &mt("An error occurred when updating the status of this request in the requestor's records: [_1]",$statusresult);
1092: }
1093: } else {
1094: $error = &mt('The current status of this request could not be verified as pending approval/institutional action.');
1095: }
1096: $r->print('<h3>'.&mt('Request Cancellation').'</h3><div>'."\n".$form."\n".
1097: '<input type="hidden" name="state" value="'.$state.'" />'."\n".
1098: '<input type="hidden" name="action" value="'.$action.'" />'."\n".
1099: '<input type="hidden" name="showdom" value="'.$dom.'" />'."\n".
1100: '<input type="hidden" name="orignum" value="'.$cnum.'" />'."\n");
1101: if ($result eq 'ok') {
1.40 raeburn 1102: if ($env{'form.crstype'} eq 'community') {
1103: $r->print(&mt('Your community request has been cancelled.'));
1104: } else {
1105: $r->print(&mt('Your course request has been cancelled.'));
1106: }
1.16 raeburn 1107: } else {
1108: $r->print('<div class="LC_error">'.
1109: &mt('The request cancellation process was not complete.').
1110: '<br />'.$error.'</div>');
1111: }
1112: $r->print('</form>');
1.11 raeburn 1113: }
1.26 raeburn 1114: } elsif ($action eq 'display') {
1115: my $formname = 'requestcrs';
1116: my (@codetitles,%cat_titles,%cat_order,@code_order,$instcode,$code_chk);
1117: if ($env{'form.crstype'} eq 'official') {
1118: &Apache::lonnet::auto_possible_instcodes($dom,\@codetitles,\%cat_titles,
1119: \%cat_order,\@code_order);
1120: }
1.40 raeburn 1121: my ($title,$header);
1122: if ($env{'form.crstype'} eq 'community') {
1123: $title = 'Community Request';
1124: $header = &mt('Community Request');
1125: } else {
1126: $title = 'Course Request';
1127: $header = &mt('Course Request');
1128: }
1129: $r->print(&header($title,'','','',{ 'only_body' => 1}).
1130: $crumb."\n".'<h3>'.$header.'</h3>'.
1.26 raeburn 1131: &print_review($dom,\@codetitles,\%cat_titles,\%cat_order,
1.66 raeburn 1132: \@code_order,$uname,$udom,'','',$instcredits)."\n".
1133: '</div>'.
1.26 raeburn 1134: &close_popup_form());
1.1 raeburn 1135: }
1.2 raeburn 1136: $r->print(&Apache::loncommon::end_page());
1.1 raeburn 1137: return;
1138: }
1139:
1.83 raeburn 1140: sub domcoord_display {
1141: my ($dom) = @_;
1142: my ($uname,$udom,$result,$warning);
1143: if (($dom eq $env{'request.role.domain'}) && (&Apache::lonnet::allowed('ccc',$dom))) {
1144: if ($env{'form.cnum'} ne '') {
1145: my $cnum = $env{'form.cnum'};
1146: my $queue = $env{'form.queue'};
1147: my $reqkey = $cnum.'_'.$queue;
1148: my $namespace = 'courserequestqueue';
1149: my $domconfig = &Apache::lonnet::get_domainconfiguser($dom);
1150: my %queued =
1151: &Apache::lonnet::get($namespace,[$reqkey],$dom,$domconfig);
1152: if (ref($queued{$reqkey}) eq 'HASH') {
1153: $uname = $queued{$reqkey}{'ownername'};
1154: $udom = $queued{$reqkey}{'ownerdom'};
1155: if (($udom =~ /^$match_domain$/) && ($uname =~ /^$match_username$/)) {
1156: $result = &retrieve_settings($dom,$cnum,$udom,$uname);
1157: } else {
1158: if ($env{'form.crstype'} eq 'community') {
1159: $warning = &mt('Invalid username or domain for community requestor');
1160: } else {
1161: $warning = &mt('Invalid username or domain for course requestor');
1162: }
1163: }
1164: } else {
1165: if ($env{'form.crstype'} eq 'community') {
1166: $warning = &mt('No information was found for this community request.');
1167: } else {
1168: $warning = &mt('No information was found for this course request.');
1169: }
1170: }
1171: } else {
1172: $warning = &mt('No course request ID provided.');
1173: }
1174: } else {
1175: if ($env{'form.crstype'} eq 'any') {
1176: $warning = &mt('You do not have rights to view course or community request information.');
1177: } elsif ($env{'form.crstype'} eq 'community') {
1178: $warning = &mt('You do not have rights to view community request information.');
1179: } else {
1180: $warning = &mt('You do not have rights to view course request information.');
1181: }
1182: }
1183: return ($uname,$udom,$result,$warning);
1184: }
1185:
1.31 raeburn 1186: sub enrollment_lcsec_js {
1187: my %alerts = §ion_check_alerts();
1188: my $secname = $alerts{'badsec'};
1189: my $secnone = $alerts{'reserved'};
1.89 damieng 1190: &js_escape(\$secname);
1191: &js_escape(\$secnone);
1.31 raeburn 1192: my $output = '
1193: function validateEnrollSections(formname,nextstate) {
1194: var badsectotal = 0;
1195: var reservedtotal = 0;
1196: var secTest = "";
1197: ';
1198: for (my $i=0; $i<$env{'form.sectotal'}; $i++) {
1199: $output .= "
1200: var selSec = 0;
1201: for (var j=0; j<document.requestcrs.sec_".$i.".length; j++) {
1202: if (document.requestcrs.sec_".$i."[j].checked) {
1203: selSec = document.requestcrs.sec_".$i."[j].value;
1204: }
1205: if (selSec == 1) {
1206: secTest = validsection(document.requestcrs.loncapasec_".$i.");
1207: if (secTest == 'badsec') {
1208: badsectotal++;
1209: }
1210: if (secTest == 'reserved') {
1211: reservedtotal++;
1212: }
1213: }
1214: }
1215: ";
1216: }
1217: for (my $i=0; $i<$env{'form.crosslisttotal'}; $i++) {
1218: $output .= "
1219: if (document.requestcrs.crosslist_".$i.".checked) {
1220: secTest = validsection(document.requestcrs.crosslist_".$i."_lcsec);
1221: if (secTest == 'badsec') {
1222: badsectotal++;
1223: }
1224: if (secTest == 'reserved') {
1225: reservedtotal++;
1226: }
1227: }
1228: ";
1229: }
1230: $output .= "
1231: if (badsectotal>0) {
1232: alert('$secname');
1233: return false;
1234: }
1235: if (reservedtotal>0) {
1236: alert('$secnone');
1237: return false;
1238: }
1239: formname.state.value= nextstate;
1240: formname.submit();
1241: return;
1242: }
1243: ";
1244: return $output;
1245: }
1246:
1247: sub personnel_lcsec_js {
1248: my %alerts = §ion_check_alerts();
1.89 damieng 1249: my $secname = $alerts{'badsec'}."\n".$alerts{'separate'};
1.31 raeburn 1250: my $secnone = $alerts{'reserved'};
1.89 damieng 1251: &js_escape(\$secname);
1252: &js_escape(\$secnone);
1.31 raeburn 1253: my $output = '
1254: function validatePersonnelSections(formname,nextstate) {
1255: var badsectotal = 0;
1256: var reservedtotal = 0;
1257: var secTest = "";
1258: ';
1259: for (my $i=0; $i<$env{'form.persontotal'}; $i++) {
1260: $output .= "
1261: if (document.requestcrs.person_".$i."_uname.value != '') {
1262: secTest = validsection(document.requestcrs.person_".$i."_newsec,'1');
1263: if (secTest == 'badsec') {
1264: badsectotal++;
1265: }
1266: if (secTest == 'reserved') {
1267: reservedtotal++;
1268: }
1269: }
1270: ";
1271: }
1272: $output .= "
1273: if (badsectotal > 0) {
1274: alert('$secname');
1275: return false;
1276: } else {
1277: if (reservedtotal > 0) {
1278: alert('$secnone');
1279: return false;
1280: }
1281: }
1282: formname.state.value = nextstate;
1283: formname.submit();
1284: return;
1285: }
1286: ";
1287: return $output;
1288: }
1289:
1290: sub section_check_alerts {
1291: my %lt =
1292: &Apache::lonlocal::texthash(
1293: reserved => "You need to change one or more LON-CAPA section names - none is a reserved word in the system, and may not be used.",
1294: badsec => 'You need to change one or more LON-CAPA section names - names may only contain letters or numbers.',
1295: separate => 'Separate multiple sections with a comma.'
1296: );
1297: return %lt;
1298: }
1299:
1300: sub section_check_javascript {
1301: return <<"END";
1302: function validsection(field,mult) {
1303: var str = field.value;
1304: var badsec=0;
1305: var reserved=0;
1306: if (window.RegExp) {
1307: var badsecnum=0;
1308: var reservednum=0;
1309: var pattern=/[^a-zA-Z0-9]/;
1310: str = str.replace(/(^\\s*)|(\\s*\$)/gi,"");
1311: str = str.replace(/[ ]{2,}/gi," ");
1312: if (mult == '1') {
1313: var sections = new Array();
1314: sections = str.split(/\\s*[\\s,;:]\\s*/);
1315: var i;
1316: for (i=0; i<sections.length; i++) {
1317: if ((sections[i] != '') && (sections[i] != undefined) && (sections[i] != null)) {
1318: if (pattern.test(sections[i])) {
1319: badsecnum++;
1320: } else {
1321: if (sections[i] == 'none') {
1322: reservednum++;
1323: }
1324: }
1325: }
1326: }
1327: } else {
1328: if ((str != '') && (str != undefined) && (str != null)) {
1329: if (pattern.test(str)) {
1330: badsecnum++;
1331: } else {
1332: if (str == 'none') {
1333: reservednum++;
1334: }
1335: }
1336: }
1337: }
1338: if (badsecnum > 0) {
1339: return 'badsec';
1340: }
1341: if (reservednum > 0) {
1342: return 'reserved';
1343: }
1344: }
1345: return;
1346: }
1347: END
1348: }
1349:
1.26 raeburn 1350: sub close_popup_form {
1351: my $close= &mt('Close Window');
1352: return << "END";
1353: <p><form name="displayreq" action="" method="post">
1354: <input type="button" name="closeme" value="$close" onclick="javascript:self.close();" />
1355: </form></p>
1356: END
1357: }
1358:
1.27 raeburn 1359: sub get_instcode {
1360: my ($dom) = @_;
1361: my ($instcode,$numtitles);
1362: my (@codetitles,%cat_titles,%cat_order,@code_order,$instcode,$code_chk);
1363: &Apache::lonnet::auto_possible_instcodes($dom,\@codetitles,\%cat_titles,
1364: \%cat_order,\@code_order);
1365: $numtitles = scalar(@codetitles);
1366: if (@code_order > 0) {
1367: my $message;
1368: foreach my $item (@code_order) {
1369: $instcode .= $env{'form.instcode_'.$item};
1370: }
1371: }
1372: return ($instcode,$numtitles);
1373: }
1374:
1.1 raeburn 1375: sub print_request_form {
1.27 raeburn 1376: my ($r,$action,$state,$page,$states,$dom,$newinstcode,$codechk,$checkedcode,
1.66 raeburn 1377: $description,$showcredits,$instcredits,$invalidcrosslist) = @_;
1.1 raeburn 1378: my $formname = 'requestcrs';
1.2 raeburn 1379: my ($next,$prev,$message,$output,$codepicker,$crstype);
1380: $prev = $states->{$action}[$page-1];
1381: $next = $states->{$action}[$page+1];
1.4 raeburn 1382: my %navtxt = &Apache::lonlocal::texthash (
1.10 raeburn 1383: prev => 'Back',
1.4 raeburn 1384: next => 'Next',
1385: );
1.2 raeburn 1386: $crstype = $env{'form.crstype'};
1.34 raeburn 1387: $r->print('<br /><form name="'.$formname.'" method="post" action="/adm/requestcourse">');
1.30 raeburn 1388: my (@codetitles,%cat_titles,%cat_order,@code_order,$instcode,$code_chk,
1389: @disallowed);
1.1 raeburn 1390: if ($crstype eq 'official') {
1.2 raeburn 1391: if ($env{'form.instcode'} ne '') {
1392: $instcode = $env{'form.instcode'};
1.27 raeburn 1393: } elsif ($newinstcode ne '') {
1394: $instcode = $newinstcode;
1.2 raeburn 1395: }
1.27 raeburn 1396: if ($checkedcode) {
1397: if ($codechk eq 'valid') {
1398: $message = '<div class="LC_info">'.
1399: &mt('The chosen course category [_1] is valid.','<b>'.
1400: $instcode.'</b>').
1401: '<input type="hidden" name="instcode" value="'.
1402: $instcode.'" /></div>';
1.2 raeburn 1403: } else {
1404: $message = '<div class="LC_warning">'.
1.27 raeburn 1405: &mt('No course was found matching your choice of institutional course category.');
1406: if ($codechk ne '') {
1407: $message .= '<br />'.$codechk;
1408: }
1409: $message .= '</div>';
1.2 raeburn 1410: $prev = 'crstype';
1411: }
1412: $r->print($message);
1.1 raeburn 1413: }
1.2 raeburn 1414: }
1415: if ($prev eq 'crstype') {
1.4 raeburn 1416: if ($crstype eq 'official') {
1417: &Apache::lonnet::auto_possible_instcodes($dom,\@codetitles,\%cat_titles,
1418: \%cat_order,\@code_order);
1419: }
1.2 raeburn 1420: if (@code_order > 0) {
1.1 raeburn 1421: $codepicker = &coursecode_form($dom,'instcode',\@codetitles,
1422: \%cat_titles,\%cat_order);
1.2 raeburn 1423: if ($codepicker) {
1.34 raeburn 1424: $r->print(&mt('Specify the course to be created.').
1425: '<div>'.&Apache::lonhtmlcommon::start_pick_box().
1426: $codepicker.
1.2 raeburn 1427: &Apache::lonhtmlcommon::end_pick_box().'</div>');
1428: } else {
1.20 raeburn 1429: $next = $states->{$action}[$page+2];
1.15 raeburn 1430: $r->print(&courseinfo_form($dom,$formname,$crstype,$next));
1.2 raeburn 1431: }
1432: } else {
1.20 raeburn 1433: if ($crstype eq 'official') {
1434: $next = $states->{$action}[$page+2];
1435: }
1.15 raeburn 1436: $r->print(&courseinfo_form($dom,$formname,$crstype,$next));
1.1 raeburn 1437: }
1.2 raeburn 1438: } elsif ($prev eq 'codepick') {
1.27 raeburn 1439: if ($instcode eq '') {
1.20 raeburn 1440: $prev = $states->{$action}[$page-2];
1441: }
1.36 raeburn 1442: $r->print(&courseinfo_form($dom,$formname,$crstype,$next,$description));
1.2 raeburn 1443: } elsif ($state eq 'enrollment') {
1.4 raeburn 1444: if ($crstype eq 'official') {
1445: &Apache::lonnet::auto_possible_instcodes($dom,\@codetitles,\%cat_titles,
1446: \%cat_order,\@code_order);
1447: }
1.2 raeburn 1448: $r->print(&print_enrollment_menu($formname,$instcode,$dom,\@codetitles,
1.27 raeburn 1449: \%cat_titles,\%cat_order,\@code_order,
1.66 raeburn 1450: $showcredits,$instcredits,$invalidcrosslist));
1.2 raeburn 1451: } elsif ($state eq 'personnel') {
1.27 raeburn 1452: $r->print(&print_personnel_menu($dom,$formname,$crstype,$invalidcrosslist));
1.4 raeburn 1453: } elsif ($state eq 'review') {
1.30 raeburn 1454: my (%alerts,%rulematch,%inst_results,%curr_rules,%got_rules,%disallowmsg);
1455: my $now = time;
1456: for (my $i=0; $i<$env{'form.persontotal'}; $i++) {
1457: my $personname = $env{'form.person_'.$i.'_uname'};
1458: my $persondom = $env{'form.person_'.$i.'_dom'};
1459: if (($personname =~ /^$match_username$/) &&
1460: ($persondom =~ /^$match_domain$/)) {
1461: if (&Apache::lonnet::domain($persondom)) {
1462: my $personhome =
1463: &Apache::lonnet::homeserver($personname,$persondom);
1464: if ($personhome eq 'no_host') {
1465: if ($persondom ne $dom) {
1466: my $skipuser = 1;
1467: if ($env{'user.role.dc./'.$persondom.'/'}) {
1468: my ($start,$end) = split('.',$env{'user.role.dc./'.$persondom.'/'});
1469: if (((!$start) || ($start < $now)) &&
1470: ((!$end) || ($end > $now))) {
1471: $skipuser = 0;
1472: }
1473: }
1474: if ($skipuser) {
1475: push(@disallowed,$i);
1.60 raeburn 1476: $disallowmsg{$i} = &mt('[_1] was excluded because new users need to be from the course domain','<tt>'.$personname.':'.$persondom.'</tt>');
1.30 raeburn 1477: next;
1478: }
1479: }
1.60 raeburn 1480: my $usertype = &get_usertype($persondom,$personname,\%curr_rules,\%got_rules);
1481: if (&Apache::lonuserutils::can_create_user($dom,'requestcrs',$usertype)) {
1482: my ($allowed,$msg,$authtype,$authparam) =
1.30 raeburn 1483: &check_newuser_rules($persondom,$personname,
1484: \%alerts,\%rulematch,\%inst_results,
1485: \%curr_rules,\%got_rules);
1486: if ($allowed) {
1.60 raeburn 1487: my %domdefaults = &Apache::lonnet::get_domain_defaults($persondom);
1488: if ($usertype eq 'official') {
1489: if ($authtype eq '') {
1490: $authtype = $domdefaults{'auth_def'};
1491: $authparam = $domdefaults{'auth_arg_def'};
1492: }
1493: } elsif ($usertype eq 'unofficial') {
1494: if ($authtype eq '') {
1495: $authtype = 'internal';
1496: $authparam = '';
1497: }
1498: } else {
1499: $authtype = $domdefaults{'auth_def'};
1500: $authparam = $domdefaults{'auth_arg_def'};
1501: }
1502: if (($authtype eq '') ||
1503: (($authtype =~/^krb/) && ($authparam eq ''))) {
1504: push(@disallowed,$i);
1505: $disallowmsg{$i} = &mt('[_1] was excluded because institutional information is incomplete for this new user.','<tt>'.$personname.':'.$persondom.'</tt>');
1506: next;
1507: }
1.30 raeburn 1508: if (ref($inst_results{$personname.':'.$persondom}) eq 'HASH') {
1509: if ($inst_results{$personname.':'.$persondom}{'lastname'} ne '') {
1510: $env{'form.person_'.$i.'_lastname'} = $inst_results{$personname.':'.$persondom}{'lastname'};
1511: }
1512: if ($inst_results{$personname.':'.$persondom}{'firstname'} ne '') {
1513: $env{'form.person_'.$i.'_firstname'} = $inst_results{$personname.':'.$persondom}{'firstname'};
1514: }
1515: if ($inst_results{$personname.':'.$persondom}{'permanentemail'} ne '') {
1516: $env{'form.person_'.$i.'_emailaddr'} = $inst_results{$personname.':'.$persondom}{'permanentemail'};
1517: }
1518: }
1519: } else {
1520: push(@disallowed,$i);
1521: $disallowmsg{$i} = &mt('[_1] was excluded because the username violated format rules for the domain','<tt>'.$personname.':'.$persondom.'</tt>');
1522: }
1523: } else {
1524: push(@disallowed,$i);
1525: $disallowmsg{$i} = &mt('[_1] was excluded because you may not request new users in the domain','<tt>'.$personname.':'.$persondom.'</tt>');
1526: }
1527: } else {
1528: my %userenv =
1529: &Apache::lonnet::userenvironment($persondom,$personname,'lastname','firstname','permanentemail');
1530: if ($env{'form.person_'.$i.'_lastname'} eq '') {
1531: $env{'form.person_'.$i.'_lastname'} = $userenv{'lastname'};
1532: }
1533: if ($env{'form.person_'.$i.'_firstname'} eq '') {
1534: $env{'form.person_'.$i.'_firstname'} = $userenv{'firstname'};
1535: }
1536: if ($env{'form.person_'.$i.'_emailaddr'} eq '') {
1537: $env{'form.person_'.$i.'_emailaddr'} = $userenv{'permanentemail'};
1538: }
1539: }
1540: } elsif ($personname ne '') {
1541: push(@disallowed,$i);
1542: $disallowmsg{$i} = &mt('[_1] was excluded because the domain is invalid','<tt>'.$personname.':'.$persondom.'</tt>');
1543: }
1544: } elsif ($personname ne '') {
1545: push(@disallowed,$i);
1546: $disallowmsg{$i} = &mt('[_1] was excluded because the username or domain is invalid.','<tt>'.$personname.':'.$persondom.'</tt>');
1547: }
1548: }
1.16 raeburn 1549: my $cnum;
1550: if ($env{'form.origcnum'} =~ /^($match_courseid)$/) {
1551: $cnum = $env{'form.origcnum'};
1552: } else {
1.47 raeburn 1553: my $gentype = 'Course';
1554: if ($crstype eq 'community') {
1555: $gentype = 'Community';
1556: }
1557: $cnum = &Apache::lonnet::generate_coursenum($dom,$gentype);
1.16 raeburn 1558: }
1.4 raeburn 1559: &Apache::lonnet::auto_possible_instcodes($dom,\@codetitles,\%cat_titles,
1560: \%cat_order,\@code_order);
1.40 raeburn 1561: if ($crstype eq 'community') {
1562: $r->print('<h3>'.&mt('Review community request details before submission').'</h3>');
1563: } else {
1564: $r->print('<h3>'.&mt('Review course request details before submission').'</h3>');
1565: }
1.66 raeburn 1566: $r->print(&print_review($dom,\@codetitles,\%cat_titles,\%cat_order,\@code_order,'','',\@disallowed,\%disallowmsg,$instcredits).
1.16 raeburn 1567: '<input type="hidden" name="cnum" value="'.$cnum.'" />');
1.73 raeburn 1568: my $fullname = &Apache::loncommon::plainname($env{'user.name'},
1569: $env{'user.domain'});
1570: my $postprocess = &Apache::lonnet::auto_crsreq_update($dom,$cnum,$crstype,'review',$env{'user.name'},
1571: $env{'user.domain'},$fullname,$env{'form.cdescr'});
1572: if (ref($postprocess) eq 'HASH') {
1573: if ($postprocess->{'reviewweb'}) {
1574: $r->print($postprocess->{'reviewweb'});
1575: }
1576: }
1.40 raeburn 1577: if ($crstype eq 'community') {
1578: $navtxt{'next'} = &mt('Submit community request');
1579: } else {
1580: $navtxt{'next'} = &mt('Submit course request');
1581: }
1.10 raeburn 1582: } elsif ($state eq 'process') {
1583: if ($crstype eq 'official') {
1584: &Apache::lonnet::auto_possible_instcodes($dom,\@codetitles,\%cat_titles,
1585: \%cat_order,\@code_order);
1586: }
1.78 raeburn 1587: my $lonhost = $r->dir_config('lonHostID');
1.90 raeburn 1588: my ($storeresult,$result,$customized) = &print_request_outcome($r,$lonhost,$dom,\@codetitles,
1589: \@code_order,$instcredits);
1.13 raeburn 1590: $r->print($result);
1.27 raeburn 1591: if (($storeresult eq 'ok') || ($storeresult eq 'created')) {
1592: if ($storeresult eq 'ok') {
1.65 raeburn 1593: $r->print('<p><a href="/adm/requestcourse?action=view&state=details&showdom='.$dom.'&cnum='. $env{'form.cnum'}.'">'.
1594: &mt('Modify this request').'</a>'.(' 'x4).
1595: '<a href="/adm/requestcourse">'.&mt('Make another request').'</a></p>');
1596: }
1597: if (&Apache::loncoursequeueadmin::author_prompt()) {
1.90 raeburn 1598: unless ($customized) {
1599: &print_author_prompt($r,$env{'form.action'},$env{'form.cnum'},$env{'form.showdom'},
1600: $env{'form.crstype'},$storeresult);
1601: }
1.65 raeburn 1602: } elsif ($storeresult eq 'created') {
1.90 raeburn 1603: unless ($customized) {
1604: $r->print('<p><a href="/adm/requestcourse">'.&mt('Make another request').'</a></p>');
1605: }
1.65 raeburn 1606: }
1607: }
1608: } elsif ($state eq 'reqauthor') {
1609: my ($result,@links);
1610: if ($env{'form.requestauthor'}) {
1611: $r->print(&Apache::loncoursequeueadmin::process_reqauthor(\$result));
1612: if ($result eq 'created') {
1613: my $role = 'au';
1614: my $spec = "$role./$env{'form.showdom'}/";
1.76 bisitz 1615: push(@links,&mt('Enter your Authoring Space with role: [_1]',
1.65 raeburn 1616: '<a href="/adm/roles?selectrole=1&'.$spec.'=1">'.
1617: &Apache::lonnet::plaintext($role).'</a>'));
1.27 raeburn 1618: }
1.65 raeburn 1619: }
1620: if (($env{'form.disposition'} eq 'created') &&
1621: ($env{'form.cnum'} =~ /^$match_courseid$/) &&
1622: ($env{'form.showdom'} =~ /^$match_domain$/)) {
1623: my ($spec,$area,$role,$type);
1624: my $role = 'cc';
1625: my $spec = "$role./$env{'form.showdom'}/$env{'form.cnum'}";
1626: my $type = 'Course';
1627: if ($env{'form.crstype'} eq 'community') {
1628: $type = 'Community';
1629: }
1630: my $showrole = &Apache::lonnet::plaintext($role,$type);
1631: unshift(@links,&mt('Enter new course with role: [_1]',
1632: '<a href="/adm/roles?selectrole=1&'.$spec.'=1">'.$showrole.'</a>'));
1633: }
1634: if (@links > 1) {
1635: $r->print(&mt('New roles will be listed on your [_1]Roles[_2] page.',
1636: '<a href="/adm/roles">','</a>').' '.&mt('Choose a role:').
1637: '<ul>');
1638: foreach my $link (@links) {
1639: $r->print('<li>'.$link.'</li>');
1640: }
1641: $r->print('</ul>');
1642: } elsif (@links == 1) {
1643: $r->print('<p>'.$links[0].'</p>');
1.27 raeburn 1644: }
1.1 raeburn 1645: }
1.66 raeburn 1646: my @excluded = &get_excluded_elements($dom,$states,$action,$state,$showcredits);
1.24 raeburn 1647: if ($state eq 'personnel') {
1648: push(@excluded,'persontotal');
1649: }
1.30 raeburn 1650: if ($state eq 'review') {
1651: if (@disallowed > 0) {
1652: my @items = qw(uname dom lastname firstname emailaddr hidedom role newsec);
1653: my @currsecs = ¤t_lc_sections();
1654: if (@currsecs) {
1655: push(@items,'sec');
1656: }
1657: my $count = 0;
1658: for (my $i=0; $i<$env{'form.persontotal'}; $i++) {
1659: unless ($env{'form.person_'.$i.'_uname'} eq '') {
1660: if (grep(/^$i$/,@disallowed)) {
1661: foreach my $item (@items) {
1662: $env{'form.person_'.$i.'_'.$item} = '';
1663: }
1664: } else {
1665: foreach my $item (@items) {
1666: $env{'form.person_'.$count.'_'.$item} = $env{'form.person_'.$i.'_'.$item};
1667: }
1668: }
1669: }
1670: $count ++;
1671: }
1672: $env{'form.persontotal'} = $count;
1673: }
1674: }
1.27 raeburn 1675: if ($state eq 'enrollment') {
1.61 raeburn 1676: push(@excluded,('sectotal','crosslisttotal'));
1.27 raeburn 1677: }
1.65 raeburn 1678: if (($state eq 'process') || ($state eq 'reqauthor')) {
1679: $r->print('</form>');
1680: } else {
1681: $r->print(&Apache::lonhtmlcommon::echo_form_input(\@excluded).'</form>');
1682: &display_navbuttons($r,$dom,$formname,$prev,$navtxt{'prev'},$next,
1683: $navtxt{'next'},$state);
1684: }
1.16 raeburn 1685: return;
1686: }
1687:
1.72 raeburn 1688: sub print_author_prompt {
1689: my ($r,$action,$cnum,$showdom,$crstype,$storeresult) = @_;
1.76 bisitz 1690: $r->print('<h3>'.&mt('Access to Authoring Space').'</h3>'.
1.72 raeburn 1691: '<p>'.
1692: &mt('Although assessment items can be created directly inside a course, such items only use part of the assessment capabilities of LON-CAPA.').
1693: '<br />'.
1.76 bisitz 1694: &mt('By contrast, items created in Authoring Space, then imported into a course, can use all of the features of the assessment engine.').'</p>'.
1695: '<p>'.&mt('Request Authoring Space access now?').
1.72 raeburn 1696: '<span class="LC_nobreak"> '.
1697: '<label><input type="radio" name="requestauthor" value="1" />'.&mt('Yes').'</label>'.
1698: (' 'x2).
1699: '<label><input type="radio" name="requestauthor" value="0" checked="checked"/>'.&mt('No').'</label>'.
1700: '</span></p>'.
1701: '<input type="submit" name="newauthor" value="'.&mt('Submit authoring request').'" />'.
1702: '<input type="hidden" name="state" value="reqauthor" />'.
1703: '<input type="hidden" name="action" value="'.$action.'" />'.
1704: '<input type="hidden" name="cnum" value="'.$cnum.'" />'.
1705: '<input type="hidden" name="showdom" value="'.$showdom.'" />'.
1706: '<input type="hidden" name="crstype" value="'.$crstype.'" />'.
1707: '<input type="hidden" name="disposition" value="'.$storeresult.'" />'.
1708: '<br />');
1709: }
1710:
1.60 raeburn 1711: sub get_usertype {
1712: my ($persondom,$personname,$curr_rules,$got_rules) = @_;
1.30 raeburn 1713: my ($rules,$ruleorder) =
1714: &Apache::lonnet::inst_userrules($persondom,'username');
1715: my $usertype = &Apache::lonuserutils::check_usertype($persondom,$personname,
1.60 raeburn 1716: $rules,$curr_rules,$got_rules);
1717: return $usertype;
1.30 raeburn 1718: }
1719:
1720: sub check_newuser_rules {
1721: my ($persondom,$personname,$alerts,$rulematch,$inst_results,$curr_rules,
1722: $got_rules) = @_;
1723: my $allowed = 1;
1724: my $newuser = 1;
1.60 raeburn 1725: my ($checkhash,$userchkmsg,$authtype,$authparam);
1.30 raeburn 1726: my $checks = { 'username' => 1 };
1727: $checkhash->{$personname.':'.$persondom} = { 'newuser' => $newuser };
1728: &Apache::loncommon::user_rule_check($checkhash,$checks,$alerts,$rulematch,
1729: $inst_results,$curr_rules,$got_rules);
1730: if (ref($alerts->{'username'}) eq 'HASH') {
1731: if (ref($alerts->{'username'}{$persondom}) eq 'HASH') {
1732: my $domdesc =
1733: &Apache::lonnet::domain($persondom,'description');
1734: if ($alerts->{'username'}{$persondom}{$personname}) {
1735: if (ref($curr_rules->{$persondom}) eq 'HASH') {
1736: $userchkmsg =
1737: &Apache::loncommon::instrule_disallow_msg('username',
1738: $domdesc,1).
1739: &Apache::loncommon::user_rule_formats($persondom,
1740: $domdesc,$curr_rules->{$persondom}{'username'},
1741: 'username');
1742: }
1743: $allowed = 0;
1744: }
1745: }
1746: }
1.60 raeburn 1747: if ($allowed) {
1748: if (ref($rulematch) eq 'HASH') {
1749: if (ref($rulematch->{$personname.':'.$persondom}) eq 'HASH') {
1750: my $matchedrule = $rulematch->{$personname.':'.$persondom}{'username'};
1751: my ($rules,$ruleorder) =
1752: &Apache::lonnet::inst_userrules($persondom,'username');
1753: if (ref($rules) eq 'HASH') {
1754: if (ref($rules->{$matchedrule}) eq 'HASH') {
1755: $authtype = $rules->{$matchedrule}{'authtype'};
1756: $authparam = $rules->{$matchedrule}{'authparm'};
1757: }
1758: }
1759: }
1760: }
1761: }
1762: return ($allowed,$userchkmsg,$authtype,$authparam);
1.30 raeburn 1763: }
1764:
1.16 raeburn 1765: sub get_excluded_elements {
1.66 raeburn 1766: my ($dom,$states,$action,$state,$showcredits) = @_;
1.2 raeburn 1767: my @excluded = ('counter');
1.66 raeburn 1768: my ($elements,$instcredits) = &form_elements($dom,$showcredits);
1.2 raeburn 1769: if (ref($states) eq 'HASH') {
1770: if (ref($states->{$action}) eq 'ARRAY') {
1771: my @items = @{$states->{$action}};
1772: my $numitems = scalar(@items);
1773: if ($numitems) {
1774: for (my $i=$numitems-1; $i>=0; $i--) {
1.66 raeburn 1775: if ((ref($elements) eq 'HASH') &&
1776: (ref($elements->{$action}) eq 'HASH')) {
1777: if (ref($elements->{$action}{$items[$i]}) eq 'HASH') {
1778: foreach my $key (keys(%{$elements->{$action}{$items[$i]}})) {
1.2 raeburn 1779: push(@excluded,$key);
1780: }
1781: }
1782: }
1783: last if ($items[$i] eq $state);
1784: }
1785: }
1786: }
1787: }
1788: if (grep(/^instcode_/,@excluded)) {
1789: push(@excluded,'instcode');
1.1 raeburn 1790: }
1.16 raeburn 1791: return @excluded;
1.1 raeburn 1792: }
1793:
1.2 raeburn 1794: sub print_enrollment_menu {
1.27 raeburn 1795: my ($formname,$instcode,$dom,$codetitles,$cat_titles,$cat_order,$code_order,
1.66 raeburn 1796: $showcredits,$instcredits,$invalidcrosslist) =@_;
1797: my ($sections,$autoenroll,$access_dates,$output,$hasauto,$hascredits,
1798: $creditsrow,$domdefcredits);
1.2 raeburn 1799: my $starttime = time;
1800: my $endtime = time+(6*30*24*60*60); # 6 months from now, approx
1801:
1802: my %accesstitles = (
1803: 'start' => 'Default start access',
1.16 raeburn 1804: 'end' => 'Default end access',
1.2 raeburn 1805: );
1806: my %enrolltitles = (
1807: 'start' => 'Start auto-enrollment',
1808: 'end' => 'End auto-enrollment',
1809: );
1.66 raeburn 1810: if ($showcredits) {
1811: unless ($env{'form.crstype'} eq 'community') {
1812: my %domdefs = &Apache::lonnet::get_domain_defaults($dom);
1813: $domdefcredits = $domdefs{$env{'form.crstype'}.'credits'};
1814: }
1815: }
1.2 raeburn 1816: if ($env{'form.crstype'} eq 'official') {
1817: if (&Apache::lonnet::auto_run('',$dom)) {
1.27 raeburn 1818: $output = &show_invalid_crosslists($invalidcrosslist);
1819: my ($section_form,$crosslist_form);
1.61 raeburn 1820: if ($instcode ne '') {
1821: $section_form = &inst_section_selector($dom,$instcode);
1822: if ($section_form eq '') {
1823: my $sectotal = $env{'form.sectotal'};
1824: if (!$sectotal) {
1825: $sectotal = 1;
1826: }
1827: if ($env{'form.addsection'}) {
1828: $sectotal ++;
1829: }
1830: for (my $i=0; $i<$sectotal; $i++) {
1831: $section_form .= §ions_form($dom,$instcode,$i);
1832: }
1833: if ($section_form) {
1834: $section_form .=
1835: &Apache::lonhtmlcommon::row_title(&mt('Add another')).
1836: '<input name="sectotal" type="hidden" value="'.$sectotal.'" />'.
1837: '<input name="addsection" type="checkbox" value="'.$sectotal.'"'.
1838: ' onclick="javascript:nextPage(document.'.$formname.",'".$env{'form.state'}.
1839: "'".');" />'.&mt('Add?').&Apache::lonhtmlcommon::row_closure();
1840: }
1841: }
1842: }
1.27 raeburn 1843: if ($section_form) {
1844: $sections = &Apache::lonhtmlcommon::row_headline().
1.34 raeburn 1845: '<h3>'.&Apache::loncommon::help_open_topic('Course_Request_Sections').
1846: ' '.&mt('Sections for auto-enrollment').'</h3>'.
1.27 raeburn 1847: &Apache::lonhtmlcommon::row_closure(1).
1848: $section_form;
1849: }
1.2 raeburn 1850: my $crosslisttotal = $env{'form.crosslisttotal'};
1.24 raeburn 1851: if (!$crosslisttotal) {
1.2 raeburn 1852: $crosslisttotal = 1;
1853: }
1854: if ($env{'form.addcrosslist'}) {
1855: $crosslisttotal ++;
1856: }
1857: for (my $i=0; $i<$crosslisttotal; $i++) {
1858: $crosslist_form .= &coursecode_form($dom,'crosslist',$codetitles,
1859: $cat_titles,$cat_order,$i);
1860: }
1861: if ($crosslist_form) {
1862: $crosslist_form .=
1.40 raeburn 1863: &Apache::lonhtmlcommon::row_title(&mt('Add another')).
1.2 raeburn 1864: '<input name="crosslisttotal" type="hidden" value="'.$crosslisttotal.'" />'.
1865: '<input name="addcrosslist" type="checkbox" value="'.$crosslisttotal.'"'.
1866: ' onclick="javascript:nextPage(document.'.$formname.",'".$env{'form.state'}.
1.27 raeburn 1867: "'".');" />'.&mt('Add?').&Apache::lonhtmlcommon::row_closure();
1868: $sections .= &Apache::lonhtmlcommon::row_headline.
1.61 raeburn 1869: '<h3>'.&Apache::loncommon::help_open_topic('Course_Request_Crosslist').' '.&mt('Crosslisted courses for auto-enrollment').'</h3>'.
1.27 raeburn 1870: &Apache::lonhtmlcommon::row_closure(1).
1871: $crosslist_form;
1.2 raeburn 1872: }
1.34 raeburn 1873: $hasauto = 1;
1.27 raeburn 1874: $autoenroll =
1.34 raeburn 1875: &Apache::lonhtmlcommon::row_title(&Apache::loncommon::help_open_topic('Course_Request_Autoadd').' '.&mt('Add registered students automatically')).
1.2 raeburn 1876: '<span class="LC_nobreak"><label>'.
1877: '<input type="radio" name="autoadds" value="1">'.
1878: &mt('Yes').'</label>'.(' 'x3).'<label>'.
1879: '<input type="radio" name="autoadds" value="0" checked="checked">'.
1880: &mt('No').'</label></span>'.
1.27 raeburn 1881: &Apache::lonhtmlcommon::row_closure(1).
1.34 raeburn 1882: &Apache::lonhtmlcommon::row_title(&Apache::loncommon::help_open_topic('Course_Request_Autodrop').' '.&mt('Drop unregistered students automatically')).
1.2 raeburn 1883: '<span class="LC_nobreak"><label>'.
1884: '<input type="radio" name="autodrops" value="1">'.
1885: &mt('Yes').'</label>'.(' 'x3).'<label>'.
1886: '<input type="radio" name="autodrops" value="0" checked="checked">'.
1887: &mt('No').'</label></span>'.
1.27 raeburn 1888: &Apache::lonhtmlcommon::row_closure(1).
1.34 raeburn 1889: &date_setting_table($starttime,$endtime,$formname,'enroll',
1.66 raeburn 1890: $hasauto,undef,%enrolltitles);
1891: if ($showcredits) {
1892: if ($instcredits) {
1893: $creditsrow = &mt('[quant,_1,credit]',$instcredits);
1894: } else {
1895: $creditsrow = '<span class="LC_nobreak">'.
1896: '<input type="text" size="3" name="coursecredits"'.
1897: ' value="'.$domdefcredits.'" />';
1898: }
1899: $hascredits = 1;
1900: }
1901: }
1.69 raeburn 1902: } elsif (($env{'form.crstype'} eq 'unofficial') || ($env{'form.crstype'} eq 'textbook')) {
1.66 raeburn 1903: if ($showcredits) {
1904: $creditsrow = '<span class="LC_nobreak">'.
1905: '<input type="text" size="3" name="coursecredits"'.
1906: ' value="'.$domdefcredits.'"/>';
1907: $hascredits = 1;
1.2 raeburn 1908: }
1909: }
1.27 raeburn 1910: my $access_dates =
1.34 raeburn 1911: &date_setting_table($starttime,$endtime,$formname,'access',$hasauto,
1.66 raeburn 1912: $hascredits,%accesstitles);
1.27 raeburn 1913: $output .= &Apache::lonhtmlcommon::start_pick_box();
1914: if ($sections) {
1915: $output .= $sections;
1916: }
1917: if ($autoenroll) {
1918: $output .= &Apache::lonhtmlcommon::row_headline('Auto-enroll').
1919: '<h3>'.&mt('Auto-enrollment settings').'</h3>'.
1920: &Apache::lonhtmlcommon::row_closure(1).
1921: $autoenroll;
1922: }
1923: if ($access_dates) {
1924: my $header = &mt('Access dates for students');
1925: if ($env{'form.crstype'} eq 'community') {
1926: $header = &mt('Access dates for community members');
1927: }
1928: $output .= &Apache::lonhtmlcommon::row_headline('Access').
1929: '<h3>'.$header.'</h3>'.
1930: &Apache::lonhtmlcommon::row_closure(1).
1.66 raeburn 1931: $access_dates;
1932: }
1933: if ($creditsrow) {
1934: $output .= &Apache::lonhtmlcommon::row_headline('Credits').
1935: '<h3>'.&mt('Credits earned by students').'</h3>'.
1936: &Apache::lonhtmlcommon::row_closure(1).
1937: &Apache::lonhtmlcommon::row_title(&mt('Default credits')).
1938: $creditsrow.
1939: &Apache::lonhtmlcommon::row_closure(1);
1.2 raeburn 1940: }
1.27 raeburn 1941: return '<div>'.&Apache::lonhtmlcommon::start_pick_box().$output.
1942: &Apache::lonhtmlcommon::end_pick_box().'</div>';
1.2 raeburn 1943: }
1944:
1.27 raeburn 1945: sub show_invalid_crosslists {
1946: my ($invalidcrosslist) = @_;
1947: my $output;
1948: if (ref($invalidcrosslist) eq 'ARRAY') {
1949: if (@{$invalidcrosslist} > 0) {
1950: $output = '<div class="LC_warning">'.
1951: &mt('The following crosslisted courses were invalid:').'<ul>';
1952: foreach my $item (@{$invalidcrosslist}) {
1953: $output .= '<li>'.$item.'</li>';
1954: }
1955: $output .= '</ul></div><br />';
1956: }
1957: }
1958: return $output;
1959: }
1960:
1961:
1.1 raeburn 1962: sub inst_section_selector {
1.2 raeburn 1963: my ($dom,$instcode) = @_;
1964: my @sections = &Apache::lonnet::auto_get_sections(undef,$dom,$instcode);
1965: my $sectotal = scalar(@sections);
1.1 raeburn 1966: my $output;
1.2 raeburn 1967: if ($sectotal) {
1.27 raeburn 1968: $output .= &Apache::lonhtmlcommon::row_title(&mt('Sections of [_1]',$instcode)).
1.2 raeburn 1969: &Apache::loncommon::start_data_table().
1970: &Apache::loncommon::start_data_table_row().
1971: '<th>'.&mt('Include?').'<input type="hidden" name="sectotal" '.
1.24 raeburn 1972: 'value="'.$sectotal.'" /></th>'.
1.2 raeburn 1973: '<th>'.&mt('Institutional Section').'</th>'.
1.34 raeburn 1974: '<th>'.&Apache::loncommon::help_open_topic('Course_Request_LCSection').
1975: ' '.&mt('LON-CAPA section').'</th>'.
1.2 raeburn 1976: &Apache::loncommon::end_data_table_row();
1977: for (my $i=0; $i<@sections; $i++) {
1.1 raeburn 1978: my $colflag = $i%2;
1.31 raeburn 1979: my $secon = ' checked="checked"';
1980: my $secoff = '';
1.24 raeburn 1981: if ($env{'form.origcnum'}) {
1.31 raeburn 1982: $secoff = $secon;
1983: $secon='';
1.24 raeburn 1984: }
1.1 raeburn 1985: $output .= &Apache::loncommon::start_data_table_row().
1.31 raeburn 1986: '<td><label><input type="radio" name="sec_'.$i.
1987: '"'.$secon.' value="1" />'.&mt('Yes').'</label>'.
1988: (' 'x2).'<label><input type="radio" name="sec_'.$i.
1989: '"'.$secoff.' value="0" />'.&mt('No').'</label></td>'.
1990: '<td align="center">'.$sections[$i].
1.1 raeburn 1991: '<input type="hidden" name="secnum_'.$i.'" value="'.
1.2 raeburn 1992: $sections[$i].'" /></td>'.
1.1 raeburn 1993: '<td><input type="text" size="10" name="loncapasec_'.$i.
1.2 raeburn 1994: '" value="'.$sections[$i].'" /></td>'.
1.1 raeburn 1995: &Apache::loncommon::end_data_table_row();
1996: }
1.2 raeburn 1997: $output .= &Apache::loncommon::end_data_table().
1998: &Apache::lonhtmlcommon::row_closure();
1.1 raeburn 1999: }
2000: return $output;
2001: }
2002:
1.2 raeburn 2003: sub date_setting_table {
1.66 raeburn 2004: my ($starttime,$endtime,$formname,$prefix,$hasauto,$hascredits,%datetitles)=@_;
1.2 raeburn 2005: my ($perpetual,$table);
1.14 raeburn 2006: my $startform = &Apache::lonhtmlcommon::date_setter($formname,$prefix.'start',
1.2 raeburn 2007: $starttime,'','','',1,'','','',1);
1.14 raeburn 2008: my $endform = &Apache::lonhtmlcommon::date_setter($formname,$prefix.'end',
1.2 raeburn 2009: $endtime,'','','',1,'','','',1);
1.27 raeburn 2010: my $closure = '';
1.14 raeburn 2011: if ($prefix eq 'access') {
1.2 raeburn 2012: $perpetual = ' <span class="LC_nobreak"><label>'.
2013: '<input type="checkbox" name="no_end_date" />'.
2014: &mt('No end date').'</label></span>';
1.66 raeburn 2015: unless ($hascredits) {
2016: $closure = '1';
2017: }
1.2 raeburn 2018: }
1.34 raeburn 2019:
2020: my %help_item = (
2021: access => {
2022: start => 'Course_Request_Access_Start',
2023: end => 'Course_Request_Access_End',
2024: },
2025: enroll => {
2026: start => 'Course_Request_Enroll_Start',
2027: end => 'Course_Request_Enroll_End',
2028: },
2029: );
2030: if ($hasauto) {
2031: $help_item{'access'}{'start'} = 'Course_Request_RegAccess_Start';
2032: $help_item{'access'}{'end'} = 'Course_Request_RegAccess_End';
2033: }
2034:
2035: $table = &Apache::lonhtmlcommon::row_title(&Apache::loncommon::help_open_topic($help_item{$prefix}{'start'}).
1.46 wenzelju 2036: ' '.&mt($datetitles{'start'})).$startform.
1.27 raeburn 2037: &Apache::lonhtmlcommon::row_closure(1).
1.34 raeburn 2038: &Apache::lonhtmlcommon::row_title(&Apache::loncommon::help_open_topic($help_item{$prefix}{'end'}).
1.46 wenzelju 2039: ' '.&mt($datetitles{'end'})).$endform.$perpetual.
1.27 raeburn 2040: &Apache::lonhtmlcommon::row_closure($closure);
1.2 raeburn 2041: return $table;
2042: }
2043:
2044: sub print_personnel_menu {
1.27 raeburn 2045: my ($dom,$formname,$crstype,$invalidcrosslist) = @_;
2046: my $output;
2047: if ($crstype eq 'official') {
2048: if (&Apache::lonnet::auto_run('',$dom)) {
2049: $output .= &show_invalid_crosslists($invalidcrosslist);
2050: }
2051: }
2052: $output .= '<div>'.&Apache::lonhtmlcommon::start_pick_box();
1.2 raeburn 2053: my $persontotal = $env{'form.persontotal'};
1.16 raeburn 2054: if ((!defined($persontotal)) || (!$persontotal)) {
1.2 raeburn 2055: $persontotal = 1;
2056: }
2057: if ($env{'form.addperson'}) {
2058: $persontotal ++;
2059: }
1.13 raeburn 2060: my @items = ('uname','dom','lastname','firstname','emailaddr','hidedom');
1.2 raeburn 2061:
1.8 raeburn 2062: my $type = 'Course';
2063: if ($crstype eq 'community') {
2064: $type = 'Community';
2065: }
1.41 raeburn 2066: my $roleoptions;
2067: my @roles = &Apache::lonuserutils::roles_by_context('course','',$type);
1.2 raeburn 2068: foreach my $role (@roles) {
1.28 raeburn 2069: my $plrole = &Apache::lonnet::plaintext($role,$type);
1.2 raeburn 2070: $roleoptions .= ' <option value="'.$role.'">'.$plrole.'</option>'."\n";
2071: }
2072: my %customroles=&Apache::lonuserutils::my_custom_roles();
2073: if (keys(%customroles) > 0) {
2074: foreach my $cust (sort(keys(%customroles))) {
1.28 raeburn 2075: my $custrole="cr/$env{'user.domain'}/$env{'user.name'}/$cust";
1.2 raeburn 2076: $roleoptions .= ' <option value="'.$custrole.'">'.$cust.'</option>'."\n";
2077: }
2078: }
2079:
1.30 raeburn 2080: my @currsecs = ¤t_lc_sections();
1.2 raeburn 2081:
2082: my ($existtitle,$existops,$existmult,$newtitle,$seccolspan);
2083: if (@currsecs) {
2084: my $existsize = scalar(@currsecs);
2085: if ($existsize > 3) {
2086: $existsize = 3;
2087: }
2088: if ($existsize > 1) {
2089: $existmult = ' multiple="multiple" size="'.$existsize.'" ';
2090: }
2091: @currsecs = sort { $a <=> $b } (@currsecs);
2092: $existtitle = &mt('Official').': ';
2093: $existops = '<option value="">'.&mt('None').'</option>';
2094: foreach my $sec (@currsecs) {
2095: $existops .= '<option value="'.$sec.'">'.$sec.'</option>'."\n";
2096: }
2097: $seccolspan = ' colspan="2"';
2098: $newtitle = &mt('Other').': ';
2099: }
2100:
1.27 raeburn 2101: if ($persontotal) {
1.32 raeburn 2102: my %lt = &Apache::lonlocal::texthash(
2103: community => 'Requestor is automatically assigned Coordinator role.',
2104: official => 'Requestor is automatically assigned Course Coordinator role.',
2105: );
2106: $lt{'unofficial'} = $lt{'official'};
1.96 raeburn 2107: $lt{'textbook'} = $lt{'official'};
2108: $lt{'placement'} = $lt{'official'};
1.27 raeburn 2109: $output .= &Apache::lonhtmlcommon::row_headline().
1.34 raeburn 2110: '<h3>'.&Apache::loncommon::help_open_topic('Course_Request_Personnel').' '.$lt{$crstype}.' '.&mt('Include other personnel?').'</h3>';
1.27 raeburn 2111: }
1.99 raeburn 2112: my $cansearch = 1;
2113: my @alldoms = &Apache::lonnet::all_domains();
2114: if (@alldoms == 1) {
2115: my %domsrch = &Apache::lonnet::get_dom('configuration',
2116: ['directorysrch'],$alldoms[0]);
2117: if (ref($domsrch{'directorysrch'}) eq 'HASH') {
2118: if ((!$domsrch{'directorysrch'}{'available'}) &&
2119: ($domsrch{'directorysrch'}{'lcavailable'} eq '0')) {
2120: $cansearch = 0;
2121: }
2122: }
2123: }
1.101 ! raeburn 2124: my ($trusted,$untrusted) = &Apache::lonnet::trusted_domains('enroll',$dom);
1.100 raeburn 2125: for (my $i=0; $i<$persontotal; $i++) {
1.2 raeburn 2126: my @linkargs = map { 'person_'.$i.'_'.$_ } (@items);
2127: my $linkargstr = join("','",@linkargs);
1.29 raeburn 2128: my $uname_form = '<input type="text" name="person_'.$i.'_uname" value="" size="20" />';
1.2 raeburn 2129: my $onchange = 'javascript:fix_domain('."'$formname','person_".$i."_dom',".
1.29 raeburn 2130: "'person_".$i."_hidedom','person_".$i."_uname'".');';
1.2 raeburn 2131: my $udom_form = &Apache::loncommon::select_dom_form($dom,'person_'.$i.'_dom','',
1.101 ! raeburn 2132: 1,$onchange,undef,$trusted,$untrusted).
1.29 raeburn 2133: '<input type="hidden" name="person_'.$i.'_hidedom" value="" />';
1.2 raeburn 2134: my %form_elems;
2135: foreach my $item (@items) {
2136: next if (($item eq 'dom') || ($item eq 'uname') || ($item eq 'hidedom'));
2137: $form_elems{$item} = '<input type="text" name="person_'.$i.'_'.$item.'" '.
2138: 'value="" readonly="readonly" />';
2139: }
2140: my $roleselector = '<select name="person_'.$i.'_role">'."\n".
2141: $roleoptions.'</select>';
2142: my $sectionselector;
2143: if (@currsecs) {
2144: $sectionselector = $existtitle.'<select name="person_'.$i.'_sec"'.
2145: $existmult.'>'."\n".$existops.'</select>'.(' ' x3);
2146: }
2147: $sectionselector .= $newtitle.
1.14 raeburn 2148: '<input type="text" name="person_'.$i.'_newsec" size="15" value="" />'."\n";
1.99 raeburn 2149: my $usersrchlink;
2150: if ($cansearch) {
2151: my $usersrchlinktxt = &mt('Search for user');
2152: $usersrchlink = &Apache::loncommon::selectuser_link($formname,@linkargs,$dom,
2153: $usersrchlinktxt);
2154: } else {
2155: $usersrchlink = ' ';
2156: }
1.29 raeburn 2157: my $userchklinktxt = &mt('Check username');
2158: my $userchklink = &Apache::loncommon::selectuser_link($formname,@linkargs,$dom,
2159: $userchklinktxt,'checkusername');
1.2 raeburn 2160: $output .=
1.29 raeburn 2161: &Apache::lonhtmlcommon::row_title(&mt('Additional Personnel')).
2162: '<table><tr><td align="center" valign="middle"><b>'.$usersrchlink.'</b></td>'."\n".
2163: '<td align="left" valign="top" colspan="2"><span class="LC_nobreak">'.
2164: &mt('Username').': '.$uname_form.' '.$userchklink.'</span><br />'."\n".
2165: '<span class="LC_nobreak">'.&mt('Domain').': '.$udom_form.'</span></td>'.
2166: '</tr>'."\n".'<tr>'.
1.13 raeburn 2167: '<td align="center" valign="top">'.&mt('First Name').'<br />'.$form_elems{'firstname'}.'</td>'."\n".
2168: '<td align="center" valign="top">'.&mt('Last Name').'<br />'.$form_elems{'lastname'}.'</td>'."\n".
2169: '<td align="center" valign="top">'.&mt('E-mail').'<br />'.$form_elems{'emailaddr'}.'</td></tr>'."\n".
1.34 raeburn 2170: '<tr><td align="center" valign="top">'.&Apache::loncommon::help_open_topic('Course_Roles').' '.&mt('Role').'<br />'.$roleselector.'</td>'."\n".
2171: '<td'.$seccolspan.' align="center" valign="top">'.
2172: &Apache::loncommon::help_open_topic('Course_Request_Rolesection').' '.&mt('LON-CAPA Section(s)').'<br />'.$sectionselector.'</td>'."\n".
1.2 raeburn 2173: '</tr></table>'.&Apache::lonhtmlcommon::row_closure();
2174: }
1.40 raeburn 2175: $output .= &Apache::lonhtmlcommon::row_title(&mt('Add another')).
1.2 raeburn 2176: '<input name="persontotal" type="hidden" value="'.$persontotal.'" />'.
2177: '<input name="addperson" type="checkbox" value="'.$persontotal.'"'.
2178: ' onclick="javascript:nextPage(document.'.$formname.",'".$env{'form.state'}.
2179: "'".');" />'.&mt('Add?').&Apache::lonhtmlcommon::row_closure(1).
1.40 raeburn 2180: &Apache::lonhtmlcommon::end_pick_box().'</div>';
2181: if ($crstype eq 'community') {
2182: $output .= '<p>'.&mt('You may also add users later, once the community has been created, by using the "Manage community users" link, accessible from the "Main Menu".').'</p>';
2183: } else {
2184: $output .= '<p>'.&mt('You may also add users later, once the course has been created, by using the "Manage course users" link, accessible from the "Main Menu".').'</p>';
2185: }
1.2 raeburn 2186: return $output;
2187: }
2188:
1.30 raeburn 2189: sub current_lc_sections {
2190: my @currsecs;
2191: if ($env{'form.sectotal'}) {
2192: for (my $i=0; $i<$env{'form.sectotal'}; $i++) {
1.31 raeburn 2193: if ($env{'form.sec_'.$i}) {
2194: if (defined($env{'form.loncapasec_'.$i})) {
2195: my $lcsec = $env{'form.loncapasec_'.$i};
2196: unless (grep(/^\Q$lcsec\E$/,@currsecs)) {
2197: push(@currsecs,$lcsec);
2198: }
1.30 raeburn 2199: }
2200: }
2201: }
2202: }
2203: return @currsecs;
2204: }
2205:
1.48 raeburn 2206: sub sorted_request_history {
1.49 raeburn 2207: my ($dom,$action,$curr_req) = @_;
2208: my ($after,$before,$statusfilter,$crstypefilter);
2209: if ($env{'form.status'} ne '') {
2210: $statusfilter = $env{'form.status'};
2211: }
2212: if ($env{'form.crstype'} ne '') {
2213: $crstypefilter = $env{'form.crstype'};
2214: }
2215: if (ref($curr_req) eq 'HASH') {
2216: $after = $curr_req->{'requested_after_date'},
2217: $before = $curr_req->{'requested_before_date'};
2218: $statusfilter = $curr_req->{'status'};
2219: $crstypefilter = $curr_req->{'crstype'};
2220: }
1.14 raeburn 2221: my %statusinfo = &Apache::lonnet::dump('courserequests',$env{'user.domain'},
2222: $env{'user.name'},'^status:'.$dom);
1.48 raeburn 2223: my %queue_by_date;
1.37 raeburn 2224: my ($types,$typenames) = &Apache::loncommon::course_types();
1.14 raeburn 2225: foreach my $key (keys(%statusinfo)) {
1.48 raeburn 2226: if ($action eq 'view') {
2227: next unless (($statusinfo{$key} eq 'approval') || ($statusinfo{$key} eq 'pending'));
2228: } else {
1.49 raeburn 2229: next unless (($statusfilter eq 'any') ||
2230: ($statusfilter eq $statusinfo{$key}));
1.48 raeburn 2231: }
2232: (undef,my($cdom,$cnum)) = split(':',$key);
2233: next if ($cdom ne $dom);
2234: my $requestkey = $cdom.'_'.$cnum;
2235: if ($requestkey =~ /^($match_domain)_($match_courseid)$/) {
2236: my %history = &Apache::lonnet::restore($requestkey,'courserequests',
2237: $env{'user.domain'},$env{'user.name'});
2238: my $entry;
2239: my $reqtime = $history{'reqtime'};
2240: my $lastupdate = $history{'timestamp'};
2241: my $crstype = $history{'crstype'};
2242: my $disposition = $history{'disposition'};
2243: my $status = $history{'status'};
1.73 raeburn 2244: my $uniquecode = $history{'code'};
1.48 raeburn 2245: if ($action eq 'view') {
1.14 raeburn 2246: next if ((exists($history{'status'})) && ($history{'status'} eq 'created'));
1.48 raeburn 2247: } else {
2248: next if (($reqtime < $after) || ($reqtime > $before));
2249: }
1.49 raeburn 2250: next unless (($crstypefilter eq 'any') ||
2251: ($crstypefilter eq $crstype));
1.48 raeburn 2252: if ($action eq 'view') {
1.14 raeburn 2253: next unless (($disposition eq 'approval') ||
2254: ($disposition eq 'pending'));
1.48 raeburn 2255: }
2256: if (ref($history{'details'}) eq 'HASH') {
2257: $entry = $requestkey.':'.$crstype.':'.
2258: &escape($history{'details'}{'cdescr'});
2259: if ($action eq 'log') {
1.73 raeburn 2260: $entry .= ':'.$uniquecode.':'.$lastupdate.':';
1.48 raeburn 2261: if ($statusinfo{$key} ne '') {
2262: $entry .= $statusinfo{$key};
2263: } elsif ($status ne '') {
2264: $entry .= $status;
2265: } else {
2266: $entry .= $disposition;
1.14 raeburn 2267: }
2268: }
1.48 raeburn 2269: if ($crstype eq 'official') {
2270: $entry .= ':'.&escape($history{'details'}{'instcode'});
2271: }
2272: }
2273: if ($entry ne '') {
2274: if (exists($queue_by_date{$reqtime})) {
2275: if (ref($queue_by_date{$reqtime}) eq 'ARRAY') {
2276: push(@{$queue_by_date{$reqtime}},$entry);
1.10 raeburn 2277: }
1.48 raeburn 2278: } else {
2279: @{$queue_by_date{$reqtime}} = ($entry);
1.10 raeburn 2280: }
2281: }
2282: }
2283: }
1.48 raeburn 2284: return %queue_by_date;
2285: }
2286:
2287: sub print_request_status {
2288: my ($dom,$action) = @_;
2289: my %queue_by_date = &sorted_request_history($dom,$action);
1.10 raeburn 2290: my @sortedtimes = sort {$a <=> $b} (keys(%queue_by_date));
1.48 raeburn 2291: my $formname = 'requestcrs';
2292: my ($types,$typenames) = &Apache::loncommon::course_types();
2293: my $output = '<input type="hidden" name="action" value="'.$env{'form.action'}.'" />'."\n".
1.16 raeburn 2294:
1.10 raeburn 2295: '<input type="hidden" name="state" value="'.$env{'form.state'}.'" />'."\n".
1.16 raeburn 2296: '<input type="hidden" name="crstype" value="'.$env{'form.crstype'}.'" />'."\n".
2297: '<input type="hidden" name="showdom" value="" />'."\n".
2298: '<input type="hidden" name="cnum" value="" />'."\n";
1.10 raeburn 2299: if (@sortedtimes > 0) {
1.40 raeburn 2300: my $desctitle;
2301: if ($env{'form.crstype'} eq 'any') {
2302: $desctitle = &mt('Course/Community Description')
2303: } elsif ($env{'form.crstype'} eq 'community') {
2304: $desctitle = &mt('Community Description')
2305: } else {
2306: $desctitle = &mt('Course Description');
2307: }
1.10 raeburn 2308: $output .= &Apache::loncommon::start_data_table().
2309: &Apache::loncommon::start_data_table_header_row().
2310: '<th>'.&mt('Action').'</th>'.
1.40 raeburn 2311: '<th>'.$desctitle.'</th>'.
1.14 raeburn 2312: '<th>'.&mt('Domain').'</th>';
2313: if ($env{'form.crstype'} eq 'any') {
1.10 raeburn 2314: $output .= '<th>'.&mt('Type').'</th>';
2315: }
1.14 raeburn 2316: if (($env{'form.crstype'} eq 'any') || ($env{'form.crstype'} eq 'official')) {
1.10 raeburn 2317: $output .= '<th>'.&mt('Institutional Code').'</th>';
2318: }
2319: $output .= '<th>'.&mt('Date requested').'</th>'.
2320: &Apache::loncommon::end_data_table_header_row();
2321: my $count = 0;
2322: foreach my $item (@sortedtimes) {
2323: my $showtime = &Apache::lonlocal::locallocaltime($item);
2324: if (ref($queue_by_date{$item}) eq 'ARRAY') {
2325: foreach my $request (sort(@{$queue_by_date{$item}})) {
2326: my ($key,$type,$desc,$instcode) = split(':',$request);
2327: my ($cdom,$cnum) = split('_',$key);
2328: $output .= &Apache::loncommon::start_data_table_row().
1.16 raeburn 2329: '<td><input type="button" value="'.&mt('Select').'" onclick="javascript:chooseRequest('."'$cdom','$cnum'".')" /></td>'.
1.14 raeburn 2330: '<td>'.&unescape($desc).'</td>'.
2331: '<td>'.$cdom.'</td>';
2332: if ($env{'form.crstype'} eq 'any') {
1.35 raeburn 2333: my $typename;
2334: if (ref($typenames) eq 'HASH') {
2335: $typename = &mt($typenames->{$type});
2336: }
1.14 raeburn 2337: if ($typename eq '') {
2338: $typename = &mt('Unknown type');
2339: }
2340: $output .= '<td>'.$typename.'</td>';
1.10 raeburn 2341: }
1.14 raeburn 2342: if (($env{'form.crstype'} eq 'any') ||
1.10 raeburn 2343: ($env{'form.crstype'} eq 'official')) {
1.14 raeburn 2344: my $showinstcode;
2345: if ($type eq 'official') {
2346: $showinstcode = &unescape($instcode);
2347: } else {
2348: $showinstcode = &mt('Not applicable');
2349: }
2350: $output .= '<td>'.$showinstcode.'</td>';
1.10 raeburn 2351: }
2352: $output .= '<td>'.$showtime.'</td>'.
2353: &Apache::loncommon::end_data_table_row();
2354: }
2355: }
2356: }
2357: $output .= &Apache::loncommon::end_data_table();
2358: } else {
1.40 raeburn 2359: if ($env{'form.crstype'} eq 'any') {
2360: $output .= '<div>'.&mt('You have no matching course or community requests awaiting approval by a Domain Coordinator or held in a queue pending administrative action at your institution.').'</div>';
2361: } elsif ($env{'form.crstype'} eq 'community') {
2362: $output .= '<div>'.&mt('You have no matching community requests awaiting approval by a Domain Coordinator or held in a queue pending administrative action at your institution.').'</div>';
2363: } else {
2364: $output .= '<div>'.&mt('You have no matching course requests awaiting approval by a Domain Coordinator or held in a queue pending administrative action at your institution.').'</div>';
2365: }
1.10 raeburn 2366: }
2367: $output .= '
1.30 raeburn 2368: <br /><input type="button" name="prev" value="'.&mt('Back').'" onclick="javascript:backPage(document.'.$formname.",'crstype'".')" />';
1.10 raeburn 2369: return $output;
1.1 raeburn 2370: }
2371:
1.16 raeburn 2372: sub print_cancel_request {
2373: my ($dom,$cnum) = @_;
2374: my $requestkey = $dom.'_'.$cnum;
2375: my ($result,$output);
2376: if ($requestkey =~ /^($match_domain)_($match_courseid)$/) {
2377: my %history = &Apache::lonnet::restore($requestkey,'courserequests',
2378: $env{'user.domain'},$env{'user.name'});
2379: my $timestamp = $history{'reqtime'};
2380: my $crstype = $history{'crstype'};
2381: my $status = $history{'status'};
2382: if (($status eq 'cancelled') || ($status eq 'created')) {
2383: if ($status eq 'cancelled') {
2384: $output = &mt('This request has already been cancelled.');
2385: } elsif ($status eq 'created') {
2386: $output = &mt('This request has already been processed, and a course created.');
2387: }
2388: $output = &mt('No further action will be taken');
2389: } elsif (ref($history{'details'}) eq 'HASH') {
1.37 raeburn 2390: my ($types,$typename) = &Apache::loncommon::course_types();
1.16 raeburn 2391: my $showtype = $crstype;
2392: if (defined($typename->{$crstype})) {
2393: $showtype = $typename->{$crstype};
2394: }
2395: $output = '<p>'.&Apache::loncommon::start_data_table().
2396: &Apache::loncommon::start_data_table_header_row().
2397: '<th>'.&mt('Description').'</th><th>'.&mt('Requested').'</th>'.
2398: '<th>'.&mt('Type').'</th>'.
2399: &Apache::loncommon::end_data_table_header_row().
2400: &Apache::loncommon::start_data_table_row().
2401: '<td>'.$history{details}{'cdescr'}.'</td><td>'.
2402: &Apache::lonlocal::locallocaltime($timestamp).'</td>'.
2403: '<td>'.$showtype.'</td>'.
2404: &Apache::loncommon::end_data_table_row().
2405: &Apache::loncommon::end_data_table().
1.40 raeburn 2406: '<br /><div class="LC_warning">';
2407: if ($crstype eq 'community') {
2408: $output .= &mt('Cancelling the request will remove it from the queue of pending community requests').'</div>';
2409: } else {
2410: $output .= &mt('Cancelling the request will remove it from the queue of pending course requests').'</div>';
2411: }
1.16 raeburn 2412: $result = 'ok';
2413: } else {
2414: $output = '<div class="LC_error">'.&mt('No record exists for the course ID').'</div>';
2415: }
2416: } else {
2417: $output = '<div class="LC_error">'.&mt('Invalid course ID').'</div>';
2418: }
2419: return ($result,$output);
2420: }
2421:
2422: sub viewrequest_javascript {
2423: my ($formname,$next) = @_;
2424: return <<"ENDJS";
2425:
2426: function chooseRequest(cdom,cnum) {
2427: document.$formname.showdom.value = cdom;
2428: document.$formname.cnum.value = cnum;
2429: nextPage(document.$formname,'$next');
2430: }
2431:
2432: ENDJS
2433: }
2434:
2435: sub viewdetails_javascript {
2436: my ($formname) = @_;
2437: return << "ENDJS";
2438:
2439: function nextPage(formname,nextstate) {
2440: if (nextstate == "modify") {
2441: formname.state.value = "personnel";
2442: formname.action.value = "new";
2443: } else {
2444: formname.state.value = nextstate;
2445: }
2446: formname.submit();
2447: }
2448:
2449: function backPage(formname,prevstate) {
2450: formname.state.value = prevstate;
2451: formname.submit();
2452: }
2453:
2454: ENDJS
2455: }
2456:
2457: sub viewcancel_javascript {
1.89 damieng 2458: my $alert = &mt('Are you sure you want to cancel this request?')."\n".
1.68 bisitz 2459: &mt('Your request will be removed.');
1.89 damieng 2460: &js_escape(\$alert);
1.16 raeburn 2461: return << "ENDJS";
2462: function nextPage(formname,nextstate) {
2463: if (confirm('$alert')) {
2464: formname.state.value = nextstate;
2465: formname.submit();
2466: }
2467: return;
2468: }
2469:
2470: ENDJS
2471: }
2472:
1.1 raeburn 2473: sub print_request_logs {
1.73 raeburn 2474: my ($r,$dom,$jscript,$loaditems,$crumb,$usetabs) = @_;
1.48 raeburn 2475: my $title;
2476: if ($env{'form.crstype'} eq 'community') {
2477: $title = 'Community Request Logs';
2478: } elsif ($env{'form.crstype'} eq 'any') {
2479: $title = 'Course/Community Request Logs';
2480: } else {
2481: $title = 'Course Request Logs';
2482: }
2483: $r->print(&header($title,$jscript,$loaditems).$crumb);
1.73 raeburn 2484: if ($usetabs) {
2485: &startContentScreen($r,'textbooklogs');
2486: }
1.48 raeburn 2487: my $formname = 'requestcrs';
2488: $r->print('<form action="/adm/requestcourse" method="post" name="'.$formname.'" onsubmit="javascript:setPage(this);">'."\n".
2489: '<input type="hidden" name="action" value="log" />'."\n".
2490: '<input type="hidden" name="state" value="display" />'."\n");
2491: # set defaults
2492: my $now = time();
2493: my $defstart = $now - (7*24*3600); #7 days ago
2494: my %defaults = (
2495: page => '1',
2496: show => '10',
2497: crstype => 'any',
2498: status => 'any',
2499: requested_before_date => $now,
2500: requested_after_date => $defstart,
2501: );
2502: my ($types,$typenames) = &Apache::loncommon::course_types();
2503: my $more_records = 0;
2504: my %curr;
2505: foreach my $item ('show','page','crstype','status') {
2506: $curr{$item} = $env{'form.'.$item};
2507: }
2508: $curr{'requested_after_date'} = &Apache::lonhtmlcommon::get_date_from_form('requested_after_date');
2509: $curr{'requested_before_date'} = &Apache::lonhtmlcommon::get_date_from_form('requested_before_date');
2510: foreach my $key (keys(%defaults)) {
2511: if ($curr{$key} eq '') {
2512: $curr{$key} = $defaults{$key};
2513: }
2514: }
2515: my ($statuses,$statusnames) = &reqstatus_names($curr{'crstype'});
2516: $r->print('<input type="hidden" name="page" value="'.$curr{'page'}.'" />'.
2517: &requestlog_display_filter($formname,\%curr));
1.49 raeburn 2518: my %queue_by_date = &sorted_request_history($dom,$env{'form.action'},\%curr);
1.48 raeburn 2519: my @sortedtimes = sort {$a <=> $b} (keys(%queue_by_date));
2520: my $showntablehdr = 0;
2521: my $tablehdr = &Apache::loncommon::start_data_table().
2522: &Apache::loncommon::start_data_table_header_row().
2523: '<th> </th><th>'.&mt('Request Date').'</th>'.
2524: '<th>'.&mt('Description').'</th>';
2525: if ($curr{'crstype'} eq 'any') {
2526: $tablehdr .= '<th>'.&mt('Course Type').'</th>';
2527: }
2528: if (($curr{'crstype'} eq 'official') || ($curr{'crstype'} eq 'any')) {
2529: $tablehdr .= '<th>'.&mt('Institutional Code').'</th>';
2530: }
1.73 raeburn 2531: my $showuniquecode;
2532: my %domconfig = &Apache::lonnet::get_dom('configuration',['requestcourses'],$dom);
2533: if (($curr{'status'} eq 'any') || ($curr{'status'} eq 'created')) {
2534: if (ref($domconfig{'requestcourses'}) eq 'HASH') {
2535: if (ref($domconfig{'requestcourses'}{'uniquecode'}) eq 'HASH') {
2536: if ($curr{'crstype'} eq 'any') {
1.96 raeburn 2537: my @types = qw(official unofficial community textbook placement);
1.73 raeburn 2538: foreach my $type (@types) {
2539: if ($domconfig{'requestcourses'}{'uniquecode'}{$type}) {
2540: $showuniquecode = 1;
2541: last;
2542: }
2543: }
2544: } elsif ($domconfig{'requestcourses'}{'uniquecode'}{$curr{'crstype'}}) {
2545: $showuniquecode = 1;
2546: }
2547: }
2548: }
2549: }
2550: if ($showuniquecode) {
2551: $tablehdr .= '<th>'.&mt('Unique Code').'</th>';
2552: }
1.48 raeburn 2553: if ($curr{'status'} eq 'any') {
2554: $tablehdr .= '<th>'.&mt('Status').'</th>';
2555: } elsif ($curr{'status'} eq 'created') {
2556: $tablehdr .= '<th>'.&mt('Creation Date').'</th>';
2557: } elsif ($curr{'status'} eq 'cancelled') {
2558: $tablehdr .= '<th>'.&mt('Cancellation Date').'</th>';
2559: } elsif ($curr{'status'} eq 'rejected') {
2560: $tablehdr .= '<th>'.&mt('Rejection Date').'</th>';
2561: }
2562: $tablehdr .= &Apache::loncommon::end_data_table_header_row();
2563: my ($minshown,$maxshown);
2564: $minshown = 1;
2565: my $count = 0;
2566: if ($curr{'show'} ne &mt('all')) {
2567: $maxshown = $curr{'page'} * $curr{'show'};
2568: if ($curr{'page'} > 1) {
2569: $minshown = 1 + ($curr{'page'} - 1) * $curr{'show'};
2570: }
2571: }
2572: my $norecords;
2573: if (@sortedtimes > 0) {
2574: foreach my $item (@sortedtimes) {
2575: if ($curr{'show'} ne &mt('all')) {
2576: if ($count >= $curr{'page'} * $curr{'show'}) {
2577: $more_records = 1;
2578: last;
2579: }
2580: }
2581: $count ++;
2582: next if ($count < $minshown);
2583: if (!$showntablehdr) {
2584: $r->print($tablehdr);
2585: $showntablehdr = 1;
2586: }
2587: my $showtime = &Apache::lonlocal::locallocaltime($item);
2588: if (ref($queue_by_date{$item}) eq 'ARRAY') {
2589: foreach my $request (sort(@{$queue_by_date{$item}})) {
1.73 raeburn 2590: my ($key,$crstype,$desc,$uniquecode,$timestamp,$status,$instcode) = split(':',$request);
1.48 raeburn 2591: my ($cdom,$cnum) = split('_',$key);
2592: my $output = &Apache::loncommon::start_data_table_row().
2593: '<td>'.$count.'</td>'.
2594: '<td>'.$showtime.'</td>'.
2595: '<td>'.&unescape($desc).'</td>';
2596: if ($curr{'crstype'} eq 'any') {
2597: my $typename;
2598: if (ref($typenames) eq 'HASH') {
2599: $typename = &mt($typenames->{$crstype});
2600: }
2601: if ($typename eq '') {
2602: $typename = &mt('Unknown type');
2603: }
2604: $output .= '<td>'.$typename.'</td>';
2605: }
2606: if (($curr{'crstype'} eq 'any') ||
2607: ($curr{'crstype'} eq 'official')) {
2608: my $showinstcode;
2609: if ($crstype eq 'official') {
2610: $showinstcode = &unescape($instcode);
2611: } else {
2612: $showinstcode = &mt('Not applicable');
2613: }
2614: $output .= '<td>'.$showinstcode.'</td>';
2615: }
1.73 raeburn 2616: if ($showuniquecode) {
2617: if ($status eq 'created') {
2618: $output .= '<td>'.$uniquecode.'</td>';
2619: } else {
2620: $output .= '<td>'.&mt('Not applicable').'</td>';
2621: }
2622: }
1.48 raeburn 2623: if ($curr{'status'} eq 'any') {
2624: my $statusname = &mt('Unknown status');
2625: if (ref($statusnames) eq 'HASH') {
2626: if ($statusnames->{$status} ne '') {
2627: $statusname = $statusnames->{$status};
2628: }
2629: }
2630: if (($status eq 'created') || ($status eq 'cancelled') ||
2631: ($status eq 'rejected')) {
2632: $statusname .= ' '.&Apache::lonlocal::locallocaltime($timestamp);
2633: }
2634: $output .= '<td>'.$statusname.'</td>';
2635: } elsif (($status eq 'created') || ($status eq 'cancelled') ||
2636: ($status eq 'rejected')) {
2637: $output .= '<td>'.&Apache::lonlocal::locallocaltime($timestamp).'</td>';
2638: }
2639: $output .= &Apache::loncommon::end_data_table_row();
2640: $r->print($output);
2641: }
2642: }
2643: }
2644: if ($showntablehdr) {
2645: $r->print(&Apache::loncommon::end_data_table());
2646: if (($curr{'page'} > 1) || ($more_records)) {
2647: $r->print('<table><tr>');
2648: if ($curr{'page'} > 1) {
2649: $r->print('<td><a href="javascript:chgPage('."'previous'".');">'.&mt('Previous [_1] changes',$curr{'show'}).'</a></td>');
2650: }
2651: if ($more_records) {
2652: $r->print('<td><a href="javascript:chgPage('."'next'".');">'.&mt('Next [_1] changes',$curr{'show'}).'</a></td>');
2653: }
2654: $r->print('</tr></table>');
2655: $r->print(<<"ENDSCRIPT");
2656: <script type="text/javascript">
2657: // <![CDATA[
2658: function chgPage(caller) {
2659: if (caller == 'previous') {
2660: document.$formname.page.value --;
2661: }
2662: if (caller == 'next') {
2663: document.$formname.page.value ++;
2664: }
2665: document.$formname.submit();
1.1 raeburn 2666: return;
2667: }
1.48 raeburn 2668: // ]]>
2669: </script>
2670: ENDSCRIPT
2671: }
2672: } else {
2673: $norecords = 1;
2674: }
2675: } else {
2676: $norecords = 1;
2677: }
2678: if ($norecords) {
2679: $r->print('<p class="LC_info">'.
2680: &mt('There are no records to display').
2681: '</p>');
2682: }
1.73 raeburn 2683: if ($usetabs) {
2684: $r->print('<input type="hidden" name="tabs" value="on" />');
2685: }
2686: $r->print('</form>');
2687: if ($usetabs) {
2688: &endContentScreen($r);
2689: }
2690: $r->print(&Apache::loncommon::end_page());
1.48 raeburn 2691: return;
2692: }
2693:
2694: sub reqstatus_names {
2695: my ($crstype) = @_;
2696: my @statuses = qw(created approval pending rejected cancelled);
2697: my %statusnames =
2698: &Apache::lonlocal::texthash (
1.50 raeburn 2699: created => 'Created',
1.48 raeburn 2700: approval => 'Queued pending approval',
2701: pending => 'Queued pending validation',
2702: rejected => 'Request rejected',
2703: cancelled => 'Request cancelled',
2704: );
1.96 raeburn 2705: if (($crstype eq 'official') || ($crstype eq 'unofficial') || ($crstype eq 'textbook') || ($crstype eq 'placement')) {
1.48 raeburn 2706: $statusnames{'created'} = &mt('Course created');
2707: } elsif ($crstype eq 'community') {
2708: $statusnames{'created'} = &mt('Community created');
2709: }
2710: return (\@statuses,\%statusnames);
2711: }
2712:
2713: sub requestlog_display_filter {
2714: my ($formname,$curr) = @_;
2715: my $nolink = 1;
2716: my $output = '<table><tr><td valign="top">'.
2717: '<span class="LC_nobreak"><b>'.&mt('Records/page:').'</b></span><br />'.
2718: &Apache::lonmeta::selectbox('show',$curr->{'show'},undef,
2719: (&mt('all'),5,10,20,50,100,1000,10000)).
2720: '</td><td> </td>';
2721: my $startform =
2722: &Apache::lonhtmlcommon::date_setter($formname,'requested_after_date',
2723: $curr->{'requested_after_date'},undef,
2724: undef,undef,undef,undef,undef,undef,$nolink);
2725: my $endform =
2726: &Apache::lonhtmlcommon::date_setter($formname,'requested_before_date',
2727: $curr->{'requested_before_date'},undef,
2728: undef,undef,undef,undef,undef,undef,$nolink);
2729: $output .= '<td valign="top"><b>'.&mt('Window during which course/community was requested:').'</b><br />'.
2730: '<table><tr><td>'.&mt('After:').
2731: '</td><td>'.$startform.'</td></tr>'.
2732: '<tr><td>'.&mt('Before:').'</td>'.
2733: '<td>'.$endform.'</td></tr></table>'.
2734: '</td>'.
2735: '<td> </td>';
2736: my ($types,$typenames) = &Apache::loncommon::course_types();
2737: if (ref($types) eq 'ARRAY') {
2738: if (@{$types} > 1) {
2739: $output .= '<td valign="top"><b>'.
2740: &mt('Course Type:').'</b><br /><select name="crstype">';
2741: my $selstr = '';
2742: if ($curr->{'crstype'} eq 'any') {
2743: $selstr = ' selected="selected"';
2744: }
2745: $output .= '<option value="any"'.$selstr.'>'.&mt('All types').'</option>'."\n";
2746: foreach my $crstype (@{$types}) {
2747: my $selstr = '';
2748: if ($curr->{'crstype'} eq $crstype) {
2749: $selstr = ' selected="selected"';
2750: }
2751: my $typename = $crstype;
2752: if (ref($typenames) eq 'HASH') {
2753: if ($typenames->{$crstype} ne '') {
2754: $typename = $typenames->{$crstype};
2755: }
2756: }
2757: $output .= '<option value="'.$crstype.'"'.$selstr.'>'.$typename.'</option>'."\n";
2758: }
2759: $output .= '</select></td>';
2760: }
2761: }
2762: my ($statuses,$statusnames) = &reqstatus_names($curr->{'crstype'});
2763: if (ref($statuses) eq 'ARRAY') {
2764: if (@{$statuses} > 1) {
2765: $output .= '<td valign="top"><b>'.
2766: &mt('Request Status:').'</b><br /><select name="status">';
2767: my $selstr = '';
2768: if ($curr->{'status'} eq 'any') {
2769: $selstr = ' selected="selected"';
2770: }
2771: $output .= '<option value="any"'.$selstr.'>'.&mt('Any status').'</option>'."\n";
2772: foreach my $status (@{$statuses}) {
2773: my $selstr = '';
2774: if ($curr->{'status'} eq $status) {
2775: $selstr = ' selected="selected"';
2776: }
2777: my $statusname = $status;
2778: if (ref($statusnames) eq 'HASH') {
2779: if ($statusnames->{$status} ne '') {
2780: $statusname = $statusnames->{$status};
2781: }
2782: }
2783: $output .= '<option value="'.$status.'"'.$selstr.'>'.$statusname.'</option>'."\n";
2784: }
2785: $output .= '</select></td>';
2786: }
2787: }
2788: $output .= '</tr></table>';
2789:
2790: # Update Display button
2791: $output .= '<p>'.
2792: '<input type="submit" value="'.&mt('Update Display').'" />'.
2793: '</p><hr />';
2794: return $output;
2795: }
1.1 raeburn 2796:
2797: sub print_review {
1.30 raeburn 2798: my ($dom,$codetitles,$cat_titles,$cat_order,$code_order,$uname,$udom,
1.66 raeburn 2799: $disallowed,$disallowmsg,$instcredits) = @_;
1.37 raeburn 2800: my ($types,$typename) = &Apache::loncommon::course_types();
1.4 raeburn 2801: my ($owner,$ownername,$owneremail);
1.26 raeburn 2802: if ($uname eq '' || $udom eq '') {
2803: $uname = $env{'user.name'};
2804: $udom = $env{'user.domain'};
2805: }
2806: $owner = $uname.':'.$udom;
2807: $ownername = &Apache::loncommon::plainname($uname,$udom,'first');
2808: my %emails = &Apache::loncommon::getemails($uname,$udom);
1.4 raeburn 2809: foreach my $email ('permanentemail','critnotification','notification') {
2810: $owneremail = $emails{$email};
2811: last if ($owneremail ne '');
2812: }
2813: my ($inst_headers,$inst_values,$crstypename,$enroll_headers,$enroll_values,
2814: $section_headers,$section_values,$personnel_headers,$personnel_values);
2815:
2816: $crstypename = $env{'form.crstype'};
2817: if (ref($typename) eq 'HASH') {
2818: unless ($typename->{$env{'form.crstype'}} eq '') {
1.35 raeburn 2819: $crstypename = &mt($typename->{$env{'form.crstype'}});
1.4 raeburn 2820: }
2821: }
1.16 raeburn 2822: my $category = 'Course';
2823: if ($env{'form.crstype'} eq 'community') {
2824: $category = 'Community';
2825: }
1.4 raeburn 2826:
2827: $inst_headers = '<th>'.&mt('Description').'</th><th>'.&mt('Type').'</th>';
2828: $inst_values = '<td>'.$env{'form.cdescr'}.'</td><td>'.$crstypename.'</td>';
2829:
1.16 raeburn 2830: my $enrollrow_title = &mt('Default Access Dates').'<br />'.
2831: '('.&Apache::lonnet::plaintext('st',$category).')';
1.87 raeburn 2832: my $instcode;
1.4 raeburn 2833: if ($env{'form.crstype'} eq 'official') {
2834: if ((ref($codetitles) eq 'ARRAY') && (ref($cat_titles) eq 'HASH')) {
2835: foreach my $title (@{$codetitles}) {
2836: if ($env{'form.instcode_'.$title} ne '') {
2837: $inst_headers .= '<th>'.$title.'</th>';
2838: my $longitem = $env{'form.instcode_'.$title};
2839: if (ref($cat_titles->{$title}) eq 'HASH') {
2840: if ($cat_titles->{$title}{$env{'form.instcode_'.$title}} ne '') {
2841: $longitem = $cat_titles->{$title}{$env{'form.instcode_'.$title}};
2842: }
2843: }
2844: $inst_values .= '<td>'.$longitem.'</td>';
2845: }
2846: }
2847: }
1.87 raeburn 2848: if (ref($code_order) eq 'ARRAY') {
2849: foreach my $item (@{$code_order}) {
2850: $instcode .= $env{'form.instcode_'.$item};
2851: }
2852: }
1.66 raeburn 2853: $inst_headers .= '<th>'.&mt('Credits').'</th>';
2854: if ($instcredits) {
2855: $inst_values .= '<td>'.$instcredits.'</td>';
2856: } else {
2857: $inst_values .= '<td>'.$env{'form.coursecredits'}.'</td>';
2858: }
1.4 raeburn 2859: if (&Apache::lonnet::auto_run('',$dom)) {
1.16 raeburn 2860: $enrollrow_title = &mt('Enrollment');
1.4 raeburn 2861: $enroll_headers = '<th>'.&mt('Automatic Adds').'</th>'.
2862: '<th>'.&mt('Automatic Drops').'</th>'.
2863: '<th>'.&mt('Enrollment Starts').'</th>'.
2864: '<th>'.&mt('Enrollment Ends').'</th>';
2865: $section_headers = '<th>'.&mt('Sections').'</th>'.
2866: '<th>'.&mt('Crosslistings').'</th>';
2867:
1.13 raeburn 2868: my ($enrollstart,$enrollend) = &dates_from_form('enrollstart','enrollend');
1.4 raeburn 2869: my @autoroster = (&mt('No'),&mt('Yes'));
2870: $enroll_values = '<td>'.$autoroster[$env{'form.autoadds'}].'</td>'.
2871: '<td>'.$autoroster[$env{'form.autodrops'}].'</td>'.
1.13 raeburn 2872: '<td>'.&Apache::lonlocal::locallocaltime($enrollstart).'</td>'.
2873: '<td>'.&Apache::lonlocal::locallocaltime($enrollend).'</td>';
1.6 raeburn 2874: $section_values = '<td><table class="LC_innerpickbox"><tr><th>'.
2875: &mt('Institutional section').'</th>'.
2876: '<th>'.&mt('LON-CAPA section').'</th></tr>';
1.5 raeburn 2877: my $secinfo;
1.4 raeburn 2878: if ($env{'form.sectotal'} > 0) {
2879: for (my $i=0; $i<$env{'form.sectotal'}; $i++) {
2880: if ($env{'form.sec_'.$i}) {
1.5 raeburn 2881: $secinfo .= '<tr><td>'.$env{'form.secnum_'.$i}.'</td><td>';
1.4 raeburn 2882: if ($env{'form.loncapasec_'.$i} ne '') {
1.5 raeburn 2883: $secinfo .= $env{'form.loncapasec_'.$i};
2884: } else {
2885: $secinfo .= &mt('None');
1.4 raeburn 2886: }
1.5 raeburn 2887: $secinfo .= '</td></tr>';
1.4 raeburn 2888: }
2889: }
2890: }
1.6 raeburn 2891: if ($secinfo eq '') {
2892: $secinfo = '<tr><td colspan="2">'.&mt('None').'</td></tr>';
1.5 raeburn 2893: }
1.6 raeburn 2894: $section_values .= $secinfo.'</table></td><td>'.
2895: '<table class="LC_innerpickbox"><tr><th>'.
2896: &mt('Institutional course/section').'</th>'.
2897: '<th>'.&mt('LON-CAPA section').'</th></tr>';
1.5 raeburn 2898: my $xlistinfo;
1.24 raeburn 2899: my $crosslisttotal = $env{'form.crosslisttotal'};
2900: if (!$crosslisttotal) {
2901: $crosslisttotal = 1;
2902: }
2903: for (my $i=0; $i<$crosslisttotal; $i++) {
2904: if ($env{'form.crosslist_'.$i}) {
2905: $xlistinfo .= '<tr><td>';
2906: if (ref($code_order) eq 'ARRAY') {
2907: if (@{$code_order} > 0) {
2908: foreach my $item (@{$code_order}) {
2909: $xlistinfo .= $env{'form.crosslist_'.$i.'_'.$item};
1.4 raeburn 2910: }
2911: }
2912: }
1.24 raeburn 2913: $xlistinfo .= $env{'form.crosslist_'.$i.'_instsec'}.'</td><td>';
2914: if ($env{'form.crosslist_'.$i.'_lcsec'}) {
2915: $xlistinfo .= $env{'form.crosslist_'.$i.'_lcsec'};
2916: } else {
2917: $xlistinfo .= &mt('None');
2918: }
2919: $xlistinfo .= '</td></tr>';
1.4 raeburn 2920: }
2921: }
1.6 raeburn 2922: if ($xlistinfo eq '') {
2923: $xlistinfo = '<tr><td colspan="2">'.&mt('None').'</td></tr>';
1.5 raeburn 2924: }
1.24 raeburn 2925: $section_values .= $xlistinfo;
1.4 raeburn 2926: }
1.24 raeburn 2927: $section_values .= '</table></td>';
1.69 raeburn 2928: } elsif (($env{'form.crstype'} eq 'unofficial') || ($env{'form.crstype'} eq 'textbook')) {
1.66 raeburn 2929: $inst_headers .= '<th>'.&mt('Credits').'</th>';
2930: $inst_values .= '<td>'.$env{'form.coursecredits'}.'</td>';
1.4 raeburn 2931: }
2932:
2933: my %ctxt = &clone_text();
2934: $inst_headers .= '<th>'.&mt('Clone From').'</th>';
1.45 raeburn 2935: if (($env{'form.cloning'}) &&
2936: ($env{'form.clonecrs'} =~ /^$match_name$/) &&
1.13 raeburn 2937: ($env{'form.clonedom'} =~ /^$match_domain$/)) {
1.56 raeburn 2938: my $canclone = &Apache::loncoursequeueadmin::can_clone_course($uname,
2939: $udom,$env{'form.clonecrs'},$env{'form.clonedom'},
1.87 raeburn 2940: $env{'form.crstype'},$dom,$instcode);
1.15 raeburn 2941: if ($canclone) {
2942: my %courseenv = &Apache::lonnet::userenvironment($env{'form.clonedom'},
2943: $env{'form.clonecrs'},('description','internal.coursecode'));
2944: if (keys(%courseenv) > 0) {
2945: $inst_headers .= '<th>'.$ctxt{'dsh'}.'</th>';
2946: $inst_values .= '<td>'.$courseenv{'description'}.' ';
2947: my $cloneinst = $courseenv{'internal.coursecode'};
2948: if ($cloneinst ne '') {
1.18 raeburn 2949: $inst_values .= $cloneinst.' '.&mt('in').' '.$env{'form.clonedom'};
1.15 raeburn 2950: } else {
1.18 raeburn 2951: $inst_values .= &mt('from').' '.$env{'form.clonedom'};
1.15 raeburn 2952: }
2953: $inst_values .= '</td><td>';
2954: if ($env{'form.datemode'} eq 'preserve') {
1.16 raeburn 2955: $inst_values .= $ctxt{'prd'};
1.15 raeburn 2956: } elsif ($env{'form.datemode'} eq 'shift') {
2957: $inst_values .= &mt('Shift dates by [_1] days',$env{'form.dateshift'});
2958: } else {
2959: $inst_values .= $ctxt{'ncd'};
2960: }
2961: $inst_values .= '</td>';
2962: } else {
2963: $inst_values .= '<td>'.&mt('Unknown').'</td>';
2964: }
2965: } else {
2966: $inst_values .= '<td>'.&mt('Not permitted'),'</td>';
2967: }
1.4 raeburn 2968: } else {
2969: $inst_values .= '<td>'.&mt('None').'</td>';
2970: }
2971: $enroll_headers .= '<th>'.&mt('Access Starts').'</th>'.
2972: '<th>'.&mt('Access Ends').'</th>';
1.13 raeburn 2973: my ($accessstart,$accessend) = &dates_from_form('accessstart','accessend');
2974: $enroll_values .= '<td>'.&Apache::lonlocal::locallocaltime($accessstart).'</td>';
2975: if ($accessend == 0) {
1.4 raeburn 2976: $enroll_values .= '<td>'.&mt('No end date').'</td>';
2977: } else {
1.13 raeburn 2978: $enroll_values .= '<td>'.&Apache::lonlocal::locallocaltime($accessend).'</td>';
1.4 raeburn 2979: }
2980:
2981: my $container = 'Course';
1.41 raeburn 2982: my $ccrole = 'cc';
1.4 raeburn 2983: if ($env{'form.crstype'} eq 'community') {
2984: $container = 'Community';
1.41 raeburn 2985: $ccrole = 'co';
1.4 raeburn 2986: }
2987:
2988: $personnel_headers = '<th>'.&mt('Name').'</th><th>'.&mt('Username:Domain').
2989: '</th><th>'.&mt('Role').'</th><th>'.&mt('LON-CAPA Sections').
2990: '</th>';
1.41 raeburn 2991:
1.4 raeburn 2992: $personnel_values .= '<tr><td>'.$ownername.'</td><td>'.$owner.'</td>'.
1.41 raeburn 2993: '<td>'.&Apache::lonnet::plaintext($ccrole,$container).'</td>'.
1.4 raeburn 2994: '<td>'.&mt('None').'</td></tr>';
2995: for (my $i=0; $i<$env{'form.persontotal'}; $i++) {
2996: if ($env{'form.person_'.$i.'_uname'} ne '') {
1.30 raeburn 2997: if (ref($disallowed) eq 'ARRAY') {
2998: next if (grep(/^$i$/,@{$disallowed}));
2999: }
1.31 raeburn 3000: my @officialsecs = &Apache::loncommon::get_env_multiple('form.person_'.$i.'_sec');
3001: my @allsecs;
3002: foreach my $sec (@officialsecs) {
3003: next unless ($sec =~ /\w/);
3004: next if ($sec =~ /\W/);
3005: next if ($sec eq 'none');
3006: push(@allsecs,$sec);
3007: }
1.14 raeburn 3008: my $newsec = $env{'form.person_'.$i.'_newsec'};
3009: $newsec =~ s/^\s+//;
3010: $newsec =~s/\s+$//;
1.31 raeburn 3011: my @newsecs = split(/\s*[\s,;:]\s*/,$newsec);
1.14 raeburn 3012: foreach my $sec (@newsecs) {
1.31 raeburn 3013: next unless ($sec =~ /\w/);
1.14 raeburn 3014: next if ($sec =~ /\W/);
1.31 raeburn 3015: next if ($sec eq 'none');
1.14 raeburn 3016: if ($sec ne '') {
3017: unless (grep(/^\Q$sec\E$/,@allsecs)) {
3018: push(@allsecs,$sec);
3019: }
3020: }
3021: }
1.24 raeburn 3022: my $showsec;
1.14 raeburn 3023: if (@allsecs) {
3024: $showsec = join(', ',@allsecs);
3025: }
1.24 raeburn 3026: if ($showsec eq '') {
3027: $showsec = &mt('None');
3028: }
1.41 raeburn 3029: if ($env{'form.person_'.$i.'_role'} eq $ccrole) {
1.24 raeburn 3030: $showsec = &mt('None');
3031: }
1.28 raeburn 3032: my $role = $env{'form.person_'.$i.'_role'};
1.4 raeburn 3033: $personnel_values .=
1.13 raeburn 3034: '<tr><td>'.$env{'form.person_'.$i.'_firstname'}.' '.
3035: $env{'form.person_'.$i.'_lastname'}.'</td>'.
1.4 raeburn 3036: '<td>'.$env{'form.person_'.$i.'_uname'}.':'.
3037: $env{'form.person_'.$i.'_dom'}.'</td>'.
1.28 raeburn 3038: '<td>'.&Apache::lonnet::plaintext($role,$container).'</td>'.
1.14 raeburn 3039: '<td>'.$showsec.'</td></tr>';
1.4 raeburn 3040: }
3041: }
1.30 raeburn 3042: my $output;
3043: if (ref($disallowed) eq 'ARRAY') {
3044: if (@{$disallowed} > 0) {
3045: if (ref($disallowmsg) eq 'HASH') {
3046: $output = '<p class="LC_warning">'.
3047: &mt('Not all requested personnel could be included.').'<ul>';
3048: foreach my $item (@{$disallowed}) {
3049: $output .= '<li>'.$disallowmsg->{$item}.'</li>';
3050: }
3051: $output .= '</ul></p>';
3052: }
3053: }
3054: }
3055: $output .= '<div>'.&Apache::lonhtmlcommon::start_pick_box().
1.4 raeburn 3056: &Apache::lonhtmlcommon::row_title(&mt('Owner')).
1.6 raeburn 3057: '<table class="LC_innerpickbox"><tr>'.
1.4 raeburn 3058: '<th>'.&mt('Name').'</th>'.
3059: '<th>'.&mt('Username:Domain').'</th>'.
3060: '<th>'.&mt('E-mail address').'</th>'.
3061: '</tr><tr>'."\n".
3062: '<td>'.$ownername.'</td><td>'.$owner.'</td>'.
3063: '<td>'.$owneremail.'</td>'.
3064: '</tr></table>'."\n".
3065: &Apache::lonhtmlcommon::row_closure().
1.5 raeburn 3066: &Apache::lonhtmlcommon::row_title(&mt('Description')).
1.4 raeburn 3067: '<table class="LC_innerpickbox"><tr>'.$inst_headers.'</tr>'."\n".
3068: '<tr>'.$inst_values.'</tr></table>'."\n".
3069: &Apache::lonhtmlcommon::row_closure().
1.16 raeburn 3070: &Apache::lonhtmlcommon::row_title($enrollrow_title).
1.4 raeburn 3071: '<table class="LC_innerpickbox"><tr>'.$enroll_headers.'</tr>'."\n".
3072: '<tr>'.$enroll_values.'</tr></table>'."\n".
3073: &Apache::lonhtmlcommon::row_closure();
3074: if ($section_headers ne '') {
3075: $output .= &Apache::lonhtmlcommon::row_title(&mt('Sections')).
3076: '<table class="LC_innerpickbox"><tr>'.$section_headers.'</tr>'."\n".
3077: '<tr>'.$section_values.'</tr></table>'."\n".
3078: &Apache::lonhtmlcommon::row_closure();
3079: }
3080: $output .= &Apache::lonhtmlcommon::row_title(&mt('Personnel')).
3081: '<table class="LC_innerpickbox"><tr>'.$personnel_headers.'</tr>'."\n".
3082: $personnel_values.'</table>'."\n".
3083: &Apache::lonhtmlcommon::row_closure(1).
1.26 raeburn 3084: &Apache::lonhtmlcommon::end_pick_box().'</div>';
1.4 raeburn 3085: return $output;
3086: }
3087:
3088: sub dates_from_form {
3089: my ($startname,$endname) = @_;
3090: my $startdate = &Apache::lonhtmlcommon::get_date_from_form($startname);
3091: my $enddate = &Apache::lonhtmlcommon::get_date_from_form($endname);
1.13 raeburn 3092: if ($endname eq 'accessend') {
1.4 raeburn 3093: if (exists($env{'form.no_end_date'}) ) {
3094: $enddate = 0;
3095: }
3096: }
3097: return ($startdate,$enddate);
1.1 raeburn 3098: }
3099:
3100: sub courseinfo_form {
1.36 raeburn 3101: my ($dom,$formname,$crstype,$next,$description) = @_;
1.89 damieng 3102: my %js_lt = &Apache::lonlocal::texthash(
1.32 raeburn 3103: official => 'You must provide a (brief) course description.',
3104: community => 'You must provide a (brief) community description.'
3105: );
1.89 damieng 3106: &js_escape(\%js_lt);
3107: $js_lt{'unofficial'} = $js_lt{'official'};
3108: $js_lt{'textbook'} = $js_lt{'official'};
1.96 raeburn 3109: $js_lt{'placement'} = $js_lt{'official'};
1.15 raeburn 3110: my $js_validate = <<"ENDJS";
3111: <script type="text/javascript">
3112: // <![CDATA['
3113:
3114: function validateForm() {
3115: if ((document.$formname.cdescr.value == "") || (document.$formname.cdescr.value == "undefined")) {
1.89 damieng 3116: alert('$js_lt{$crstype}');
1.15 raeburn 3117: return;
3118: }
3119: nextPage(document.$formname,'$next');
3120: }
1.45 raeburn 3121:
3122: function toggleCloning() {
3123: var willclone;
3124: if (document.$formname.cloning.length > 1) {
3125: for (var i=0; i<document.$formname.cloning.length; i++) {
3126: if (document.$formname.cloning[i].checked) {
3127: willclone = document.$formname.cloning[i].value;
3128: }
3129: }
3130: }
3131: if (willclone == 1) {
3132: document.getElementById('cloneoptions').style.display="block";
3133: } else {
3134: document.getElementById('cloneoptions').style.display="none";
3135: document.$formname.clonecrs.value = '';
3136: }
3137: }
3138:
1.15 raeburn 3139: // ]]
3140: </script>
3141:
3142: ENDJS
1.27 raeburn 3143: my $title = &mt('Brief Course Description');
1.40 raeburn 3144: my $clonetitle = &mt('Clone content and settings from an existing course?');
1.27 raeburn 3145: if ($crstype eq 'community') {
3146: $title = &mt('Brief Community Description');
1.40 raeburn 3147: $clonetitle = &mt('Clone content and settings from an existing community?');
1.27 raeburn 3148: }
1.45 raeburn 3149: my $output .= $js_validate."\n".&Apache::lonhtmlcommon::start_pick_box().
1.27 raeburn 3150: &Apache::lonhtmlcommon::row_headline().
1.34 raeburn 3151: '<h3>'.&Apache::loncommon::help_open_topic('Course_Request_Description').' '.$title.'</h3>'.
1.27 raeburn 3152: &Apache::lonhtmlcommon::row_closure(1).
3153: &Apache::lonhtmlcommon::row_title(&mt('Description')).
1.36 raeburn 3154: '<input type="text" size="60" name="cdescr" value="'.$description.'" />';
1.13 raeburn 3155: my ($home_server_pick,$numlib) =
3156: &Apache::loncommon::home_server_form_item($dom,'chome',
3157: 'default','hide');
3158: if ($numlib > 1) {
3159: $output .= &Apache::lonhtmlcommon::row_closure().
1.16 raeburn 3160: &Apache::lonhtmlcommon::row_title(&mt('Home Server for Course'));
1.13 raeburn 3161: }
3162: $output .= $home_server_pick.
1.27 raeburn 3163: &Apache::lonhtmlcommon::row_closure().
3164: &Apache::lonhtmlcommon::row_headline().
1.45 raeburn 3165: '<h3>'.&Apache::loncommon::help_open_topic('Course_Request_Clone').' '.$clonetitle.
1.46 wenzelju 3166: &Apache::lonhtmlcommon::row_closure(1).
3167: &Apache::lonhtmlcommon::row_title(&mt('Clone?')).
1.45 raeburn 3168: '<label><input type="radio" name="cloning" value="1" '.
3169: 'onclick="javascript:toggleCloning()" />'.
3170: &mt('Yes').(' 'x2).'</label><label>'.
1.49 raeburn 3171: '<input type="radio" name="cloning" value="0" checked="checked" '.
1.45 raeburn 3172: 'onclick="javascript:toggleCloning()" />'.&mt('No').'</label>'.
3173: '</h3>'.
1.13 raeburn 3174: &Apache::lonhtmlcommon::row_closure(1).
1.45 raeburn 3175: &Apache::lonhtmlcommon::row_headline().
3176: '<div id="cloneoptions" style="display: none" >'.
3177: &Apache::lonhtmlcommon::start_pick_box().
1.27 raeburn 3178: &clone_form($dom,$formname,$crstype).
1.45 raeburn 3179: &Apache::lonhtmlcommon::end_pick_box().'</div>'.
3180: &Apache::lonhtmlcommon::end_pick_box()."\n";
1.1 raeburn 3181: return $output;
3182: }
3183:
3184: sub clone_form {
3185: my ($dom,$formname,$crstype) = @_;
3186: my $type = 'Course';
3187: if ($crstype eq 'community') {
3188: $type = 'Community';
1.98 raeburn 3189: } elsif ($crstype eq 'placement') {
3190: $type = 'Placement';
1.1 raeburn 3191: }
1.4 raeburn 3192: my %lt = &clone_text();
1.2 raeburn 3193: my $output .=
1.53 raeburn 3194: &Apache::lonhtmlcommon::row_title($lt{'dmn'}).'<label>'.
3195: &Apache::loncommon::select_dom_form($dom,'clonedom').'</label>'.
3196: &Apache::lonhtmlcommon::row_closure(1).
1.2 raeburn 3197: &Apache::lonhtmlcommon::row_title($lt{'cid'}).'<label>'.
1.97 raeburn 3198: '<input type="text" size="25" name="clonecrs" value="" onfocus="this.blur();opencrsbrowser('."'$formname','clonecrs','clonedom','','','','$type'".')" />'.
1.53 raeburn 3199: '</label> '.
3200: &Apache::loncommon::selectcourse_link($formname,'clonecrs','clonedom','','','',$type).
3201: &Apache::lonhtmlcommon::row_closure(1).
1.2 raeburn 3202: &Apache::lonhtmlcommon::row_title($lt{'dsh'}).'<label>'.
3203: '<input type="radio" name="datemode" value="delete" /> '.$lt{'ncd'}.
3204: '</label><br /><label>'.
3205: '<input type="radio" name="datemode" value="preserve" /> '.$lt{'prd'}.
3206: '</label><br /><label>'.
3207: '<input type="radio" name="datemode" value="shift" checked="checked" /> '.
3208: $lt{'shd'}.'</label>'.
3209: '<input type="text" size="5" name="dateshift" value="365" />'.
1.27 raeburn 3210: &Apache::lonhtmlcommon::row_closure(1);
1.1 raeburn 3211: return $output;
3212: }
3213:
1.16 raeburn 3214: sub clone_text {
1.4 raeburn 3215: return &Apache::lonlocal::texthash(
3216: 'cid' => 'Course ID',
3217: 'dmn' => 'Domain',
3218: 'dsh' => 'Date Shift',
3219: 'ncd' => 'Do not clone date parameters',
3220: 'prd' => 'Clone date parameters as-is',
3221: 'shd' => 'Shift date parameters by number of days',
3222: );
3223: }
3224:
1.1 raeburn 3225: sub coursecode_form {
1.2 raeburn 3226: my ($dom,$context,$codetitles,$cat_titles,$cat_order,$num) = @_;
1.1 raeburn 3227: my $output;
1.46 wenzelju 3228: my %rowtitle = &Apache::lonlocal::texthash (
1.2 raeburn 3229: instcode => 'Course Category',
3230: crosslist => 'Cross Listed Course',
3231: );
1.34 raeburn 3232: my %helpitem = (
3233: instcode => 'Course_Request_Category',
3234: );
1.1 raeburn 3235: if ((ref($codetitles) eq 'ARRAY') && (ref($cat_titles) eq 'HASH') &&
3236: (ref($cat_order))) {
1.2 raeburn 3237: my ($sel,$instsec,$lcsec);
3238: $sel = $context;
3239: if ($context eq 'crosslist') {
3240: $sel .= '_'.$num;
3241: $instsec = &mt('Institutional section').'<br />'.
3242: '<input type="text" size="10" name="'.$sel.'_instsec" />';
3243: $lcsec = &mt('LON-CAPA section').'<br />'.
3244: '<input type="text" size="10" name="'.$sel.'_lcsec" />';
3245: }
1.1 raeburn 3246: if (@{$codetitles} > 0) {
3247: my $lastitem = pop(@{$codetitles});
1.2 raeburn 3248: my $lastinput = '<input type="text" size="5" name="'.$sel.'_'. $lastitem.'" />';
1.1 raeburn 3249: if (@{$codetitles} > 0) {
1.61 raeburn 3250: my $helplink;
3251: if (defined($helpitem{$context})) {
3252: $helplink = &Apache::loncommon::help_open_topic($helpitem{$context}).' ';
3253: }
3254: $output = &Apache::lonhtmlcommon::row_title($helplink.$rowtitle{$context}).
1.2 raeburn 3255: '<table><tr>';
1.1 raeburn 3256: if ($context eq 'crosslist') {
1.2 raeburn 3257: $output .= '<td>'.&mt('Include?').'<br />'.
3258: '<input type="checkbox" name="'.$sel.'" value="1" /></td>';
1.1 raeburn 3259: }
3260: foreach my $title (@{$codetitles}) {
3261: if (ref($cat_order->{$title}) eq 'ARRAY') {
3262: if (@{$cat_order->{$title}} > 0) {
3263: $output .= '<td align="center">'.$title.'<br />'."\n".
3264: '<select name="'.$sel.'_'.$title.'">'."\n".
3265: ' <option value="" selected="selected">'.
3266: &mt('Select').'</option>'."\n";
3267: foreach my $item (@{$cat_order->{$title}}) {
3268: my $longitem = $item;
3269: if (ref($cat_titles->{$title}) eq 'HASH') {
3270: if ($cat_titles->{$title}{$item} ne '') {
3271: $longitem = $cat_titles->{$title}{$item};
3272: }
3273: }
3274: $output .= '<option value="'.$item.'">'.$longitem.
3275: '</option>'."\n";
3276: }
3277: }
3278: $output .= '</select></td>'."\n";
3279: }
3280: }
3281: if ($context eq 'crosslist') {
3282: $output .= '<td align="center">'.$lastitem.'<br />'."\n".
1.2 raeburn 3283: $lastinput.'</td><td align="center">'.$instsec.'</td>'.
3284: '<td align="center">'.$lcsec.'</td></tr></table>';
1.1 raeburn 3285: } else {
3286: $output .= '</tr></table>'.
3287: &Apache::lonhtmlcommon::row_closure().
3288: &Apache::lonhtmlcommon::row_title('Course '.$lastitem).
3289: $lastinput;
3290: }
3291: } else {
3292: if ($context eq 'crosslist') {
3293: $output .= &Apache::lonhtmlcommon::row_title($rowtitle{$context}).
1.2 raeburn 3294: '<table><tr>'.
3295: '<td align="center">'.$lastitem.'<br />'.$lastinput.'</td>'.
3296: '<td align="center">'.$instsec.'</td><td>'.$lcsec.'</td>'.
3297: '</tr></table>';
1.1 raeburn 3298: } else {
3299: $output .= &Apache::lonhtmlcommon::row_title('Course '.$lastitem).
3300: $lastinput;
3301: }
3302: }
1.2 raeburn 3303: $output .= &Apache::lonhtmlcommon::row_closure(1);
3304: push(@$codetitles,$lastitem);
3305: } elsif ($context eq 'crosslist') {
3306: $output .= &Apache::lonhtmlcommon::row_title($rowtitle{$context}).
3307: '<table><tr><td align="center">'.
3308: '<span class="LC_nobreak">'.&mt('Include?').
3309: '<input type="checkbox" name="'.$sel.'" value="1" /></span>'.
3310: '</td><td align="center">'.&mt('Institutional ID').'<br />'.
3311: '<input type="text" size="10" name="'.$sel.'_instsec" />'.
3312: '</td><td align="center">'.$lcsec.'</td></tr></table>'.
3313: &Apache::lonhtmlcommon::row_closure(1);
1.1 raeburn 3314: }
3315: }
3316: return $output;
3317: }
3318:
1.61 raeburn 3319: sub sections_form {
3320: my ($dom,$instcode,$num) = @_;
3321: my $rowtitle;
3322: if ($instcode eq '') {
3323: $rowtitle = &mt('Sections');
3324: } else {
3325: $rowtitle = &mt('Sections of [_1]',$instcode);
3326: }
3327: return &Apache::lonhtmlcommon::row_title($rowtitle).
3328: '<table><tr><td align="center">'.
3329: '<span class="LC_nobreak">'.&mt('Include?').
3330: '<input type="checkbox" name="sec_'.$num.'" value="1" /></span>'.
3331: '</td><td align="center">'.&mt('Institutional section').'<br />'.
3332: '<input type="text" size="10" name="secnum_'.$num.'" />'.
3333: '</td><td align="center">'.&mt('LON-CAPA section').'<br />'.
3334: '<input type="text" size="10" name="loncapasec_'.$num.'" />'.
3335: '</td></tr></table>'.
3336: &Apache::lonhtmlcommon::row_closure(1);
3337: }
3338:
1.1 raeburn 3339: sub get_course_dom {
3340: my $codedom = &Apache::lonnet::default_login_domain();
1.19 raeburn 3341: if ($env{'form.showdom'} ne '') {
3342: if (&Apache::lonnet::domain($env{'form.showdom'}) ne '') {
3343: return $env{'form.showdom'};
3344: }
3345: }
1.1 raeburn 3346: if (($env{'user.domain'} ne '') && ($env{'user.domain'} ne 'public')) {
1.37 raeburn 3347: my ($types,$typename) = &Apache::loncommon::course_types();
1.19 raeburn 3348: if (ref($types) eq 'ARRAY') {
3349: foreach my $type (@{$types}) {
3350: if (&Apache::lonnet::usertools_access($env{'user.name'},
3351: $env{'user.domain'},$type,
3352: undef,'requestcourses')) {
3353: return $env{'user.domain'};
3354: }
3355: }
1.100 raeburn 3356: my (@possible_doms,%willtrust,%trustchecked);
1.19 raeburn 3357: foreach my $type (@{$types}) {
3358: my $dom_str = $env{'environment.reqcrsotherdom.'.$type};
3359: if ($dom_str ne '') {
3360: my @domains = split(',',$dom_str);
3361: foreach my $entry (@domains) {
3362: my ($extdom,$extopt) = split(':',$entry);
1.100 raeburn 3363: unless ($trustchecked{$extdom}) {
3364: $willtrust{$extdom} = &Apache::lonnet::will_trust('reqcrs',$env{'user.domain'},$extdom);
3365: }
3366: if ($willtrust{$extdom}) {
3367: if ($extdom eq $env{'request.role.domain'}) {
3368: return $extdom;
3369: }
3370: unless(grep(/^\Q$extdom\E$/,@possible_doms)) {
3371: push(@possible_doms,$extdom);
3372: }
1.19 raeburn 3373: }
3374: }
3375: }
3376: }
3377: if (@possible_doms) {
3378: @possible_doms = sort(@possible_doms);
3379: return $possible_doms[0];
3380: }
3381: }
1.1 raeburn 3382: $codedom = $env{'user.domain'};
3383: if ($env{'request.role.domain'} ne '') {
3384: $codedom = $env{'request.role.domain'};
3385: }
3386: }
3387: return $codedom;
3388: }
3389:
3390: sub display_navbuttons {
1.31 raeburn 3391: my ($r,$dom,$formname,$prev,$prevtext,$next,$nexttext,$state,$other,$othertext) = @_;
1.1 raeburn 3392: $r->print('<div class="LC_navbuttons">');
3393: if ($prev) {
1.16 raeburn 3394: $r->print('<input type="button" name="previous" value = "'.$prevtext.'" '.
1.31 raeburn 3395: 'onclick="javascript:backPage('."document.$formname,'$prev'".')"/>'.
1.16 raeburn 3396: (' 'x3));
1.1 raeburn 3397: } elsif ($prevtext) {
1.16 raeburn 3398: $r->print('<input type="button" name="previous" value = "'.$prevtext.'" '.
3399: 'onclick="javascript:history.back()"/>'.(' 'x3));
3400: }
3401: if ($state eq 'details') {
3402: $r->print(' <input type="button" name="other" value="'.$othertext.'" '.
1.31 raeburn 3403: 'onclick="javascript:nextPage('."document.$formname,'$other'".
1.16 raeburn 3404: ')" />');
1.1 raeburn 3405: }
1.31 raeburn 3406: my $gotnext;
1.15 raeburn 3407: if ($state eq 'courseinfo') {
1.16 raeburn 3408: $r->print('<input type="button" name="next" value="'.$nexttext.'" '.
3409: 'onclick="javascript:validateForm();" />');
1.31 raeburn 3410: $gotnext = 1;
3411: } elsif ($state eq 'enrollment') {
3412: if (($env{'form.crstype'} eq 'official') &&
3413: (&Apache::lonnet::auto_run('',$dom))) {
3414: $r->print('<input type="button" name="next" value="'.$nexttext.'" '.
3415: 'onclick="javascript:validateEnrollSections('."document.$formname,'$next'".');" />');
3416: $gotnext = 1;
3417: }
3418: } elsif ($state eq 'personnel') {
3419: if ($env{'form.persontotal'} > 0) {
3420: $r->print('<input type="button" name="next" value="'.$nexttext.'" '.
3421: 'onclick="javascript:validatePersonnelSections('."document.$formname,'$next'".');" />');
3422: $gotnext = 1;
3423: }
3424: }
3425: unless ($gotnext) {
3426: if ($next) {
3427: $r->print('
3428: <input type="button" name="next" value="'.$nexttext.'" '.
3429: 'onclick="javascript:nextPage('."document.$formname,'$next'".')" />');
3430: }
1.1 raeburn 3431: }
3432: $r->print('</div>');
3433: }
3434:
3435: sub print_request_outcome {
1.84 raeburn 3436: my ($r,$lonhost,$dom,$codetitles,$code_order,$instcredits) = @_;
1.13 raeburn 3437: my ($output,$cnum,$now,$req_notifylist,$crstype,$enrollstart,$enrollend,
1.70 raeburn 3438: %sections,%crosslistings,%personnel,@baduname,@missingdom,%domconfig,
3439: $uniquecode);
1.24 raeburn 3440: my $sectotal = $env{'form.sectotal'};
3441: my $crosslisttotal = 0;
1.10 raeburn 3442: $cnum = $env{'form.cnum'};
1.8 raeburn 3443: unless ($cnum =~ /^$match_courseid$/) {
3444: $output = &mt('Invalid LON-CAPA course number for the new course')."\n";
3445: return $output;
3446: }
1.73 raeburn 3447: $crstype = $env{'form.crstype'};
3448: my %domconfig = &Apache::lonnet::get_dom('configuration',['requestcourses'],$dom);
1.9 raeburn 3449: if (ref($domconfig{'requestcourses'}) eq 'HASH') {
3450: if (ref($domconfig{'requestcourses'}{'notify'}) eq 'HASH') {
3451: $req_notifylist = $domconfig{'requestcourses'}{'notify'}{'approval'};
3452: }
1.73 raeburn 3453: if (ref($domconfig{'requestcourses'}{'uniquecode'}) eq 'HASH') {
3454: $uniquecode = $domconfig{'requestcourses'}{'uniquecode'}{$crstype};
3455: }
1.9 raeburn 3456: }
1.10 raeburn 3457: $now = time;
1.41 raeburn 3458: my $ccrole = 'cc';
3459: if ($crstype eq 'community') {
3460: $ccrole = 'co';
3461: }
1.17 raeburn 3462: my @instsections;
1.8 raeburn 3463: if ($crstype eq 'official') {
3464: if (&Apache::lonnet::auto_run('',$dom)) {
1.13 raeburn 3465: ($enrollstart,$enrollend)=&dates_from_form('enrollstart','enrollend');
1.8 raeburn 3466: }
1.10 raeburn 3467: for (my $i=0; $i<$env{'form.sectotal'}; $i++) {
3468: if ($env{'form.sec_'.$i}) {
3469: if ($env{'form.secnum_'.$i} ne '') {
1.17 raeburn 3470: my $sec = $env{'form.secnum_'.$i};
3471: $sections{$i}{'inst'} = $sec;
3472: if (($sec ne '') && (!grep(/^\Q$sec\E$/,@instsections))) {
3473: push(@instsections,$sec);
3474: }
1.13 raeburn 3475: $sections{$i}{'loncapa'} = $env{'form.loncapasec_'.$i};
1.58 raeburn 3476: $sections{$i}{'loncapa'} =~ s/\W//g;
3477: if ($sections{$i}{'loncapa'} eq 'none') {
3478: $sections{$i}{'loncapa'} = '';
3479: }
1.10 raeburn 3480: }
3481: }
3482: }
3483: for (my $i=0; $i<$env{'form.crosslisttotal'}; $i++) {
3484: if ($env{'form.crosslist_'.$i}) {
3485: my $xlistinfo = '';
3486: if (ref($code_order) eq 'ARRAY') {
3487: if (@{$code_order} > 0) {
3488: foreach my $item (@{$code_order}) {
3489: $xlistinfo .= $env{'form.crosslist_'.$i.'_'.$item};
3490: }
3491: }
3492: }
1.22 raeburn 3493: $crosslistings{$i}{'instcode'} = $xlistinfo;
1.24 raeburn 3494: if ($xlistinfo ne '') {
3495: $crosslisttotal ++;
3496: }
1.22 raeburn 3497: $crosslistings{$i}{'instsec'} = $env{'form.crosslist_'.$i.'_instsec'};
1.13 raeburn 3498: $crosslistings{$i}{'loncapa'} = $env{'form.crosslist_'.$i.'_lcsec'};
1.10 raeburn 3499: }
3500: }
1.14 raeburn 3501: } else {
3502: $enrollstart = '';
3503: $enrollend = '';
1.10 raeburn 3504: }
1.62 raeburn 3505: my (%alerts,%rulematch,%inst_results,%curr_rules,%got_rules,%disallowmsg,%skipped);
1.10 raeburn 3506: for (my $i=0; $i<$env{'form.persontotal'}; $i++) {
3507: my $uname = $env{'form.person_'.$i.'_uname'};
1.16 raeburn 3508: my $udom = $env{'form.person_'.$i.'_dom'};
1.10 raeburn 3509: if (($uname =~ /^$match_username$/) && ($udom =~ /^$match_domain$/)) {
3510: if (&Apache::lonnet::domain($udom) ne '') {
1.13 raeburn 3511: unless (ref($personnel{$uname.':'.$udom}) eq 'HASH') {
3512: $personnel{$uname.':'.$udom} = {
3513: firstname => $env{'form.person_'.$i.'_firstname'},
3514: lastname => $env{'form.person_'.$i.'_lastname'},
3515: emailaddr => $env{'form.person_'.$i.'_emailaddr'},
3516: };
1.62 raeburn 3517: if (&Apache::lonnet::homeserver($uname,$udom) eq 'no_host') {
3518: my $usertype = &get_usertype($udom,$uname,\%curr_rules,\%got_rules);
3519: if (&Apache::lonuserutils::can_create_user($udom,'requestcrs',$usertype)) {
3520: my ($allowed,$msg,$authtype,$authparam) =
3521: &check_newuser_rules($udom,$uname,\%alerts,\%rulematch,
3522: \%inst_results,\%curr_rules,\%got_rules);
3523: if ($allowed) {
3524: my %domdefaults = &Apache::lonnet::get_domain_defaults($udom);
3525: if ($usertype eq 'official') {
3526: if ($authtype eq '') {
1.60 raeburn 3527: $authtype = $domdefaults{'auth_def'};
3528: $authparam = $domdefaults{'auth_arg_def'};
1.62 raeburn 3529: } else {
3530: if ($authtype eq 'loc') {
3531: $authtype = 'localauth';
3532: } elsif ($authtype eq 'int') {
3533: $authtype = 'internal';
3534: }
3535: if ($authtype !~ /^(krb4|krb5|internal|localauth)$/) {
3536: $authtype = $domdefaults{'auth_def'};
3537: $authparam = $domdefaults{'auth_arg_def'};
3538: }
3539: }
3540: } elsif ($usertype eq 'unofficial') {
3541: if ($authtype eq '') {
3542: $authtype = 'internal';
3543: $authparam = '';
1.60 raeburn 3544: }
1.62 raeburn 3545: } else {
3546: $authtype = $domdefaults{'auth_def'};
3547: $authparam = $domdefaults{'auth_arg_def'};
1.60 raeburn 3548: }
1.62 raeburn 3549: if (($authtype eq '') ||
3550: (($authtype =~/^krb(4|5)$/) && ($authparam eq '')) ||
3551: ($authtype !~ /^(krb4|krb5|internal|localauth)$/)) {
3552: $skipped{$uname.':'.$udom} = 1;
3553: next;
3554: } else {
3555: $personnel{$uname.':'.$udom}{'authtype'} = $authtype;
3556: $personnel{$uname.':'.$udom}{'autharg'} = $authparam;
1.60 raeburn 3557: }
3558: } else {
1.62 raeburn 3559: $skipped{$uname.':'.$udom} = 1;
1.60 raeburn 3560: next;
3561: }
3562: } else {
1.62 raeburn 3563: $skipped{$uname.':'.$udom} = 1;
1.60 raeburn 3564: next;
3565: }
3566: }
1.13 raeburn 3567: }
3568: my $role = $env{'form.person_'.$i.'_role'};
3569: unless ($role eq '') {
1.16 raeburn 3570: if (ref($personnel{$uname.':'.$udom}{'roles'}) eq 'ARRAY') {
1.13 raeburn 3571: my @curr_roles = @{$personnel{$uname.':'.$udom}{'roles'}};
3572: unless (grep(/^\Q$role\E$/,@curr_roles)) {
3573: push(@{$personnel{$uname.':'.$udom}{'roles'}},$role);
3574: }
3575: } else {
3576: @{$personnel{$uname.':'.$udom}{'roles'}} = ($role);
3577: }
1.41 raeburn 3578: if ($role eq $ccrole) {
1.13 raeburn 3579: @{$personnel{$uname.':'.$udom}{$role}{'usec'}} = ();
3580: } else {
1.14 raeburn 3581: my @currsec = &Apache::loncommon::get_env_multiple('form.person_'.$i.'_sec');
1.31 raeburn 3582: my @allsecs;
3583: foreach my $sec (@currsec) {
3584: next unless ($sec =~ /\w/);
3585: next if ($sec =~ /\W/);
3586: next if ($sec eq 'none');
3587: push(@allsecs,$sec);
3588: }
1.14 raeburn 3589: my $newsec = $env{'form.person_'.$i.'_newsec'};
3590: $newsec =~ s/^\s+//;
3591: $newsec =~s/\s+$//;
3592: my @newsecs = split(/[\s,;]+/,$newsec);
3593: foreach my $sec (@newsecs) {
3594: next if ($sec =~ /\W/);
1.31 raeburn 3595: next if ($sec eq 'none');
1.14 raeburn 3596: if ($sec ne '') {
1.31 raeburn 3597: unless (grep(/^\Q$sec\E$/,@allsecs)) {
3598: push(@allsecs,$sec);
1.13 raeburn 3599: }
3600: }
3601: }
1.31 raeburn 3602: @{$personnel{$uname.':'.$udom}{$role}{'usec'}} = @allsecs;
1.13 raeburn 3603: }
3604: }
1.10 raeburn 3605: } else {
3606: push(@missingdom,$uname.':'.$udom);
3607: }
3608: } else {
3609: push(@baduname,$uname.':'.$udom);
3610: }
1.8 raeburn 3611: }
1.62 raeburn 3612: if (keys(%skipped)) {
3613: foreach my $key (keys(%skipped)) {
3614: delete($personnel{$key});
3615: }
3616: }
1.13 raeburn 3617: my ($accessstart,$accessend) = &dates_from_form('accessstart','accessend');
1.14 raeburn 3618: my $autodrops = 0;
3619: if ($env{'form.autodrops'}) {
3620: $autodrops = $env{'form.autodrops'};
3621: }
3622: my $autoadds = 0;
3623: if ($env{'form.autoadds'}) {
1.57 raeburn 3624: $autoadds = $env{'form.autoadds'};
1.14 raeburn 3625: }
3626: my $instcode = '';
3627: if (exists($env{'form.instcode'})) {
3628: $instcode = $env{'form.instcode'};
3629: }
1.66 raeburn 3630: my $credits;
3631: if ($instcredits) {
3632: $credits = $instcredits;
3633: } elsif (exists($env{'form.coursecredits'})) {
3634: $credits = $env{'form.coursecredits'};
3635: }
1.15 raeburn 3636: my $clonecrs = '';
3637: my $clonedom = '';
1.45 raeburn 3638: if (($env{'form.cloning'}) &&
3639: ($env{'form.clonecrs'} =~ /^($match_courseid)$/) &&
1.15 raeburn 3640: ($env{'form.clonedom'} =~ /^($match_domain)$/)) {
1.16 raeburn 3641: my $clonehome = &Apache::lonnet::homeserver($env{'form.clonecrs'},
3642: $env{'form.clonedom'});
1.15 raeburn 3643: if ($clonehome ne 'no_host') {
1.16 raeburn 3644: my $canclone =
3645: &Apache::loncoursequeueadmin::can_clone_course($env{'user.name'},
1.39 raeburn 3646: $env{'user.domain'},$env{'form.clonecrs'},$env{'form.clonedom'},
1.87 raeburn 3647: $crstype,$dom,$instcode);
1.15 raeburn 3648: if ($canclone) {
3649: $clonecrs = $env{'form.clonecrs'};
3650: $clonedom = $env{'form.clonedom'};
3651: }
3652: }
3653: }
1.8 raeburn 3654: my $details = {
1.10 raeburn 3655: owner => $env{'user.name'},
3656: domain => $env{'user.domain'},
3657: cdom => $dom,
1.11 raeburn 3658: cnum => $cnum,
1.13 raeburn 3659: coursehome => $env{'form.chome'},
3660: cdescr => $env{'form.cdescr'},
1.10 raeburn 3661: crstype => $env{'form.crstype'},
1.14 raeburn 3662: instcode => $instcode,
1.66 raeburn 3663: defaultcredits => $credits,
1.70 raeburn 3664: uniquecode => $uniquecode,
1.15 raeburn 3665: clonedom => $clonedom,
3666: clonecrs => $clonecrs,
1.10 raeburn 3667: datemode => $env{'form.datemode'},
1.14 raeburn 3668: dateshift => $env{'form.dateshift'},
3669: sectotal => $sectotal,
1.10 raeburn 3670: sections => \%sections,
1.14 raeburn 3671: crosslisttotal => $crosslisttotal,
1.13 raeburn 3672: crosslists => \%crosslistings,
1.14 raeburn 3673: autoadds => $autoadds,
3674: autodrops => $autodrops,
1.13 raeburn 3675: enrollstart => $enrollstart,
3676: enrollend => $enrollend,
3677: accessstart => $accessstart,
3678: accessend => $accessend,
1.10 raeburn 3679: personnel => \%personnel,
1.8 raeburn 3680: };
1.90 raeburn 3681: my ($result,$output,$customized) = &process_request($r,$lonhost,$dom,$cnum,$crstype,$now,$details,
3682: $instcode,$req_notifylist,\@instsections,\%domconfig);
3683: return ($result,$output,$customized);
1.72 raeburn 3684: }
1.96 raeburn 3685:
1.72 raeburn 3686: sub process_request {
1.84 raeburn 3687: my ($r,$lonhost,$dom,$cnum,$crstype,$now,$details,$instcode,$req_notifylist,$instsections,
1.78 raeburn 3688: $domconfig) = @_;
1.90 raeburn 3689: my (@inststatuses,$storeresult,$creationresult,$output,$customized);
1.43 raeburn 3690: my $val =
1.64 raeburn 3691: &Apache::loncoursequeueadmin::get_processtype('course',$env{'user.name'},
3692: $env{'user.domain'},$env{'user.adv'},
1.72 raeburn 3693: $dom,$crstype,\@inststatuses,$domconfig);
1.8 raeburn 3694: if ($val eq '') {
3695: if ($crstype eq 'official') {
1.19 raeburn 3696: $output = &mt('You are not permitted to request creation of official courses.');
1.8 raeburn 3697: } elsif ($crstype eq 'unofficial') {
1.19 raeburn 3698: $output = &mt('You are not permitted to request creation of unofficial courses.');
1.8 raeburn 3699: } elsif ($crstype eq 'community') {
3700: $output = &mt('You are not permitted to request creation of communities');
1.69 raeburn 3701: } elsif ($crstype eq 'textbook') {
3702: $output = &mt('You are not permitted to request creation of textbook courses');
1.96 raeburn 3703: } elsif ($crstype eq 'placement') {
3704: $output = &mt('You are not permitted to request creation of placement tests');
1.8 raeburn 3705: } else {
3706: $output = &mt('Unrecognized course type: [_1]',$crstype);
3707: }
1.27 raeburn 3708: $storeresult = 'notpermitted';
1.8 raeburn 3709: } else {
1.93 raeburn 3710: my ($disposition,$message,$reqstatus,$coursedesc,$accessstart,$accessend,%customvalidation);
1.8 raeburn 3711: my %reqhash = (
1.14 raeburn 3712: reqtime => $now,
1.10 raeburn 3713: crstype => $crstype,
3714: details => $details,
1.8 raeburn 3715: );
3716: my $requestkey = $dom.'_'.$cnum;
1.17 raeburn 3717: my $validationerror;
1.78 raeburn 3718: my $fullname = &Apache::loncommon::plainname($env{'user.name'},
3719: $env{'user.domain'});
3720: if (ref($details) eq 'HASH') {
3721: $coursedesc = $details->{'cdescr'};
1.93 raeburn 3722: $accessstart = $details->{'accessstart'};
3723: $accessend = $details->{'accessend'};
1.78 raeburn 3724: }
1.10 raeburn 3725: if ($val eq 'autolimit=') {
3726: $disposition = 'process';
3727: } elsif ($val =~ /^autolimit=(\d+)$/) {
3728: my $limit = $1;
1.8 raeburn 3729: $disposition = &check_autolimit($env{'user.name'},$env{'user.domain'},
1.10 raeburn 3730: $dom,$crstype,$limit,\$message);
1.8 raeburn 3731: } elsif ($val eq 'validate') {
1.90 raeburn 3732: my ($inststatuslist,$validationchk,$validation);
1.86 raeburn 3733: if (ref($details) eq 'HASH') {
3734: if ($details->{'clonecrs'}) {
1.90 raeburn 3735: $customvalidation{'_LC_clonefrom'} = $details->{'clonedom'}.'_'.$details->{'clonecrs'};
1.86 raeburn 3736: }
3737: }
1.17 raeburn 3738: if (@inststatuses > 0) {
3739: $inststatuslist = join(',',@inststatuses);
3740: }
3741: my $instseclist;
1.72 raeburn 3742: if (ref($instsections) eq 'ARRAY') {
3743: if (@{$instsections} > 0) {
3744: $instseclist = join(',',@{$instsections});
3745: }
1.17 raeburn 3746: }
1.90 raeburn 3747: #
3748: # Retrieve any custom form information used for validation
3749: #
1.78 raeburn 3750: my $preprocess = &Apache::lonnet::auto_crsreq_update($dom,$cnum,$crstype,'prevalidate',$env{'user.name'},
3751: $env{'user.domain'},$fullname,$coursedesc);
3752: if (ref($preprocess) eq 'HASH') {
1.90 raeburn 3753: &custom_formitems($preprocess,\%customvalidation);
1.78 raeburn 3754: }
1.21 raeburn 3755: $validationchk =
3756: &Apache::lonnet::auto_courserequest_validation($dom,
3757: $env{'user.name'}.':'.$env{'user.domain'},$crstype,
1.90 raeburn 3758: $inststatuslist,$instcode,$instseclist,\%customvalidation);
1.21 raeburn 3759: if ($validationchk =~ /:/) {
3760: ($validation,$message) = split(':',$validationchk);
3761: } else {
3762: $validation = $validationchk;
3763: }
3764: if ($validation =~ /^error(.*)$/) {
1.17 raeburn 3765: $disposition = 'approval';
3766: $validationerror = $1;
1.23 raeburn 3767: } else {
3768: $disposition = $validation;
1.17 raeburn 3769: }
1.8 raeburn 3770: } else {
3771: $disposition = 'approval';
3772: }
1.14 raeburn 3773: $reqhash{'disposition'} = $disposition;
3774: $reqstatus = $disposition;
1.91 raeburn 3775: my ($modified,$queued,$token,%customitems);
1.73 raeburn 3776: unless ($disposition eq 'rejected') {
3777: my $inprocess = &Apache::lonnet::auto_crsreq_update($dom,$cnum,$crstype,'process',$env{'user.name'},
1.90 raeburn 3778: $env{'user.domain'},$fullname,$coursedesc,undef,
3779: undef,undef,\%customvalidation);
3780: #
3781: # Retrieve any custom form information submitted with review page and include in request details.
3782: #
1.73 raeburn 3783: if (ref($inprocess) eq 'HASH') {
1.90 raeburn 3784: &custom_formitems($inprocess,\%customitems);
3785: foreach my $key (keys(%customitems)) {
3786: $reqhash{'custom'}{$key} = $customitems{$key};
1.73 raeburn 3787: }
3788: }
3789: }
1.8 raeburn 3790: if ($disposition eq 'rejected') {
1.40 raeburn 3791: if ($crstype eq 'community') {
3792: $output = &mt('Your community request was rejected.');
3793: } else {
3794: $output = &mt('Your course request was rejected.');
3795: }
1.8 raeburn 3796: if ($message) {
3797: $output .= '<div class="LC_warning">'.$message.'</div>';
3798: }
1.27 raeburn 3799: $storeresult = 'rejected';
1.8 raeburn 3800: } elsif ($disposition eq 'process') {
1.14 raeburn 3801: my %domdefs = &Apache::lonnet::get_domain_defaults($dom);
1.70 raeburn 3802: my ($logmsg,$newusermsg,$addresult,$enrollcount,$response,$keysmsg,%longroles,$code);
1.8 raeburn 3803: my $type = 'Course';
3804: if ($crstype eq 'community') {
3805: $type = 'Community';
3806: }
1.41 raeburn 3807: my @roles = &Apache::lonuserutils::roles_by_context('course','',$type);
1.8 raeburn 3808: foreach my $role (@roles) {
3809: $longroles{$role}=&Apache::lonnet::plaintext($role,$type);
3810: }
1.84 raeburn 3811: $r->print('<div id="processing" style="display:block;">'."\n".
3812: &mt('Your request is being processed; this page will update when processing is complete.').
3813: '</div>');
3814: $r->rflush();
1.86 raeburn 3815: if (ref($details) eq 'HASH') {
3816: if ($details->{'clonecrs'}) {
3817: $customitems{'_LC_clonefrom'} = $details->{'clonedom'}.'_'.$details->{'clonecrs'};
3818: }
3819: }
1.90 raeburn 3820: $customitems{'_LC_ownerfullname'} = &Apache::loncommon::plainname($env{'user.name'},$env{'user.domain'},'first');
3821: my $owneremail;
3822: my %emails = &Apache::loncommon::getemails();
3823: foreach my $email ('permanentemail','critnotification','notification') {
3824: $owneremail = $emails{$email};
3825: last if ($owneremail ne '');
3826: }
3827: if ($owneremail ne '') {
3828: $customitems{'_LC_owneremail'} = $owneremail;
3829: }
3830: $customitems{'_LC_coursedomainname'} = &Apache::lonnet::domain($dom,'description');
1.93 raeburn 3831: $customitems{'_LC_coursedescription'} = $coursedesc;
3832: $customitems{'_LC_coursestartdate'} = $accessstart;
3833: $customitems{'_LC_courseenddate'} = $accessend;
1.73 raeburn 3834: my ($result,$postprocess) = &Apache::loncoursequeueadmin::course_creation($dom,$cnum,
3835: 'autocreate',$details,\$logmsg,\$newusermsg,\$addresult,
3836: \$enrollcount,\$response,\$keysmsg,\%domdefs,\%longroles,
3837: \$code,\%customitems);
1.90 raeburn 3838: if (ref($postprocess) eq 'HASH') {
3839: $customized = $postprocess->{'createdcustomized'};
3840: }
1.14 raeburn 3841: if ($result eq 'created') {
1.8 raeburn 3842: $disposition = 'created';
1.14 raeburn 3843: $reqstatus = 'created';
1.28 raeburn 3844: my $role_result = &update_requestors_roles($dom,$cnum,$crstype,$details,
3845: \%longroles);
1.40 raeburn 3846: if ($crstype eq 'community') {
3847: $output = '<p>'.&mt('Your community request has been processed and the community has been created.');
3848: } else {
3849: $output = '<p>'.&mt('Your course request has been processed and the course has been created.');
3850: }
1.73 raeburn 3851: if (($code) || ((ref($postprocess) eq 'HASH') &&
3852: (($postprocess->{'createdweb'}) || ($postprocess->{'createdmsg'})))) {
3853: $output .= ¬ification_information($disposition,$env{'user.name'}.':'.$env{'user.domain'},
1.74 raeburn 3854: $dom,$cnum,$now,$code,$postprocess);
1.73 raeburn 3855: }
1.70 raeburn 3856: if ($code) {
1.73 raeburn 3857: $reqhash{'code'} = $code;
1.70 raeburn 3858: }
1.79 raeburn 3859: if (ref($postprocess) eq 'HASH') {
3860: if (ref($postprocess->{'createdactions'}) eq 'HASH') {
1.80 raeburn 3861: if (ref($postprocess->{'createdactions'}{'environment'}) eq 'HASH') {
3862: &Apache::loncoursequeueadmin::postprocess_crsenv($dom,$cnum,
3863: $postprocess->{'createdactions'}{'environment'});
1.79 raeburn 3864: }
3865: }
3866: }
1.90 raeburn 3867: unless ($customized) {
3868: $output .= '<br />'.$role_result;
3869: }
3870: $output .= '</p>';
1.27 raeburn 3871: $creationresult = 'created';
1.8 raeburn 3872: } else {
1.40 raeburn 3873: $output = '<span class="LC_error">';
3874: if ($crstype eq 'community') {
3875: $output .= &mt('An error occurred when processing your community request.');
3876: } else {
3877: $output .= &mt('An error occurred when processing your course request.');
3878: }
3879: $output .= '<br />'.
3880: &mt('You may want to review the request details and submit the request again.').
1.14 raeburn 3881: '</span>';
1.27 raeburn 3882: $creationresult = 'error';
1.8 raeburn 3883: }
3884: } else {
3885: my $requestid = $cnum.'_'.$disposition;
1.73 raeburn 3886: my $request = {
1.8 raeburn 3887: $requestid => {
3888: timestamp => $now,
3889: crstype => $crstype,
3890: ownername => $env{'user.name'},
3891: ownerdom => $env{'user.domain'},
1.78 raeburn 3892: description => $env{'form.cdescr'},
3893: lonhost => $lonhost,
1.8 raeburn 3894: },
3895: };
1.49 raeburn 3896: if ($crstype eq 'official') {
3897: $request->{$requestid}->{'instcode'} = $instcode;
3898: }
1.16 raeburn 3899: my $statuskey = 'status:'.$dom.':'.$cnum;
3900: my %userreqhash = &Apache::lonnet::get('courserequests',[$statuskey],
3901: $env{'user.domain'},$env{'user.name'});
1.17 raeburn 3902: if ($userreqhash{$statuskey} ne '') {
1.16 raeburn 3903: $modified = 1;
1.25 raeburn 3904: my $uname = &Apache::lonnet::get_domainconfiguser($dom);
3905: my %queuehash = &Apache::lonnet::get('courserequestqueue',
3906: [$cnum.'_approval',
3907: $cnum.'_pending'],$dom,$uname);
1.17 raeburn 3908: if (($queuehash{$cnum.'_approval'} ne '') ||
3909: ($queuehash{$cnum.'_pending'} ne '')) {
1.16 raeburn 3910: $queued = 1;
1.78 raeburn 3911: if (ref($queuehash{$cnum.'_pending'}) eq 'HASH') {
3912: $token = $queuehash{$cnum.'_pending'}{'token'};
3913: }
1.16 raeburn 3914: }
3915: }
3916: unless ($queued) {
1.78 raeburn 3917: if (($disposition eq 'pending') && ($crstype ne 'official')) {
3918: my %reqinfo = (
3919: $cnum.':'.$dom => $now.':'.$env{'user.name'}.':'.$env{'user.domain'},
3920: );
3921: $token = &Apache::lonnet::tmpput(\%reqinfo,$lonhost);
3922: $request->{$requestid}->{'token'} = $token;
3923: }
1.16 raeburn 3924: my $putresult = &Apache::lonnet::newput_dom('courserequestqueue',$request,
3925: $dom);
3926: if ($putresult eq 'ok') {
1.40 raeburn 3927: if ($crstype eq 'community') {
3928: $output .= &mt('Your community request has been recorded.');
3929: } else {
3930: $output .= &mt('Your course request has been recorded.')
3931: }
1.78 raeburn 3932: unless ($disposition eq 'pending') {
3933: $output .= '<br />'.
3934: ¬ification_information($disposition,$req_notifylist,
3935: $dom,$cnum,$now);
3936: }
1.8 raeburn 3937: } else {
1.16 raeburn 3938: $reqstatus = 'domainerror';
3939: $reqhash{'disposition'} = $disposition;
3940: my $warning = &mt('An error occurred saving your request in the pending requests queue.');
3941: $output = '<span class"LC_warning">'.$warning.'</span><br />';
1.8 raeburn 3942: }
3943: }
3944: }
1.44 raeburn 3945: ($storeresult,my $updateresult) =
3946: &Apache::loncoursequeueadmin::update_coursereq_status(\%reqhash,$dom,
1.63 raeburn 3947: $cnum,$reqstatus,'request',$env{'user.domain'},$env{'user.name'});
1.78 raeburn 3948: if ($storeresult eq 'ok') {
3949: my $postprocess;
3950: if (($disposition eq 'approval') || ($disposition eq 'pending')) {
3951: my $updateaction = $disposition;
3952: if ($disposition eq 'approval') {
3953: $updateaction = 'queued';
3954: }
1.73 raeburn 3955: my $fullname = &Apache::loncommon::plainname($env{'user.name'},
3956: $env{'user.domain'});
1.78 raeburn 3957: $postprocess =
3958: &Apache::lonnet::auto_crsreq_update($dom,$cnum,$crstype,$updateaction,$env{'user.name'},
1.73 raeburn 3959: $env{'user.domain'},$fullname,$env{'form.cdescr'});
1.78 raeburn 3960: }
3961: if ($modified && $queued) {
3962: if ($crstype eq 'community') {
3963: $output .= '<p>'.&mt('Your community request has been updated').'</p>';
3964: } else {
3965: $output .= '<p>'.&mt('Your course request has been updated').'</p>';
3966: }
3967: if ($disposition eq 'approval') {
3968: $output .= ¬ification_information($disposition,$req_notifylist,$dom,$cnum,$now);
3969: }
3970: }
3971: if ($disposition eq 'approval') {
1.73 raeburn 3972: if ((ref($postprocess) eq 'HASH') &&
3973: ((ref($postprocess->{'queuedmsg'}) eq 'HASH') || ($postprocess->{'queuedweb'}))) {
1.77 raeburn 3974: ¬ification_information($disposition,undef,$dom,$cnum,$now,undef,$postprocess);
1.90 raeburn 3975: $customized = $postprocess->{'createdcustomized'};
1.73 raeburn 3976: }
1.78 raeburn 3977: } elsif ($disposition eq 'pending') {
3978: my $pendingform;
3979: if ($crstype ne 'official') {
3980: $pendingform = &pending_validation_form($dom,$cnum,$crstype,$now,$token,
3981: $lonhost,$env{'form.cdescr'});
3982: }
3983: if ($pendingform) {
3984: $output .= $pendingform;
3985: } else {
3986: $output .= ¬ification_information($disposition,undef,$dom,$cnum,$now,undef,$postprocess);
3987: }
1.90 raeburn 3988: if (ref($postprocess) eq 'HASH') {
3989: $customized = $postprocess->{'createdcustomized'};
3990: }
1.73 raeburn 3991: }
1.16 raeburn 3992: }
1.17 raeburn 3993: if ($validationerror ne '') {
1.44 raeburn 3994: $output .= '<p class="LC_warning">'.&mt('An error occurred validating your request with institutional data sources: [_1].',$validationerror).'</p>';
3995: }
3996: if ($updateresult) {
3997: $output .= $updateresult;
1.17 raeburn 3998: }
1.16 raeburn 3999: }
1.27 raeburn 4000: if ($creationresult ne '') {
1.90 raeburn 4001: return ($creationresult,$output,$customized);
1.27 raeburn 4002: } else {
1.90 raeburn 4003: return ($storeresult,$output,$customized);
4004: }
4005: }
4006:
4007: sub custom_formitems {
4008: my ($preprocess,$customhash) = @_;
4009: return unless ((ref($preprocess) eq 'HASH') && (ref($customhash) eq 'HASH'));
4010: if (ref($preprocess->{'formitems'}) eq 'HASH') {
4011: foreach my $key (keys(%{$preprocess->{'formitems'}})) {
4012: if ($preprocess->{'formitems'}->{$key} eq 'multiple') {
4013: if (exists($env{'form.'.$key})) {
4014: my @items = &Apache::loncommon::get_env_multiple($env{'form.'.$key});
4015: foreach my $item (@items) {
4016: $item =~ s/(`)/'/g;
4017: $item =~ s/\$/\(\$\)/g;
4018: push(@{$customhash->{$key}},$item);
4019: }
4020: }
4021: } else {
4022: if (exists($env{'form.'.$key})) {
4023: $customhash->{$key} = $env{'form.'.$key};
4024: $customhash->{$key} =~ s/(`)/'/g;
4025: $customhash->{$key} =~ s/\$/\(\$\)/g;
4026: }
4027: }
4028: }
1.27 raeburn 4029: }
1.16 raeburn 4030: }
4031:
1.28 raeburn 4032: sub update_requestors_roles {
4033: my ($dom,$cnum,$crstype,$details,$longroles) = @_;
4034: my $now = time;
4035: my ($active,$future,$numactive,$numfuture,$output);
4036: my $owner = $env{'user.name'}.':'.$env{'user.domain'};
4037: if (ref($details) eq 'HASH') {
4038: if (ref($details->{'personnel'}) eq 'HASH') {
1.41 raeburn 4039: my $ccrole = 'cc';
4040: if ($crstype eq 'community') {
4041: $ccrole = 'co';
4042: }
1.35 raeburn 4043: unless (ref($details->{'personnel'}{$owner}) eq 'HASH') {
4044: $details->{'personnel'}{$owner} = {
1.41 raeburn 4045: 'roles' => [$ccrole],
4046: $ccrole => { 'usec' => [] },
1.35 raeburn 4047: };
4048: }
4049: my @roles;
4050: if (ref($details->{'personnel'}{$owner}{'roles'}) eq 'ARRAY') {
4051: @roles = sort(@{$details->{'personnel'}{$owner}{'roles'}});
1.41 raeburn 4052: unless (grep(/^\Q$ccrole\E$/,@roles)) {
4053: push(@roles,$ccrole);
1.35 raeburn 4054: }
4055: } else {
1.41 raeburn 4056: @roles = ($ccrole);
1.35 raeburn 4057: }
4058: foreach my $role (@roles) {
1.42 raeburn 4059: my $refresh=$env{'user.refresh.time'};
4060: if ($refresh eq '') {
4061: $refresh = $env{'user.login.time'};
4062: }
4063: if ($refresh eq '') {
4064: $refresh = $now;
4065: }
4066: my $start = $refresh-1;
1.35 raeburn 4067: my $end = '0';
4068: if ($role eq 'st') {
4069: if ($details->{'accessstart'} ne '') {
4070: $start = $details->{'accessstart'};
4071: }
4072: if ($details->{'accessend'} ne '') {
4073: $end = $details->{'accessend'};
4074: }
4075: }
4076: my @usecs;
1.41 raeburn 4077: if ($role ne $ccrole) {
1.35 raeburn 4078: if (ref($details->{'personnel'}{$owner}{$role}{'usec'}) eq 'ARRAY') {
4079: @usecs = @{$details->{'personnel'}{$owner}{$role}{'usec'}};
4080: }
4081: }
4082: if ($role eq 'st') {
4083: if (@usecs > 1) {
4084: my $firstsec = $usecs[0];
4085: @usecs = ($firstsec);
4086: }
4087: }
4088: if (@usecs == 0) {
4089: push(@usecs,'');
4090: }
4091: foreach my $usec (@usecs) {
4092: my (%userroles,%newrole,%newgroups,$spec,$area);
4093: my $area = '/'.$dom.'/'.$cnum;
4094: my $spec = $role.'.'.$area;
4095: if ($usec ne '') {
4096: $spec .= '/'.$usec;
4097: $area .= '/'.$usec;
4098: }
4099: if ($role =~ /^cr\//) {
4100: &Apache::lonnet::custom_roleprivs(\%newrole,$role,$dom,
4101: $cnum,$spec,$area);
4102: } else {
4103: &Apache::lonnet::standard_roleprivs(\%newrole,$role,$dom,
4104: $spec,$cnum,$area);
1.28 raeburn 4105: }
1.35 raeburn 4106: &Apache::lonnet::set_userprivs(\%userroles,\%newrole,
4107: \%newgroups);
4108: $userroles{'user.role.'.$spec} = $start.'.'.$end;
4109: &Apache::lonnet::appenv(\%userroles,[$role,'cm']);
4110: if (($end == 0) || ($end > $now)) {
4111: my $showrole = $role;
1.28 raeburn 4112: if ($role =~ /^cr\//) {
1.35 raeburn 4113: $showrole = &Apache::lonnet::plaintext($role,$crstype);
4114: } elsif (ref($longroles) eq 'HASH') {
4115: if ($longroles->{$role} ne '') {
4116: $showrole = $longroles->{$role};
4117: }
1.28 raeburn 4118: }
1.35 raeburn 4119: if ($start <= $now) {
4120: $active .= '<li><a href="/adm/roles?selectrole=1&'.
4121: $spec.'=1">'.$showrole;
4122: if ($usec ne '') {
4123: $active .= ' - '.&mt('section:').' '.$usec;
1.28 raeburn 4124: }
1.35 raeburn 4125: $active .= '</a></li>';
4126: $numactive ++;
4127: } else {
4128: $future .= '<li>'.$showrole;
4129: if ($usec ne '') {
4130: $future .= ' - '.&mt('section:').' '.$usec;
1.28 raeburn 4131: }
1.35 raeburn 4132: $future .= '</li>';
4133: $numfuture ++;
1.28 raeburn 4134: }
4135: }
4136: }
4137: }
4138: }
4139: }
4140: if ($active) {
4141: if ($numactive == 1) {
1.41 raeburn 4142: if ($crstype eq 'Community') {
4143: $output = &mt('Use the following link to enter the community:');
4144: } else {
4145: $output = &mt('Use the following link to enter the course:');
4146: }
1.28 raeburn 4147: } else {
1.41 raeburn 4148: if ($crstype eq 'Community') {
4149: $output = &mt('Use the following links to your new roles to enter the community:');
4150: } else {
4151: $output = &mt('Use the following links to your new roles to enter the course:');
4152: }
1.28 raeburn 4153: }
4154: $output .= ' <ul>'.$active.'</ul><br />';
4155: }
4156: if ($future) {
1.41 raeburn 4157: if ($crstype eq 'Community') {
4158: $output .= &mt('The following community [quant,_1,role] will become available for selection from your [_2]roles page[_3], once the default student access start date - [_4] - has been reached:',$numfuture,'<a href="/adm/roles">','</a>',&Apache::lonlocal::locallocaltime($details->{'accessstart'}))
4159: } else {
4160: $output .= &mt('The following course [quant,_1,role] will become available for selection from your [_2]roles page[_3], once the default student access start date - [_4] - has been reached:',$numfuture,'<a href="/adm/roles">','</a>',&Apache::lonlocal::locallocaltime($details->{'accessstart'}));
4161: }
4162: $output .= ' <ul>'.$future.'</ul>';
1.28 raeburn 4163: }
4164: return $output;
4165: }
4166:
1.16 raeburn 4167: sub notification_information {
1.74 raeburn 4168: my ($disposition,$req_notifylist,$dom,$cnum,$now,$code,$postprocess) = @_;
1.16 raeburn 4169: my %emails = &Apache::loncommon::getemails();
4170: my $address;
4171: if (($emails{'permanentemail'} ne '') || ($emails{'notification'} ne '')) {
4172: $address = $emails{'permanentemail'};
4173: if ($address eq '') {
4174: $address = $emails{'notification'};
4175: }
4176: }
4177: my $output;
4178: if ($disposition eq 'approval') {
4179: $output .= &mt('A message will be sent to your LON-CAPA account when a domain coordinator takes action on your request.').'<br />'.
4180: &mt('To access your LON-CAPA message, go to the Main Menu and click on "Send and Receive Messages".').'<br />';
4181: if ($address ne '') {
4182: $output.= &mt('An e-mail will also be sent to: [_1] when this occurs.',$address).'<br />';
4183: }
4184: if ($req_notifylist) {
4185: my $fullname = &Apache::loncommon::plainname($env{'user.name'},
1.73 raeburn 4186: $env{'user.domain'});
1.16 raeburn 4187: my $sender = $env{'user.name'}.':'.$env{'user.domain'};
1.74 raeburn 4188: &Apache::loncoursequeueadmin::send_selfserve_notification($req_notifylist,"$fullname ($env{'user.name'}:$env{'user.domain'})",
4189: 'undef',$env{'form.cdescr'},$now,'coursereq',$sender);
1.16 raeburn 4190: }
1.73 raeburn 4191: if (ref($postprocess) eq 'HASH') {
4192: if (ref($postprocess->{'queuedmsg'}) eq 'ARRAY') {
4193: if (scalar(@{$postprocess->{'queuedmsg'}}) > 0) {
4194: my $recipient = $env{'user.name'}.':'.$env{'user.domain'};
4195: my $sender = $recipient;
4196: my $addmsg = [];
4197: foreach my $item (@{$postprocess->{'queuedmsg'}}) {
4198: if (ref($item) eq 'HASH') {
4199: if ($item->{'mt'} ne '') {
4200: push(@{$addmsg},$item);
4201: }
4202: }
4203: }
4204: if (scalar(@{$addmsg}) > 0) {
1.74 raeburn 4205: &Apache::loncoursequeueadmin::send_selfserve_notification($recipient,$addmsg,undef,
1.73 raeburn 4206: $env{'form.cdescr'},$now,
1.77 raeburn 4207: 'queuedcrsreq',$sender);
1.73 raeburn 4208: }
4209: }
4210: }
4211: if ($postprocess->{'queuedweb'}) {
4212: $output .= $postprocess->{'queuedweb'};
4213: }
4214: }
1.17 raeburn 4215: } elsif ($disposition eq 'pending') {
1.78 raeburn 4216: my $pending_default = '<div class="LC_info">'.
1.16 raeburn 4217: &mt('Your request has been placed in a queue pending administrative action.').'<br />'.
4218: &mt("Usually this means that your institution's information systems do not list you among the instructional personnel for this course.").'<br />'.
4219: &mt('The list of instructional personnel for the course will be automatically checked daily, and once you are listed the request will be processed.').
1.78 raeburn 4220: '</div>';
4221: if (ref($postprocess) eq 'HASH') {
4222: if ($postprocess->{'pendingweb'}) {
4223: $output .= $postprocess->{'pendingweb'};
4224: } else {
4225: $output .= $pending_default;
4226: }
4227: } else {
4228: $output .= $pending_default;
4229: }
1.73 raeburn 4230: } elsif ($disposition eq 'created') {
4231: if (($code) || ((ref($postprocess) eq 'HASH') &&
4232: ((ref($postprocess->{'createdmsg'}) eq 'ARRAY') || ($postprocess->{'createdweb'})))) {
4233: my $addmsg = [];
4234: my $recipient = $env{'user.name'}.':'.$env{'user.domain'};
4235: my $sender = $recipient;
4236: if ($code) {
4237: push(@{$addmsg},{
1.74 raeburn 4238: mt => 'Students can automatically select your course: "[_1]" by entering this code: [_2]',
4239: args => [$env{'form.cdescr'},$code],
1.73 raeburn 4240: });
4241: $output .= '<p>'.
4242: &mt('Students can automatically select your course by entering this code: [_1].','<b>'.$code.'</b>').
4243: '<br />'.
4244: &mt('A message has been sent to your LON-CAPA account with this information.');
4245: if ($address ne '') {
4246: $output.= '<br />'.&mt('An e-mail has also been sent to: [_1] with this code.',$address);
4247: }
4248: $output .= '</p>';
4249: }
4250: if (ref($postprocess) eq 'HASH') {
4251: if (ref($postprocess->{'createdmsg'}) eq 'ARRAY') {
4252: foreach my $item (@{$postprocess->{'createdmsg'}}) {
4253: if (ref($item) eq 'HASH') {
4254: if ($item->{'mt'} ne '') {
4255: push(@{$addmsg},$item);
4256: }
4257: }
4258: }
4259: }
4260: if ($postprocess->{'createdweb'}) {
4261: $output .= $postprocess->{'createdweb'}
4262: }
4263: }
4264: if (scalar(@{$addmsg}) > 0) {
1.77 raeburn 4265: my $type = 'createdcrsreq';
1.73 raeburn 4266: if ($code) {
4267: $type = 'uniquecode';
4268: }
1.74 raeburn 4269: &Apache::loncoursequeueadmin::send_selfserve_notification($recipient,$addmsg,$dom.'_'.$cnum,$env{'form.cdescr'},
1.73 raeburn 4270: $now,$type,$sender);
4271: }
1.70 raeburn 4272: }
1.17 raeburn 4273: } else {
4274: $output .= '<div class="LC_warning">'.
1.44 raeburn 4275: &mt('Your request status is: [_1].',$disposition).
4276: '</div>';
1.8 raeburn 4277: }
4278: return $output;
4279: }
4280:
1.78 raeburn 4281: sub pending_validation_form {
4282: my ($cdom,$cnum,$crstype,$now,$token,$lonhost,$cdesc) = @_;
4283: my $output;
4284: my %postvalues = (
4285: 'owner' => $env{'user.name'}.':'.$env{'user.domain'},
4286: 'course' => $cdom.'_'.$cnum,
4287: 'coursetype' => $crstype,
4288: );
4289: my %domconfig = &Apache::lonnet::get_dom('configuration',['requestcourses'],$cdom);
4290:
4291: if (ref($domconfig{'requestcourses'}) eq 'HASH') {
4292: my ($url,$buttontext,$code,@fields);
4293: if (ref($domconfig{'requestcourses'}{'validation'}) eq 'HASH') {
4294: $postvalues{'description'} = $cdesc;
4295: $url = $domconfig{'requestcourses'}{'validation'}{'url'};
4296: if (ref($domconfig{'requestcourses'}{'validation'}{'fields'}) eq 'ARRAY') {
4297: @fields = @{$domconfig{'requestcourses'}{'validation'}{'fields'}};
4298: }
4299: $buttontext = $domconfig{'requestcourses'}{'validation'}{'button'};
4300: $output .= $domconfig{'requestcourses'}{'validation'}{'markup'};
4301: if (($url =~ m{^(https?\://|/)}) && (@fields > 0)) {
4302: $output .= '<form name="crsreqvalidation" action="'.$url.'" method="post">'."\n";
4303: foreach my $field (@fields) {
4304: if ($postvalues{$field}) {
4305: $output .= '<input type="hidden" name="'.$field.'" value="'.$postvalues{$field}.'" />'."\n";
4306: }
4307: }
4308: if ($buttontext eq '') {
4309: if ($crstype eq 'community') {
4310: $buttontext = &mt('Create community');
4311: } else {
4312: $buttontext = &mt('Create course');
4313: }
4314: }
4315: my $protocol = $Apache::lonnet::protocol{$lonhost};
4316: $protocol = 'http' if ($protocol ne 'https');
4317: my $crscreator = $protocol.'://'.&Apache::lonnet::hostname($lonhost).'/cgi-bin/createpending.pl';
4318: $output .= '<input type="hidden" name="crscreator" value="'.$crscreator.'" />'."\n".
4319: '<input type="hidden" name="token" value="'.$token.'" />'."\n".
4320: '<input type="submit" name="validate" value="'.$buttontext.'" />'."\n".
4321: '</form>'."\n";
4322: }
4323: }
4324: }
4325: return $output;
4326: }
4327:
1.8 raeburn 4328: sub check_autolimit {
1.10 raeburn 4329: my ($uname,$udom,$dom,$crstype,$limit,$message) = @_;
4330: my %crsroles = &Apache::lonnet::get_my_roles($env{'user.name'},$env{'user.domain'},
1.41 raeburn 4331: 'userroles',['active','future'],['cc','co'],[$dom]);
1.37 raeburn 4332: my ($types,$typename) = &Apache::loncommon::course_types();
1.10 raeburn 4333: my %requests = &Apache::lonnet::dumpstore('courserequests',$udom,$uname);
1.41 raeburn 4334: my $count = 0;
1.10 raeburn 4335: foreach my $key (keys(%requests)) {
4336: my ($cdom,$cnum) = split('_',$key);
1.41 raeburn 4337: if (ref($requests{$key}) eq 'HASH') {
4338: next if ($requests{$key}{'crstype'} ne $crstype);
4339: if (($crstype eq 'community') &&
4340: (exists($crsroles{$cnum.':'.$cdom.':co'}))) {
4341: $count ++;
1.96 raeburn 4342: } elsif ((($crstype eq 'official') || ($crstype eq 'unofficial') || ($crstype eq 'textbook') || ($crstype eq 'placement')) &&
1.41 raeburn 4343: (exists($crsroles{$cnum.':'.$cdom.':cc'}))) {
4344: $count ++;
1.10 raeburn 4345: }
4346: }
4347: }
1.41 raeburn 4348: if ($count < $limit) {
1.10 raeburn 4349: return 'process';
4350: } else {
4351: if (ref($typename) eq 'HASH') {
1.41 raeburn 4352: if ($crstype eq 'community') {
4353: $$message = &mt('Your request has not been processed because you have reached the limit for the number of communities.').
4354: '<br />'.&mt("Your limit is [_1].",$limit);
4355: } else {
4356: $$message = &mt('Your request has not been processed because you have reached the limit for the number of courses of this type.').
4357: '<br />'.&mt("Your $typename->{$crstype} limit is [_1].",$limit);
4358: }
1.10 raeburn 4359: }
4360: return 'rejected';
4361: }
1.1 raeburn 4362: return;
4363: }
4364:
1.2 raeburn 4365: sub retrieve_settings {
1.26 raeburn 4366: my ($dom,$cnum,$udom,$uname) = @_;
4367: if ($udom eq '' || $uname eq '') {
4368: $udom = $env{'user.domain'};
4369: $uname = $env{'user.name'};
4370: }
4371: my ($result,%reqinfo) = &get_request_settings($dom,$cnum,$udom,$uname);
1.16 raeburn 4372: if ($result eq 'ok') {
1.26 raeburn 4373: if (($udom eq $reqinfo{'domain'}) && ($uname eq $reqinfo{'owner'})) {
1.16 raeburn 4374: $env{'form.chome'} = $reqinfo{'coursehome'};
4375: $env{'form.cdescr'} = $reqinfo{'cdescr'};
4376: $env{'form.crstype'} = $reqinfo{'crstype'};
4377: &generate_date_items($reqinfo{'accessstart'},'accessstart');
4378: &generate_date_items($reqinfo{'accessend'},'accessend');
4379: if ($reqinfo{'accessend'} == 0) {
4380: $env{'form.no_end_date'} = 1;
4381: }
4382: if (($reqinfo{'crstype'} eq 'official') && (&Apache::lonnet::auto_run('',$dom))) {
4383: &generate_date_items($reqinfo{'enrollstart'},'enrollstart');
4384: &generate_date_items($reqinfo{'enrollend'},'enrollend');
4385: }
4386: $env{'form.clonecrs'} = $reqinfo{'clonecrs'};
4387: $env{'form.clonedom'} = $reqinfo{'clonedom'};
1.55 raeburn 4388: if (($reqinfo{'clonecrs'} ne '') && ($reqinfo{'clonedom'} ne '')) {
4389: $env{'form.cloning'} = 1;
4390: }
1.16 raeburn 4391: $env{'form.datemode'} = $reqinfo{'datemode'};
4392: $env{'form.dateshift'} = $reqinfo{'dateshift'};
1.59 raeburn 4393: if ($reqinfo{'crstype'} eq 'official') {
4394: $env{'form.autoadds'} = $reqinfo{'autoadds'};
4395: $env{'form.autodrops'} = $reqinfo{'autodrops'};
4396: if ($reqinfo{'instcode'} ne '') {
4397: $env{'form.sectotal'} = $reqinfo{'sectotal'};
4398: $env{'form.crosslisttotal'} = $reqinfo{'crosslisttotal'};
4399: $env{'form.instcode'} = $reqinfo{'instcode'};
4400: my $crscode = {
4401: $cnum => $reqinfo{'instcode'},
4402: };
4403: &extract_instcode($dom,'instcode',$crscode,$cnum);
1.66 raeburn 4404: (undef,undef,my $instcredits) =
4405: &Apache::lonnet::auto_validate_instcode(undef,$dom,
4406: $reqinfo{'instcode'});
4407: if ($instcredits ne $reqinfo{'defaultcredits'}) {
4408: $env{'form.coursecredits'} = $reqinfo{'defaultcredits'};
4409: }
1.59 raeburn 4410: }
1.69 raeburn 4411: } elsif (($reqinfo{'crstype'} eq 'unofficial') || ($reqinfo{'crstype'} eq 'textbook')) {
1.66 raeburn 4412: $env{'form.coursecredits'} = $reqinfo{'defaultcredits'};
1.16 raeburn 4413: }
4414: my @currsec;
4415: if (ref($reqinfo{'sections'}) eq 'HASH') {
4416: foreach my $i (sort(keys(%{$reqinfo{'sections'}}))) {
4417: if (ref($reqinfo{'sections'}{$i}) eq 'HASH') {
1.24 raeburn 4418: my $sec = $reqinfo{'sections'}{$i}{'inst'};
1.16 raeburn 4419: $env{'form.secnum_'.$i} = $sec;
1.24 raeburn 4420: $env{'form.sec_'.$i} = '1';
1.16 raeburn 4421: if (!grep(/^\Q$sec\E$/,@currsec)) {
4422: push(@currsec,$sec);
4423: }
4424: $env{'form.loncapasec_'.$i} = $reqinfo{'sections'}{$i}{'loncapa'};
4425: }
4426: }
4427: }
1.24 raeburn 4428: if (ref($reqinfo{'crosslists'}) eq 'HASH') {
4429: foreach my $i (sort(keys(%{$reqinfo{'crosslists'}}))) {
4430: if (ref($reqinfo{'crosslists'}{$i}) eq 'HASH') {
4431: $env{'form.crosslist_'.$i} = '1';
4432: $env{'form.crosslist_'.$i.'_instsec'} = $reqinfo{'crosslists'}{$i}{'instsec'};
4433: $env{'form.crosslist_'.$i.'_lcsec'} = $reqinfo{'crosslists'}{$i}{'loncapa'};
4434: if ($reqinfo{'crosslists'}{$i}{'instcode'} ne '') {
4435: my $key = $cnum.$i;
4436: my $crscode = {
4437: $key => $reqinfo{'crosslists'}{$i}{'instcode'},
4438: };
4439: &extract_instcode($dom,'crosslist',$crscode,$key,$i);
4440: }
1.16 raeburn 4441: }
4442: }
4443: }
4444: if (ref($reqinfo{'personnel'}) eq 'HASH') {
4445: my $i = 0;
4446: foreach my $user (sort(keys(%{$reqinfo{'personnel'}}))) {
4447: my ($uname,$udom) = split(':',$user);
4448: if (ref($reqinfo{'personnel'}{$user}) eq 'HASH') {
4449: if (ref($reqinfo{'personnel'}{$user}{'roles'}) eq 'ARRAY') {
4450: foreach my $role (sort(@{$reqinfo{'personnel'}{$user}{'roles'}})) {
4451: $env{'form.person_'.$i.'_role'} = $role;
4452: $env{'form.person_'.$i.'_firstname'} = $reqinfo{'personnel'}{$user}{'firstname'};
4453: $env{'form.person_'.$i.'_lastname'} = $reqinfo{'personnel'}{$user}{'lastname'}; ;
4454: $env{'form.person_'.$i.'_emailaddr'} = $reqinfo{'personnel'}{$user}{'emailaddr'};
4455: $env{'form.person_'.$i.'_uname'} = $uname;
4456: $env{'form.person_'.$i.'_dom'} = $udom;
4457: if (ref($reqinfo{'personnel'}{$user}{$role}) eq 'HASH') {
4458: if (ref($reqinfo{'personnel'}{$user}{$role}{'usec'}) eq 'ARRAY') {
4459: my @usecs = @{$reqinfo{'personnel'}{$user}{$role}{'usec'}};
4460: my @newsecs;
4461: if (@usecs > 0) {
4462: foreach my $sec (@usecs) {
4463: if (grep(/^\Q$sec\E/,@currsec)) {
4464: $env{'form.person_'.$i.'_sec'} = $sec;
4465: } else {
1.20 raeburn 4466: push(@newsecs,$sec);
1.16 raeburn 4467: }
4468: }
4469: }
4470: if (@newsecs > 0) {
4471: $env{'form.person_'.$i.'_newsec'} = join(',',@newsecs);
4472: }
4473: }
4474: }
4475: $i ++;
4476: }
4477: }
4478: }
4479: }
4480: $env{'form.persontotal'} = $i;
4481: }
4482: }
4483: }
4484: return $result;
4485: }
4486:
4487: sub get_request_settings {
1.26 raeburn 4488: my ($dom,$cnum,$udom,$uname) = @_;
1.16 raeburn 4489: my $requestkey = $dom.'_'.$cnum;
4490: my ($result,%reqinfo);
4491: if ($requestkey =~ /^($match_domain)_($match_courseid)$/) {
1.26 raeburn 4492: my %history = &Apache::lonnet::restore($requestkey,'courserequests',$udom,$uname);
1.16 raeburn 4493: my $disposition = $history{'disposition'};
4494: if (($disposition eq 'approval') || ($disposition eq 'pending')) {
4495: if (ref($history{'details'}) eq 'HASH') {
4496: %reqinfo = %{$history{'details'}};
4497: $result = 'ok';
4498: } else {
4499: $result = 'nothash';
4500: }
4501: } else {
4502: $result = 'notqueued';
4503: }
4504: } else {
4505: $result = 'invalid';
4506: }
4507: return ($result,%reqinfo);
4508: }
1.2 raeburn 4509:
1.16 raeburn 4510: sub extract_instcode {
1.24 raeburn 4511: my ($cdom,$element,$crscode,$crskey,$counter) = @_;
1.16 raeburn 4512: my (%codes,@codetitles,%cat_titles,%cat_order);
1.24 raeburn 4513: if (&Apache::lonnet::auto_instcode_format('requests',$cdom,$crscode,\%codes,
4514: \@codetitles,\%cat_titles,
4515: \%cat_order) eq 'ok') {
4516: if (ref($codes{$crskey}) eq 'HASH') {
1.16 raeburn 4517: if (@codetitles > 0) {
4518: my $sel = $element;
4519: if ($element eq 'crosslist') {
4520: $sel .= '_'.$counter;
4521: }
4522: foreach my $title (@codetitles) {
1.24 raeburn 4523: $env{'form.'.$sel.'_'.$title} = $codes{$crskey}{$title};
1.16 raeburn 4524: }
4525: }
4526: }
4527: }
4528: return;
1.2 raeburn 4529: }
4530:
1.16 raeburn 4531: sub generate_date_items {
4532: my ($currentval,$item) = @_;
4533: if ($currentval =~ /\d+/) {
4534: my ($tzname,$sec,$min,$hour,$mday,$month,$year) =
4535: &Apache::lonhtmlcommon::get_timedates($currentval);
4536: $env{'form.'.$item.'_day'} = $mday;
4537: $env{'form.'.$item.'_month'} = $month+1;
4538: $env{'form.'.$item.'_year'} = $year;
4539: }
4540: return;
1.2 raeburn 4541: }
4542:
1.72 raeburn 4543: sub print_textbook_form {
1.73 raeburn 4544: my ($r,$dom,$incdoms,$domdefs,$settings,$can_request) = @_;
1.81 raeburn 4545: my (%prefab,%ordered,%numprefab);
1.72 raeburn 4546: my $crstype = 'textbook';
4547: #
1.81 raeburn 4548: # Retrieve list of prefabricated courses (textbook courses and templates) cloneable by user
1.72 raeburn 4549: #
1.81 raeburn 4550: foreach my $type ('textbooks','templates') {
4551: $numprefab{$type} = 0;
4552: if (ref($settings) eq 'HASH') {
4553: $prefab{$type} = $settings->{$type};
4554: if (ref($prefab{$type}) eq 'HASH') {
4555: foreach my $item (keys(%{$prefab{$type}})) {
1.72 raeburn 4556: my ($clonedom,$clonecrs) = split(/_/,$item);
1.81 raeburn 4557: if (ref($prefab{$type}{$item}) eq 'HASH') {
4558: if (&Apache::loncoursequeueadmin::can_clone_course($env{'user.name'},
1.87 raeburn 4559: $env{'user.domain'},$clonecrs,$clonedom,$crstype,$dom)) {
1.81 raeburn 4560:
4561: my $num = $prefab{$type}{$item}{'order'};
4562: $ordered{$type}{$num} = $item;
4563: $numprefab{$type} ++;
4564: }
1.72 raeburn 4565: }
4566: }
4567: }
4568: }
4569: }
4570:
4571: #
4572: # Check if domain has multiple library servers
4573: #
4574: my ($home_server_pick,$numlib) =
4575: &Apache::loncommon::home_server_form_item($dom,'chome',
4576: 'default','hide');
4577: if ($numlib > 1) {
4578: $home_server_pick = &mt('Home Server for Course').': '.$home_server_pick.'<br />';
4579: }
4580:
4581: #
1.90 raeburn 4582: # Retrieve information about courses owned by user, or in which user has an active
4583: # Course Coordinator role
1.72 raeburn 4584: #
4585: my $numcurrent;
4586: my %cloneable = &Apache::lonnet::courseiddump($dom,'.',1,'.',$env{'user.name'}.':'.$env{'user.domain'},
1.90 raeburn 4587: '.',undef,undef,'Course');
1.72 raeburn 4588: my %ccroles = &Apache::lonnet::get_my_roles($env{'user.name'},$env{'user.domain'},'userroles',
1.90 raeburn 4589: ['active'],['cc']);
4590:
4591: my $cc_clone = '';
1.72 raeburn 4592: foreach my $role (keys(%ccroles)) {
4593: my ($cnum,$cdom,$rest) = split(/:/,$role,3);
1.90 raeburn 4594: $cc_clone .= $cdom.':'.$cnum.'&';
1.72 raeburn 4595: unless (exists($cloneable{$cdom.'_'.$cnum})) {
4596: my %courseinfo = &Apache::lonnet::coursedescription($cdom.'_'.$cnum,{'one_time' => 1});
1.95 raeburn 4597: $cloneable{$cdom.'_'.$cnum} = {
4598: context => $courseinfo{'internal.creationcontext'},
4599: created => $courseinfo{'internal.created'},
4600: creator => $courseinfo{'internal.creator'},
4601: description => $courseinfo{'description'},
4602: inst_code => $courseinfo{'coursecode'},
4603: owner => $courseinfo{'internal.courseowner'},
4604: releaserequired => $courseinfo{'internal.releaserequired'},
4605: type => $courseinfo{'type'},
1.72 raeburn 4606: }
4607: }
4608:
4609: my $numcurrent = scalar(keys(%cloneable));
4610:
1.90 raeburn 4611: #
4612: # Retrieve information about courses from user's domain which user can clone, but which not owned
4613: # or cloneable based on Course Coordinator role.
4614: #
4615: my ($numdomcourses,%domcloneable);
4616: my %allcloneable = &Apache::lonnet::courseiddump($dom,'.',1,'.','.','.',undef,undef,'Course',
4617: undef,undef,undef,undef,undef,
4618: $env{'user.name'}.':'.$env{'user.domain'},
4619: $cc_clone,1);
4620: foreach my $cid (keys(%allcloneable)) {
4621: unless (exists($cloneable{$cid})) {
4622: $domcloneable{$cid} = $allcloneable{$cid};
4623: }
4624: }
4625: $numdomcourses = scalar(keys(%domcloneable));
4626:
4627: my $fullname = &Apache::loncommon::plainname($env{'user.name'},
4628: $env{'user.domain'});
4629:
4630: #
4631: # Retrieve any custom form information prior to rendering page
4632: #
4633:
4634: my $initprocess = &Apache::lonnet::auto_crsreq_update($dom,undef,$crstype,'initializereview',$env{'user.name'},
4635: $env{'user.domain'},$fullname);
4636: my %custominit;
4637: if (ref($initprocess) eq 'HASH') {
4638: &custom_formitems($initprocess,\%custominit);
4639: }
4640:
4641: #
4642: # Retrieve any custom onload actions or javascript used for page before rendering
4643: #
4644:
4645: my ($customonload,$customjs,$customvalidationjs);
4646: my $inprocess = &Apache::lonnet::auto_crsreq_update($dom,undef,$crstype,'prereview',$env{'user.name'},
4647: $env{'user.domain'},$fullname,undef,undef,
4648: undef,undef,\%custominit);
4649: if (ref($inprocess) eq 'HASH') {
4650: $customonload = $inprocess->{'onload'};
4651: $customjs = $inprocess->{'javascript'};
4652: $customvalidationjs = $inprocess->{'validationjs'};
4653: }
4654:
4655: my $postprocess = &Apache::lonnet::auto_crsreq_update($dom,undef,$crstype,'review',
4656: $env{'user.name'},
4657: $env{'user.domain'},$fullname,undef,undef,
4658: undef,undef,\%custominit);
4659:
4660: my $jscript = &textbook_request_javascript(\%numprefab,$numcurrent,$numdomcourses,$customvalidationjs);
4661: $jscript .= $customjs;
1.72 raeburn 4662: my %loaditems;
1.90 raeburn 4663: $loaditems{'onload'} = 'javascript:uncheckAllRadio();'.$customonload;
1.72 raeburn 4664: $r->print(&header('Course Request',$jscript,\%loaditems));
4665:
1.73 raeburn 4666: if (ref($can_request) eq 'HASH') {
4667: unless ((scalar(keys(%{$can_request})) == 1) && ($can_request->{'textbook'})) {
4668: &Apache::lonhtmlcommon::add_breadcrumb(
4669: { href => '/adm/requestcourse',
4670: text => 'Pick action',
4671: });
4672: }
4673: }
1.72 raeburn 4674: &Apache::lonhtmlcommon::add_breadcrumb({text=>'Course Request'});
4675: $r->print(&Apache::lonhtmlcommon::breadcrumbs('Course Requests','Course_Requests'));
4676:
1.73 raeburn 4677: &startContentScreen($r,'textbookrequests');
1.72 raeburn 4678: #
4679: # Show domain selector form, if required.
4680: #
4681: if (@{$incdoms} > 1) {
4682: my $onchange = 'this.form.submit()';
4683: $r->print('<form name="domforcourse" method="post" action="/adm/requestcourse">'.
4684: '<div><fieldset><legend>'.&mt('Domain').'</legend>'.
4685: &Apache::loncommon::select_dom_form($dom,'showdom','',1,$onchange,$incdoms).
4686: '</fieldset></form>');
4687: }
4688:
4689: #
4690: # Course request form
4691: #
4692:
4693: #
4694: # Course Title
4695: #
4696: $r->print('<form name="requestcourse" method="post" action="/adm/requestcourse" onsubmit="return validTextbookReq();">'.
4697: '<div>'.
4698: '<fieldset>'.
4699: '<legend>'.&mt('Course Information').'</legend>'.
4700: '<span class="LC_nobreak">'.&mt('Title').': '.
4701: '<input type="text" size="60" name="cdescr" value="" /></span><br />'.
4702: $home_server_pick.'<br /></fieldset>'.
4703: '</div>');
4704:
4705: #
4706: # Content source selection, if more than one available
4707: #
1.90 raeburn 4708: if (keys(%cloneable) || keys(%ordered) || keys(%domcloneable)) {
1.72 raeburn 4709: $r->print('<div>'.
4710: '<fieldset><legend>'.&mt('Course Content').'</legend>');
4711: if (keys(%ordered)) {
1.81 raeburn 4712: if (ref($ordered{'textbooks'}) eq 'HASH') {
4713: $r->print('<span class="LC_nobreak"><label>'.
4714: '<input type="radio" name="cloning" value="textbook" onclick="javascript:cloneChoice();" />'.
4715: &mt('Load textbook content').'</span>'.(' 'x2).' ');
4716: }
4717: if (ref($ordered{'templates'}) eq 'HASH') {
4718: $r->print('<span class="LC_nobreak"><label>'.
4719: '<input type="radio" name="cloning" value="template" onclick="javascript:cloneChoice();" />'.
1.83 raeburn 4720: &mt('Load pre-existing template').'</span>'.(' 'x2).' ');
1.81 raeburn 4721: }
1.72 raeburn 4722: }
4723: if (keys(%cloneable)) {
4724: $r->print('<span class="LC_nobreak"><label>'.
4725: '<input type="radio" name="cloning" value="existing" onclick="javascript:cloneChoice();" />'.
4726: &mt('Copy one of your courses').'</label></span>'.(' 'x2).' ');
4727: }
1.90 raeburn 4728: if (keys(%domcloneable)) {
4729: $r->print('<span class="LC_nobreak"><label>'.
4730: '<input type="radio" name="cloning" value="colleague" onclick="javascript:cloneChoice();" />'.
4731: &mt("Copy a colleague's course").'</label></span>'.(' 'x2).' ');
4732: }
1.72 raeburn 4733: $r->print('<span class="LC_nobreak"><label>'.
4734: '<input type="radio" name="cloning" value="none" checked="checked" onclick="javascript:cloneChoice();" />'.
4735: &mt('Empty course shell').'</label></span>');
4736: } else {
4737: $r->print('<input type="hidden" name="cloning" value="none" />');
4738: }
4739:
4740: #
4741: # Table of cloneable textbook courses
4742: #
4743: if (keys(%ordered)) {
1.81 raeburn 4744: foreach my $type ('textbooks','templates') {
4745: my $divid = 'showtextbook';
4746: my $radioid = 'book';
4747: if ($type eq 'templates') {
4748: $divid = 'showtemplate';
4749: $radioid = 'template';
4750: }
4751: if (ref($ordered{$type}) eq 'HASH') {
4752: $r->print('<div id="'.$divid.'" style="display:none">'.
4753: &Apache::loncommon::start_data_table().
4754: &Apache::loncommon::start_data_table_header_row().
4755: '<th>'.&mt('Title').'</th>');
4756: if ($type eq 'textbooks') {
4757: $r->print('<th>'.&mt('Author(s)').'</th>');
4758: }
4759: $r->print('<th>'.&mt('Subject').'</th>');
4760: if ($type eq 'textbooks') {
1.82 raeburn 4761: $r->print('<th>'.&mt('Publisher').'</th>'.
4762: '<th>'.&mt('Book').'</th>');
1.81 raeburn 4763: }
4764: $r->print(&Apache::loncommon::end_data_table_header_row());
4765: my @items = sort { $a <=> $b } keys(%{$ordered{$type}});
4766: foreach my $num (@items) {
4767: my $item = $ordered{$type}{$num};
4768: my $cleantitle=&HTML::Entities::encode($prefab{$type}{$item}{'title'},'<>&"');
4769: $cleantitle=~s/'/\\'/g;
4770: $cleantitle =~ s/^\s+//;
4771: $r->print(&Apache::loncommon::start_data_table_row().
4772: '<td><label><input type="radio" name="'.$radioid.'" value="'.$item.'" />'.
4773: $cleantitle.'</label></td>');
4774: if ($type eq 'textbooks') {
4775: $r->print('<td>'.$prefab{$type}{$item}{'author'}.'</td>');
4776: }
4777: $r->print('<td>'.$prefab{$type}{$item}{'subject'}.'</td>');
4778: if ($type eq 'textbooks') {
1.82 raeburn 4779: $r->print('<td>'.$prefab{$type}{$item}{'publisher'}.'</td>'.
4780: '<td><img border="0" src="'.$prefab{$type}{$item}{'image'}.
1.81 raeburn 4781: '" alt="'.$cleantitle.'" /></td>');
4782: }
4783: $r->print(&Apache::loncommon::end_data_table_row());
4784: }
4785: $r->print(&Apache::loncommon::end_data_table().
4786: '</div>');
4787: }
1.72 raeburn 4788: }
4789: }
4790:
4791: #
4792: # Table of user's current courses (owner and/or course coordinator)
4793: #
1.90 raeburn 4794: my %lt = &clone_text();
1.72 raeburn 4795: if (keys(%cloneable)) {
4796: $r->print('<div id="showexisting" style="display:none">'.
1.90 raeburn 4797: &clone_selection_table($dom,'owned',\%cloneable).
1.93 raeburn 4798: '<p><input type="radio" name="owndatemode" value="delete" /> '.$lt{'ncd'}.
1.90 raeburn 4799: '</label><br /><label>'.
1.93 raeburn 4800: '<input type="radio" name="owndatemode" value="preserve" /> '.$lt{'prd'}.
1.90 raeburn 4801: '</label><br /><label>'.
1.93 raeburn 4802: '<input type="radio" name="owndatemode" value="shift" checked="checked" /> '.
1.90 raeburn 4803: $lt{'shd'}.'</label>'.
1.93 raeburn 4804: '<input type="text" size="5" name="owndateshift" value="365" />'.
1.90 raeburn 4805: '</div>');
4806: }
4807: #
4808: # Table of other cloneable courses from user's domain (exclude own courses)
4809: #
4810: if (keys(%domcloneable)) {
4811: $r->print('<div id="showcolleague" style="display:none">'.
4812: &clone_selection_table($dom,'colleague',\%domcloneable).
1.93 raeburn 4813: '<p><input type="radio" name="colldatemode" value="delete" /> '.$lt{'ncd'}.
1.90 raeburn 4814: '</label><br /><label>'.
1.93 raeburn 4815: '<input type="radio" name="colldatemode" value="preserve" /> '.$lt{'prd'}.
1.90 raeburn 4816: '</label><br /><label>'.
1.93 raeburn 4817: '<input type="radio" name="colldatemode" value="shift" checked="checked" /> '.
1.90 raeburn 4818: $lt{'shd'}.'</label>'.
1.93 raeburn 4819: '<input type="text" size="5" name="colldateshift" value="365" />'.
1.90 raeburn 4820: '</div>');
1.72 raeburn 4821: }
1.90 raeburn 4822:
1.72 raeburn 4823: #
4824: # End of content selector
4825: #
1.90 raeburn 4826: if (keys(%cloneable) || keys(%domcloneable) || keys(%ordered)) {
1.72 raeburn 4827: $r->print('</fieldset></div>');
4828: }
4829:
4830: my %accesstitles = (
4831: 'start' => 'Default start access',
4832: 'end' => 'Default end access',
4833: );
4834: my %help_item = (
4835: start => 'Course_Request_Access_Start',
4836: end => 'Course_Request_Access_End',
4837: );
4838: my $starttime = time;
4839: my $endtime = time+(6*30*24*60*60); # 6 months from now, approx
4840: my $startform = &Apache::lonhtmlcommon::date_setter('requestcourse','accessstart',
4841: $starttime,'','','',1,'','','',1);
4842: my $endform = &Apache::lonhtmlcommon::date_setter('requestcourse','accessend',
4843: $endtime,'','','',1,'','','',1);
4844: #
4845: # Set default start and end dates for student access
4846: #
4847: $r->print('<div>'.
4848: '<fieldset><legend>'.&mt('Student Access Dates').'</legend>'.
4849: &Apache::loncommon::help_open_topic($help_item{'start'}).
4850: ' '.&mt($accesstitles{'start'}).$startform.'<br />'.
4851: &Apache::loncommon::help_open_topic($help_item{'end'}).
4852: ' '.&mt($accesstitles{'end'}).$endform.'<br /></div>');
4853:
4854: #
1.73 raeburn 4855: # Display any custom fields for this course type
4856: #
4857: if (ref($postprocess) eq 'HASH') {
4858: if ($postprocess->{'reviewweb'}) {
4859: $r->print($postprocess->{'reviewweb'});
4860: }
4861: }
4862:
4863: #
1.72 raeburn 4864: # Submit button
4865: #
1.73 raeburn 4866: $r->print('<input type="hidden" name="crstype" value="textbook" />'.
4867: '<input type="hidden" name="action" value="process" />'.
1.72 raeburn 4868: '<input type="submit" value="'.&mt('Create course').'" />');
4869:
4870: #
4871: # End request form
4872: #
1.73 raeburn 4873: $r->print('</form>');
4874: &endContentScreen($r).
4875: $r->print(&Apache::loncommon::end_page());
1.72 raeburn 4876: return;
4877: }
4878:
1.90 raeburn 4879: sub clone_selection_table {
4880: my ($dom,$name,$cloneableref) = @_;
4881: return unless ((ref($cloneableref) eq 'HASH') && (($name eq 'owned') || ($name eq 'colleague')));
4882: my %allownernames;
4883: my %sortbytitle;
4884: my $output;
4885: foreach my $cid (sort(keys(%{$cloneableref}))) {
4886: if (ref($cloneableref->{$cid}) eq 'HASH') {
4887: my $cdesc = $cloneableref->{$cid}{'description'};
4888: $cdesc =~ s/`/'/g;
4889: if ($cdesc ne '') {
4890: push(@{$sortbytitle{$cdesc}},$cid);
4891: }
4892: }
4893: }
4894: foreach my $title (sort(keys(%sortbytitle))) {
4895: if (ref($sortbytitle{$title}) eq 'ARRAY') {
4896: foreach my $cid (sort(@{$sortbytitle{$title}})) {
4897: my $cleantitle=&HTML::Entities::encode($title,'<>&"');
4898: $cleantitle=~s/'/\\'/g;
4899: $cleantitle =~ s/^\s+//;
1.95 raeburn 4900: my ($namestr,@owners,%ownernames);
4901: if ($cloneableref->{$cid}{'owner'} ne '') {
4902: push(@owners,$cloneableref->{$cid}{'owner'});
1.94 raeburn 4903: }
1.95 raeburn 4904: if ($cloneableref->{$cid}{'co-owners'} ne '') {
4905: foreach my $item (split(/,/,$cloneableref->{$cid}{'co-owners'})) {
1.94 raeburn 4906: if (($item ne '') && (!grep(/^\Q$item\E$/,@owners))) {
4907: push(@owners,$item);
4908: }
1.90 raeburn 4909: }
4910: }
4911: foreach my $owner (@owners) {
4912: my ($ownername,$ownerdom);
4913: if ($owner =~ /:/) {
4914: ($ownername,$ownerdom) = split(/:/,$owner);
4915: } else {
4916: $ownername = $owner;
4917: if ($owner ne '') {
4918: $ownerdom = $dom;
4919: }
4920: }
4921: if ($ownername ne '' && $ownerdom ne '') {
4922: if (exists($allownernames{$ownername.':'.$ownerdom})) {
4923: $ownernames{$ownername.':'.$ownerdom} = $allownernames{$ownername.':'.$ownerdom};
4924: } else {
4925: my %namehash=&Apache::loncommon::getnames($ownername,$ownerdom);
4926: $ownernames{$ownername.':'.$ownerdom} = \%namehash;
4927: $allownernames{$ownername.':'.$ownerdom} = $ownernames{$ownername.':'.$ownerdom};
4928: }
4929: }
4930: }
4931: my @lastnames;
4932: foreach my $owner (keys(%ownernames)) {
4933: if (ref($ownernames{$owner}) eq 'HASH') {
4934: push(@lastnames,$ownernames{$owner}{'lastname'});
4935: }
4936: }
4937: if (@lastnames) {
4938: $namestr = join(', ',sort(@lastnames));
4939: }
4940: $output .= &Apache::loncommon::start_data_table_row().
4941: '<td><label><input type="radio" name="'.$name.'" value="'.$cid.'" />'.
4942: ' '.$cleantitle.'</label></td>'.
4943: '<td>'.$namestr.'</td>'.
4944: &Apache::loncommon::end_data_table_row();
4945: }
4946: }
4947: }
4948: if ($output) {
4949: return &Apache::loncommon::start_data_table().
4950: &Apache::loncommon::start_data_table_header_row().
4951: '<th>'.&mt('Title').'</th>'.
4952: '<th>'.&mt('Owner/co-owner(s)').'</th>'.
4953: &Apache::loncommon::end_data_table_header_row().
4954: $output.
4955: &Apache::loncommon::end_data_table();
4956: }
4957: return;
4958: }
4959:
1.72 raeburn 4960: sub process_textbook_request {
1.73 raeburn 4961: my ($r,$dom,$action,$domdefs,$domconfig,$can_request) = @_;
1.72 raeburn 4962: my ($uniquecode,$req_notifylist);
4963: my $crstype = 'textbook';
4964: if (ref($domconfig) eq 'HASH') {
4965: if (ref($domconfig->{'requestcourses'}) eq 'HASH') {
4966: if (ref($domconfig->{'requestcourses'}{'notify'}) eq 'HASH') {
4967: $req_notifylist = $domconfig->{'requestcourses'}{'notify'}{'approval'};
4968: }
4969: if (ref($domconfig->{'requestcourses'}{'uniquecode'}) eq 'HASH') {
4970: $uniquecode = $domconfig->{'requestcourses'}{'uniquecode'}{$crstype};
4971: }
4972: }
4973: }
4974: my $now = time;
4975: my $reqtype = $env{'form.cloning'};
4976: my (@inststatuses,$storeresult,$creationresult);
4977: my $cnum = &Apache::lonnet::generate_coursenum($dom,'Course');
4978: my ($clonefrom,$clonedom,$clonecrs);
4979: if ($reqtype eq 'textbook') {
4980: $clonefrom = $env{'form.book'};
1.81 raeburn 4981: } elsif ($reqtype eq 'template') {
4982: $clonefrom = $env{'form.template'};
1.72 raeburn 4983: } elsif ($reqtype eq 'existing') {
4984: $clonefrom = $env{'form.owned'};
1.90 raeburn 4985: } elsif ($reqtype eq 'colleague') {
4986: $clonefrom = $env{'form.colleague'};
1.72 raeburn 4987: }
4988: my ($accessstart,$accessend) = &dates_from_form('accessstart','accessend');
4989: if ($clonefrom) {
4990: ($clonedom,$clonecrs) = split(/_/,$clonefrom);
4991: if (&Apache::lonnet::homeserver($clonecrs,$clonedom) ne 'no_host') {
4992: my $canclone =
4993: &Apache::loncoursequeueadmin::can_clone_course($env{'user.name'},
1.87 raeburn 4994: $env{'user.domain'},$clonecrs,$clonedom,$crstype,$dom);
1.72 raeburn 4995: unless ($canclone) {
4996: undef($clonecrs);
4997: undef($clonedom);
4998: }
4999: } else {
5000: undef($clonecrs);
5001: undef($clonedom);
5002: }
5003: }
1.84 raeburn 5004: my $js = &processing_javascript();
5005: my $loaditems = {
5006: onload => 'javascript:hideProcessing();',
5007: };
5008: $r->print(&header('Course Creation',$js,$loaditems));
1.72 raeburn 5009:
1.73 raeburn 5010: if (ref($can_request) eq 'HASH') {
5011: unless ((scalar(keys(%{$can_request})) == 1) && ($can_request->{'textbook'})) {
5012: &Apache::lonhtmlcommon::add_breadcrumb(
5013: { href => '/adm/requestcourse',
5014: text => 'Pick action',
5015: });
5016: }
5017: }
1.72 raeburn 5018: &Apache::lonhtmlcommon::add_breadcrumb(
5019: { href => '/adm/requestcourse',
5020: text => "Create Course",
5021: }
5022: );
5023: &Apache::lonhtmlcommon::add_breadcrumb({text=>'Request Processed'});
5024: $r->print(&Apache::lonhtmlcommon::breadcrumbs('Course Requests','Course_Requests'));
1.73 raeburn 5025: &startContentScreen($r,'textbookrequests');
1.72 raeburn 5026:
5027: my $details = {
5028: owner => $env{'user.name'},
5029: domain => $env{'user.domain'},
5030: cdom => $dom,
5031: cnum => $cnum,
5032: coursehome => $env{'form.chome'},
5033: cdescr => $env{'form.cdescr'},
5034: crstype => $crstype,
5035: uniquecode => $uniquecode,
5036: clonedom => $clonedom,
5037: clonecrs => $clonecrs,
5038: accessstart => $accessstart,
5039: accessend => $accessend,
5040: personnel => {},
5041: };
1.93 raeburn 5042: if (($clonecrs ne '') && ($clonedom ne '')) {
5043: if ($reqtype eq 'existing') {
5044: $details->{datemode} = $env{'form.owndatemode'};
5045: if ($details->{datemode} eq 'shift') {
5046: $details->{dateshift} = $env{'form.owndateshift'};
5047: } else {
5048: $details->{dateshift} = '';
5049: }
5050: } elsif ($reqtype eq 'colleague') {
5051: $details->{datemode} = $env{'form.colldatemode'};
5052: if ($details->{datemode} eq 'shift') {
5053: $details->{dateshift} = $env{'form.colldateshift'};
5054: } else {
5055: $details->{dateshift} = '';
5056: }
5057: }
5058: if ($details->{dateshift} ne '') {
5059: $details->{dateshift} =~ s/[^\d\.]+//g;
5060: }
5061: } else {
5062: $details->{datemode} = '';
5063: $details->{dateshift} = '';
1.72 raeburn 5064: }
1.78 raeburn 5065: my $lonhost = $r->dir_config('lonHostID');
1.84 raeburn 5066: $r->rflush();
1.90 raeburn 5067: my ($result,$output,$customized) = &process_request($r,$lonhost,$dom,$cnum,$crstype,$now,$details,
5068: '',$req_notifylist,[],$domconfig);
1.72 raeburn 5069: $r->print($output);
5070: if (&Apache::loncoursequeueadmin::author_prompt()) {
1.90 raeburn 5071: unless ($customized) {
5072: &print_author_prompt($r,$action,$cnum,$dom,$crstype,$result);
5073: }
1.72 raeburn 5074: } elsif ($result eq 'created') {
1.90 raeburn 5075: unless ($customized) {
5076: $r->print('<p><a href="/adm/requestcourse">'.&mt('Create another course').'</a></p>');
5077: }
1.72 raeburn 5078: }
1.73 raeburn 5079: &endContentScreen($r);
1.72 raeburn 5080: $r->print(&Apache::loncommon::end_page());
5081: }
5082:
5083: sub textbook_request_javascript {
1.90 raeburn 5084: my ($numprefab,$numcurrent,$numcolleague,$customvalidationjs) = @_;
1.81 raeburn 5085: return unless (ref($numprefab) eq 'HASH');
1.90 raeburn 5086: return if (!$numprefab->{'textbooks'} && !$numprefab->{'templates'} && !$numcurrent && !$numcolleague);
1.89 damieng 5087: my %js_lt = &Apache::lonlocal::texthash(
1.90 raeburn 5088: choose => 'Please select a content option.',
5089: textbook => 'Please select a textbook, or choose a different option.',
5090: template => 'Please select a template, or choose a different option.',
5091: existing => 'Please select one of your existing courses to copy, or choose a different option.',
5092: colleague => "Please select a colleague's course to copy, or choose a different option.",
5093: title => 'Please enter a course title.',
1.72 raeburn 5094: );
1.89 damieng 5095: &js_escape(\%js_lt);
1.72 raeburn 5096: return <<"ENDSCRIPT";
5097: function cloneChoice() {
5098: if (document.requestcourse.cloning) {
5099: var radioLength = document.requestcourse.cloning.length;
5100: if (radioLength == undefined) {
5101: var val = document.requestcourse.cloning.value;
1.90 raeburn 5102: if ((val == 'textbook') || (val == 'template') || (val == 'existing') || (val == 'colleague')) {
1.72 raeburn 5103: var elem = document.getElementById('show'+val);
5104: if (document.requestcourse.cloning.checked) {
5105: elem.style.display = 'block';
5106: } else {
5107: uncheckRadio(val);
5108: elem.style.display = 'none';
5109: }
5110: }
5111: } else {
5112: for (var i=0; i<radioLength; i++) {
5113: var val = document.requestcourse.cloning[i].value;
1.90 raeburn 5114: if ((val == 'textbook') || (val == 'template') || (val == 'existing') || (val == 'colleague')) {
1.72 raeburn 5115: var elem = document.getElementById('show'+val);
5116: if (document.requestcourse.cloning[i].checked) {
5117: elem.style.display = 'block';
5118: } else {
5119: if (val == 'textbook') {
5120: uncheckRadio('book');
5121: }
1.81 raeburn 5122: if (val == 'template') {
5123: uncheckRadio('template');
5124: }
1.72 raeburn 5125: if (val == 'existing') {
5126: uncheckRadio('owned');
5127: }
1.90 raeburn 5128: if (val == 'colleague') {
5129: uncheckRadio('colleague');
5130: }
1.72 raeburn 5131: elem.style.display = 'none';
5132: }
5133: }
5134: }
5135: }
5136: }
5137: return;
5138: }
5139:
5140: function uncheckRadio(radioGroupName) {
5141: var group = document.getElementsByName(radioGroupName);
5142: var radioLength = group.length;
5143: if (radioLength == undefined) {
5144: group.checked = false;
5145: } else {
5146: for (var i=0; i<radioLength; i++) {
5147: group[i].checked = false;
5148: }
5149: }
5150: return;
5151: }
5152:
5153: function uncheckAllRadio() {
5154: uncheckRadio('cloning');
1.81 raeburn 5155: var numbook = $numprefab->{'textbooks'};
5156: var numtemplate = $numprefab->{'templates'};
1.72 raeburn 5157: var numcurrent = $numcurrent;
1.90 raeburn 5158: var numcolleague = $numcolleague;
1.72 raeburn 5159: if (numbook > 0) {
5160: uncheckRadio('textbook');
5161: }
1.88 raeburn 5162: if (numtemplate > 0) {
1.81 raeburn 5163: uncheckRadio('template');
1.88 raeburn 5164: }
1.72 raeburn 5165: if (numcurrent > 0) {
5166: uncheckRadio('existing');
5167: }
1.90 raeburn 5168: if (numcolleague > 0) {
5169: uncheckRadio('colleague');
5170: }
1.72 raeburn 5171: return;
5172: }
5173:
5174: function validTextbookReq() {
5175: if (document.requestcourse.cloning) {
5176: var cloneChoice = 0;
5177: var radioLength = document.requestcourse.cloning.length;
5178: if (radioLength == undefined) {
5179: if (document.requestcourse.cloning.checked == false) {
1.89 damieng 5180: alert("$js_lt{'choose'}");
1.72 raeburn 5181: return false;
5182: } else {
5183: cloneChoice = document.requestcourse.cloning.value;
5184: }
5185: } else {
5186: for (var i=0; i<radioLength; i++) {
5187: if (document.requestcourse.cloning[i].checked) {
5188: cloneChoice = document.requestcourse.cloning[i].value;
5189: break;
5190: }
5191: }
5192: if (cloneChoice == 0) {
1.89 damieng 5193: alert("$js_lt{'choose'}");
1.72 raeburn 5194: return false;
5195: }
5196: }
5197: var group;
1.90 raeburn 5198: if ((cloneChoice == 'textbook') || (cloneChoice == 'template') || (cloneChoice == 'existing') || (cloneChoice == 'colleague')) {
1.72 raeburn 5199: var group;
5200: if (cloneChoice == 'textbook') {
5201: group = document.getElementsByName('book');
5202: } else {
1.81 raeburn 5203: if (cloneChoice == 'template') {
5204: group = document.getElementsByName('template');
5205: } else {
1.90 raeburn 5206: if (cloneChoice == 'existing') {
5207: group = document.getElementsByName('owned');
5208: } else {
5209: group = document.getElementsByName('colleague');
5210: }
1.81 raeburn 5211: }
1.72 raeburn 5212: }
5213: var groupLength = group.length;
5214: var chosen = 0;
5215: if (groupLength == undefined) {
5216: if (group.checked) {
5217: chosen = 1;
5218: }
5219: } else {
5220: for (var j=0; j<groupLength; j++) {
5221: if (group[j].checked) {
5222: chosen = 1;
5223: break;
5224: }
5225: }
5226: }
5227: if (chosen == 0) {
5228: if (cloneChoice == 'textbook') {
1.89 damieng 5229: alert("$js_lt{'textbook'}");
1.72 raeburn 5230: } else {
1.81 raeburn 5231: if (cloneChoice == 'template') {
1.89 damieng 5232: alert("$js_lt{'template'}");
1.81 raeburn 5233: } else {
1.90 raeburn 5234: if (cloneChoice == 'existing') {
5235: alert("$js_lt{'existing'}");
5236: } else {
1.92 raeburn 5237: alert("$js_lt{'colleague'}");
1.90 raeburn 5238: }
1.81 raeburn 5239: }
1.72 raeburn 5240: }
5241: return false;
5242: }
5243: }
5244: }
5245: if (document.requestcourse.cdescr.value == '') {
1.89 damieng 5246: alert("$js_lt{'title'}");
1.72 raeburn 5247: return false;
5248: }
1.90 raeburn 5249: $customvalidationjs
1.72 raeburn 5250: return true;
5251: }
5252:
5253: ENDSCRIPT
5254:
5255: }
1.73 raeburn 5256:
1.85 raeburn 5257: sub textbook_request_disabled {
5258: my ($r,$dom,$action,$can_request) = @_;
5259: if (ref($can_request) eq 'HASH') {
5260: if ($action eq 'process') {
5261: unless ((scalar(keys(%{$can_request})) == 1)) {
5262: &Apache::lonhtmlcommon::add_breadcrumb(
5263: { href => '/adm/requestcourse',
5264: text => 'Pick action',
5265: });
5266: }
5267: }
5268: }
5269: $r->print(&header('Course Request'));
5270: &Apache::lonhtmlcommon::add_breadcrumb({text=>'Course Request'});
5271: $r->print(&Apache::lonhtmlcommon::breadcrumbs('Course Requests','Course_Requests').
5272: '<div>'.
5273: '<p class="LC_info">'.&mt('You do not have privileges to request creation of textbook courses.').'</p>');
5274: if (ref($can_request) eq 'HASH') {
5275: if (scalar(keys(%{$can_request})) > 1) {
5276: $r->print('<a href="/adm/requestcourse">'.&mt('Go back').'</a>');
5277: }
5278: }
5279: $r->print('</div>'.
5280: &Apache::loncommon::end_page());
5281: return;
5282: }
5283:
1.73 raeburn 5284: sub startContentScreen {
5285: my ($r,$mode)=@_;
5286: $r->print("\n".'<ul class="LC_TabContentBigger" id="textbookreq">'."\n");
5287: $r->print('<li'.(($mode eq 'textbookrequests')?' class="active"':'').'><a href="/adm/requestcourse"><b> '.&mt('Request a Course').' </b></a></li>'."\n");
5288: $r->print('<li'.(($mode eq 'textbooklogs')?' class="active"':'').'><a href="/adm/requestcourse?action=log&crstype=textbook&tabs=on"><b> '.&mt('Course Request History').' </b></a></li>'."\n");
5289: $r->print("\n".'</ul>'."\n");
5290: $r->print('<div class="LC_Box" style="clear:both;margin:0;"><div id="mainbox" style="margin:0 0;padding:0 0;"><div class="LC_ContentBox" id="maincontentbox" style="display: block;">');
5291: }
5292:
5293: sub endContentScreen {
5294: my ($r)=@_;
5295: $r->print('</div></div></div>');
5296: }
1.72 raeburn 5297:
1.1 raeburn 5298: 1;
5299:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>