version 1.1, 2009/07/27 22:58:24
|
version 1.16, 2009/08/18 01:41:37
|
Line 44 described at http://www.lon-capa.org.
|
Line 44 described at http://www.lon-capa.org.
|
|
|
=item handler() |
=item handler() |
|
|
|
=item header() |
|
|
|
=item form_elements() |
|
|
|
=item onload_action() |
|
|
|
=item check_can_request() |
|
|
|
=item course_types() |
|
|
|
=item print_main_menu() |
|
|
|
=item request_administration() |
|
|
|
=item print_request_form() |
|
|
|
=item print_enrollment_menu() |
|
|
|
=item inst_section_selector() |
|
|
|
=item date_setting_table() |
|
|
|
=item print_personnel_menu() |
|
|
|
=item print_request_status() |
|
|
|
=item print_request_logs() |
|
|
|
=item print_review() |
|
|
|
=item dates_from_form() |
|
|
|
=item courseinfo_form() |
|
|
|
=item clone_form() |
|
|
|
=item clone_text() |
|
|
|
=item coursecode_form() |
|
|
|
=item get_course_dom() |
|
|
|
=item display_navbuttons() |
|
|
|
=item print_request_outcome() |
|
|
|
=item get_processtype() |
|
|
|
=item check_autolimit() |
|
|
|
=item build_batchcreatehash() |
|
|
|
=item retrieve_settings() |
|
|
|
=item get_request_settings() |
|
|
=back |
=back |
|
|
=cut |
=cut |
Line 55 use Apache::Constants qw(:common :http);
|
Line 111 use Apache::Constants qw(:common :http);
|
use Apache::lonnet; |
use Apache::lonnet; |
use Apache::loncommon; |
use Apache::loncommon; |
use Apache::lonlocal; |
use Apache::lonlocal; |
use LONCAPA; |
use Apache::loncoursequeueadmin; |
|
use LONCAPA qw(:DEFAULT :match); |
|
|
sub handler { |
sub handler { |
my ($r) = @_; |
my ($r) = @_; |
Line 67 sub handler {
|
Line 124 sub handler {
|
&Apache::loncommon::content_type($r,'text/html'); |
&Apache::loncommon::content_type($r,'text/html'); |
$r->send_http_header; |
$r->send_http_header; |
|
|
|
&Apache::lonhtmlcommon::clear_breadcrumbs(); |
|
my $dom = &get_course_dom(); |
my $action = $env{'form.action'}; |
my $action = $env{'form.action'}; |
my $state = $env{'form.state'}; |
my $state = $env{'form.state'}; |
my $dom = &get_course_dom(); |
my %stored; |
|
my $jscript; |
|
if ((defined($state)) && (defined($action))) { |
|
if (($action eq 'view') && ($state eq 'details')) { |
|
if ((defined($env{'form.showdom'})) && (defined($env{'form.cnum'}))) { |
|
my $result = &retrieve_settings($env{'form.showdom'},$env{'form.cnum'}); |
|
} |
|
} |
|
my %elements = &form_elements($dom); |
|
my $elementsref = {}; |
|
if (ref($elements{$action}) eq 'HASH') { |
|
if (ref($elements{$action}{$state}) eq 'HASH') { |
|
$elementsref = $elements{$action}{$state}; |
|
} |
|
} |
|
if (($state eq 'courseinfo') && ($env{'form.clonedom'} eq '')) { |
|
$env{'form.clonedom'} = $dom; |
|
} |
|
$jscript = &Apache::lonhtmlcommon::set_form_elements($elementsref,\%stored); |
|
} |
|
|
|
if ($state eq 'personnel') { |
|
$jscript .= "\n".&Apache::loncommon::userbrowser_javascript(); |
|
} |
|
|
|
my $loaditems = &onload_action($action,$state); |
|
|
|
my %states; |
|
$states{'view'} = ['pick_request','details','cancel','removal']; |
|
$states{'log'} = ['filter','display']; |
|
$states{'new'} = ['courseinfo','enrollment','personnel','review','process']; |
|
if (($action eq 'new') && ($env{'form.crstype'} eq 'official')) { |
|
unless ($env{'form.state'} eq 'crstype') { |
|
unshift (@{$states{'new'}},'codepick'); |
|
} |
|
} |
|
|
|
foreach my $key (keys(%states)) { |
|
if (ref($states{$key}) eq 'ARRAY') { |
|
unshift (@{$states{$key}},'crstype'); |
|
} |
|
} |
|
|
|
my %trail = ( |
|
crstype => 'Course Request Action', |
|
codepick => 'Category', |
|
courseinfo => 'Description', |
|
enrollment => 'Access Dates', |
|
personnel => 'Personnel', |
|
review => 'Review', |
|
process => 'Result', |
|
pick_request => 'Display Summary', |
|
details => 'Request Details', |
|
cancel => 'Cancel Request', |
|
removal => 'Outcome', |
|
); |
|
|
|
if (($env{'form.crstype'} eq 'official') && (&Apache::lonnet::auto_run('',$dom))) { |
|
$trail{'enrollment'} = 'Enrollment'; |
|
} |
|
|
|
my $page = 0; |
|
my $crumb; |
|
if (defined($action)) { |
|
my $done = 0; |
|
my $i=0; |
|
if (ref($states{$action}) eq 'ARRAY') { |
|
while ($i<@{$states{$action}} && !$done) { |
|
if ($states{$action}[$i] eq $state) { |
|
$page = $i; |
|
$done = 1; |
|
} |
|
$i++; |
|
} |
|
} |
|
for (my $i=0; $i<@{$states{$action}}; $i++) { |
|
if ($state eq $states{$action}[$i]) { |
|
&Apache::lonhtmlcommon::add_breadcrumb( |
|
{text=>"$trail{$state}"}); |
|
$crumb = &Apache::lonhtmlcommon::breadcrumbs('Course Requests','Course_Requests'); |
|
last; |
|
} else { |
|
if (($state eq 'process') && ($i > 0)) { |
|
&Apache::lonhtmlcommon::add_breadcrumb( |
|
{href=>"javascript:backPage(document.requestcrs,'$states{$action}[0]')", |
|
text=>"$trail{$states{$action}[$i]}"}); |
|
} else { |
|
&Apache::lonhtmlcommon::add_breadcrumb( |
|
{href=>"javascript:backPage(document.requestcrs,'$states{$action}[$i]')", |
|
text=>"$trail{$states{$action}[$i]}"}); |
|
} |
|
} |
|
} |
|
} else { |
|
&Apache::lonhtmlcommon::add_breadcrumb( |
|
{text=>'Pick Action'}); |
|
$crumb = &Apache::lonhtmlcommon::breadcrumbs('Course Requests','Course_Requests'); |
|
} |
|
|
my %can_request; |
my %can_request; |
my $canreq = &check_can_request($dom,\%can_request); |
my $canreq = &check_can_request($dom,\%can_request); |
if ($action eq 'new') { |
if ($action eq 'new') { |
if ($canreq) { |
if ($canreq) { |
if ($state eq 'crstype') { |
if ($state eq 'crstype') { |
&print_main_menu($r,\%can_request,$dom); |
&print_main_menu($r,\%can_request,\%states,$dom,$jscript,$loaditems, |
|
$crumb); |
} else { |
} else { |
&request_administration($r,$action,$state,$dom); |
&request_administration($r,$action,$state,$page,\%states,$dom,$jscript, |
|
$loaditems,$crumb); |
} |
} |
} else { |
} else { |
$r->print(&Apache::loncommon::start_page('Course Requests'). |
$r->print(&header('Course Requests').$crumb. |
'<div class="LC_warning">'. |
'<div class="LC_warning">'. |
&mt('You do not have privileges to request creation of courses.'). |
&mt('You do not have privileges to request creation of courses.'). |
'</div>'. |
'</div>'.&Apache::loncommon::end_page()); |
&Apache::loncommon::end_page()); |
|
} |
} |
} elsif ($action eq 'view') { |
} elsif ($action eq 'view') { |
&print_request_status(); |
if ($state eq 'crstype') { |
|
&print_main_menu($r,\%can_request,\%states,$dom,$jscript,'',$crumb); |
|
} else { |
|
&request_administration($r,$action,$state,$page,\%states,$dom,$jscript, |
|
$loaditems,$crumb); |
|
} |
} elsif ($action eq 'log') { |
} elsif ($action eq 'log') { |
&print_request_logs(); |
&print_request_logs($jscript,$loaditems,$crumb); |
} else { |
} else { |
&print_main_menu($r,\%can_request,$dom); |
&print_main_menu($r,\%can_request,\%states,$dom,$jscript,'',$crumb); |
} |
} |
return OK; |
return OK; |
} |
} |
|
|
|
sub header { |
|
my ($bodytitle,$jscript,$loaditems,$jsextra) = @_; |
|
if ($jscript) { |
|
$jscript = '<script type="text/javascript">'."\n". |
|
'// <![CDATA['."\n". |
|
$jscript."\n".'// ]]>'."\n".'</script>'."\n"; |
|
} |
|
if ($loaditems) { |
|
$loaditems = {'add_entries' => $loaditems,}; |
|
return &Apache::loncommon::start_page($bodytitle,$jscript.$jsextra,$loaditems); |
|
} else { |
|
return &Apache::loncommon::start_page($bodytitle,$jscript.$jsextra); |
|
} |
|
} |
|
|
|
sub form_elements { |
|
my ($dom) = @_; |
|
my %elements = |
|
( |
|
new => { |
|
crstype => { |
|
crstype => 'selectbox', |
|
action => 'selectbox', |
|
origcnum => 'hidden', |
|
}, |
|
courseinfo => { |
|
cdescr => 'text', |
|
clonecrs => 'text', |
|
clonedom => 'selectbox', |
|
datemode => 'radio', |
|
dateshift => 'text', |
|
}, |
|
enrollment => { |
|
accessstart_month => 'selectbox', |
|
accessstart_hour => 'selectbox', |
|
accessend_month => 'selectbox', |
|
accessend_hour => 'selectbox', |
|
accessstart_day => 'text', |
|
accessstart_year => 'text', |
|
accessstart_minute => 'text', |
|
accessstart_second => 'text', |
|
accessend_day => 'text', |
|
accessend_year => 'text', |
|
accessend_minute => 'text', |
|
accessend_second => 'text', |
|
no_end_date => 'checkbox', |
|
}, |
|
personnel => { |
|
addperson => 'checkbox', |
|
}, |
|
review => { |
|
cnum => 'hidden', |
|
}, |
|
}, |
|
view => { |
|
crstype => { |
|
crstype => 'selectbox', |
|
action => 'selectbox', |
|
}, |
|
}, |
|
); |
|
my %servers = &Apache::lonnet::get_servers($dom,'library'); |
|
my $numlib = keys(%servers); |
|
if ($numlib > 1) { |
|
$elements{'new'}{'courseinfo'}{'chome'} = 'selectbox'; |
|
} else { |
|
$elements{'new'}{'courseinfo'}{'chome'} = 'hidden'; |
|
} |
|
my (@codetitles,%cat_titles,%cat_order,@code_order,$lastitem); |
|
&Apache::lonnet::auto_possible_instcodes($dom,\@codetitles,\%cat_titles, |
|
\%cat_order,\@code_order); |
|
my $numtitles = scalar(@codetitles); |
|
if ($numtitles) { |
|
my %extras; |
|
$lastitem = pop(@codetitles); |
|
$extras{'instcode_'.$lastitem} = 'text'; |
|
foreach my $item (@codetitles) { |
|
$extras{'instcode_'.$item} = 'selectbox'; |
|
} |
|
$elements{'new'}{'codepick'} = \%extras; |
|
} |
|
if (&Apache::lonnet::auto_run('',$dom)) { |
|
my %extras = ( |
|
sectotal => 'hidden', |
|
enrollstart_month => 'selectbox', |
|
enrollstart_hour => 'selectbox', |
|
enrollend_month => 'selectbox', |
|
enrollend_hour => 'selectbox', |
|
enrollstart_day => 'text', |
|
enrollstart_year => 'text', |
|
enrollstart_minute => 'text', |
|
enrollstart_second => 'text', |
|
enrollend_day => 'text', |
|
enrollend_year => 'text', |
|
enrollend_minute => 'text', |
|
enrollend_second => 'text', |
|
crosslisttotal => 'hidden', |
|
addcrosslist => 'checkbox', |
|
autoadds => 'radio', |
|
autodrops => 'radio', |
|
); |
|
if ($env{'form.sectotal'} > 0) { |
|
for (my $i=0; $i<$env{'form.sectotal'}; $i++) { |
|
$extras{'sec_'.$i} = 'checkbox', |
|
$extras{'secnum_'.$i} = 'text', |
|
$extras{'loncapasec_'.$i} = 'checkbox', |
|
} |
|
} |
|
my $crosslisttotal = $env{'form.crosslisttotal'}; |
|
if ($env{'form.addcrosslist'}) { |
|
$crosslisttotal ++; |
|
} |
|
if (!defined($crosslisttotal)) { |
|
$crosslisttotal = 1; |
|
} |
|
if ($crosslisttotal > 0) { |
|
for (my $i=0; $i<$env{'form.crosslisttotal'}; $i++) { |
|
if ($numtitles) { |
|
$extras{'crosslist_'.$i.'_'.$lastitem} = 'text'; |
|
} |
|
if (@codetitles > 0) { |
|
foreach my $item (@codetitles) { |
|
$extras{'crosslist_'.$i.'_'.$item} = 'selectbox'; |
|
} |
|
} |
|
$extras{'crosslist_'.$i} = 'checkbox'; |
|
$extras{'crosslist_'.$i.'_instsec'} = 'text', |
|
$extras{'crosslist_'.$i.'_lcsec'} = 'text', |
|
} |
|
} |
|
my %mergedhash = (%{$elements{'new'}{'enrollment'}},%extras); |
|
%{$elements{'new'}{'enrollment'}} = %mergedhash; |
|
} |
|
my %people; |
|
my $persontotal = $env{'form.persontotal'}; |
|
if ($env{'form.addperson'}) { |
|
$persontotal ++; |
|
} |
|
if ((!defined($persontotal)) || (!$persontotal)) { |
|
$persontotal = 1; |
|
} |
|
for (my $i=0; $i<$persontotal; $i++) { |
|
$people{'person_'.$i.'_uname'} = 'text', |
|
$people{'person_'.$i.'_dom'} = 'selectbox', |
|
$people{'person_'.$i.'_hidedom'} = 'hidden', |
|
$people{'person_'.$i.'_firstname'} = 'text', |
|
$people{'person_'.$i.'_lastname'} = 'text', |
|
$people{'person_'.$i.'_emailaddr'} = 'text', |
|
$people{'person_'.$i.'_role'} = 'selectbox', |
|
$people{'person_'.$i.'_sec'} = 'selectbox', |
|
$people{'person_'.$i.'_newsec'} = 'text', |
|
} |
|
my %personnelhash = (%{$elements{'new'}{'personnel'}},%people); |
|
%{$elements{'new'}{'personnel'}} = %personnelhash; |
|
return %elements; |
|
} |
|
|
|
sub onload_action { |
|
my ($action,$state) = @_; |
|
my %loaditems; |
|
if (($action eq 'new') || ($action eq 'view')) { |
|
$loaditems{'onload'} = 'javascript:setFormElements(document.requestcrs)'; |
|
} |
|
return \%loaditems; |
|
} |
|
|
sub check_can_request { |
sub check_can_request { |
my ($dom,$can_request) = @_; |
my ($dom,$can_request) = @_; |
my $canreq = 0; |
my $canreq = 0; |
if (ref($can_request) eq 'HASH') { |
my ($types,$typename) = &course_types(); |
foreach my $type ('official','unofficial','community') { |
if ((ref($can_request) eq 'HASH') && (ref($types) eq 'ARRAY')) { |
|
foreach my $type (@{$types}) { |
if (&Apache::lonnet::usertools_access($env{'user.name'}, |
if (&Apache::lonnet::usertools_access($env{'user.name'}, |
$env{'user.domain'}, |
$env{'user.domain'}, |
$type,undef,'requestcourses')) { |
$type,undef,'requestcourses')) { |
Line 125 sub check_can_request {
|
Line 455 sub check_can_request {
|
return $canreq; |
return $canreq; |
} |
} |
|
|
|
sub course_types { |
|
my @types = ('official','unofficial','community'); |
|
my %typename = ( |
|
official => 'Official course', |
|
unofficial => 'Unofficial course', |
|
community => 'Community', |
|
); |
|
return (\@types,\%typename); |
|
} |
|
|
|
|
sub print_main_menu { |
sub print_main_menu { |
my ($r,$can_request,$dom) = @_; |
my ($r,$can_request,$states,$dom,$jscript,$loaditems,$crumb) = @_; |
|
my ($types,$typename) = &course_types(); |
my $onchange; |
my $onchange; |
unless ($env{'form.interface'} eq 'textual') { |
unless ($env{'form.interface'} eq 'textual') { |
$onchange = 1; |
$onchange = 1; |
} |
} |
|
|
&Apache::lonhtmlcommon::clear_breadcrumbs(); |
my $nextstate_setter = "\n"; |
|
if (ref($states) eq 'HASH') { |
|
foreach my $key (keys(%{$states})) { |
|
if (ref($states->{$key}) eq 'ARRAY') { |
|
$nextstate_setter .= |
|
" if (actionchoice == '$key') { |
|
nextstate = '".$states->{$key}[1]."'; |
|
} |
|
"; |
|
} |
|
} |
|
} |
|
|
my $js = <<END; |
my $js = <<"END"; |
<script type="text/javascript"> |
|
|
|
function nextPage(formname,nextstate) { |
function nextPage(formname) { |
if (check_can_request() == true) { |
var crschoice = document.requestcrs.crstype.value; |
|
var actionchoice = document.requestcrs.action.value; |
|
if (check_can_request(crschoice,actionchoice) == true) { |
|
if ((actionchoice == 'new') && (crschoice == 'official')) { |
|
nextstate = 'codepick'; |
|
} else { |
|
$nextstate_setter |
|
} |
formname.state.value= nextstate; |
formname.state.value= nextstate; |
formname.submit(); |
formname.submit(); |
} |
} |
return; |
return; |
} |
} |
|
|
function backPage(formname,prevstate) { |
function check_can_request(crschoice,actionchoice) { |
formname.state.value = prevstate; |
|
formname.submit(); |
|
} |
|
|
|
function check_can_request() { |
|
var official = ''; |
var official = ''; |
var unofficial = ''; |
var unofficial = ''; |
var community = ''; |
var community = ''; |
Line 168 END
|
Line 522 END
|
all => 'You must choose a specific course type when making a new course request.\\nAll types is not allowed.', |
all => 'You must choose a specific course type when making a new course request.\\nAll types is not allowed.', |
); |
); |
$js .= <<END; |
$js .= <<END; |
var crschoice = document.requestform.crstype.value; |
|
if (crschoice == 'official') { |
if (crschoice == 'official') { |
if (official != 1) { |
if (official != 1) { |
alert("$lt{'official'}"); |
alert("$lt{'official'}"); |
Line 187 END
|
Line 540 END
|
return false; |
return false; |
} |
} |
} else { |
} else { |
var actionchoice = document.requestform.action.value; |
|
if (actionchoice == 'new') { |
if (actionchoice == 'new') { |
alert("$lt{'all'}"); |
alert("$lt{'all'}"); |
return false; |
return false; |
Line 197 END
|
Line 549 END
|
} |
} |
return true; |
return true; |
} |
} |
</script> |
|
|
|
END |
END |
|
|
my $formname = 'requestform'; |
$r->print(&header('Course Requests',$js.$jscript,$loaditems).$crumb. |
$r->print(&Apache::loncommon::start_page('Course Requests',$js). |
'<div>'. |
'<p><div>'. |
|
'<form name="domforcourse" method="post" action="/adm/requestcourse">'. |
'<form name="domforcourse" method="post" action="/adm/requestcourse">'. |
&Apache::lonhtmlcommon::start_pick_box(). |
&Apache::lonhtmlcommon::start_pick_box(). |
&Apache::lonhtmlcommon::row_title('Domain'). |
&Apache::lonhtmlcommon::row_title('Course Domain'). |
&Apache::loncommon::select_dom_form($dom,'showdom','',1,$onchange)); |
&Apache::loncommon::select_dom_form($dom,'showdom','',1,$onchange)); |
if (!$onchange) { |
if (!$onchange) { |
$r->print(' <input type="submit" name="godom" value="'. |
$r->print(' <input type="submit" name="godom" value="'. |
Line 215 END
|
Line 565 END
|
$r->print(&Apache::lonhtmlcommon::row_closure(1). |
$r->print(&Apache::lonhtmlcommon::row_closure(1). |
&Apache::lonhtmlcommon::end_pick_box().'</form></div>'); |
&Apache::lonhtmlcommon::end_pick_box().'</form></div>'); |
|
|
my $formname = 'requestform'; |
my $formname = 'requestcrs'; |
my $next = 'codepick'; |
|
my $nexttext = &mt('Next'); |
my $nexttext = &mt('Next'); |
$r->print('<div><form name="'.$formname.'" method="post" action="/adm/requestcourse">'. |
$r->print( |
|
'<div><form name="'.$formname.'" method="post" action="/adm/requestcourse">'. |
&Apache::lonhtmlcommon::start_pick_box(). |
&Apache::lonhtmlcommon::start_pick_box(). |
&Apache::lonhtmlcommon::row_title('Action').' |
&Apache::lonhtmlcommon::row_title('Action').' |
<input type="hidden" name="showdom" value="'.$dom.'" /> |
<input type="hidden" name="showdom" value="'.$dom.'" /> |
<select size="1" name="action" > |
<select size="1" name="action" > |
<option value="new">'.&mt('New course request').'</option> |
<option value="new">'.&mt('New request').'</option> |
<option value="view">'.&mt('View/Modify/Cancel pending requests').'</option> |
<option value="view">'.&mt('View/Modify/Cancel pending requests').'</option> |
<option value="log">'.&mt('View request history').'</option> |
<option value="log">'.&mt('View request history').'</option> |
</select>'. |
</select>'. |
&Apache::lonhtmlcommon::row_closure(). |
&Apache::lonhtmlcommon::row_closure(). |
&Apache::lonhtmlcommon::row_title('Course Type').' |
&Apache::lonhtmlcommon::row_title('Course Type').' |
<select size="1" name="crstype"> |
<select size="1" name="crstype"> |
<option value="any">'.&mt('All types').'</option> |
<option value="any">'.&mt('All types').'</option>'); |
<option value="official">'.&mt('Official course').'</option> |
if ((ref($types) eq 'ARRAY') && (ref($typename) eq 'HASH')) { |
<option value="unofficial">'.&mt('Unofficial course').'</option> |
foreach my $type (@{$types}) { |
<option value="community">'.&mt('Community').'</option> |
my $selected = ''; |
</select> |
if ($type eq 'official') { |
|
$selected = ' selected="selected"'; |
|
} |
|
$r->print('<option value="'.$type.'"'.$selected.'>'.$typename->{$type}. |
|
'</option>'."\n"); |
|
} |
|
} |
|
$r->print('</select> |
<input type="hidden" name="state" value="crstype" />'. |
<input type="hidden" name="state" value="crstype" />'. |
&Apache::lonhtmlcommon::row_closure(1). |
&Apache::lonhtmlcommon::row_closure(1). |
&Apache::lonhtmlcommon::end_pick_box().'<br /> |
&Apache::lonhtmlcommon::end_pick_box().'<br /> |
<input type="button" name="next" value="'.$nexttext.'" onclick="javascript:nextPage(document.'.$formname.','."'".$next."'".')" /> |
<input type="button" name="next" value="'.$nexttext.'" onclick="javascript:nextPage(document.'.$formname.')" /> |
</form></div>'); |
</form></div>'); |
$r->print(&Apache::loncommon::end_page()); |
$r->print(&Apache::loncommon::end_page()); |
return; |
return; |
} |
} |
|
|
sub request_administration { |
sub request_administration { |
my ($r,$action,$state,$dom) = @_; |
my ($r,$action,$state,$page,$states,$dom,$jscript,$loaditems,$crumb) = @_; |
if ($action eq 'new') { |
my $js; |
my $js = <<END; |
if (($action eq 'new') || (($action eq 'view') && ($state eq 'pick_request'))) { |
<script type="text/javascript"> |
$js = <<END; |
|
|
function nextPage(formname,nextstate) { |
function nextPage(formname,nextstate) { |
formname.state.value= nextstate; |
formname.state.value= nextstate; |
formname.submit(); |
formname.submit(); |
} |
} |
|
|
|
END |
|
} |
|
if (($action eq 'new') || ($action eq 'view')) { |
|
$js .= <<END; |
|
|
function backPage(formname,prevstate) { |
function backPage(formname,prevstate) { |
formname.state.value = prevstate; |
formname.state.value = prevstate; |
formname.submit(); |
formname.submit(); |
} |
} |
|
|
</script> |
|
|
|
END |
END |
|
} |
|
if ($action eq 'new') { |
|
my $jsextra; |
unless (($state eq 'review') || ($state eq 'process')) { |
unless (($state eq 'review') || ($state eq 'process')) { |
$js .= "\n".&Apache::loncommon::coursebrowser_javascript($dom); |
$jsextra = "\n".&Apache::loncommon::coursebrowser_javascript($dom); |
} |
} |
my $start_page = |
$r->print(&header('Request a course',$js.$jscript,$loaditems,$jsextra).$crumb); |
&Apache::loncommon::start_page('Request a course',$js); |
&print_request_form($r,$action,$state,$page,$states,$dom); |
$r->print($start_page); |
} elsif ($action eq 'view') { |
if ($state eq 'review') { |
my $jsextra; |
&print_review($r,$state,$dom); |
my $formname = 'requestcrs'; |
} elsif ($state eq 'process') { |
my $prev = $states->{$action}[$page-1]; |
&print_request_outcome($r,$state,$dom); |
my $next = $states->{$action}[$page+1]; |
} else { |
if ($state eq 'pick_request') { |
&print_request_form($r,$state,$dom); |
$next = $states->{$action}[$page+1]; |
|
$jsextra = &viewrequest_javascript($formname,$next); |
|
} elsif ($state eq 'details') { |
|
$jsextra = &viewdetails_javascript($formname); |
|
|
|
} elsif ($state eq 'cancel') { |
|
$jsextra = &viewcancel_javascript($formname); |
|
} |
|
$r->print(&header('Manage course requests',$js.$jscript.$jsextra,$loaditems). |
|
$crumb); |
|
my $form = '<form method="post" name="'.$formname.'" action="/adm/requestcourse" />'; |
|
if ($state eq 'pick_request') { |
|
$r->print('<h3>'.&mt('Pending course requests').'</h3><div>'."\n".$form."\n". |
|
&print_request_status($dom).'</form>'); |
|
} elsif ($state eq 'details') { |
|
my (@codetitles,%cat_titles,%cat_order,@code_order,$instcode,$code_chk); |
|
my $origcnum = $env{'form.cnum'}; |
|
if ($origcnum eq '') { |
|
$origcnum = $env{'form.origcnum'}; |
|
} |
|
if ($env{'form.crstype'} eq 'official') { |
|
&Apache::lonnet::auto_possible_instcodes($dom,\@codetitles,\%cat_titles, |
|
\%cat_order,\@code_order); |
|
} |
|
$r->print('<h3>'.&mt('Course Request Details').'</h3><div>'."\n".$form."\n". |
|
&print_review($formname,$dom,\@codetitles,\%cat_titles,\%cat_order, |
|
\@code_order)."\n". |
|
'<input name="origcnum" value="'.$origcnum.'" type="hidden" />'."\n"); |
|
my @excluded = &get_excluded_elements($dom,$states,'new','review'); |
|
push(@excluded,'origcnum'); |
|
$r->print(&Apache::lonhtmlcommon::echo_form_input(\@excluded).'</div>'); |
|
my $other = 'modify'; |
|
my %navtxt = &Apache::lonlocal::texthash ( |
|
prev => 'Back', |
|
other => 'Modify Request', |
|
next => 'Cancel Request', |
|
); |
|
&display_navbuttons($r,$formname,$prev,$navtxt{'prev'},$next,$navtxt{'next'}, |
|
$state,$other,$navtxt{'other'}); |
|
$r->print('</form>'); |
|
} elsif ($state eq 'cancel') { |
|
my ($result,$output) = &print_cancel_request($dom,$env{'form.origcnum'}); |
|
$r->print('<h3>'.&mt('Cancel course request').'</h3><div>'."\n".$form."\n". |
|
$output); |
|
my @excluded = &get_excluded_elements($dom,$states,'view','cancel'); |
|
$r->print(&Apache::lonhtmlcommon::echo_form_input(\@excluded).'</div>'); |
|
my %navtxt = &Apache::lonlocal::texthash ( |
|
prev => 'Back', |
|
next => 'Confirm Cancellation', |
|
); |
|
if ($result eq 'ok') { |
|
&display_navbuttons($r,$formname,$prev,$navtxt{'prev'},$next, |
|
$navtxt{'next'},$state); |
|
} else { |
|
&display_navbuttons($r,$formname,$prev,$navtxt{'prev'},undef,'',$state); |
|
} |
|
$r->print('</form>'); |
|
} elsif ($state eq 'removal') { |
|
my $cnum = $env{'form.origcnum'}; |
|
my $statuskey = 'status:'.$dom.':'.$cnum; |
|
my %userreqhash = &Apache::lonnet::get('courserequests',[$statuskey], |
|
$env{'user.domain'},$env{'user.name'}); |
|
my $currstatus = $userreqhash{$statuskey}; |
|
my ($result,$error); |
|
if (($currstatus eq 'approval') || ($currstatus eq 'pending')) { |
|
my %status = ( |
|
$statuskey => 'cancelled', |
|
); |
|
my $statusresult = &Apache::lonnet::put('courserequests',\%status); |
|
if ($statusresult eq 'ok') { |
|
my $delresult = |
|
&Apache::lonnet::del_dom('courserequestqueue', |
|
[$cnum.'_'.$currstatus],$dom); |
|
if ($delresult eq 'ok') { |
|
$result = 'ok'; |
|
} else { |
|
$error = &mt('An error occurred when updating the pending requests queue: [_1]',$delresult); |
|
} |
|
} else { |
|
$error = &mt("An error occurred when updating the status of this request in the requestor's records: [_1]",$statusresult); |
|
} |
|
} else { |
|
$error = &mt('The current status of this request could not be verified as pending approval/institutional action.'); |
|
} |
|
$r->print('<h3>'.&mt('Request Cancellation').'</h3><div>'."\n".$form."\n". |
|
'<input type="hidden" name="state" value="'.$state.'" />'."\n". |
|
'<input type="hidden" name="action" value="'.$action.'" />'."\n". |
|
'<input type="hidden" name="showdom" value="'.$dom.'" />'."\n". |
|
'<input type="hidden" name="orignum" value="'.$cnum.'" />'."\n"); |
|
if ($result eq 'ok') { |
|
$r->print(&mt('Your course request has been cancelled.')); |
|
} else { |
|
$r->print('<div class="LC_error">'. |
|
&mt('The request cancellation process was not complete.'). |
|
'<br />'.$error.'</div>'); |
|
} |
|
$r->print('</form>'); |
} |
} |
$r->print(&Apache::loncommon::end_page()); |
|
} elsif ($action eq 'log') { |
} elsif ($action eq 'log') { |
$r->print(&coursereq_log()); |
$r->print(&coursereq_log('View request log',$jscript,$loaditems).$crumb); |
} |
} |
|
$r->print(&Apache::loncommon::end_page()); |
return; |
return; |
} |
} |
|
|
sub print_request_form { |
sub print_request_form { |
my ($r,$state,$dom) = @_; |
my ($r,$action,$state,$page,$states,$dom) = @_; |
my $formname = 'requestcrs'; |
my $formname = 'requestcrs'; |
my ($next,$prev,$message,$output,$codepicker); |
my ($next,$prev,$message,$output,$codepicker,$crstype); |
my $prev = 'crstype'; |
$prev = $states->{$action}[$page-1]; |
|
$next = $states->{$action}[$page+1]; |
|
my %navtxt = &Apache::lonlocal::texthash ( |
|
prev => 'Back', |
|
next => 'Next', |
|
); |
|
$crstype = $env{'form.crstype'}; |
$r->print('<form name="'.$formname.'" method="post" action="/adm/requestcourse">'); |
$r->print('<form name="'.$formname.'" method="post" action="/adm/requestcourse">'); |
my $crstype = $env{'form.crstype'}; |
my (@codetitles,%cat_titles,%cat_order,@code_order,$instcode,$code_chk); |
my $xlist = 0; |
|
if ($crstype eq 'official') { |
if ($crstype eq 'official') { |
my (@codetitles,%cat_titles,%cat_order,@code_order); |
if ($env{'form.instcode'} ne '') { |
&Apache::lonnet::auto_possible_instcodes($dom,\@codetitles,\%cat_titles, |
$instcode = $env{'form.instcode'}; |
\%cat_order,\@code_order); |
} |
if ($state eq 'courseinfo') { |
} |
my $instcode; |
if ($prev eq 'codepick') { |
if (@code_order > 0) { |
if ($crstype eq 'official') { |
|
&Apache::lonnet::auto_possible_instcodes($dom,\@codetitles,\%cat_titles, |
|
\%cat_order,\@code_order); |
|
} |
|
if (@code_order > 0) { |
|
my $message; |
|
if ($instcode eq '') { |
foreach my $item (@code_order) { |
foreach my $item (@code_order) { |
$instcode .= $env{'form.instcode_'.$item}; |
$instcode .= $env{'form.instcode_'.$item}; |
} |
} |
|
$r->print('<input type="hidden" name="instcode" value="'.$instcode.'" />'."\n"); |
} |
} |
if ($instcode ne '') { |
if ($instcode ne '') { |
my $code_chk = &Apache::lonnet::auto_validate_instcode('',$dom,$instcode); |
$code_chk = &Apache::lonnet::auto_validate_instcode('',$dom,$instcode); |
if ($code_chk eq 'ok') { |
if ($code_chk eq 'ok') { |
$message = '<div class="LC_info">'. |
$message = '<div class="LC_info">'. |
&mt('The chosen course category [_1] is valid.','<b>'. |
&mt('The chosen course category [_1] is valid.','<b>'. |
$instcode.'</b>').'</div>'; |
$instcode.'</b>').'</div>'; |
my @sections = &Apache::lonnet::auto_get_sections(undef,$dom, |
|
$instcode); |
|
if (@sections) { |
|
$output .= &inst_section_selector(\@sections); |
|
} |
|
$output .= &coursecode_form($dom,'crosslist',\@codetitles, |
|
\%cat_titles,\%cat_order,$xlist); |
|
$prev = 'codepick'; |
|
} else { |
} else { |
$message = '<div class="LC_warning">'. |
$message = '<div class="LC_warning">'. |
&mt('No course was found matching your choice of institutional course category.'); |
&mt('No course was found matching your choice of institutional course category.'); |
Line 324 sub print_request_form {
|
Line 787 sub print_request_form {
|
} |
} |
$message .= '</div>'; |
$message .= '</div>'; |
} |
} |
|
} else { |
|
$message = '<div class="LC_warning">'. |
|
&mt('No course was found matching your choice of institutional course category.'); |
} |
} |
|
unless ($code_chk eq 'ok') { |
|
$prev = 'crstype'; |
|
} |
|
$r->print($message); |
|
} |
|
} |
|
if ($prev eq 'crstype') { |
|
if ($crstype eq 'official') { |
|
&Apache::lonnet::auto_possible_instcodes($dom,\@codetitles,\%cat_titles, |
|
\%cat_order,\@code_order); |
} |
} |
unless ($prev eq 'codepick') { |
if (@code_order > 0) { |
$codepicker = &coursecode_form($dom,'instcode',\@codetitles, |
$codepicker = &coursecode_form($dom,'instcode',\@codetitles, |
\%cat_titles,\%cat_order); |
\%cat_titles,\%cat_order); |
|
if ($codepicker) { |
|
$r->print('<div>'.&Apache::lonhtmlcommon::start_pick_box().$codepicker. |
|
&Apache::lonhtmlcommon::end_pick_box().'</div>'); |
|
} else { |
|
$r->print(&courseinfo_form($dom,$formname,$crstype,$next)); |
|
} |
|
} else { |
|
$r->print(&courseinfo_form($dom,$formname,$crstype,$next)); |
} |
} |
|
} elsif ($prev eq 'codepick') { |
|
$r->print(&courseinfo_form($dom,$formname,$crstype,$next)); |
|
} elsif ($state eq 'enrollment') { |
|
if ($crstype eq 'official') { |
|
&Apache::lonnet::auto_possible_instcodes($dom,\@codetitles,\%cat_titles, |
|
\%cat_order,\@code_order); |
|
} |
|
$r->print(&print_enrollment_menu($formname,$instcode,$dom,\@codetitles, |
|
\%cat_titles,\%cat_order,\@code_order)); |
|
} elsif ($state eq 'personnel') { |
|
$r->print(&print_personnel_menu($dom,$formname,$crstype)); |
|
} elsif ($state eq 'review') { |
|
my $cnum; |
|
if ($env{'form.origcnum'} =~ /^($match_courseid)$/) { |
|
$cnum = $env{'form.origcnum'}; |
|
} else { |
|
$cnum = &Apache::lonnet::generate_coursenum($dom); |
|
} |
|
&Apache::lonnet::auto_possible_instcodes($dom,\@codetitles,\%cat_titles, |
|
\%cat_order,\@code_order); |
|
$r->print('<p>'.&mt('Review the details of the course request before submission.').'</p>'. |
|
&print_review($formname,$dom,\@codetitles,\%cat_titles,\%cat_order, |
|
\@code_order). |
|
'<input type="hidden" name="cnum" value="'.$cnum.'" />'); |
|
$navtxt{'next'} = &mt('Submit course request'); |
|
} elsif ($state eq 'process') { |
|
if ($crstype eq 'official') { |
|
&Apache::lonnet::auto_possible_instcodes($dom,\@codetitles,\%cat_titles, |
|
\%cat_order,\@code_order); |
|
} |
|
my $result = &print_request_outcome($dom,\@codetitles,\@code_order); |
|
$r->print($result); |
} |
} |
$r->print($message.'<div>'.&Apache::lonhtmlcommon::start_pick_box()); |
my @excluded = &get_excluded_elements($dom,$states,$action,$state); |
if ($output ne '') { |
$r->print(&Apache::lonhtmlcommon::echo_form_input(\@excluded).'</form>'); |
$r->print($output); |
&display_navbuttons($r,$formname,$prev,$navtxt{'prev'},$next,$navtxt{'next'},$state); |
} |
|
if ($codepicker) { |
|
$r->print($codepicker); |
|
$state = 'codepick'; |
|
$next = 'courseinfo'; |
|
} else { |
|
$r->print(&courseinfo_form()); |
|
$state = 'courseinfo'; |
|
$next = 'review'; |
|
} |
|
$r->print(&Apache::lonhtmlcommon::end_pick_box().'</div>'."\n"); |
|
unless ($codepicker) { |
|
$r->print('<div>'.&clone_form($dom,$formname,$crstype).'</div>'."\n"); |
|
} |
|
$r->print('<input type="hidden" name="state" value="'.$state.'" />'. |
|
&Apache::lonhtmlcommon::echo_form_input(['state']).'</form>'); |
|
&display_navbuttons($r,$formname,$prev,'Previous',$next,'Next'); |
|
return; |
return; |
} |
} |
|
|
|
sub get_excluded_elements { |
|
my ($dom,$states,$action,$state) = @_; |
|
my @excluded = ('counter'); |
|
my %elements = &form_elements($dom); |
|
if (ref($states) eq 'HASH') { |
|
if (ref($states->{$action}) eq 'ARRAY') { |
|
my @items = @{$states->{$action}}; |
|
my $numitems = scalar(@items); |
|
if ($numitems) { |
|
for (my $i=$numitems-1; $i>=0; $i--) { |
|
if (ref($elements{$action}) eq 'HASH') { |
|
if (ref($elements{$action}{$items[$i]}) eq 'HASH') { |
|
foreach my $key (keys(%{$elements{$action}{$items[$i]}})) { |
|
push(@excluded,$key); |
|
} |
|
} |
|
} |
|
last if ($items[$i] eq $state); |
|
} |
|
} |
|
} |
|
} |
|
if (grep(/^instcode_/,@excluded)) { |
|
push(@excluded,'instcode'); |
|
} |
|
return @excluded; |
|
} |
|
|
|
sub print_enrollment_menu { |
|
my ($formname,$instcode,$dom,$codetitles,$cat_titles,$cat_order,$code_order) =@_; |
|
my ($sections,$autoenroll,$access_dates); |
|
my $starttime = time; |
|
my $endtime = time+(6*30*24*60*60); # 6 months from now, approx |
|
|
|
my %accesstitles = ( |
|
'start' => 'Default start access', |
|
'end' => 'Default end access', |
|
); |
|
my %enrolltitles = ( |
|
'start' => 'Start auto-enrollment', |
|
'end' => 'End auto-enrollment', |
|
); |
|
if ($env{'form.crstype'} eq 'official') { |
|
if (&Apache::lonnet::auto_run('',$dom)) { |
|
my ($section_form,$crosslist_form,$autoenroll_form); |
|
$section_form = &inst_section_selector($dom,$instcode); |
|
my $crosslisttotal = $env{'form.crosslisttotal'}; |
|
if (!defined($crosslisttotal)) { |
|
$crosslisttotal = 1; |
|
} |
|
if ($env{'form.addcrosslist'}) { |
|
$crosslisttotal ++; |
|
} |
|
for (my $i=0; $i<$crosslisttotal; $i++) { |
|
$crosslist_form .= &coursecode_form($dom,'crosslist',$codetitles, |
|
$cat_titles,$cat_order,$i); |
|
} |
|
if ($crosslist_form) { |
|
$crosslist_form .= |
|
&Apache::lonhtmlcommon::row_title(&mt('Add another?')). |
|
'<input name="crosslisttotal" type="hidden" value="'.$crosslisttotal.'" />'. |
|
'<input name="addcrosslist" type="checkbox" value="'.$crosslisttotal.'"'. |
|
' onclick="javascript:nextPage(document.'.$formname.",'".$env{'form.state'}. |
|
"'".');" />'.&mt('Add?').&Apache::lonhtmlcommon::row_closure(1); |
|
} |
|
if ($section_form || $crosslist_form) { |
|
$sections = '<div>'.&Apache::lonhtmlcommon::start_pick_box(). |
|
$section_form.$crosslist_form. |
|
&Apache::lonhtmlcommon::end_pick_box().'</div>'."\n"; |
|
} |
|
$autoenroll_form = |
|
&Apache::lonhtmlcommon::row_title(&mt('Add registered students automatically')). |
|
'<span class="LC_nobreak"><label>'. |
|
'<input type="radio" name="autoadds" value="1">'. |
|
&mt('Yes').'</label>'.(' 'x3).'<label>'. |
|
'<input type="radio" name="autoadds" value="0" checked="checked">'. |
|
&mt('No').'</label></span>'. |
|
&Apache::lonhtmlcommon::row_closure(). |
|
&Apache::lonhtmlcommon::row_title(&mt('Drop unregistered students automatically')). |
|
'<span class="LC_nobreak"><label>'. |
|
'<input type="radio" name="autodrops" value="1">'. |
|
&mt('Yes').'</label>'.(' 'x3).'<label>'. |
|
'<input type="radio" name="autodrops" value="0" checked="checked">'. |
|
&mt('No').'</label></span>'. |
|
&Apache::lonhtmlcommon::row_closure(). |
|
&date_setting_table($starttime,$endtime,$formname,'enroll',%enrolltitles); |
|
if ($autoenroll_form) { |
|
$autoenroll = '<div>'.&Apache::lonhtmlcommon::start_pick_box(). |
|
$autoenroll_form. |
|
&Apache::lonhtmlcommon::end_pick_box().'</div>'."\n"; |
|
} |
|
} |
|
} |
|
my $access_dates_form = |
|
&date_setting_table($starttime,$endtime,$formname,'access',%accesstitles); |
|
if ($access_dates_form) { |
|
$access_dates = '<div>'.&Apache::lonhtmlcommon::start_pick_box(). |
|
$access_dates_form. |
|
&Apache::lonhtmlcommon::end_pick_box().'</div>'."\n"; |
|
} |
|
return $sections.$autoenroll.$access_dates; |
|
} |
|
|
sub inst_section_selector { |
sub inst_section_selector { |
my ($sections,$selected) = @_; |
my ($dom,$instcode) = @_; |
|
my @sections = &Apache::lonnet::auto_get_sections(undef,$dom,$instcode); |
|
my $sectotal = scalar(@sections); |
my $output; |
my $output; |
if (ref($sections) eq 'ARRAY') { |
if ($sectotal) { |
$output = &Apache::lonhtmlcommon::row_title('Sections'). |
$output .= &Apache::lonhtmlcommon::row_title('Sections'). |
&Apache::loncommon::start_data_table(). |
&Apache::loncommon::start_data_table(). |
&Apache::loncommon::start_data_table_row(). |
&Apache::loncommon::start_data_table_row(). |
'<th>'.&mt('Institutional Section').'</th>'. |
'<th>'.&mt('Include?').'<input type="hidden" name="sectotal" '. |
'<th>'.&mt('LON-CAPA section ID').'</th>'. |
'value="'.$sectotal.'"</th>'. |
'<th>'.&mt('Include in course?').'</th>'. |
'<th>'.&mt('Institutional Section').'</th>'. |
&Apache::loncommon::end_data_table_row(); |
'<th>'.&mt('LON-CAPA section').'</th>'. |
for (my $i=0; $i<@{$sections}; $i++) { |
&Apache::loncommon::end_data_table_row(); |
|
for (my $i=0; $i<@sections; $i++) { |
my $colflag = $i%2; |
my $colflag = $i%2; |
$output .= &Apache::loncommon::start_data_table_row(). |
$output .= &Apache::loncommon::start_data_table_row(). |
'<td>'.$sections->[$i]. |
'<td><input type="checkbox" name="sec_'.$i. |
|
'" checked="checked" /></td>'. |
|
'<td>'.$sections[$i]. |
'<input type="hidden" name="secnum_'.$i.'" value="'. |
'<input type="hidden" name="secnum_'.$i.'" value="'. |
$sections->[$i].'" /></td>'. |
$sections[$i].'" /></td>'. |
'<td><input type="text" size="10" name="loncapasec_'.$i. |
'<td><input type="text" size="10" name="loncapasec_'.$i. |
'" value="'.$sections->[$i].'" /></td>'. |
'" value="'.$sections[$i].'" /></td>'. |
'<td><input type="checkbox" name="sec_'.$i. |
|
'" checked="checked" /></td>'. |
|
&Apache::loncommon::end_data_table_row(); |
&Apache::loncommon::end_data_table_row(); |
} |
} |
$output .= &Apache::loncommon::end_data_table(); |
$output .= &Apache::loncommon::end_data_table(). |
|
&Apache::lonhtmlcommon::row_closure(); |
} |
} |
return $output; |
return $output; |
} |
} |
|
|
|
sub date_setting_table { |
|
my ($starttime,$endtime,$formname,$prefix,%datetitles) = @_; |
|
my ($perpetual,$table); |
|
my $startform = &Apache::lonhtmlcommon::date_setter($formname,$prefix.'start', |
|
$starttime,'','','',1,'','','',1); |
|
my $endform = &Apache::lonhtmlcommon::date_setter($formname,$prefix.'end', |
|
$endtime,'','','',1,'','','',1); |
|
if ($prefix eq 'access') { |
|
$perpetual = ' <span class="LC_nobreak"><label>'. |
|
'<input type="checkbox" name="no_end_date" />'. |
|
&mt('No end date').'</label></span>'; |
|
} |
|
$table = &Apache::lonhtmlcommon::row_title($datetitles{'start'}). |
|
$startform. |
|
&Apache::lonhtmlcommon::row_closure(). |
|
&Apache::lonhtmlcommon::row_title($datetitles{'end'}). |
|
$endform.$perpetual. |
|
&Apache::lonhtmlcommon::row_closure(1); |
|
return $table; |
|
} |
|
|
|
sub print_personnel_menu { |
|
my ($dom,$formname,$crstype) = @_; |
|
my $output = '<div>'.&Apache::lonhtmlcommon::start_pick_box(); |
|
my $persontotal = $env{'form.persontotal'}; |
|
if ((!defined($persontotal)) || (!$persontotal)) { |
|
$persontotal = 1; |
|
} |
|
if ($env{'form.addperson'}) { |
|
$persontotal ++; |
|
} |
|
my $userlinktxt = &mt('Set User'); |
|
my @items = ('uname','dom','lastname','firstname','emailaddr','hidedom'); |
|
|
|
my $roleoptions; |
|
my @roles = &Apache::lonuserutils::roles_by_context('course'); |
|
my $type = 'Course'; |
|
if ($crstype eq 'community') { |
|
$type = 'Community'; |
|
} |
|
foreach my $role (@roles) { |
|
my $plrole=&Apache::lonnet::plaintext($role,$type); |
|
$roleoptions .= ' <option value="'.$role.'">'.$plrole.'</option>'."\n"; |
|
} |
|
my %customroles=&Apache::lonuserutils::my_custom_roles(); |
|
if (keys(%customroles) > 0) { |
|
foreach my $cust (sort(keys(%customroles))) { |
|
my $custrole='cr_cr_'.$env{'user.domain'}. |
|
'_'.$env{'user.name'}.'_'.$cust; |
|
$roleoptions .= ' <option value="'.$custrole.'">'.$cust.'</option>'."\n"; |
|
} |
|
} |
|
|
|
my @currsecs; |
|
if ($env{'form.sectotal'}) { |
|
for (my $i=0; $i<$env{'form.sectotal'}; $i++) { |
|
if (defined($env{'form.loncapasec_'.$i})) { |
|
my $lcsec = $env{'form.loncapasec_'.$i}; |
|
unless (grep(/^\Q$lcsec\E$/,@currsecs)) { |
|
push(@currsecs,$lcsec); |
|
} |
|
} |
|
} |
|
} |
|
|
|
my ($existtitle,$existops,$existmult,$newtitle,$seccolspan); |
|
if (@currsecs) { |
|
my $existsize = scalar(@currsecs); |
|
if ($existsize > 3) { |
|
$existsize = 3; |
|
} |
|
if ($existsize > 1) { |
|
$existmult = ' multiple="multiple" size="'.$existsize.'" '; |
|
} |
|
@currsecs = sort { $a <=> $b } (@currsecs); |
|
$existtitle = &mt('Official').': '; |
|
$existops = '<option value="">'.&mt('None').'</option>'; |
|
foreach my $sec (@currsecs) { |
|
$existops .= '<option value="'.$sec.'">'.$sec.'</option>'."\n"; |
|
} |
|
$seccolspan = ' colspan="2"'; |
|
$newtitle = &mt('Other').': '; |
|
} |
|
|
|
for (my $i=0; $i<$persontotal; $i++) { |
|
my @linkargs = map { 'person_'.$i.'_'.$_ } (@items); |
|
my $linkargstr = join("','",@linkargs); |
|
my $userlink = &Apache::loncommon::selectuser_link($formname,@linkargs,$dom,$userlinktxt); |
|
my $uname_form = '<input type="text" name="person_'.$i.'_uname" value=""'. |
|
' onFocus="this.blur();'. |
|
'openuserbrowser('."'$formname','$linkargstr','$dom'".');" />'; |
|
my $onchange = 'javascript:fix_domain('."'$formname','person_".$i."_dom',". |
|
"'person_".$i."_hidedom'".');'. |
|
'openuserbrowser('."'$formname','$linkargstr','$dom'".');'; |
|
my $udom_form = &Apache::loncommon::select_dom_form($dom,'person_'.$i.'_dom','', |
|
1,$onchange). |
|
'<input type="hidden" name="person_'.$i.'_hidedom" value="'.$dom.'" />'; |
|
my %form_elems; |
|
foreach my $item (@items) { |
|
next if (($item eq 'dom') || ($item eq 'uname') || ($item eq 'hidedom')); |
|
$form_elems{$item} = '<input type="text" name="person_'.$i.'_'.$item.'" '. |
|
'value="" readonly="readonly" />'; |
|
} |
|
my $roleselector = '<select name="person_'.$i.'_role">'."\n". |
|
$roleoptions.'</select>'; |
|
my $sectionselector; |
|
if (@currsecs) { |
|
$sectionselector = $existtitle.'<select name="person_'.$i.'_sec"'. |
|
$existmult.'>'."\n".$existops.'</select>'.(' ' x3); |
|
} |
|
$sectionselector .= $newtitle. |
|
'<input type="text" name="person_'.$i.'_newsec" size="15" value="" />'."\n"; |
|
$output .= |
|
&Apache::lonhtmlcommon::row_title(&mt('Additional Personnel').'<br />'. |
|
'<span class="LC_nobreak">'.$userlink. |
|
'</span>'). |
|
'<table><tr><td align="center" valign="top">'.&mt('Username').'<br />'.$uname_form.'</td>'."\n". |
|
'<td align="center" valign="top" colspan="2">'.&mt('Domain').'<br />'.$udom_form.'</td></tr><tr>'."\n". |
|
'<td align="center" valign="top">'.&mt('First Name').'<br />'.$form_elems{'firstname'}.'</td>'."\n". |
|
'<td align="center" valign="top">'.&mt('Last Name').'<br />'.$form_elems{'lastname'}.'</td>'."\n". |
|
'<td align="center" valign="top">'.&mt('E-mail').'<br />'.$form_elems{'emailaddr'}.'</td></tr>'."\n". |
|
'<tr><td align="center" valign="top">'.&mt('Role').'<br />'.$roleselector.'</td>'."\n". |
|
'<td'.$seccolspan.' align="center" valign="top">'.&mt('Section(s)').'<br />'.$sectionselector.'</td>'."\n". |
|
'</tr></table>'.&Apache::lonhtmlcommon::row_closure(); |
|
} |
|
$output .= &Apache::lonhtmlcommon::row_title(&mt('Add another?')). |
|
'<input name="persontotal" type="hidden" value="'.$persontotal.'" />'. |
|
'<input name="addperson" type="checkbox" value="'.$persontotal.'"'. |
|
' onclick="javascript:nextPage(document.'.$formname.",'".$env{'form.state'}. |
|
"'".');" />'.&mt('Add?').&Apache::lonhtmlcommon::row_closure(1). |
|
&Apache::lonhtmlcommon::end_pick_box().'</div>'; |
|
return $output; |
|
} |
|
|
sub print_request_status { |
sub print_request_status { |
|
my ($dom) = @_; |
|
my %statusinfo = &Apache::lonnet::dump('courserequests',$env{'user.domain'}, |
|
$env{'user.name'},'^status:'.$dom); |
|
my ($output,$formname,%queue_by_date,%typenames); |
|
if ($env{'form.crstype'} eq 'any') { |
|
%typenames = &Apache::lonlocal::texthash ( |
|
official => 'Official course', |
|
unofficial => 'Unofficial course', |
|
community => 'Community', |
|
); |
|
} |
|
foreach my $key (keys(%statusinfo)) { |
|
if (($statusinfo{$key} eq 'approval') || ($statusinfo{$key} eq 'pending')) { |
|
(undef,my($cdom,$cnum)) = split(':',$key); |
|
next if ($cdom ne $dom); |
|
my $requestkey = $cdom.'_'.$cnum; |
|
if ($requestkey =~ /^($match_domain)_($match_courseid)$/) { |
|
my %history = &Apache::lonnet::restore($requestkey,'courserequests', |
|
$env{'user.domain'},$env{'user.name'}); |
|
my $entry; |
|
my $timestamp = $history{'reqtime'}; |
|
my $crstype = $history{'crstype'}; |
|
my $disposition = $history{'disposition'}; |
|
next if ((exists($history{'status'})) && ($history{'status'} eq 'created')); |
|
next unless (($env{'form.crstype'} eq 'any') || |
|
($env{'form.crstype'} eq $crstype)); |
|
next unless (($disposition eq 'approval') || |
|
($disposition eq 'pending')); |
|
if (ref($history{'details'}) eq 'HASH') { |
|
$entry = $requestkey.':'.$crstype.':'. |
|
&escape($history{'details'}{'cdescr'}); |
|
if ($crstype eq 'official') { |
|
$entry .= ':'.&escape($history{'details'}{'instcode'}); |
|
} |
|
} |
|
if ($entry ne '') { |
|
if (exists($queue_by_date{$timestamp})) { |
|
if (ref($queue_by_date{$timestamp}) eq 'ARRAY') { |
|
push(@{$queue_by_date{$timestamp}},$entry); |
|
} |
|
} else { |
|
@{$queue_by_date{$timestamp}} = ($entry); |
|
} |
|
} |
|
} |
|
} |
|
} |
|
$formname = 'requestcrs'; |
|
my @sortedtimes = sort {$a <=> $b} (keys(%queue_by_date)); |
|
$output = '<input type="hidden" name="action" value="'.$env{'form.action'}.'" />'."\n". |
|
|
|
'<input type="hidden" name="state" value="'.$env{'form.state'}.'" />'."\n". |
|
'<input type="hidden" name="crstype" value="'.$env{'form.crstype'}.'" />'."\n". |
|
'<input type="hidden" name="showdom" value="" />'."\n". |
|
'<input type="hidden" name="cnum" value="" />'."\n"; |
|
if (@sortedtimes > 0) { |
|
$output .= &Apache::loncommon::start_data_table(). |
|
&Apache::loncommon::start_data_table_header_row(). |
|
'<th>'.&mt('Action').'</th>'. |
|
'<th>'.&mt('Course Description').'</th>'. |
|
'<th>'.&mt('Domain').'</th>'; |
|
if ($env{'form.crstype'} eq 'any') { |
|
$output .= '<th>'.&mt('Type').'</th>'; |
|
} |
|
if (($env{'form.crstype'} eq 'any') || ($env{'form.crstype'} eq 'official')) { |
|
$output .= '<th>'.&mt('Institutional Code').'</th>'; |
|
} |
|
$output .= '<th>'.&mt('Date requested').'</th>'. |
|
&Apache::loncommon::end_data_table_header_row(); |
|
my $count = 0; |
|
foreach my $item (@sortedtimes) { |
|
my $showtime = &Apache::lonlocal::locallocaltime($item); |
|
if (ref($queue_by_date{$item}) eq 'ARRAY') { |
|
foreach my $request (sort(@{$queue_by_date{$item}})) { |
|
my ($key,$type,$desc,$instcode) = split(':',$request); |
|
my ($cdom,$cnum) = split('_',$key); |
|
$output .= &Apache::loncommon::start_data_table_row(). |
|
'<td><input type="button" value="'.&mt('Select').'" onclick="javascript:chooseRequest('."'$cdom','$cnum'".')" /></td>'. |
|
'<td>'.&unescape($desc).'</td>'. |
|
'<td>'.$cdom.'</td>'; |
|
if ($env{'form.crstype'} eq 'any') { |
|
my $typename = $typenames{$type}; |
|
if ($typename eq '') { |
|
$typename = &mt('Unknown type'); |
|
} |
|
$output .= '<td>'.$typename.'</td>'; |
|
} |
|
if (($env{'form.crstype'} eq 'any') || |
|
($env{'form.crstype'} eq 'official')) { |
|
my $showinstcode; |
|
if ($type eq 'official') { |
|
$showinstcode = &unescape($instcode); |
|
} else { |
|
$showinstcode = &mt('Not applicable'); |
|
} |
|
$output .= '<td>'.$showinstcode.'</td>'; |
|
} |
|
$output .= '<td>'.$showtime.'</td>'. |
|
&Apache::loncommon::end_data_table_row(); |
|
} |
|
} |
|
} |
|
$output .= &Apache::loncommon::end_data_table(); |
|
} else { |
|
$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>'; |
|
} |
|
$output .= ' |
|
<br /><input type="button" name="prev" value="'.&mt('Back').'" onclick="javascript:backPage(document.'.$formname.",'crstype'".')" /> |
|
</form></div>'; |
|
return $output; |
|
} |
|
|
|
sub print_cancel_request { |
|
my ($dom,$cnum) = @_; |
|
my $requestkey = $dom.'_'.$cnum; |
|
my ($result,$output); |
|
if ($requestkey =~ /^($match_domain)_($match_courseid)$/) { |
|
my %history = &Apache::lonnet::restore($requestkey,'courserequests', |
|
$env{'user.domain'},$env{'user.name'}); |
|
my $timestamp = $history{'reqtime'}; |
|
my $crstype = $history{'crstype'}; |
|
my $status = $history{'status'}; |
|
if (($status eq 'cancelled') || ($status eq 'created')) { |
|
if ($status eq 'cancelled') { |
|
$output = &mt('This request has already been cancelled.'); |
|
} elsif ($status eq 'created') { |
|
$output = &mt('This request has already been processed, and a course created.'); |
|
} |
|
$output = &mt('No further action will be taken'); |
|
} elsif (ref($history{'details'}) eq 'HASH') { |
|
my ($types,$typename) = &course_types(); |
|
my $showtype = $crstype; |
|
if (defined($typename->{$crstype})) { |
|
$showtype = $typename->{$crstype}; |
|
} |
|
$output = '<p>'.&Apache::loncommon::start_data_table(). |
|
&Apache::loncommon::start_data_table_header_row(). |
|
'<th>'.&mt('Description').'</th><th>'.&mt('Requested').'</th>'. |
|
'<th>'.&mt('Type').'</th>'. |
|
&Apache::loncommon::end_data_table_header_row(). |
|
&Apache::loncommon::start_data_table_row(). |
|
'<td>'.$history{details}{'cdescr'}.'</td><td>'. |
|
&Apache::lonlocal::locallocaltime($timestamp).'</td>'. |
|
'<td>'.$showtype.'</td>'. |
|
&Apache::loncommon::end_data_table_row(). |
|
&Apache::loncommon::end_data_table(). |
|
'<br /><div class="LC_warning">'. |
|
&mt('Cancelling the request will remove it from the queue of pending course requests').'</div>'; |
|
$result = 'ok'; |
|
} else { |
|
$output = '<div class="LC_error">'.&mt('No record exists for the course ID').'</div>'; |
|
} |
|
} else { |
|
$output = '<div class="LC_error">'.&mt('Invalid course ID').'</div>'; |
|
} |
|
return ($result,$output); |
|
} |
|
|
|
sub viewrequest_javascript { |
|
my ($formname,$next) = @_; |
|
return <<"ENDJS"; |
|
|
|
function chooseRequest(cdom,cnum) { |
|
document.$formname.showdom.value = cdom; |
|
document.$formname.cnum.value = cnum; |
|
nextPage(document.$formname,'$next'); |
|
} |
|
|
|
ENDJS |
|
} |
|
|
|
sub viewdetails_javascript { |
|
my ($formname) = @_; |
|
return << "ENDJS"; |
|
|
|
function nextPage(formname,nextstate) { |
|
if (nextstate == "modify") { |
|
formname.state.value = "personnel"; |
|
formname.action.value = "new"; |
|
} else { |
|
formname.state.value = nextstate; |
|
} |
|
formname.submit(); |
|
} |
|
|
|
function backPage(formname,prevstate) { |
|
formname.state.value = prevstate; |
|
formname.submit(); |
|
} |
|
|
|
ENDJS |
|
} |
|
|
|
sub viewcancel_javascript { |
|
my $alert = &mt('Are you sure you want to cancel this request?\\n'. |
|
'Your request will be removed.'); |
|
return << "ENDJS"; |
|
function nextPage(formname,nextstate) { |
|
if (confirm('$alert')) { |
|
formname.state.value = nextstate; |
|
formname.submit(); |
|
} |
return; |
return; |
} |
} |
|
|
|
ENDJS |
|
} |
|
|
sub print_request_logs { |
sub print_request_logs { |
|
my ($jscript,$loaditems,$crumb) = @_; |
return; |
return; |
} |
} |
|
|
sub print_review { |
sub print_review { |
my ($r,$state,$dom) = @_; |
my ($formname,$dom,$codetitles,$cat_titles,$cat_order,$code_order) = @_; |
return; |
my ($types,$typename) = &course_types(); |
|
my ($owner,$ownername,$owneremail); |
|
$owner = $env{'user.name'}.':'.$env{'user.domain'}; |
|
$ownername = &Apache::loncommon::plainname($env{'user.name'}, |
|
$env{'user.domain'},'first'); |
|
my %emails = &Apache::loncommon::getemails(); |
|
foreach my $email ('permanentemail','critnotification','notification') { |
|
$owneremail = $emails{$email}; |
|
last if ($owneremail ne ''); |
|
} |
|
my ($inst_headers,$inst_values,$crstypename,$enroll_headers,$enroll_values, |
|
$section_headers,$section_values,$personnel_headers,$personnel_values); |
|
|
|
$crstypename = $env{'form.crstype'}; |
|
if (ref($typename) eq 'HASH') { |
|
unless ($typename->{$env{'form.crstype'}} eq '') { |
|
$crstypename = $typename->{$env{'form.crstype'}}; |
|
} |
|
} |
|
my $category = 'Course'; |
|
if ($env{'form.crstype'} eq 'community') { |
|
$category = 'Community'; |
|
} |
|
|
|
$inst_headers = '<th>'.&mt('Description').'</th><th>'.&mt('Type').'</th>'; |
|
$inst_values = '<td>'.$env{'form.cdescr'}.'</td><td>'.$crstypename.'</td>'; |
|
|
|
my $enrollrow_title = &mt('Default Access Dates').'<br />'. |
|
'('.&Apache::lonnet::plaintext('st',$category).')'; |
|
if ($env{'form.crstype'} eq 'official') { |
|
if ((ref($codetitles) eq 'ARRAY') && (ref($cat_titles) eq 'HASH')) { |
|
foreach my $title (@{$codetitles}) { |
|
if ($env{'form.instcode_'.$title} ne '') { |
|
$inst_headers .= '<th>'.$title.'</th>'; |
|
my $longitem = $env{'form.instcode_'.$title}; |
|
if (ref($cat_titles->{$title}) eq 'HASH') { |
|
if ($cat_titles->{$title}{$env{'form.instcode_'.$title}} ne '') { |
|
$longitem = $cat_titles->{$title}{$env{'form.instcode_'.$title}}; |
|
} |
|
} |
|
$inst_values .= '<td>'.$longitem.'</td>'; |
|
} |
|
} |
|
} |
|
if (&Apache::lonnet::auto_run('',$dom)) { |
|
$enrollrow_title = &mt('Enrollment'); |
|
$enroll_headers = '<th>'.&mt('Automatic Adds').'</th>'. |
|
'<th>'.&mt('Automatic Drops').'</th>'. |
|
'<th>'.&mt('Enrollment Starts').'</th>'. |
|
'<th>'.&mt('Enrollment Ends').'</th>'; |
|
$section_headers = '<th>'.&mt('Sections').'</th>'. |
|
'<th>'.&mt('Crosslistings').'</th>'; |
|
|
|
my ($enrollstart,$enrollend) = &dates_from_form('enrollstart','enrollend'); |
|
my @autoroster = (&mt('No'),&mt('Yes')); |
|
$enroll_values = '<td>'.$autoroster[$env{'form.autoadds'}].'</td>'. |
|
'<td>'.$autoroster[$env{'form.autodrops'}].'</td>'. |
|
'<td>'.&Apache::lonlocal::locallocaltime($enrollstart).'</td>'. |
|
'<td>'.&Apache::lonlocal::locallocaltime($enrollend).'</td>'; |
|
$section_values = '<td><table class="LC_innerpickbox"><tr><th>'. |
|
&mt('Institutional section').'</th>'. |
|
'<th>'.&mt('LON-CAPA section').'</th></tr>'; |
|
my $secinfo; |
|
if ($env{'form.sectotal'} > 0) { |
|
for (my $i=0; $i<$env{'form.sectotal'}; $i++) { |
|
if ($env{'form.sec_'.$i}) { |
|
$secinfo .= '<tr><td>'.$env{'form.secnum_'.$i}.'</td><td>'; |
|
if ($env{'form.loncapasec_'.$i} ne '') { |
|
$secinfo .= $env{'form.loncapasec_'.$i}; |
|
} else { |
|
$secinfo .= &mt('None'); |
|
} |
|
$secinfo .= '</td></tr>'; |
|
} |
|
} |
|
} |
|
if ($secinfo eq '') { |
|
$secinfo = '<tr><td colspan="2">'.&mt('None').'</td></tr>'; |
|
} |
|
$section_values .= $secinfo.'</table></td><td>'. |
|
'<table class="LC_innerpickbox"><tr><th>'. |
|
&mt('Institutional course/section').'</th>'. |
|
'<th>'.&mt('LON-CAPA section').'</th></tr>'; |
|
my $xlistinfo; |
|
if ($env{'form.crosslisttotal'}) { |
|
for (my $i=0; $i<$env{'form.crosslisttotal'}; $i++) { |
|
if ($env{'form.crosslist_'.$i}) { |
|
$xlistinfo .= '<tr><td>'; |
|
if (ref($code_order) eq 'ARRAY') { |
|
if (@{$code_order} > 0) { |
|
foreach my $item (@{$code_order}) { |
|
$xlistinfo .= $env{'form.crosslist_'.$i.'_'.$item}; |
|
} |
|
} |
|
} |
|
$xlistinfo .= $env{'form.crosslist_'.$i.'_instsec'}.'</td><td>'; |
|
if ($env{'form.crosslist_'.$i.'_lcsec'}) { |
|
$xlistinfo .= $env{'form.crosslist_'.$i.'_lcsec'}; |
|
} else { |
|
$xlistinfo .= &mt('None'); |
|
} |
|
$xlistinfo .= '</td></tr>'; |
|
} |
|
} |
|
} |
|
if ($xlistinfo eq '') { |
|
$xlistinfo = '<tr><td colspan="2">'.&mt('None').'</td></tr>'; |
|
} |
|
$section_values .= $xlistinfo.'</table></td>'; |
|
} |
|
} |
|
|
|
my %ctxt = &clone_text(); |
|
$inst_headers .= '<th>'.&mt('Clone From').'</th>'; |
|
if (($env{'form.clonecrs'} =~ /^$match_name$/) && |
|
($env{'form.clonedom'} =~ /^$match_domain$/)) { |
|
my $canclone = &Apache::loncoursequeueadmin::can_clone_course($env{'user.name'}, |
|
$env{'user.domain'},$env{'form.clonecrs'}, $env{'form.clonedom'}); |
|
if ($canclone) { |
|
my %courseenv = &Apache::lonnet::userenvironment($env{'form.clonedom'}, |
|
$env{'form.clonecrs'},('description','internal.coursecode')); |
|
if (keys(%courseenv) > 0) { |
|
$inst_headers .= '<th>'.$ctxt{'dsh'}.'</th>'; |
|
$inst_values .= '<td>'.$courseenv{'description'}.' '; |
|
my $cloneinst = $courseenv{'internal.coursecode'}; |
|
if ($cloneinst ne '') { |
|
$inst_values .= &mt('([_1] in [_2])',$cloneinst,$env{'form.clonedom'}); |
|
} else { |
|
$inst_values .= &mt('(from [_1])',$env{'form.clonedom'}); |
|
} |
|
$inst_values .= '</td><td>'; |
|
if ($env{'form.datemode'} eq 'preserve') { |
|
$inst_values .= $ctxt{'prd'}; |
|
} elsif ($env{'form.datemode'} eq 'shift') { |
|
$inst_values .= &mt('Shift dates by [_1] days',$env{'form.dateshift'}); |
|
} else { |
|
$inst_values .= $ctxt{'ncd'}; |
|
} |
|
$inst_values .= '</td>'; |
|
} else { |
|
$inst_values .= '<td>'.&mt('Unknown').'</td>'; |
|
} |
|
} else { |
|
$inst_values .= '<td>'.&mt('Not permitted'),'</td>'; |
|
} |
|
} else { |
|
$inst_values .= '<td>'.&mt('None').'</td>'; |
|
} |
|
$enroll_headers .= '<th>'.&mt('Access Starts').'</th>'. |
|
'<th>'.&mt('Access Ends').'</th>'; |
|
my ($accessstart,$accessend) = &dates_from_form('accessstart','accessend'); |
|
$enroll_values .= '<td>'.&Apache::lonlocal::locallocaltime($accessstart).'</td>'; |
|
if ($accessend == 0) { |
|
$enroll_values .= '<td>'.&mt('No end date').'</td>'; |
|
} else { |
|
$enroll_values .= '<td>'.&Apache::lonlocal::locallocaltime($accessend).'</td>'; |
|
} |
|
|
|
my $container = 'Course'; |
|
if ($env{'form.crstype'} eq 'community') { |
|
$container = 'Community'; |
|
} |
|
|
|
$personnel_headers = '<th>'.&mt('Name').'</th><th>'.&mt('Username:Domain'). |
|
'</th><th>'.&mt('Role').'</th><th>'.&mt('LON-CAPA Sections'). |
|
'</th>'; |
|
$personnel_values .= '<tr><td>'.$ownername.'</td><td>'.$owner.'</td>'. |
|
'<td>'.&Apache::lonnet::plaintext('cc',$container).'</td>'. |
|
'<td>'.&mt('None').'</td></tr>'; |
|
for (my $i=0; $i<$env{'form.persontotal'}; $i++) { |
|
if ($env{'form.person_'.$i.'_uname'} ne '') { |
|
my @allsecs = &Apache::loncommon::get_env_multiple('form.person_'.$i.'_sec'); |
|
my $newsec = $env{'form.person_'.$i.'_newsec'}; |
|
$newsec =~ s/^\s+//; |
|
$newsec =~s/\s+$//; |
|
my @newsecs = split(/[\s,;]+/,$newsec); |
|
foreach my $sec (@newsecs) { |
|
next if ($sec =~ /\W/); |
|
next if ($newsec eq 'none'); |
|
if ($sec ne '') { |
|
unless (grep(/^\Q$sec\E$/,@allsecs)) { |
|
push(@allsecs,$sec); |
|
} |
|
} |
|
} |
|
my $showsec = 'None'; |
|
if (@allsecs) { |
|
$showsec = join(', ',@allsecs); |
|
} |
|
$personnel_values .= |
|
'<tr><td>'.$env{'form.person_'.$i.'_firstname'}.' '. |
|
$env{'form.person_'.$i.'_lastname'}.'</td>'. |
|
'<td>'.$env{'form.person_'.$i.'_uname'}.':'. |
|
$env{'form.person_'.$i.'_dom'}.'</td>'. |
|
'<td>'.&Apache::lonnet::plaintext($env{'form.person_'.$i.'_role'}, |
|
$container).'</td>'. |
|
'<td>'.$showsec.'</td></tr>'; |
|
} |
|
} |
|
my $output = |
|
'<div>'.&Apache::lonhtmlcommon::start_pick_box(). |
|
&Apache::lonhtmlcommon::row_title(&mt('Owner')). |
|
'<table class="LC_innerpickbox"><tr>'. |
|
'<th>'.&mt('Name').'</th>'. |
|
'<th>'.&mt('Username:Domain').'</th>'. |
|
'<th>'.&mt('E-mail address').'</th>'. |
|
'</tr><tr>'."\n". |
|
'<td>'.$ownername.'</td><td>'.$owner.'</td>'. |
|
'<td>'.$owneremail.'</td>'. |
|
'</tr></table>'."\n". |
|
&Apache::lonhtmlcommon::row_closure(). |
|
&Apache::lonhtmlcommon::row_title(&mt('Description')). |
|
'<table class="LC_innerpickbox"><tr>'.$inst_headers.'</tr>'."\n". |
|
'<tr>'.$inst_values.'</tr></table>'."\n". |
|
&Apache::lonhtmlcommon::row_closure(). |
|
&Apache::lonhtmlcommon::row_title($enrollrow_title). |
|
'<table class="LC_innerpickbox"><tr>'.$enroll_headers.'</tr>'."\n". |
|
'<tr>'.$enroll_values.'</tr></table>'."\n". |
|
&Apache::lonhtmlcommon::row_closure(); |
|
if ($section_headers ne '') { |
|
$output .= &Apache::lonhtmlcommon::row_title(&mt('Sections')). |
|
'<table class="LC_innerpickbox"><tr>'.$section_headers.'</tr>'."\n". |
|
'<tr>'.$section_values.'</tr></table>'."\n". |
|
&Apache::lonhtmlcommon::row_closure(); |
|
} |
|
$output .= &Apache::lonhtmlcommon::row_title(&mt('Personnel')). |
|
'<table class="LC_innerpickbox"><tr>'.$personnel_headers.'</tr>'."\n". |
|
$personnel_values.'</table>'."\n". |
|
&Apache::lonhtmlcommon::row_closure(1). |
|
&Apache::lonhtmlcommon::end_pick_box(); |
|
return $output; |
|
} |
|
|
|
sub dates_from_form { |
|
my ($startname,$endname) = @_; |
|
my $startdate = &Apache::lonhtmlcommon::get_date_from_form($startname); |
|
my $enddate = &Apache::lonhtmlcommon::get_date_from_form($endname); |
|
if ($endname eq 'accessend') { |
|
if (exists($env{'form.no_end_date'}) ) { |
|
$enddate = 0; |
|
} |
|
} |
|
return ($startdate,$enddate); |
} |
} |
|
|
sub courseinfo_form { |
sub courseinfo_form { |
my $output = &Apache::lonhtmlcommon::row_title('Course Description'). |
my ($dom,$formname,$crstype,$next) = @_; |
'<input type="text" size="40" name="description" />'; |
my $nodescr = &mt('You must provide a (brief) course description.'); |
|
my $js_validate = <<"ENDJS"; |
|
<script type="text/javascript"> |
|
// <![CDATA[' |
|
|
|
function validateForm() { |
|
if ((document.$formname.cdescr.value == "") || (document.$formname.cdescr.value == "undefined")) { |
|
alert('$nodescr'); |
|
return; |
|
} |
|
nextPage(document.$formname,'$next'); |
|
} |
|
// ]] |
|
</script> |
|
|
|
ENDJS |
|
|
|
my $output .= $js_validate."\n".'<div>'.&Apache::lonhtmlcommon::start_pick_box(). |
|
&Apache::lonhtmlcommon::row_title('Course Description'). |
|
'<input type="text" size="40" name="cdescr" />'; |
|
my ($home_server_pick,$numlib) = |
|
&Apache::loncommon::home_server_form_item($dom,'chome', |
|
'default','hide'); |
|
if ($numlib > 1) { |
|
$output .= &Apache::lonhtmlcommon::row_closure(). |
|
&Apache::lonhtmlcommon::row_title(&mt('Home Server for Course')); |
|
} |
|
$output .= $home_server_pick. |
|
&Apache::lonhtmlcommon::row_closure(1). |
|
&Apache::lonhtmlcommon::end_pick_box().'</div>'. |
|
'<div>'.&clone_form($dom,$formname,$crstype).'</div>'."\n"; |
return $output; |
return $output; |
} |
} |
|
|
Line 407 sub clone_form {
|
Line 1625 sub clone_form {
|
if ($crstype eq 'community') { |
if ($crstype eq 'community') { |
$type = 'Community'; |
$type = 'Community'; |
} |
} |
my $cloneform = &Apache::loncommon::select_dom_form($dom,'clonedomain'). |
my $cloneform = &Apache::loncommon::select_dom_form($dom,'clonedom'). |
&Apache::loncommon::selectcourse_link($formname,'clonecourse', |
&Apache::loncommon::selectcourse_link($formname,'clonecrs','clonedom','','','',$type); |
'clonedomain','','','',$type); |
my %lt = &clone_text(); |
my %lt = &Apache::lonlocal::texthash( |
my $output .= |
'cid' => 'Course ID', |
&Apache::lonhtmlcommon::start_pick_box(). |
'dmn' => 'Domain', |
&Apache::lonhtmlcommon::row_title($lt{'cid'}).'<label>'. |
'dsh' => 'Date Shift', |
'<input type="text" size="25" name="clonecrs" value="" onfocus="this.blur();'. |
'ncd' => 'Do not clone date parameters', |
'opencrsbrowser('."'$formname','clonecrs','clonedom','','','','$type'".');" />'. |
'prd' => 'Clone date parameters as-is', |
'</label>'.&Apache::lonhtmlcommon::row_closure(1).'<label>'. |
'shd' => 'Shift date parameters by number of days', |
&Apache::lonhtmlcommon::row_title($lt{'dmn'}).'</label>'. |
); |
$cloneform.'</label>'.&Apache::lonhtmlcommon::row_closure(). |
my $output .= &Apache::lonhtmlcommon::start_pick_box(). |
&Apache::lonhtmlcommon::row_title($lt{'dsh'}).'<label>'. |
&Apache::lonhtmlcommon::row_title($lt{'cid'}). |
'<input type="radio" name="datemode" value="delete" /> '.$lt{'ncd'}. |
'<label><input type="text" size="25" name="clonecourse" value="" />'. |
'</label><br /><label>'. |
'</label>'.&Apache::lonhtmlcommon::row_closure(1).'<label>'. |
'<input type="radio" name="datemode" value="preserve" /> '.$lt{'prd'}. |
&Apache::lonhtmlcommon::row_title($lt{'dmn'}).'</label>'. |
'</label><br /><label>'. |
$cloneform.'</label>'.&Apache::lonhtmlcommon::row_closure(). |
'<input type="radio" name="datemode" value="shift" checked="checked" /> '. |
&Apache::lonhtmlcommon::row_title($lt{'dsh'}).'<label>'. |
$lt{'shd'}.'</label>'. |
'<input type="radio" name="datemode" value="delete" /> '.$lt{'ncd'}. |
'<input type="text" size="5" name="dateshift" value="365" />'. |
'</label><br /><label>'. |
&Apache::lonhtmlcommon::row_closure(1). |
'<input type="radio" name="datemode" value="preserve" /> '.$lt{'prd'}. |
&Apache::lonhtmlcommon::end_pick_box(); |
'</label><br /><label>'. |
|
'<input type="radio" name="datemode" value="shift" checked="checked" /> '. |
|
$lt{'shd'}.'</label>'. |
|
'<input type="text" size="5" name="dateshift" value="365" />'. |
|
&Apache::lonhtmlcommon::row_closure(1). |
|
&Apache::lonhtmlcommon::end_pick_box(); |
|
return $output; |
return $output; |
} |
} |
|
|
|
sub clone_text { |
|
return &Apache::lonlocal::texthash( |
|
'cid' => 'Course ID', |
|
'dmn' => 'Domain', |
|
'dsh' => 'Date Shift', |
|
'ncd' => 'Do not clone date parameters', |
|
'prd' => 'Clone date parameters as-is', |
|
'shd' => 'Shift date parameters by number of days', |
|
); |
|
} |
|
|
sub coursecode_form { |
sub coursecode_form { |
my ($dom,$context,$codetitles,$cat_titles,$cat_order,$count) = @_; |
my ($dom,$context,$codetitles,$cat_titles,$cat_order,$num) = @_; |
my $output; |
my $output; |
|
my %rowtitle = ( |
|
instcode => 'Course Category', |
|
crosslist => 'Cross Listed Course', |
|
); |
if ((ref($codetitles) eq 'ARRAY') && (ref($cat_titles) eq 'HASH') && |
if ((ref($codetitles) eq 'ARRAY') && (ref($cat_titles) eq 'HASH') && |
(ref($cat_order))) { |
(ref($cat_order))) { |
|
my ($sel,$instsec,$lcsec); |
|
$sel = $context; |
|
if ($context eq 'crosslist') { |
|
$sel .= '_'.$num; |
|
$instsec = &mt('Institutional section').'<br />'. |
|
'<input type="text" size="10" name="'.$sel.'_instsec" />'; |
|
$lcsec = &mt('LON-CAPA section').'<br />'. |
|
'<input type="text" size="10" name="'.$sel.'_lcsec" />'; |
|
} |
if (@{$codetitles} > 0) { |
if (@{$codetitles} > 0) { |
my $lastitem = pop(@{$codetitles}); |
my $lastitem = pop(@{$codetitles}); |
my $sel = $context; |
my $lastinput = '<input type="text" size="5" name="'.$sel.'_'. $lastitem.'" />'; |
if ($context eq 'crosslist') { |
|
$sel .= '_'.$count; |
|
} |
|
my $lastinput = '<input type="text" size="5" name="'.$sel.'_'. $lastitem.'" />'; |
|
my %rowtitle = ( |
|
instcode => 'Course Category', |
|
crosslist => 'Cross Listed Course', |
|
); |
|
if (@{$codetitles} > 0) { |
if (@{$codetitles} > 0) { |
my $sel = $context; |
|
if ($context eq 'crosslist') { |
|
$sel .= '_'.$count; |
|
} |
|
$output = &Apache::lonhtmlcommon::row_title($rowtitle{$context}). |
$output = &Apache::lonhtmlcommon::row_title($rowtitle{$context}). |
'<table><tr>'; |
'<table><tr>'; |
|
if ($context eq 'crosslist') { |
|
$output .= '<td>'.&mt('Include?').'<br />'. |
|
'<input type="checkbox" name="'.$sel.'" value="1" /></td>'; |
|
} |
foreach my $title (@{$codetitles}) { |
foreach my $title (@{$codetitles}) { |
if (ref($cat_order->{$title}) eq 'ARRAY') { |
if (ref($cat_order->{$title}) eq 'ARRAY') { |
if (@{$cat_order->{$title}} > 0) { |
if (@{$cat_order->{$title}} > 0) { |
Line 483 sub coursecode_form {
|
Line 1711 sub coursecode_form {
|
} |
} |
if ($context eq 'crosslist') { |
if ($context eq 'crosslist') { |
$output .= '<td align="center">'.$lastitem.'<br />'."\n". |
$output .= '<td align="center">'.$lastitem.'<br />'."\n". |
$lastinput.'</td></tr></table>'; |
$lastinput.'</td><td align="center">'.$instsec.'</td>'. |
|
'<td align="center">'.$lcsec.'</td></tr></table>'; |
} else { |
} else { |
$output .= '</tr></table>'. |
$output .= '</tr></table>'. |
&Apache::lonhtmlcommon::row_closure(). |
&Apache::lonhtmlcommon::row_closure(). |
Line 493 sub coursecode_form {
|
Line 1722 sub coursecode_form {
|
} else { |
} else { |
if ($context eq 'crosslist') { |
if ($context eq 'crosslist') { |
$output .= &Apache::lonhtmlcommon::row_title($rowtitle{$context}). |
$output .= &Apache::lonhtmlcommon::row_title($rowtitle{$context}). |
$lastitem.'<br />'; |
'<table><tr>'. |
|
'<td align="center">'.$lastitem.'<br />'.$lastinput.'</td>'. |
|
'<td align="center">'.$instsec.'</td><td>'.$lcsec.'</td>'. |
|
'</tr></table>'; |
} else { |
} else { |
$output .= &Apache::lonhtmlcommon::row_title('Course '.$lastitem). |
$output .= &Apache::lonhtmlcommon::row_title('Course '.$lastitem). |
$lastinput; |
$lastinput; |
} |
} |
$output .= $lastinput.&Apache::lonhtmlcommon::row_closure(1); |
|
} |
} |
|
$output .= &Apache::lonhtmlcommon::row_closure(1); |
|
push(@$codetitles,$lastitem); |
|
} elsif ($context eq 'crosslist') { |
|
$output .= &Apache::lonhtmlcommon::row_title($rowtitle{$context}). |
|
'<table><tr><td align="center">'. |
|
'<span class="LC_nobreak">'.&mt('Include?'). |
|
'<input type="checkbox" name="'.$sel.'" value="1" /></span>'. |
|
'</td><td align="center">'.&mt('Institutional ID').'<br />'. |
|
'<input type="text" size="10" name="'.$sel.'_instsec" />'. |
|
'</td><td align="center">'.$lcsec.'</td></tr></table>'. |
|
&Apache::lonhtmlcommon::row_closure(1); |
} |
} |
} |
} |
return $output; |
return $output; |
Line 522 sub get_course_dom {
|
Line 1764 sub get_course_dom {
|
} |
} |
|
|
sub display_navbuttons { |
sub display_navbuttons { |
my ($r,$formname,$prev,$prevtext,$next,$nexttext) = @_; |
my ($r,$formname,$prev,$prevtext,$next,$nexttext,$state,$other,$othertext) = @_; |
$r->print('<div class="LC_navbuttons">'); |
$r->print('<div class="LC_navbuttons">'); |
if ($prev) { |
if ($prev) { |
$r->print(' |
$r->print('<input type="button" name="previous" value = "'.$prevtext.'" '. |
<input type="button" name="previous" value = "'.$prevtext.'" |
'onclick="javascript:backPage(document.'.$formname.','."'".$prev."'".')"/>'. |
onclick="javascript:backPage(document.'.$formname.','."'".$prev."'".')"/> |
(' 'x3)); |
'); |
|
} elsif ($prevtext) { |
} elsif ($prevtext) { |
$r->print(' |
$r->print('<input type="button" name="previous" value = "'.$prevtext.'" '. |
<input type="button" name="previous" value = "'.$prevtext.'" |
'onclick="javascript:history.back()"/>'.(' 'x3)); |
onclick="javascript:history.back()"/> |
} |
'); |
if ($state eq 'details') { |
|
$r->print(' <input type="button" name="other" value="'.$othertext.'" '. |
|
'onclick="javascript:nextPage(document.'.$formname.','."'".$other."'". |
|
')" />'); |
} |
} |
if ($next) { |
if ($state eq 'courseinfo') { |
|
$r->print('<input type="button" name="next" value="'.$nexttext.'" '. |
|
'onclick="javascript:validateForm();" />'); |
|
} elsif ($next) { |
$r->print(' |
$r->print(' |
<input type="button" name="next" value="'.$nexttext.'" |
<input type="button" name="next" value="'.$nexttext.'" '. |
onclick="javascript:nextPage(document.'.$formname.','."'".$next."'".')" />'); |
'onclick="javascript:nextPage(document.'.$formname.','."'".$next."'".')" />'); |
} |
} |
$r->print('</div>'); |
$r->print('</div>'); |
} |
} |
|
|
sub print_request_outcome { |
sub print_request_outcome { |
|
my ($dom,$codetitles,$code_order) = @_; |
|
my ($output,$cnum,$now,$req_notifylist,$crstype,$enrollstart,$enrollend, |
|
%sections,%crosslistings,%personnel,@baduname,@missingdom,%domconfig,); |
|
$cnum = $env{'form.cnum'}; |
|
unless ($cnum =~ /^$match_courseid$/) { |
|
$output = &mt('Invalid LON-CAPA course number for the new course')."\n"; |
|
return $output; |
|
} |
|
|
|
%domconfig = &Apache::lonnet::get_dom('configuration',['requestcourses'],$dom); |
|
if (ref($domconfig{'requestcourses'}) eq 'HASH') { |
|
if (ref($domconfig{'requestcourses'}{'notify'}) eq 'HASH') { |
|
$req_notifylist = $domconfig{'requestcourses'}{'notify'}{'approval'}; |
|
} |
|
} |
|
$now = time; |
|
$crstype = $env{'form.crstype'}; |
|
if ($crstype eq 'official') { |
|
if (&Apache::lonnet::auto_run('',$dom)) { |
|
($enrollstart,$enrollend)=&dates_from_form('enrollstart','enrollend'); |
|
} |
|
for (my $i=0; $i<$env{'form.sectotal'}; $i++) { |
|
if ($env{'form.sec_'.$i}) { |
|
if ($env{'form.secnum_'.$i} ne '') { |
|
$sections{$i}{'inst'} = $env{'form.secnum_'.$i}; |
|
$sections{$i}{'loncapa'} = $env{'form.loncapasec_'.$i}; |
|
} |
|
} |
|
} |
|
for (my $i=0; $i<$env{'form.crosslisttotal'}; $i++) { |
|
if ($env{'form.crosslist_'.$i}) { |
|
my $xlistinfo = ''; |
|
if (ref($code_order) eq 'ARRAY') { |
|
if (@{$code_order} > 0) { |
|
foreach my $item (@{$code_order}) { |
|
$xlistinfo .= $env{'form.crosslist_'.$i.'_'.$item}; |
|
} |
|
} |
|
} |
|
$xlistinfo .= $env{'form.crosslist_'.$i.'_instsec'}; |
|
$crosslistings{$i}{'inst'} = $xlistinfo; |
|
$crosslistings{$i}{'loncapa'} = $env{'form.crosslist_'.$i.'_lcsec'}; |
|
} |
|
} |
|
} else { |
|
$enrollstart = ''; |
|
$enrollend = ''; |
|
} |
|
for (my $i=0; $i<$env{'form.persontotal'}; $i++) { |
|
my $uname = $env{'form.person_'.$i.'_uname'}; |
|
my $udom = $env{'form.person_'.$i.'_dom'}; |
|
if (($uname =~ /^$match_username$/) && ($udom =~ /^$match_domain$/)) { |
|
if (&Apache::lonnet::domain($udom) ne '') { |
|
unless (ref($personnel{$uname.':'.$udom}) eq 'HASH') { |
|
$personnel{$uname.':'.$udom} = { |
|
firstname => $env{'form.person_'.$i.'_firstname'}, |
|
lastname => $env{'form.person_'.$i.'_lastname'}, |
|
emailaddr => $env{'form.person_'.$i.'_emailaddr'}, |
|
}; |
|
} |
|
my $role = $env{'form.person_'.$i.'_role'}; |
|
unless ($role eq '') { |
|
if (ref($personnel{$uname.':'.$udom}{'roles'}) eq 'ARRAY') { |
|
my @curr_roles = @{$personnel{$uname.':'.$udom}{'roles'}}; |
|
unless (grep(/^\Q$role\E$/,@curr_roles)) { |
|
push(@{$personnel{$uname.':'.$udom}{'roles'}},$role); |
|
} |
|
} else { |
|
@{$personnel{$uname.':'.$udom}{'roles'}} = ($role); |
|
} |
|
if ($role eq 'cc') { |
|
@{$personnel{$uname.':'.$udom}{$role}{'usec'}} = (); |
|
} else { |
|
my @currsec = &Apache::loncommon::get_env_multiple('form.person_'.$i.'_sec'); |
|
my $newsec = $env{'form.person_'.$i.'_newsec'}; |
|
$newsec =~ s/^\s+//; |
|
$newsec =~s/\s+$//; |
|
my @newsecs = split(/[\s,;]+/,$newsec); |
|
foreach my $sec (@newsecs) { |
|
next if ($sec =~ /\W/); |
|
next if ($newsec eq 'none'); |
|
if ($sec ne '') { |
|
unless (grep(/^\Q$sec\E$/,@currsec)) { |
|
push(@currsec,$sec); |
|
} |
|
} |
|
} |
|
@{$personnel{$uname.':'.$udom}{$role}{'usec'}} = @currsec; |
|
} |
|
} |
|
} else { |
|
push(@missingdom,$uname.':'.$udom); |
|
} |
|
} else { |
|
push(@baduname,$uname.':'.$udom); |
|
} |
|
} |
|
my ($accessstart,$accessend) = &dates_from_form('accessstart','accessend'); |
|
my $autodrops = 0; |
|
if ($env{'form.autodrops'}) { |
|
$autodrops = $env{'form.autodrops'}; |
|
} |
|
my $autoadds = 0; |
|
if ($env{'form.autoadds'}) { |
|
$autodrops = $env{'form.autoadds'}; |
|
} |
|
my $sectotal = 0; |
|
if ($env{'form.sectotal'}) { |
|
$sectotal = $env{'form.sectotal'}; |
|
} |
|
if ($env{'form.autoadds'}) { |
|
$autodrops = $env{'form.autoadds'}; |
|
} |
|
my $crosslisttotal = 0; |
|
if ($env{'form.crosslisttotal'}) { |
|
$crosslisttotal = $env{'form.crosslisttotal'}; |
|
} |
|
my $instcode = ''; |
|
if (exists($env{'form.instcode'})) { |
|
$instcode = $env{'form.instcode'}; |
|
} |
|
my $clonecrs = ''; |
|
my $clonedom = ''; |
|
if (($env{'form.clonecrs'} =~ /^($match_courseid)$/) && |
|
($env{'form.clonedom'} =~ /^($match_domain)$/)) { |
|
my $clonehome = &Apache::lonnet::homeserver($env{'form.clonecrs'}, |
|
$env{'form.clonedom'}); |
|
if ($clonehome ne 'no_host') { |
|
my $canclone = |
|
&Apache::loncoursequeueadmin::can_clone_course($env{'user.name'}, |
|
$env{'user.domain'},$env{'form.clonecrs'}, $env{'form.clonedom'}); |
|
if ($canclone) { |
|
$clonecrs = $env{'form.clonecrs'}; |
|
$clonedom = $env{'form.clonedom'}; |
|
} |
|
} |
|
} |
|
my $details = { |
|
owner => $env{'user.name'}, |
|
domain => $env{'user.domain'}, |
|
cdom => $dom, |
|
cnum => $cnum, |
|
coursehome => $env{'form.chome'}, |
|
cdescr => $env{'form.cdescr'}, |
|
crstype => $env{'form.crstype'}, |
|
instcode => $instcode, |
|
clonedom => $clonedom, |
|
clonecrs => $clonecrs, |
|
datemode => $env{'form.datemode'}, |
|
dateshift => $env{'form.dateshift'}, |
|
sectotal => $sectotal, |
|
sections => \%sections, |
|
crosslisttotal => $crosslisttotal, |
|
crosslists => \%crosslistings, |
|
autoadds => $autoadds, |
|
autodrops => $autodrops, |
|
enrollstart => $enrollstart, |
|
enrollend => $enrollend, |
|
accessstart => $accessstart, |
|
accessend => $accessend, |
|
personnel => \%personnel, |
|
}; |
|
my @inststatuses; |
|
my $val = &get_processtype($dom,$crstype,\@inststatuses,\%domconfig); |
|
if ($val eq '') { |
|
if ($crstype eq 'official') { |
|
$output = &mt('You are not permitted to request creation of official courses'); |
|
} elsif ($crstype eq 'unofficial') { |
|
$output = &mt('You are not permitted to request creation of unofficial courses'); |
|
} elsif ($crstype eq 'community') { |
|
$output = &mt('You are not permitted to request creation of communities'); |
|
} else { |
|
$output = &mt('Unrecognized course type: [_1]',$crstype); |
|
} |
|
} else { |
|
my ($disposition,$message,$reqstatus); |
|
my %reqhash = ( |
|
reqtime => $now, |
|
crstype => $crstype, |
|
details => $details, |
|
); |
|
my $requestkey = $dom.'_'.$cnum; |
|
if ($val eq 'autolimit=') { |
|
$disposition = 'process'; |
|
} elsif ($val =~ /^autolimit=(\d+)$/) { |
|
my $limit = $1; |
|
$disposition = &check_autolimit($env{'user.name'},$env{'user.domain'}, |
|
$dom,$crstype,$limit,\$message); |
|
} elsif ($val eq 'validate') { |
|
$disposition = |
|
&Apache::lonnet::auto_courserequest_validation($dom,$details, |
|
\@inststatuses,\$message); |
|
} else { |
|
$disposition = 'approval'; |
|
} |
|
$reqhash{'disposition'} = $disposition; |
|
$reqstatus = $disposition; |
|
my ($modified,$queued); |
|
if ($disposition eq 'rejected') { |
|
$output = &mt('Your course request was rejected.'); |
|
if ($message) { |
|
$output .= '<div class="LC_warning">'.$message.'</div>'; |
|
} |
|
} elsif ($disposition eq 'process') { |
|
my %domdefs = &Apache::lonnet::get_domain_defaults($dom); |
|
my ($logmsg,$newusermsg,$addresult,$enrollcount,$response,$keysmsg,%longroles); |
|
my @roles = &Apache::lonuserutils::roles_by_context('course'); |
|
my $type = 'Course'; |
|
if ($crstype eq 'community') { |
|
$type = 'Community'; |
|
} |
|
foreach my $role (@roles) { |
|
$longroles{$role}=&Apache::lonnet::plaintext($role,$type); |
|
} |
|
my $result = &Apache::loncoursequeueadmin::course_creation($dom,$cnum, |
|
'autocreate',$details,\$logmsg,\$newusermsg,\$addresult, |
|
\$enrollcount,\$response,\$keysmsg,\%domdefs,\%longroles); |
|
if ($result eq 'created') { |
|
$disposition = 'created'; |
|
$reqstatus = 'created'; |
|
$output = &mt('Your course request has been processed and the course has been created.'). |
|
'<br />'. |
|
&mt('You will need to logout and log-in again to be able to select a role in the course.'); |
|
} else { |
|
$output = '<span class="LC_error">'. |
|
&mt('An error occurred when processing your course request.'). |
|
'<br />'. |
|
&mt('You may want to review the request details and submit the request again.'). |
|
'</span>'; |
|
} |
|
} else { |
|
my $requestid = $cnum.'_'.$disposition; |
|
my $request = { |
|
$requestid => { |
|
timestamp => $now, |
|
crstype => $crstype, |
|
ownername => $env{'user.name'}, |
|
ownerdom => $env{'user.domain'}, |
|
description => $env{'form.cdescr'}, |
|
}, |
|
}; |
|
my $statuskey = 'status:'.$dom.':'.$cnum; |
|
my %userreqhash = &Apache::lonnet::get('courserequests',[$statuskey], |
|
$env{'user.domain'},$env{'user.name'}); |
|
if (exists($userreqhash{$statuskey})) { |
|
$modified = 1; |
|
my %queuehash = &Apache::lonnet::get_dom('courserequestqueue', |
|
[$cnum.'_approval', |
|
$cnum.'_pending'],$dom); |
|
if ((exists($queuehash{$cnum.'_approval'})) || |
|
(exists($queuehash{$cnum.'_pending'}))) { |
|
$queued = 1; |
|
} |
|
} |
|
unless ($queued) { |
|
my $putresult = &Apache::lonnet::newput_dom('courserequestqueue',$request, |
|
$dom); |
|
if ($putresult eq 'ok') { |
|
$output = &mt('Your course request has been recorded.').'<br />'. |
|
¬ification_information($disposition,$req_notifylist, |
|
$cnum,$now); |
|
} else { |
|
$reqstatus = 'domainerror'; |
|
$reqhash{'disposition'} = $disposition; |
|
my $warning = &mt('An error occurred saving your request in the pending requests queue.'); |
|
$output = '<span class"LC_warning">'.$warning.'</span><br />'; |
|
} |
|
} |
|
} |
|
my ($storeresult,$statusresult); |
|
if ($requestkey =~ /^($match_domain)_($match_courseid)$/) { |
|
$storeresult = &Apache::lonnet::store_userdata(\%reqhash,$requestkey, |
|
'courserequests'); |
|
if ($storeresult eq 'ok') { |
|
my %status = ( |
|
'status:'.$dom.':'.$cnum => $reqstatus, |
|
); |
|
$statusresult = &Apache::lonnet::put('courserequests',\%status); |
|
} |
|
} else { |
|
$storeresult = 'error: invalid requestkey format'; |
|
} |
|
if ($storeresult ne 'ok') { |
|
$output .= '<span class="LC_warning">'.&mt('An error occurred saving a record of the details of your request: [_1].',$storeresult).'</span><br />'; |
|
&Apache::lonnet::logthis("Error saving course request - $requestkey for $env{'user.name'}:$env{'user.domain'} - $storeresult"); |
|
} elsif ($statusresult ne 'ok') { |
|
$output .= '<span class="LC_warning">'.&mt('An error occurred saving a record of the status of your request: [_1].',$statusresult).'</span><br />'; |
|
&Apache::lonnet::logthis("Error saving course request status for $requestkey (for $env{'user.name'}:$env{'user.domain'}) - $statusresult"); |
|
} |
|
if ($modified && $queued && $storeresult eq 'ok') { |
|
$output .= '<p>'.&mt('Your course request has been updated').'</p>'. |
|
¬ification_information($disposition,$req_notifylist,$cnum,$now); |
|
} |
|
} |
|
return $output; |
|
} |
|
|
|
sub notification_information { |
|
my ($disposition,$req_notifylist,$cnum,$now) = @_; |
|
my %emails = &Apache::loncommon::getemails(); |
|
my $address; |
|
if (($emails{'permanentemail'} ne '') || ($emails{'notification'} ne '')) { |
|
$address = $emails{'permanentemail'}; |
|
if ($address eq '') { |
|
$address = $emails{'notification'}; |
|
} |
|
} |
|
my $output; |
|
if ($disposition eq 'approval') { |
|
$output .= &mt('A message will be sent to your LON-CAPA account when a domain coordinator takes action on your request.').'<br />'. |
|
&mt('To access your LON-CAPA message, go to the Main Menu and click on "Send and Receive Messages".').'<br />'; |
|
if ($address ne '') { |
|
$output.= &mt('An e-mail will also be sent to: [_1] when this occurs.',$address).'<br />'; |
|
} |
|
if ($req_notifylist) { |
|
my $fullname = &Apache::loncommon::plainname($env{'user.name'}, |
|
$env{'user.domain'}); |
|
my $sender = $env{'user.name'}.':'.$env{'user.domain'}; |
|
&Apache::loncoursequeueadmin::send_selfserve_notification($req_notifylist,"$fullname ($env{'user.name'}:$env{'user.domain'})",$cnum,$env{'form.cdescr'},$now,'coursereq',$sender); |
|
} |
|
} else { |
|
$output .= '<div class="LC_info">'. |
|
&mt('Your request has been placed in a queue pending administrative action.').'<br />'. |
|
&mt("Usually this means that your institution's information systems do not list you among the instructional personnel for this course.").'<br />'. |
|
&mt('The list of instructional personnel for the course will be automatically checked daily, and once you are listed the request will be processed.'). |
|
'</div>'; |
|
} |
|
return $output; |
|
} |
|
|
|
sub get_processtype { |
|
my ($dom,$crstype,$inststatuses,$domconfig) = @_; |
|
return unless ((ref($inststatuses) eq 'ARRAY') && (ref($domconfig) eq 'HASH')); |
|
my (%userenv,%settings,$val); |
|
my @options = ('autolimit','validate','approve'); |
|
if ($dom eq $env{'user.domain'}) { |
|
%userenv = |
|
&Apache::lonnet::userenvironment($env{'user.domain'},$env{'user.name'}, |
|
'requestcourses.'.$crstype,'inststatus'); |
|
if ($userenv{'requestcourses.'.$crstype}) { |
|
$val = $userenv{'requestcourses.'.$crstype}; |
|
@{$inststatuses} = ('_custom_'); |
|
} else { |
|
my ($task,%alltasks); |
|
if (ref($domconfig->{'requestcourses'}) eq 'HASH') { |
|
%settings = %{$domconfig->{'requestcourses'}}; |
|
if (ref($settings{$crstype}) eq 'HASH') { |
|
if (($env{'user.adv'}) && (exists($settings{$crstype}{'_LC_adv'}))) { |
|
$val = $settings{$crstype}{'_LC_adv'}; |
|
@{$inststatuses} = ('_LC_adv_'); |
|
} else { |
|
if ($userenv{'inststatus'} ne '') { |
|
@{$inststatuses} = split(',',$userenv{'inststatus'}); |
|
} else { |
|
@{$inststatuses} = ('default'); |
|
} |
|
foreach my $status (@{$inststatuses}) { |
|
if (exists($settings{$crstype}{$status})) { |
|
my $value = $settings{$crstype}{$status}; |
|
next unless ($value); |
|
unless (exists($alltasks{$value})) { |
|
if (ref($alltasks{$value}) eq 'ARRAY') { |
|
unless(grep(/^\Q$status\E$/,@{$alltasks{$value}})) { |
|
push(@{$alltasks{$value}},$status); |
|
} |
|
} else { |
|
@{$alltasks{$value}} = ($status); |
|
} |
|
} |
|
} |
|
} |
|
my $maxlimit = 0; |
|
|
|
foreach my $key (sort(keys(%alltasks))) { |
|
if ($key =~ /^autolimit=(\d*)$/) { |
|
if ($1 eq '') { |
|
$val ='autolimit='; |
|
last; |
|
} elsif ($1 > $maxlimit) { |
|
$maxlimit = $1; |
|
} |
|
} |
|
} |
|
if ($maxlimit) { |
|
$val = 'autolimit='.$maxlimit; |
|
} else { |
|
foreach my $option (@options) { |
|
if ($alltasks{$option}) { |
|
$val = $option; |
|
last; |
|
} |
|
} |
|
} |
|
} |
|
} |
|
} |
|
} |
|
} else { |
|
%userenv = &Apache::lonnet::userenvironment($env{'user.domain'}, |
|
$env{'user.name'},'reqcrsotherdom.'.$env{'form.crstype'}); |
|
if ($userenv{'reqcrsotherdom'}) { |
|
my @doms = split(',',$userenv{'reqcrsotherdom'}); |
|
my $optregex = join('|',@options); |
|
if (grep(/^\Q$dom\E:($optregex=?\d*)/,@doms)) { |
|
$val = $1; |
|
} |
|
@{$inststatuses} = ('_external_'); |
|
} |
|
} |
|
return $val; |
|
} |
|
|
|
sub check_autolimit { |
|
my ($uname,$udom,$dom,$crstype,$limit,$message) = @_; |
|
my %crsroles = &Apache::lonnet::get_my_roles($env{'user.name'},$env{'user.domain'}, |
|
'userroles',['active','future'],['cc'],[$dom]); |
|
my ($types,$typename) = &course_types(); |
|
my %requests = &Apache::lonnet::dumpstore('courserequests',$udom,$uname); |
|
my %count; |
|
if (ref($types) eq 'ARRAY') { |
|
foreach my $type (@{$types}) { |
|
$count{$type} = 0; |
|
} |
|
} |
|
foreach my $key (keys(%requests)) { |
|
my ($cdom,$cnum) = split('_',$key); |
|
if (exists($crsroles{$cnum.':'.$cdom.':cc'})) { |
|
if (ref($requests{$key}) eq 'HASH') { |
|
my $type = $requests{$key}{'crstype'}; |
|
if ($type =~ /^official|unofficial|community$/) { |
|
$count{$type} ++; |
|
} |
|
} |
|
} |
|
} |
|
if ($count{$crstype} < $limit) { |
|
return 'process'; |
|
} else { |
|
if (ref($typename) eq 'HASH') { |
|
$$message = &mt('Your request has not been processed because you have reached the limit for the number of courses of this type.').'<br />'.&mt("Your $typename->{$crstype} limit is [_1].",$limit); |
|
} |
|
return 'rejected'; |
|
} |
|
return; |
|
} |
|
|
|
sub retrieve_settings { |
|
my ($dom,$cnum) = @_; |
|
my ($result,%reqinfo) = &get_request_settings($dom,$cnum); |
|
if ($result eq 'ok') { |
|
if (($env{'user.name'} eq $reqinfo{'owner'}) && |
|
($env{'user.domain'} eq $reqinfo{'domain'})) { |
|
$env{'form.chome'} = $reqinfo{'coursehome'}; |
|
$env{'form.cdescr'} = $reqinfo{'cdescr'}; |
|
$env{'form.crstype'} = $reqinfo{'crstype'}; |
|
&generate_date_items($reqinfo{'accessstart'},'accessstart'); |
|
&generate_date_items($reqinfo{'accessend'},'accessend'); |
|
if ($reqinfo{'accessend'} == 0) { |
|
$env{'form.no_end_date'} = 1; |
|
} |
|
if (($reqinfo{'crstype'} eq 'official') && (&Apache::lonnet::auto_run('',$dom))) { |
|
&generate_date_items($reqinfo{'enrollstart'},'enrollstart'); |
|
&generate_date_items($reqinfo{'enrollend'},'enrollend'); |
|
} |
|
$env{'form.clonecrs'} = $reqinfo{'clonecrs'}; |
|
$env{'form.clonedom'} = $reqinfo{'clonedom'}; |
|
$env{'form.datemode'} = $reqinfo{'datemode'}; |
|
$env{'form.dateshift'} = $reqinfo{'dateshift'}; |
|
if (($reqinfo{'crstype'} eq 'official') && ($reqinfo{'instcode'} ne '')) { |
|
$env{'form.sectotal'} = $reqinfo{'sectotal'}; |
|
$env{'form.crosslisttotal'} = $reqinfo{'crosslisttotal'}; |
|
$env{'form.autoadds'} = $reqinfo{'autoadds'}; |
|
$env{'form.autdrops'} = $reqinfo{'autodrops'}; |
|
$env{'form.instcode'} = $reqinfo{'instcode'}; |
|
my %crscode = ( |
|
instcode => $reqinfo{'instcode'}, |
|
); |
|
&extract_instcode($dom,'instcode',\%crscode); |
|
} |
|
my @currsec; |
|
if (ref($reqinfo{'sections'}) eq 'HASH') { |
|
foreach my $i (sort(keys(%{$reqinfo{'sections'}}))) { |
|
if (ref($reqinfo{'sections'}{$i}) eq 'HASH') { |
|
my $sec = $reqinfo{'sections'}{$i}{'inst'};; |
|
$env{'form.secnum_'.$i} = $sec; |
|
if (!grep(/^\Q$sec\E$/,@currsec)) { |
|
push(@currsec,$sec); |
|
} |
|
$env{'form.loncapasec_'.$i} = $reqinfo{'sections'}{$i}{'loncapa'}; |
|
} |
|
} |
|
} |
|
if (ref($reqinfo{'crosslistings'}) eq 'HASH') { |
|
foreach my $i (sort(keys(%{$reqinfo{'crosslistings'}}))) { |
|
if (ref($reqinfo{'crosslistings'}{$i}) eq 'HASH') { |
|
$env{'form.crosslist_'.$i.'_lcsec'} = $reqinfo{'crosslistings'}{$i}{'loncapa'}; |
|
my $xlistsec = $reqinfo{'crosslistings'}{$i}{'instsec'}; |
|
my %crscode = ( |
|
$i => $reqinfo{'crosslistings'}{$i}{'instcode'}, |
|
); |
|
&extract_instcode($dom,'crosslist',\%crscode,$1,$xlistsec); |
|
} |
|
} |
|
} |
|
if (ref($reqinfo{'personnel'}) eq 'HASH') { |
|
my $i = 0; |
|
foreach my $user (sort(keys(%{$reqinfo{'personnel'}}))) { |
|
my ($uname,$udom) = split(':',$user); |
|
if (ref($reqinfo{'personnel'}{$user}) eq 'HASH') { |
|
if (ref($reqinfo{'personnel'}{$user}{'roles'}) eq 'ARRAY') { |
|
foreach my $role (sort(@{$reqinfo{'personnel'}{$user}{'roles'}})) { |
|
$env{'form.person_'.$i.'_role'} = $role; |
|
$env{'form.person_'.$i.'_firstname'} = $reqinfo{'personnel'}{$user}{'firstname'}; |
|
$env{'form.person_'.$i.'_lastname'} = $reqinfo{'personnel'}{$user}{'lastname'}; ; |
|
$env{'form.person_'.$i.'_emailaddr'} = $reqinfo{'personnel'}{$user}{'emailaddr'}; |
|
$env{'form.person_'.$i.'_uname'} = $uname; |
|
$env{'form.person_'.$i.'_dom'} = $udom; |
|
if (ref($reqinfo{'personnel'}{$user}{$role}) eq 'HASH') { |
|
if (ref($reqinfo{'personnel'}{$user}{$role}{'usec'}) eq 'ARRAY') { |
|
my @usecs = @{$reqinfo{'personnel'}{$user}{$role}{'usec'}}; |
|
my @newsecs; |
|
if (@usecs > 0) { |
|
foreach my $sec (@usecs) { |
|
if (grep(/^\Q$sec\E/,@currsec)) { |
|
$env{'form.person_'.$i.'_sec'} = $sec; |
|
} else { |
|
push (@newsecs,$sec); |
|
} |
|
} |
|
} |
|
if (@newsecs > 0) { |
|
$env{'form.person_'.$i.'_newsec'} = join(',',@newsecs); |
|
} |
|
} |
|
} |
|
$i ++; |
|
} |
|
} |
|
} |
|
} |
|
$env{'form.persontotal'} = $i; |
|
} |
|
} |
|
} |
|
return $result; |
|
} |
|
|
|
sub get_request_settings { |
|
my ($dom,$cnum) = @_; |
|
my $requestkey = $dom.'_'.$cnum; |
|
my ($result,%reqinfo); |
|
if ($requestkey =~ /^($match_domain)_($match_courseid)$/) { |
|
my %history = &Apache::lonnet::restore($requestkey,'courserequests', |
|
$env{'user.domain'},$env{'user.name'}); |
|
my $disposition = $history{'disposition'}; |
|
if (($disposition eq 'approval') || ($disposition eq 'pending')) { |
|
if (ref($history{'details'}) eq 'HASH') { |
|
%reqinfo = %{$history{'details'}}; |
|
$result = 'ok'; |
|
} else { |
|
$result = 'nothash'; |
|
} |
|
} else { |
|
$result = 'notqueued'; |
|
} |
|
} else { |
|
$result = 'invalid'; |
|
} |
|
return ($result,%reqinfo); |
|
} |
|
|
|
sub extract_instcode { |
|
my ($cdom,$element,$crscodehashref,$counter,$xlistsec) = @_; |
|
my (%codes,@codetitles,%cat_titles,%cat_order); |
|
if (ref($crscodehashref) eq 'HASH') { |
|
if (&Apache::lonnet::auto_instcode_format('requests',$cdom,$crscodehashref, |
|
\%codes,\@codetitles,\%cat_titles,\%cat_order) eq 'ok') { |
|
if (@codetitles > 0) { |
|
my $sel = $element; |
|
if ($element eq 'crosslist') { |
|
$sel .= '_'.$counter; |
|
} |
|
my $lastitem = pop(@codetitles); |
|
foreach my $title (@codetitles) { |
|
if (ref($cat_order{$title}) eq 'ARRAY') { |
|
if (@{$cat_order{$title}} > 0) { |
|
$env{'form.'.$sel.'_'.$title} = $cat_order{$title}[0]; |
|
} |
|
} |
|
} |
|
if ($element eq 'crosslist') { |
|
$env{'form.'.$sel.'_'.$lastitem} = $xlistsec; |
|
} |
|
} |
|
} |
|
} |
|
return; |
|
} |
|
|
|
sub generate_date_items { |
|
my ($currentval,$item) = @_; |
|
if ($currentval =~ /\d+/) { |
|
my ($tzname,$sec,$min,$hour,$mday,$month,$year) = |
|
&Apache::lonhtmlcommon::get_timedates($currentval); |
|
$env{'form.'.$item.'_day'} = $mday; |
|
$env{'form.'.$item.'_month'} = $month+1; |
|
$env{'form.'.$item.'_year'} = $year; |
|
} |
return; |
return; |
} |
} |
|
|