version 1.15, 2009/08/17 04:39:15
|
version 1.23, 2009/08/22 21:08:39
|
Line 116 use LONCAPA qw(:DEFAULT :match);
|
Line 116 use LONCAPA qw(:DEFAULT :match);
|
|
|
sub handler { |
sub handler { |
my ($r) = @_; |
my ($r) = @_; |
|
&Apache::loncommon::content_type($r,'text/html'); |
|
$r->send_http_header; |
if ($r->header_only) { |
if ($r->header_only) { |
&Apache::loncommon::content_type($r,'text/html'); |
|
$r->send_http_header; |
|
return OK; |
return OK; |
} |
} |
&Apache::loncommon::content_type($r,'text/html'); |
|
$r->send_http_header; |
|
|
|
&Apache::lonhtmlcommon::clear_breadcrumbs(); |
&Apache::lonhtmlcommon::clear_breadcrumbs(); |
my $dom = &get_course_dom(); |
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 %stored; |
my %stored; |
my $jscript; |
my $jscript; |
if ((defined($state)) && (defined($action))) { |
if ((defined($state)) && (defined($action))) { |
my %elements = &form_elements($dom); |
if (($action eq 'view') && ($state eq 'details')) { |
if (($action eq 'view') && ($state ne 'crstype')) { |
if ((defined($env{'form.showdom'})) && (defined($env{'form.cnum'}))) { |
if (defined($env{'form.request_id'})) { |
my $result = &retrieve_settings($env{'form.showdom'},$env{'form.cnum'}); |
%stored = &retrieve_settings($dom,$env{'form.request_id'}); |
|
} |
} |
} |
} |
|
my %elements = &form_elements($dom); |
my $elementsref = {}; |
my $elementsref = {}; |
if (ref($elements{$action}) eq 'HASH') { |
if (ref($elements{$action}) eq 'HASH') { |
if (ref($elements{$action}{$state}) eq 'HASH') { |
if (ref($elements{$action}{$state}) eq 'HASH') { |
$elementsref = $elements{$action}{$state}; |
$elementsref = $elements{$action}{$state}; |
} |
} |
} |
} |
|
if (($state eq 'courseinfo') && ($env{'form.clonedom'} eq '')) { |
|
$env{'form.clonedom'} = $dom; |
|
} |
$jscript = &Apache::lonhtmlcommon::set_form_elements($elementsref,\%stored); |
$jscript = &Apache::lonhtmlcommon::set_form_elements($elementsref,\%stored); |
} |
} |
|
|
Line 154 sub handler {
|
Line 154 sub handler {
|
my $loaditems = &onload_action($action,$state); |
my $loaditems = &onload_action($action,$state); |
|
|
my %states; |
my %states; |
$states{'view'} = ['pick_request','details','review','process']; |
$states{'view'} = ['pick_request','details','cancel','removal']; |
$states{'log'} = ['filter','display']; |
$states{'log'} = ['filter','display']; |
$states{'new'} = ['courseinfo','enrollment','personnel','review','process']; |
$states{'new'} = ['courseinfo','enrollment','personnel','review','process']; |
|
|
if (($action eq 'new') && ($env{'form.crstype'} eq 'official')) { |
if (($action eq 'new') && ($env{'form.crstype'} eq 'official')) { |
unless ($env{'form.state'} eq 'crstype') { |
unless ($env{'form.state'} eq 'crstype') { |
unshift (@{$states{'new'}},'codepick'); |
unshift(@{$states{'new'}},'codepick'); |
} |
} |
} |
} |
|
|
Line 173 sub handler {
|
Line 174 sub handler {
|
crstype => 'Course Request Action', |
crstype => 'Course Request Action', |
codepick => 'Category', |
codepick => 'Category', |
courseinfo => 'Description', |
courseinfo => 'Description', |
enrollment => 'Enrollment', |
enrollment => 'Access Dates', |
personnel => 'Personnel', |
personnel => 'Personnel', |
review => 'Review', |
review => 'Review', |
process => 'Result', |
process => 'Result', |
pick_request => 'Display Summary', |
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 $page = 0; |
my $crumb; |
my $crumb; |
if (defined($action)) { |
if (defined($action)) { |
Line 273 sub form_elements {
|
Line 281 sub form_elements {
|
crstype => { |
crstype => { |
crstype => 'selectbox', |
crstype => 'selectbox', |
action => 'selectbox', |
action => 'selectbox', |
|
origcnum => 'hidden', |
}, |
}, |
courseinfo => { |
courseinfo => { |
cdescr => 'text', |
cdescr => 'text', |
Line 297 sub form_elements {
|
Line 306 sub form_elements {
|
no_end_date => 'checkbox', |
no_end_date => 'checkbox', |
}, |
}, |
personnel => { |
personnel => { |
persontotal => 'hidden', |
|
addperson => 'checkbox', |
addperson => 'checkbox', |
}, |
}, |
review => { |
review => { |
Line 359 sub form_elements {
|
Line 367 sub form_elements {
|
} |
} |
} |
} |
my $crosslisttotal = $env{'form.crosslisttotal'}; |
my $crosslisttotal = $env{'form.crosslisttotal'}; |
|
if ($env{'form.addcrosslist'}) { |
|
$crosslisttotal ++; |
|
} |
if (!defined($crosslisttotal)) { |
if (!defined($crosslisttotal)) { |
$crosslisttotal = 1; |
$crosslisttotal = 1; |
} |
} |
Line 382 sub form_elements {
|
Line 393 sub form_elements {
|
} |
} |
my %people; |
my %people; |
my $persontotal = $env{'form.persontotal'}; |
my $persontotal = $env{'form.persontotal'}; |
if (!defined($persontotal)) { |
if ($env{'form.addperson'}) { |
|
$persontotal ++; |
|
} |
|
if ((!defined($persontotal)) || (!$persontotal)) { |
$persontotal = 1; |
$persontotal = 1; |
} |
} |
for (my $i=0; $i<$persontotal; $i++) { |
for (my $i=0; $i<$persontotal; $i++) { |
Line 414 sub check_can_request {
|
Line 428 sub check_can_request {
|
my ($dom,$can_request) = @_; |
my ($dom,$can_request) = @_; |
my $canreq = 0; |
my $canreq = 0; |
my ($types,$typename) = &course_types(); |
my ($types,$typename) = &course_types(); |
|
my @options = ('approval','validate','autolimit'); |
|
my $optregex = join('|',@options); |
if ((ref($can_request) eq 'HASH') && (ref($types) eq 'ARRAY')) { |
if ((ref($can_request) eq 'HASH') && (ref($types) eq 'ARRAY')) { |
foreach my $type (@{$types}) { |
foreach my $type (@{$types}) { |
if (&Apache::lonnet::usertools_access($env{'user.name'}, |
if (&Apache::lonnet::usertools_access($env{'user.name'}, |
Line 429 sub check_can_request {
|
Line 445 sub check_can_request {
|
if (@curr > 0) { |
if (@curr > 0) { |
$canreq ++; |
$canreq ++; |
unless ($dom eq $env{'user.domain'}) { |
unless ($dom eq $env{'user.domain'}) { |
if (grep(/^\Q$dom\E$/,@curr)) { |
if (grep(/^\Q$dom\E:($optregex)(=?\d*)$/,@curr)) { |
$can_request->{$type} = 1; |
$can_request->{$type} = 1; |
} |
} |
} |
} |
Line 589 END
|
Line 605 END
|
sub request_administration { |
sub request_administration { |
my ($r,$action,$state,$page,$states,$dom,$jscript,$loaditems,$crumb) = @_; |
my ($r,$action,$state,$page,$states,$dom,$jscript,$loaditems,$crumb) = @_; |
my $js; |
my $js; |
if (($action eq 'new') || ($action eq 'view')) { |
if (($action eq 'new') || (($action eq 'view') && ($state eq 'pick_request'))) { |
$js = <<END; |
$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(); |
Line 611 END
|
Line 633 END
|
$r->print(&header('Request a course',$js.$jscript,$loaditems,$jsextra).$crumb); |
$r->print(&header('Request a course',$js.$jscript,$loaditems,$jsextra).$crumb); |
&print_request_form($r,$action,$state,$page,$states,$dom); |
&print_request_form($r,$action,$state,$page,$states,$dom); |
} elsif ($action eq 'view') { |
} elsif ($action eq 'view') { |
$r->print(&header('Manage course requests',$js.$jscript,$loaditems).$crumb); |
my $jsextra; |
|
my $formname = 'requestcrs'; |
|
my $prev = $states->{$action}[$page-1]; |
|
my $next = $states->{$action}[$page+1]; |
|
if ($state eq 'pick_request') { |
|
$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') { |
if ($state eq 'pick_request') { |
$r->print(&print_request_status($dom)); |
$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>'); |
} |
} |
} elsif ($action eq 'log') { |
} elsif ($action eq 'log') { |
$r->print(&coursereq_log('View request log',$jscript,$loaditems).$crumb); |
$r->print(&coursereq_log('View request log',$jscript,$loaditems).$crumb); |
Line 655 sub print_request_form {
|
Line 776 sub print_request_form {
|
} |
} |
if ($instcode ne '') { |
if ($instcode ne '') { |
$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 'valid') { |
$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>'; |
Line 671 sub print_request_form {
|
Line 792 sub print_request_form {
|
$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.'); |
} |
} |
unless ($code_chk eq 'ok') { |
unless ($code_chk eq 'valid') { |
$prev = 'crstype'; |
$prev = 'crstype'; |
} |
} |
$r->print($message); |
$r->print($message); |
Line 689 sub print_request_form {
|
Line 810 sub print_request_form {
|
$r->print('<div>'.&Apache::lonhtmlcommon::start_pick_box().$codepicker. |
$r->print('<div>'.&Apache::lonhtmlcommon::start_pick_box().$codepicker. |
&Apache::lonhtmlcommon::end_pick_box().'</div>'); |
&Apache::lonhtmlcommon::end_pick_box().'</div>'); |
} else { |
} else { |
|
$next = $states->{$action}[$page+2]; |
$r->print(&courseinfo_form($dom,$formname,$crstype,$next)); |
$r->print(&courseinfo_form($dom,$formname,$crstype,$next)); |
} |
} |
} else { |
} else { |
|
if ($crstype eq 'official') { |
|
$next = $states->{$action}[$page+2]; |
|
} |
$r->print(&courseinfo_form($dom,$formname,$crstype,$next)); |
$r->print(&courseinfo_form($dom,$formname,$crstype,$next)); |
} |
} |
} elsif ($prev eq 'codepick') { |
} elsif ($prev eq 'codepick') { |
|
if ($env{'form.instcode'} eq '') { |
|
$prev = $states->{$action}[$page-2]; |
|
} |
$r->print(&courseinfo_form($dom,$formname,$crstype,$next)); |
$r->print(&courseinfo_form($dom,$formname,$crstype,$next)); |
} elsif ($state eq 'enrollment') { |
} elsif ($state eq 'enrollment') { |
if ($crstype eq 'official') { |
if ($crstype eq 'official') { |
Line 706 sub print_request_form {
|
Line 834 sub print_request_form {
|
} elsif ($state eq 'personnel') { |
} elsif ($state eq 'personnel') { |
$r->print(&print_personnel_menu($dom,$formname,$crstype)); |
$r->print(&print_personnel_menu($dom,$formname,$crstype)); |
} elsif ($state eq 'review') { |
} 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, |
&Apache::lonnet::auto_possible_instcodes($dom,\@codetitles,\%cat_titles, |
\%cat_order,\@code_order); |
\%cat_order,\@code_order); |
$r->print(&print_review($formname,$dom,\@codetitles,\%cat_titles,\%cat_order, |
$r->print('<p>'.&mt('Review the details of the course request before submission.').'</p>'. |
\@code_order)); |
&print_review($formname,$dom,\@codetitles,\%cat_titles,\%cat_order, |
|
\@code_order). |
|
'<input type="hidden" name="cnum" value="'.$cnum.'" />'); |
$navtxt{'next'} = &mt('Submit course request'); |
$navtxt{'next'} = &mt('Submit course request'); |
} elsif ($state eq 'process') { |
} elsif ($state eq 'process') { |
if ($crstype eq 'official') { |
if ($crstype eq 'official') { |
Line 719 sub print_request_form {
|
Line 855 sub print_request_form {
|
my $result = &print_request_outcome($dom,\@codetitles,\@code_order); |
my $result = &print_request_outcome($dom,\@codetitles,\@code_order); |
$r->print($result); |
$r->print($result); |
} |
} |
|
my @excluded = &get_excluded_elements($dom,$states,$action,$state); |
|
$r->print(&Apache::lonhtmlcommon::echo_form_input(\@excluded).'</form>'); |
|
&display_navbuttons($r,$formname,$prev,$navtxt{'prev'},$next,$navtxt{'next'},$state); |
|
return; |
|
} |
|
|
|
sub get_excluded_elements { |
|
my ($dom,$states,$action,$state) = @_; |
my @excluded = ('counter'); |
my @excluded = ('counter'); |
my %elements = &form_elements($dom); |
my %elements = &form_elements($dom); |
if (ref($states) eq 'HASH') { |
if (ref($states) eq 'HASH') { |
Line 729 sub print_request_form {
|
Line 873 sub print_request_form {
|
for (my $i=$numitems-1; $i>=0; $i--) { |
for (my $i=$numitems-1; $i>=0; $i--) { |
if (ref($elements{$action}) eq 'HASH') { |
if (ref($elements{$action}) eq 'HASH') { |
if (ref($elements{$action}{$items[$i]}) eq 'HASH') { |
if (ref($elements{$action}{$items[$i]}) eq 'HASH') { |
foreach my $key (keys(%{$elements{$action}{$items[$i]}})) { |
foreach my $key (keys(%{$elements{$action}{$items[$i]}})) { |
push(@excluded,$key); |
push(@excluded,$key); |
} |
} |
} |
} |
Line 742 sub print_request_form {
|
Line 886 sub print_request_form {
|
if (grep(/^instcode_/,@excluded)) { |
if (grep(/^instcode_/,@excluded)) { |
push(@excluded,'instcode'); |
push(@excluded,'instcode'); |
} |
} |
$r->print(&Apache::lonhtmlcommon::echo_form_input(\@excluded).'</form>'); |
return @excluded; |
&display_navbuttons($r,$formname,$prev,$navtxt{'prev'},$next,$navtxt{'next'},$state); |
|
return; |
|
} |
} |
|
|
sub print_enrollment_menu { |
sub print_enrollment_menu { |
Line 755 sub print_enrollment_menu {
|
Line 897 sub print_enrollment_menu {
|
|
|
my %accesstitles = ( |
my %accesstitles = ( |
'start' => 'Default start access', |
'start' => 'Default start access', |
'end' => 'Default end accss', |
'end' => 'Default end access', |
); |
); |
my %enrolltitles = ( |
my %enrolltitles = ( |
'start' => 'Start auto-enrollment', |
'start' => 'Start auto-enrollment', |
Line 879 sub print_personnel_menu {
|
Line 1021 sub print_personnel_menu {
|
my ($dom,$formname,$crstype) = @_; |
my ($dom,$formname,$crstype) = @_; |
my $output = '<div>'.&Apache::lonhtmlcommon::start_pick_box(); |
my $output = '<div>'.&Apache::lonhtmlcommon::start_pick_box(); |
my $persontotal = $env{'form.persontotal'}; |
my $persontotal = $env{'form.persontotal'}; |
if (!defined($persontotal)) { |
if ((!defined($persontotal)) || (!$persontotal)) { |
$persontotal = 1; |
$persontotal = 1; |
} |
} |
if ($env{'form.addperson'}) { |
if ($env{'form.addperson'}) { |
Line 1038 sub print_request_status {
|
Line 1180 sub print_request_status {
|
} |
} |
$formname = 'requestcrs'; |
$formname = 'requestcrs'; |
my @sortedtimes = sort {$a <=> $b} (keys(%queue_by_date)); |
my @sortedtimes = sort {$a <=> $b} (keys(%queue_by_date)); |
$output = '<h3>'.&mt('Pending course requests').'</h3><div>'."\n". |
$output = '<input type="hidden" name="action" value="'.$env{'form.action'}.'" />'."\n". |
'<form method="post" name="'.$formname.'" action="/adm/requestcourse" />'."\n". |
|
'<input type="hidden" name="action" value="'.$env{'form.action'}.'" />'."\n". |
|
'<input type="hidden" name="state" value="'.$env{'form.state'}.'" />'."\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="crstype" value="'.$env{'form.crstype'}.'" />'."\n". |
|
'<input type="hidden" name="showdom" value="" />'."\n". |
|
'<input type="hidden" name="cnum" value="" />'."\n"; |
if (@sortedtimes > 0) { |
if (@sortedtimes > 0) { |
$output .= &Apache::loncommon::start_data_table(). |
$output .= &Apache::loncommon::start_data_table(). |
&Apache::loncommon::start_data_table_header_row(). |
&Apache::loncommon::start_data_table_header_row(). |
Line 1065 sub print_request_status {
|
Line 1208 sub print_request_status {
|
my ($key,$type,$desc,$instcode) = split(':',$request); |
my ($key,$type,$desc,$instcode) = split(':',$request); |
my ($cdom,$cnum) = split('_',$key); |
my ($cdom,$cnum) = split('_',$key); |
$output .= &Apache::loncommon::start_data_table_row(). |
$output .= &Apache::loncommon::start_data_table_row(). |
'<td><input type="button" value="'.&mt('Select').'" onclick="javascript:viewrequest('."'$cdom','$cnum'".')" /></td>'. |
'<td><input type="button" value="'.&mt('Select').'" onclick="javascript:chooseRequest('."'$cdom','$cnum'".')" /></td>'. |
'<td>'.&unescape($desc).'</td>'. |
'<td>'.&unescape($desc).'</td>'. |
'<td>'.$cdom.'</td>'; |
'<td>'.$cdom.'</td>'; |
if ($env{'form.crstype'} eq 'any') { |
if ($env{'form.crstype'} eq 'any') { |
Line 1100 sub print_request_status {
|
Line 1243 sub print_request_status {
|
return $output; |
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; |
|
} |
|
|
|
ENDJS |
|
} |
|
|
sub print_request_logs { |
sub print_request_logs { |
my ($jscript,$loaditems,$crumb) = @_; |
my ($jscript,$loaditems,$crumb) = @_; |
return; |
return; |
Line 1126 sub print_review {
|
Line 1365 sub print_review {
|
$crstypename = $typename->{$env{'form.crstype'}}; |
$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_headers = '<th>'.&mt('Description').'</th><th>'.&mt('Type').'</th>'; |
$inst_values = '<td>'.$env{'form.cdescr'}.'</td><td>'.$crstypename.'</td>'; |
$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 ($env{'form.crstype'} eq 'official') { |
if ((ref($codetitles) eq 'ARRAY') && (ref($cat_titles) eq 'HASH')) { |
if ((ref($codetitles) eq 'ARRAY') && (ref($cat_titles) eq 'HASH')) { |
foreach my $title (@{$codetitles}) { |
foreach my $title (@{$codetitles}) { |
Line 1146 sub print_review {
|
Line 1391 sub print_review {
|
} |
} |
} |
} |
if (&Apache::lonnet::auto_run('',$dom)) { |
if (&Apache::lonnet::auto_run('',$dom)) { |
|
$enrollrow_title = &mt('Enrollment'); |
$enroll_headers = '<th>'.&mt('Automatic Adds').'</th>'. |
$enroll_headers = '<th>'.&mt('Automatic Adds').'</th>'. |
'<th>'.&mt('Automatic Drops').'</th>'. |
'<th>'.&mt('Automatic Drops').'</th>'. |
'<th>'.&mt('Enrollment Starts').'</th>'. |
'<th>'.&mt('Enrollment Starts').'</th>'. |
Line 1226 sub print_review {
|
Line 1472 sub print_review {
|
$inst_values .= '<td>'.$courseenv{'description'}.' '; |
$inst_values .= '<td>'.$courseenv{'description'}.' '; |
my $cloneinst = $courseenv{'internal.coursecode'}; |
my $cloneinst = $courseenv{'internal.coursecode'}; |
if ($cloneinst ne '') { |
if ($cloneinst ne '') { |
$inst_values .= &mt('([_1] in [_2])',$cloneinst,$env{'form.clonedom'}); |
$inst_values .= $cloneinst.' '.&mt('in').' '.$env{'form.clonedom'}; |
} else { |
} else { |
$inst_values .= &mt('(from [_1])',$env{'form.clonedom'}); |
$inst_values .= &mt('from').' '.$env{'form.clonedom'}; |
} |
} |
$inst_values .= '</td><td>'; |
$inst_values .= '</td><td>'; |
if ($env{'form.datemode'} eq 'preserve') { |
if ($env{'form.datemode'} eq 'preserve') { |
$inst_values .= $ctxt{'pcd'}; |
$inst_values .= $ctxt{'prd'}; |
} elsif ($env{'form.datemode'} eq 'shift') { |
} elsif ($env{'form.datemode'} eq 'shift') { |
$inst_values .= &mt('Shift dates by [_1] days',$env{'form.dateshift'}); |
$inst_values .= &mt('Shift dates by [_1] days',$env{'form.dateshift'}); |
} else { |
} else { |
Line 1299 sub print_review {
|
Line 1545 sub print_review {
|
'<td>'.$showsec.'</td></tr>'; |
'<td>'.$showsec.'</td></tr>'; |
} |
} |
} |
} |
my $output = '<p>'.&mt('Review the details of the course request before submission.').'</p>'. |
my $output = |
'<div>'.&Apache::lonhtmlcommon::start_pick_box(). |
'<div>'.&Apache::lonhtmlcommon::start_pick_box(). |
&Apache::lonhtmlcommon::row_title(&mt('Owner')). |
&Apache::lonhtmlcommon::row_title(&mt('Owner')). |
'<table class="LC_innerpickbox"><tr>'. |
'<table class="LC_innerpickbox"><tr>'. |
Line 1315 sub print_review {
|
Line 1561 sub print_review {
|
'<table class="LC_innerpickbox"><tr>'.$inst_headers.'</tr>'."\n". |
'<table class="LC_innerpickbox"><tr>'.$inst_headers.'</tr>'."\n". |
'<tr>'.$inst_values.'</tr></table>'."\n". |
'<tr>'.$inst_values.'</tr></table>'."\n". |
&Apache::lonhtmlcommon::row_closure(). |
&Apache::lonhtmlcommon::row_closure(). |
&Apache::lonhtmlcommon::row_title(&mt('Enrollment')). |
&Apache::lonhtmlcommon::row_title($enrollrow_title). |
'<table class="LC_innerpickbox"><tr>'.$enroll_headers.'</tr>'."\n". |
'<table class="LC_innerpickbox"><tr>'.$enroll_headers.'</tr>'."\n". |
'<tr>'.$enroll_values.'</tr></table>'."\n". |
'<tr>'.$enroll_values.'</tr></table>'."\n". |
&Apache::lonhtmlcommon::row_closure(); |
&Apache::lonhtmlcommon::row_closure(); |
Line 1330 sub print_review {
|
Line 1576 sub print_review {
|
$personnel_values.'</table>'."\n". |
$personnel_values.'</table>'."\n". |
&Apache::lonhtmlcommon::row_closure(1). |
&Apache::lonhtmlcommon::row_closure(1). |
&Apache::lonhtmlcommon::end_pick_box(); |
&Apache::lonhtmlcommon::end_pick_box(); |
my $cnum = &Apache::lonnet::generate_coursenum($dom); |
|
$output .= '<input type="hidden" name="cnum" value="'.$cnum.'" />'; |
|
return $output; |
return $output; |
} |
} |
|
|
Line 1374 ENDJS
|
Line 1618 ENDJS
|
'default','hide'); |
'default','hide'); |
if ($numlib > 1) { |
if ($numlib > 1) { |
$output .= &Apache::lonhtmlcommon::row_closure(). |
$output .= &Apache::lonhtmlcommon::row_closure(). |
&Apache::lonhtmlcommon::row_title( |
&Apache::lonhtmlcommon::row_title(&mt('Home Server for Course')); |
&mt('Home Server for Course')); |
|
} |
} |
$output .= $home_server_pick. |
$output .= $home_server_pick. |
&Apache::lonhtmlcommon::row_closure(1). |
&Apache::lonhtmlcommon::row_closure(1). |
Line 1414 sub clone_form {
|
Line 1657 sub clone_form {
|
return $output; |
return $output; |
} |
} |
|
|
sub clone_text { |
sub clone_text { |
return &Apache::lonlocal::texthash( |
return &Apache::lonlocal::texthash( |
'cid' => 'Course ID', |
'cid' => 'Course ID', |
'dmn' => 'Domain', |
'dmn' => 'Domain', |
Line 1514 sub coursecode_form {
|
Line 1757 sub coursecode_form {
|
|
|
sub get_course_dom { |
sub get_course_dom { |
my $codedom = &Apache::lonnet::default_login_domain(); |
my $codedom = &Apache::lonnet::default_login_domain(); |
|
if ($env{'form.showdom'} ne '') { |
|
if (&Apache::lonnet::domain($env{'form.showdom'}) ne '') { |
|
return $env{'form.showdom'}; |
|
} |
|
} |
if (($env{'user.domain'} ne '') && ($env{'user.domain'} ne 'public')) { |
if (($env{'user.domain'} ne '') && ($env{'user.domain'} ne 'public')) { |
|
my ($types,$typename) = &course_types(); |
|
if (ref($types) eq 'ARRAY') { |
|
foreach my $type (@{$types}) { |
|
if (&Apache::lonnet::usertools_access($env{'user.name'}, |
|
$env{'user.domain'},$type, |
|
undef,'requestcourses')) { |
|
return $env{'user.domain'}; |
|
} |
|
} |
|
my @possible_doms; |
|
foreach my $type (@{$types}) { |
|
my $dom_str = $env{'environment.reqcrsotherdom.'.$type}; |
|
if ($dom_str ne '') { |
|
my @domains = split(',',$dom_str); |
|
foreach my $entry (@domains) { |
|
my ($extdom,$extopt) = split(':',$entry); |
|
if ($extdom eq $env{'request.role.domain'}) { |
|
return $extdom; |
|
} |
|
unless(grep(/^\Q$extdom\E$/,@possible_doms)) { |
|
push(@possible_doms,$extdom); |
|
} |
|
} |
|
} |
|
} |
|
if (@possible_doms) { |
|
@possible_doms = sort(@possible_doms); |
|
return $possible_doms[0]; |
|
} |
|
} |
$codedom = $env{'user.domain'}; |
$codedom = $env{'user.domain'}; |
if ($env{'request.role.domain'} ne '') { |
if ($env{'request.role.domain'} ne '') { |
$codedom = $env{'request.role.domain'}; |
$codedom = $env{'request.role.domain'}; |
} |
} |
} |
} |
if ($env{'form.showdom'} ne '') { |
|
if (&Apache::lonnet::domain($env{'form.showdom'}) ne '') { |
|
$codedom = $env{'form.showdom'}; |
|
} |
|
} |
|
return $codedom; |
return $codedom; |
} |
} |
|
|
sub display_navbuttons { |
sub display_navbuttons { |
my ($r,$formname,$prev,$prevtext,$next,$nexttext,$state) = @_; |
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 ($state eq 'courseinfo') { |
if ($state eq 'courseinfo') { |
$r->print(' |
$r->print('<input type="button" name="next" value="'.$nexttext.'" '. |
<input type="button" name="next" value="'.$nexttext.'" onclick="javascript:validateForm();" />'); |
'onclick="javascript:validateForm();" />'); |
} elsif ($next) { |
} 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>'); |
} |
} |
Line 1571 sub print_request_outcome {
|
Line 1846 sub print_request_outcome {
|
} |
} |
$now = time; |
$now = time; |
$crstype = $env{'form.crstype'}; |
$crstype = $env{'form.crstype'}; |
|
my @instsections; |
if ($crstype eq 'official') { |
if ($crstype eq 'official') { |
if (&Apache::lonnet::auto_run('',$dom)) { |
if (&Apache::lonnet::auto_run('',$dom)) { |
($enrollstart,$enrollend)=&dates_from_form('enrollstart','enrollend'); |
($enrollstart,$enrollend)=&dates_from_form('enrollstart','enrollend'); |
Line 1578 sub print_request_outcome {
|
Line 1854 sub print_request_outcome {
|
for (my $i=0; $i<$env{'form.sectotal'}; $i++) { |
for (my $i=0; $i<$env{'form.sectotal'}; $i++) { |
if ($env{'form.sec_'.$i}) { |
if ($env{'form.sec_'.$i}) { |
if ($env{'form.secnum_'.$i} ne '') { |
if ($env{'form.secnum_'.$i} ne '') { |
$sections{$i}{'inst'} = $env{'form.secnum_'.$i}; |
my $sec = $env{'form.secnum_'.$i}; |
|
$sections{$i}{'inst'} = $sec; |
|
if (($sec ne '') && (!grep(/^\Q$sec\E$/,@instsections))) { |
|
push(@instsections,$sec); |
|
} |
$sections{$i}{'loncapa'} = $env{'form.loncapasec_'.$i}; |
$sections{$i}{'loncapa'} = $env{'form.loncapasec_'.$i}; |
} |
} |
} |
} |
Line 1593 sub print_request_outcome {
|
Line 1873 sub print_request_outcome {
|
} |
} |
} |
} |
} |
} |
$xlistinfo .= $env{'form.crosslist_'.$i.'_instsec'}; |
$crosslistings{$i}{'instcode'} = $xlistinfo; |
$crosslistings{$i}{'inst'} = $xlistinfo; |
$crosslistings{$i}{'instsec'} = $env{'form.crosslist_'.$i.'_instsec'}; |
$crosslistings{$i}{'loncapa'} = $env{'form.crosslist_'.$i.'_lcsec'}; |
$crosslistings{$i}{'loncapa'} = $env{'form.crosslist_'.$i.'_lcsec'}; |
} |
} |
} |
} |
Line 1604 sub print_request_outcome {
|
Line 1884 sub print_request_outcome {
|
} |
} |
for (my $i=0; $i<$env{'form.persontotal'}; $i++) { |
for (my $i=0; $i<$env{'form.persontotal'}; $i++) { |
my $uname = $env{'form.person_'.$i.'_uname'}; |
my $uname = $env{'form.person_'.$i.'_uname'}; |
my $udom = $env{'form.person_'.$i.'_uname'}; |
my $udom = $env{'form.person_'.$i.'_dom'}; |
if (($uname =~ /^$match_username$/) && ($udom =~ /^$match_domain$/)) { |
if (($uname =~ /^$match_username$/) && ($udom =~ /^$match_domain$/)) { |
if (&Apache::lonnet::domain($udom) ne '') { |
if (&Apache::lonnet::domain($udom) ne '') { |
unless (ref($personnel{$uname.':'.$udom}) eq 'HASH') { |
unless (ref($personnel{$uname.':'.$udom}) eq 'HASH') { |
Line 1616 sub print_request_outcome {
|
Line 1896 sub print_request_outcome {
|
} |
} |
my $role = $env{'form.person_'.$i.'_role'}; |
my $role = $env{'form.person_'.$i.'_role'}; |
unless ($role eq '') { |
unless ($role eq '') { |
if (ref(@{$personnel{$uname.':'.$udom}{'roles'}}) eq 'ARRAY') { |
if (ref($personnel{$uname.':'.$udom}{'roles'}) eq 'ARRAY') { |
my @curr_roles = @{$personnel{$uname.':'.$udom}{'roles'}}; |
my @curr_roles = @{$personnel{$uname.':'.$udom}{'roles'}}; |
unless (grep(/^\Q$role\E$/,@curr_roles)) { |
unless (grep(/^\Q$role\E$/,@curr_roles)) { |
push(@{$personnel{$uname.':'.$udom}{'roles'}},$role); |
push(@{$personnel{$uname.':'.$udom}{'roles'}},$role); |
Line 1679 sub print_request_outcome {
|
Line 1959 sub print_request_outcome {
|
my $clonedom = ''; |
my $clonedom = ''; |
if (($env{'form.clonecrs'} =~ /^($match_courseid)$/) && |
if (($env{'form.clonecrs'} =~ /^($match_courseid)$/) && |
($env{'form.clonedom'} =~ /^($match_domain)$/)) { |
($env{'form.clonedom'} =~ /^($match_domain)$/)) { |
my $clonehome = &Apache::lonnet::homeserver($env{'form.clonedom'},$env{'form.clonecrs'}); |
my $clonehome = &Apache::lonnet::homeserver($env{'form.clonecrs'}, |
|
$env{'form.clonedom'}); |
if ($clonehome ne 'no_host') { |
if ($clonehome ne 'no_host') { |
my $canclone = &can_clone_course($env{'user.name'},$env{'user.domain'}, |
my $canclone = |
$env{'form.clonecrs'}, $env{'form.clonedom'}); |
&Apache::loncoursequeueadmin::can_clone_course($env{'user.name'}, |
|
$env{'user.domain'},$env{'form.clonecrs'}, $env{'form.clonedom'}); |
if ($canclone) { |
if ($canclone) { |
$clonecrs = $env{'form.clonecrs'}; |
$clonecrs = $env{'form.clonecrs'}; |
$clonedom = $env{'form.clonedom'}; |
$clonedom = $env{'form.clonedom'}; |
Line 1718 sub print_request_outcome {
|
Line 2000 sub print_request_outcome {
|
my $val = &get_processtype($dom,$crstype,\@inststatuses,\%domconfig); |
my $val = &get_processtype($dom,$crstype,\@inststatuses,\%domconfig); |
if ($val eq '') { |
if ($val eq '') { |
if ($crstype eq 'official') { |
if ($crstype eq 'official') { |
$output = &mt('You are not permitted to request creation of official courses'); |
$output = &mt('You are not permitted to request creation of official courses.'); |
} elsif ($crstype eq 'unofficial') { |
} elsif ($crstype eq 'unofficial') { |
$output = &mt('You are not permitted to request creation of unofficial courses'); |
$output = &mt('You are not permitted to request creation of unofficial courses.'); |
} elsif ($crstype eq 'community') { |
} elsif ($crstype eq 'community') { |
$output = &mt('You are not permitted to request creation of communities'); |
$output = &mt('You are not permitted to request creation of communities'); |
} else { |
} else { |
Line 1734 sub print_request_outcome {
|
Line 2016 sub print_request_outcome {
|
details => $details, |
details => $details, |
); |
); |
my $requestkey = $dom.'_'.$cnum; |
my $requestkey = $dom.'_'.$cnum; |
|
my $validationerror; |
if ($val eq 'autolimit=') { |
if ($val eq 'autolimit=') { |
$disposition = 'process'; |
$disposition = 'process'; |
} elsif ($val =~ /^autolimit=(\d+)$/) { |
} elsif ($val =~ /^autolimit=(\d+)$/) { |
Line 1741 sub print_request_outcome {
|
Line 2024 sub print_request_outcome {
|
$disposition = &check_autolimit($env{'user.name'},$env{'user.domain'}, |
$disposition = &check_autolimit($env{'user.name'},$env{'user.domain'}, |
$dom,$crstype,$limit,\$message); |
$dom,$crstype,$limit,\$message); |
} elsif ($val eq 'validate') { |
} elsif ($val eq 'validate') { |
$disposition = |
my ($inststatuslist,$validationchk,$validation); |
&Apache::lonnet::auto_courserequest_validation($dom,$details, |
if (@inststatuses > 0) { |
\@inststatuses,\$message); |
$inststatuslist = join(',',@inststatuses); |
|
} |
|
my $instseclist; |
|
if (@instsections > 0) { |
|
$instseclist = join(',',@instsections); |
|
} |
|
$validationchk = |
|
&Apache::lonnet::auto_courserequest_validation($dom, |
|
$env{'user.name'}.':'.$env{'user.domain'},$crstype, |
|
$inststatuslist,$instcode,$instseclist); |
|
if ($validationchk =~ /:/) { |
|
($validation,$message) = split(':',$validationchk); |
|
} else { |
|
$validation = $validationchk; |
|
} |
|
if ($validation =~ /^error(.*)$/) { |
|
$disposition = 'approval'; |
|
$validationerror = $1; |
|
} else { |
|
$disposition = $validation; |
|
} |
} else { |
} else { |
$disposition = 'approval'; |
$disposition = 'approval'; |
} |
} |
$reqhash{'disposition'} = $disposition; |
$reqhash{'disposition'} = $disposition; |
$reqstatus = $disposition; |
$reqstatus = $disposition; |
|
my ($modified,$queued); |
if ($disposition eq 'rejected') { |
if ($disposition eq 'rejected') { |
$output = &mt('Your course request was rejected.'); |
$output = &mt('Your course request was rejected.'); |
if ($message) { |
if ($message) { |
Line 1792 sub print_request_outcome {
|
Line 2096 sub print_request_outcome {
|
description => $env{'form.cdescr'}, |
description => $env{'form.cdescr'}, |
}, |
}, |
}; |
}; |
my $putresult = &Apache::lonnet::newput_dom('courserequestqueue',$request, |
my $statuskey = 'status:'.$dom.':'.$cnum; |
$dom); |
my %userreqhash = &Apache::lonnet::get('courserequests',[$statuskey], |
if ($putresult eq 'ok') { |
$env{'user.domain'},$env{'user.name'}); |
my %emails = &Apache::loncommon::getemails(); |
if ($userreqhash{$statuskey} ne '') { |
my $address; |
$modified = 1; |
if (($emails{'permanentemail'} ne '') || ($emails{'notification'} ne '')) { |
my %queuehash = &Apache::lonnet::get_dom('courserequestqueue', |
$address = $emails{'permanentemail'}; |
[$cnum.'_approval', |
if ($address eq '') { |
$cnum.'_pending'],$dom); |
$address = $emails{'notification'}; |
if (($queuehash{$cnum.'_approval'} ne '') || |
} |
($queuehash{$cnum.'_pending'} ne '')) { |
} |
$queued = 1; |
$output = &mt('Your course request has been recorded.').'<br />'; |
} |
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 />'. |
unless ($queued) { |
&mt('To access your LON-CAPA message, go to the Main Menu and click on "Send and Receive Messages".').'<br />'; |
my $putresult = &Apache::lonnet::newput_dom('courserequestqueue',$request, |
if ($address ne '') { |
$dom); |
$output.= &mt('An e-mail will also be sent to: [_1] when this occurs.',$address).'<br />'; |
if ($putresult eq 'ok') { |
} |
$output = &mt('Your course request has been recorded.').'<br />'. |
if ($req_notifylist) { |
¬ification_information($disposition,$req_notifylist, |
my $fullname = &Apache::loncommon::plainname($env{'user.name'}, |
$cnum,$now); |
$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 { |
} else { |
$output .= '<div class="LC_info">'. |
$reqstatus = 'domainerror'; |
&mt('Your request has been placed in a queue pending administrative action.').'<br />'. |
$reqhash{'disposition'} = $disposition; |
&mt("Usually this means that your institution's information systems do not list you among the instructional personnel for this course.").'<br />'. |
my $warning = &mt('An error occurred saving your request in the pending requests queue.'); |
&mt('The list of instructional personnel for the course will be automatically checked daily, and once you are listed the request will be processed.'). |
$output = '<span class"LC_warning">'.$warning.'</span><br />'; |
'</div>'; |
|
} |
} |
} 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); |
my ($storeresult,$statusresult); |
Line 1851 sub print_request_outcome {
|
Line 2144 sub print_request_outcome {
|
$output .= '<span class="LC_warning">'.&mt('An error occurred saving a record of the status of your request: [_1].',$statusresult).'</span><br />'; |
$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"); |
&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); |
|
} |
|
if ($validationerror ne '') { |
|
$output .= '<span class="LC_warning">'.&mt('An error occurred validating your request with institutional data sources: [_1].',$validationerror).'</p>'; |
|
} |
|
} |
|
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); |
|
} |
|
} elsif ($disposition eq 'pending') { |
|
$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>'; |
|
} else { |
|
$output .= '<div class="LC_warning">'. |
|
&mt('Your request status is: [_1].',$disposition). |
|
'</div>' |
} |
} |
return $output; |
return $output; |
} |
} |
Line 1859 sub get_processtype {
|
Line 2196 sub get_processtype {
|
my ($dom,$crstype,$inststatuses,$domconfig) = @_; |
my ($dom,$crstype,$inststatuses,$domconfig) = @_; |
return unless ((ref($inststatuses) eq 'ARRAY') && (ref($domconfig) eq 'HASH')); |
return unless ((ref($inststatuses) eq 'ARRAY') && (ref($domconfig) eq 'HASH')); |
my (%userenv,%settings,$val); |
my (%userenv,%settings,$val); |
my @options = ('autolimit','validate','approve'); |
my @options = ('autolimit','validate','approval'); |
if ($dom eq $env{'user.domain'}) { |
if ($dom eq $env{'user.domain'}) { |
%userenv = |
%userenv = |
&Apache::lonnet::userenvironment($env{'user.domain'},$env{'user.name'}, |
&Apache::lonnet::userenvironment($env{'user.domain'},$env{'user.name'}, |
Line 1872 sub get_processtype {
|
Line 2209 sub get_processtype {
|
if (ref($domconfig->{'requestcourses'}) eq 'HASH') { |
if (ref($domconfig->{'requestcourses'}) eq 'HASH') { |
%settings = %{$domconfig->{'requestcourses'}}; |
%settings = %{$domconfig->{'requestcourses'}}; |
if (ref($settings{$crstype}) eq 'HASH') { |
if (ref($settings{$crstype}) eq 'HASH') { |
if (($env{'user.adv'}) && (exists($settings{$crstype}{'_LC_adv'}))) { |
if (($env{'user.adv'}) && ($settings{$crstype}{'_LC_adv'} ne '')) { |
$val = $settings{$crstype}{'_LC_adv'}; |
$val = $settings{$crstype}{'_LC_adv'}; |
@{$inststatuses} = ('_LC_adv_'); |
@{$inststatuses} = ('_LC_adv_'); |
} else { |
} else { |
Line 1925 sub get_processtype {
|
Line 2262 sub get_processtype {
|
} else { |
} else { |
%userenv = &Apache::lonnet::userenvironment($env{'user.domain'}, |
%userenv = &Apache::lonnet::userenvironment($env{'user.domain'}, |
$env{'user.name'},'reqcrsotherdom.'.$env{'form.crstype'}); |
$env{'user.name'},'reqcrsotherdom.'.$env{'form.crstype'}); |
if ($userenv{'reqcrsotherdom'}) { |
if ($userenv{'reqcrsotherdom.'.$crstype}) { |
my @doms = split(',',$userenv{'reqcrsotherdom'}); |
my @doms = split(',',$userenv{'reqcrsotherdom.'.$crstype}); |
my $optregex = join('|',@options); |
my $optregex = join('|',@options); |
if (grep(/^\Q$dom\E:($optregex=?\d*)/,@doms)) { |
foreach my $item (@doms) { |
$val = $1; |
my ($extdom,$extopt) = split(':',$item); |
|
if ($extdom eq $dom) { |
|
if ($extopt =~ /^($optregex)(=?\d*)$/) { |
|
$val = $1.$2; |
|
} |
|
last; |
|
} |
} |
} |
@{$inststatuses} = ('_external_'); |
@{$inststatuses} = ('_external_'); |
} |
} |
Line 1972 sub check_autolimit {
|
Line 2315 sub check_autolimit {
|
} |
} |
|
|
sub retrieve_settings { |
sub retrieve_settings { |
my ($dom,$request_id) = @_; |
my ($dom,$cnum) = @_; |
my %reqinfo = &get_request_settings($request_id,$dom); |
my ($result,%reqinfo) = &get_request_settings($dom,$cnum); |
my %stored; |
if ($result eq 'ok') { |
$stored{'cdescr'} = &unescape($reqinfo{'description'}); |
if (($env{'user.name'} eq $reqinfo{'owner'}) && |
$stored{'accessstart'} = $reqinfo{'accessstart'}; |
($env{'user.domain'} eq $reqinfo{'domain'})) { |
$stored{'accessend'} = $reqinfo{'accessend'}; |
$env{'form.chome'} = $reqinfo{'coursehome'}; |
if ($stored{'accessend'} == 0) { |
$env{'form.cdescr'} = $reqinfo{'cdescr'}; |
$stored{'no_end_date'} = 1; |
$env{'form.crstype'} = $reqinfo{'crstype'}; |
} |
&generate_date_items($reqinfo{'accessstart'},'accessstart'); |
$stored{'enrollstart'} = $reqinfo{'enrollstart'}; |
&generate_date_items($reqinfo{'accessend'},'accessend'); |
$stored{'enrollend'} = $reqinfo{'enrollend'}; |
if ($reqinfo{'accessend'} == 0) { |
$stored{'crosslist'} = $reqinfo{'crosslist'}; |
$env{'form.no_end_date'} = 1; |
$stored{'clonecrs'} = $reqinfo{'clonecrs'}; |
} |
$stored{'clonedom'} = $reqinfo{'clonedom'}; |
if (($reqinfo{'crstype'} eq 'official') && (&Apache::lonnet::auto_run('',$dom))) { |
$stored{'sections'} = $reqinfo{'sections'}; |
&generate_date_items($reqinfo{'enrollstart'},'enrollstart'); |
$stored{'personnel'} = $reqinfo{'personnel'}; |
&generate_date_items($reqinfo{'enrollend'},'enrollend'); |
|
} |
return %stored; |
$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,$i,$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 { |
sub get_request_settings { |
my ($request_id,$dom); |
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; |
} |
} |
|
|
1; |
1; |