version 1.4, 2009/08/05 23:44:52
|
version 1.13, 2009/08/15 01:59:04
|
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 Apache::loncoursequeueadmin; |
use LONCAPA qw(:DEFAULT :match); |
use LONCAPA qw(:DEFAULT :match); |
|
|
sub handler { |
sub handler { |
Line 113 sub handler {
|
Line 170 sub handler {
|
} |
} |
|
|
my %trail = ( |
my %trail = ( |
crstype => 'Course Request Action', |
crstype => 'Course Request Action', |
codepick => 'Category', |
codepick => 'Category', |
courseinfo => 'Information', |
courseinfo => 'Description', |
enrollment => 'Enrollment', |
enrollment => 'Enrollment', |
personnel => 'Personnel', |
personnel => 'Personnel', |
review => 'Review', |
review => 'Review', |
process => 'Result', |
process => 'Result', |
|
pick_request => 'Display Summary', |
); |
); |
|
|
my $page = 0; |
my $page = 0; |
Line 178 sub handler {
|
Line 236 sub handler {
|
'</div>'.&Apache::loncommon::end_page()); |
'</div>'.&Apache::loncommon::end_page()); |
} |
} |
} elsif ($action eq 'view') { |
} elsif ($action eq 'view') { |
&print_request_status($jscript,$loaditems,$crumb); |
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($jscript,$loaditems,$crumb); |
&print_request_logs($jscript,$loaditems,$crumb); |
} else { |
} else { |
Line 190 sub handler {
|
Line 253 sub handler {
|
sub header { |
sub header { |
my ($bodytitle,$jscript,$loaditems,$jsextra) = @_; |
my ($bodytitle,$jscript,$loaditems,$jsextra) = @_; |
if ($jscript) { |
if ($jscript) { |
$jscript = '<script type="text/javascript">'. |
$jscript = '<script type="text/javascript">'."\n". |
$jscript.'</script>'."\n"; |
'// <![CDATA['."\n". |
|
$jscript."\n".'// ]]>'."\n".'</script>'."\n"; |
} |
} |
if ($loaditems) { |
if ($loaditems) { |
$loaditems = {'add_entries' => $loaditems,}; |
$loaditems = {'add_entries' => $loaditems,}; |
Line 212 sub form_elements {
|
Line 276 sub form_elements {
|
}, |
}, |
courseinfo => { |
courseinfo => { |
cdescr => 'text', |
cdescr => 'text', |
clonecourse => 'text', |
clonecrs => 'text', |
clonedomain => 'selectbox', |
clonedom => 'selectbox', |
datemode => 'radio', |
datemode => 'radio', |
dateshift => 'text', |
dateshift => 'text', |
}, |
}, |
enrollment => { |
enrollment => { |
startaccess_month => 'selectbox', |
accessstart_month => 'selectbox', |
startaccess_hour => 'selectbox', |
accessstart_hour => 'selectbox', |
endaccess_month => 'selectbox', |
accessend_month => 'selectbox', |
endaccess_hour => 'selectbox', |
accessend_hour => 'selectbox', |
startaccess_day => 'text', |
accessstart_day => 'text', |
startaccess_year => 'text', |
accessstart_year => 'text', |
startaccess_minute => 'text', |
accessstart_minute => 'text', |
startaccess_second => 'text', |
accessstart_second => 'text', |
endaccess_day => 'text', |
accessend_day => 'text', |
endaccess_year => 'text', |
accessend_year => 'text', |
endaccess_minute => 'text', |
accessend_minute => 'text', |
endaccess_second => 'text', |
accessend_second => 'text', |
no_end_date => 'checkbox', |
no_end_date => 'checkbox', |
}, |
}, |
personnel => { |
personnel => { |
persontotal => 'hidden', |
persontotal => 'hidden', |
addperson => 'checkbox', |
addperson => 'checkbox', |
}, |
}, |
|
review => { |
|
cnum => 'hidden', |
|
}, |
}, |
}, |
view => { |
view => { |
crstype => { |
crstype => { |
Line 244 sub form_elements {
|
Line 311 sub form_elements {
|
}, |
}, |
}, |
}, |
); |
); |
|
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); |
my (@codetitles,%cat_titles,%cat_order,@code_order,$lastitem); |
&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); |
Line 260 sub form_elements {
|
Line 334 sub form_elements {
|
if (&Apache::lonnet::auto_run('',$dom)) { |
if (&Apache::lonnet::auto_run('',$dom)) { |
my %extras = ( |
my %extras = ( |
sectotal => 'hidden', |
sectotal => 'hidden', |
startenroll_month => 'selectbox', |
enrollstart_month => 'selectbox', |
startenroll_hour => 'selectbox', |
enrollstart_hour => 'selectbox', |
endenroll_month => 'selectbox', |
enrollend_month => 'selectbox', |
endenroll_hour => 'selectbox', |
enrollend_hour => 'selectbox', |
startenroll_day => 'text', |
enrollstart_day => 'text', |
startenroll_year => 'text', |
enrollstart_year => 'text', |
startenroll_minute => 'text', |
enrollstart_minute => 'text', |
startenroll_second => 'text', |
enrollstart_second => 'text', |
endenroll_day => 'text', |
enrollend_day => 'text', |
endenroll_year => 'text', |
enrollend_year => 'text', |
endenroll_minute => 'text', |
enrollend_minute => 'text', |
endenroll_second => 'text', |
enrollend_second => 'text', |
crosslisttotal => 'hidden', |
crosslisttotal => 'hidden', |
addcrosslist => 'checkbox', |
addcrosslist => 'checkbox', |
autoadds => 'radio', |
autoadds => 'radio', |
Line 312 sub form_elements {
|
Line 386 sub form_elements {
|
$persontotal = 1; |
$persontotal = 1; |
} |
} |
for (my $i=0; $i<$persontotal; $i++) { |
for (my $i=0; $i<$persontotal; $i++) { |
$people{'person_'.$i.'_uname'} = 'text', |
$people{'person_'.$i.'_uname'} = 'text', |
$people{'person_'.$i.'_dom'} = 'selectbox', |
$people{'person_'.$i.'_dom'} = 'selectbox', |
$people{'person_'.$i.'_hidedom'} = 'hidden', |
$people{'person_'.$i.'_hidedom'} = 'hidden', |
$people{'person_'.$i.'_first'} = 'text', |
$people{'person_'.$i.'_firstname'} = 'text', |
$people{'person_'.$i.'_last'} = 'text', |
$people{'person_'.$i.'_lastname'} = 'text', |
$people{'person_'.$i.'_email'} = 'text', |
$people{'person_'.$i.'_emailaddr'} = 'text', |
$people{'person_'.$i.'_role'} = 'selectbox', |
$people{'person_'.$i.'_role'} = 'selectbox', |
$people{'person_'.$i.'_sec'} = 'selectbox', |
$people{'person_'.$i.'_sec'} = 'selectbox', |
$people{'person_'.$i.'_newsec'} = 'text', |
$people{'person_'.$i.'_newsec'} = 'text', |
$people{'person_'.$i.'_sections'} = 'hidden', |
$people{'person_'.$i.'_sections'} = 'hidden', |
} |
} |
my %personnelhash = (%{$elements{'new'}{'personnel'}},%people); |
my %personnelhash = (%{$elements{'new'}{'personnel'}},%people); |
%{$elements{'new'}{'personnel'}} = %personnelhash; |
%{$elements{'new'}{'personnel'}} = %personnelhash; |
Line 468 END
|
Line 542 END
|
'<div>'. |
'<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 535 END
|
Line 609 END
|
$jsextra = "\n".&Apache::loncommon::coursebrowser_javascript($dom); |
$jsextra = "\n".&Apache::loncommon::coursebrowser_javascript($dom); |
} |
} |
$r->print(&header('Request a course',$js.$jscript,$loaditems,$jsextra).$crumb); |
$r->print(&header('Request a course',$js.$jscript,$loaditems,$jsextra).$crumb); |
if ($state eq 'process') { |
&print_request_form($r,$action,$state,$page,$states,$dom); |
&print_request_outcome($r,$state,$dom); |
|
} else { |
|
&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); |
$r->print(&header('Manage course requests',$js.$jscript,$loaditems).$crumb); |
|
if ($state eq 'pick_request') { |
|
$r->print(&print_request_status($dom)); |
|
} |
} 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); |
} |
} |
$r->print(&Apache::loncommon::end_page()); |
$r->print(&Apache::loncommon::end_page()); |
return; |
return; |
Line 556 sub print_request_form {
|
Line 629 sub print_request_form {
|
$prev = $states->{$action}[$page-1]; |
$prev = $states->{$action}[$page-1]; |
$next = $states->{$action}[$page+1]; |
$next = $states->{$action}[$page+1]; |
my %navtxt = &Apache::lonlocal::texthash ( |
my %navtxt = &Apache::lonlocal::texthash ( |
prev => 'Previous', |
prev => 'Back', |
next => 'Next', |
next => 'Next', |
); |
); |
$crstype = $env{'form.crstype'}; |
$crstype = $env{'form.crstype'}; |
Line 631 sub print_request_form {
|
Line 704 sub print_request_form {
|
$r->print(&print_enrollment_menu($formname,$instcode,$dom,\@codetitles, |
$r->print(&print_enrollment_menu($formname,$instcode,$dom,\@codetitles, |
\%cat_titles,\%cat_order,\@code_order)); |
\%cat_titles,\%cat_order,\@code_order)); |
} elsif ($state eq 'personnel') { |
} elsif ($state eq 'personnel') { |
$r->print(&print_personnel_menu($dom,$formname)); |
$r->print(&print_personnel_menu($dom,$formname,$crstype)); |
} elsif ($state eq 'review') { |
} elsif ($state eq 'review') { |
&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(&print_review($formname,$dom,\@codetitles,\%cat_titles,\%cat_order, |
\@code_order)); |
\@code_order)); |
$navtxt{'next'} = &mt('Submit course request'); |
$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); |
} |
} |
my @excluded = ('counter'); |
my @excluded = ('counter'); |
my %elements = &form_elements($dom); |
my %elements = &form_elements($dom); |
Line 796 sub date_setting_table {
|
Line 876 sub date_setting_table {
|
} |
} |
|
|
sub print_personnel_menu { |
sub print_personnel_menu { |
my ($dom,$formname) = @_; |
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)) { |
Line 806 sub print_personnel_menu {
|
Line 886 sub print_personnel_menu {
|
$persontotal ++; |
$persontotal ++; |
} |
} |
my $userlinktxt = &mt('Set User'); |
my $userlinktxt = &mt('Set User'); |
my @items = ('uname','dom','last','first','email','hidedom'); |
my @items = ('uname','dom','lastname','firstname','emailaddr','hidedom'); |
|
|
my $roleoptions; |
my $roleoptions; |
my @roles = &Apache::lonuserutils::roles_by_context('course'); |
my @roles = &Apache::lonuserutils::roles_by_context('course'); |
|
my $type = 'Course'; |
|
if ($crstype eq 'community') { |
|
$type = 'Community'; |
|
} |
foreach my $role (@roles) { |
foreach my $role (@roles) { |
my $plrole=&Apache::lonnet::plaintext($role); |
my $plrole=&Apache::lonnet::plaintext($role,$type); |
$roleoptions .= ' <option value="'.$role.'">'.$plrole.'</option>'."\n"; |
$roleoptions .= ' <option value="'.$role.'">'.$plrole.'</option>'."\n"; |
} |
} |
my %customroles=&Apache::lonuserutils::my_custom_roles(); |
my %customroles=&Apache::lonuserutils::my_custom_roles(); |
Line 857 sub print_personnel_menu {
|
Line 941 sub print_personnel_menu {
|
for (my $i=0; $i<$persontotal; $i++) { |
for (my $i=0; $i<$persontotal; $i++) { |
my @linkargs = map { 'person_'.$i.'_'.$_ } (@items); |
my @linkargs = map { 'person_'.$i.'_'.$_ } (@items); |
my $linkargstr = join("','",@linkargs); |
my $linkargstr = join("','",@linkargs); |
my $userlink = &Apache::loncommon::selectuser_link($formname,@linkargs,$userlinktxt); |
my $userlink = &Apache::loncommon::selectuser_link($formname,@linkargs,$dom,$userlinktxt); |
my $uname_form = '<input type="text" name="person_'.$i.'_uname" value=""'. |
my $uname_form = '<input type="text" name="person_'.$i.'_uname" value=""'. |
' onFocus="this.blur();'. |
' onFocus="this.blur();'. |
'openuserbrowser('."'$formname','$linkargstr'".');" />'; |
'openuserbrowser('."'$formname','$linkargstr','$dom'".');" />'; |
my $onchange = 'javascript:fix_domain('."'$formname','person_".$i."_dom',". |
my $onchange = 'javascript:fix_domain('."'$formname','person_".$i."_dom',". |
"'person_".$i."_hidedom'".');'. |
"'person_".$i."_hidedom'".');'. |
'openuserbrowser('."'$formname','$linkargstr'".');'; |
'openuserbrowser('."'$formname','$linkargstr','$dom'".');'; |
my $udom_form = &Apache::loncommon::select_dom_form($dom,'person_'.$i.'_dom','', |
my $udom_form = &Apache::loncommon::select_dom_form($dom,'person_'.$i.'_dom','', |
1,$onchange). |
1,$onchange). |
'<input type="hidden" name="person_'.$i.'_hidedom" value="'.$dom.'" />'; |
'<input type="hidden" name="person_'.$i.'_hidedom" value="'.$dom.'" />'; |
Line 890 sub print_personnel_menu {
|
Line 974 sub print_personnel_menu {
|
'</span>'). |
'</span>'). |
'<table><tr><td align="center" valign="top">'.&mt('Username').'<br />'.$uname_form.'</td>'."\n". |
'<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" colspan="2">'.&mt('Domain').'<br />'.$udom_form.'</td></tr><tr>'."\n". |
'<td align="center" valign="top">'.&mt('First Name').'<br />'.$form_elems{'first'}.'</td>'."\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{'last'}.'</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{email}.'</td></tr>'."\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". |
'<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". |
'<td'.$seccolspan.' align="center" valign="top">'.&mt('Section(s)').'<br />'.$sectionselector.'</td>'."\n". |
'</tr></table>'.&Apache::lonhtmlcommon::row_closure(); |
'</tr></table>'.&Apache::lonhtmlcommon::row_closure(); |
Line 907 sub print_personnel_menu {
|
Line 991 sub print_personnel_menu {
|
} |
} |
|
|
sub print_request_status { |
sub print_request_status { |
return; |
my ($dom) = @_; |
|
my %requests = &Apache::lonnet::dumpstore('courserequests',$env{'user.domain'}, |
|
$env{'user.name'}); |
|
my ($output,$formname,%queue_by_date); |
|
foreach my $key (keys(%requests)) { |
|
if (ref($requests{$key}) eq 'HASH') { |
|
my ($cdom,$cnum) = split('_',$key); |
|
next if ($cdom ne $dom); |
|
my $entry; |
|
my $timestamp = $requests{$key}{'timestamp'}; |
|
my $crstype = $requests{$key}{'crstype'}; |
|
my $status = $requests{$key}{'status'}; |
|
next unless (($env{'form.crstype'} eq 'all') || |
|
($env{'form.crstype'} eq $crstype)); |
|
next unless (($status eq 'approval') || ($status eq 'pending')); |
|
if (ref($requests{$key}{'details'}) eq 'HASH') { |
|
$entry = $key.':'.$crstype.':'.$requests{$key}{'details'}{'cdescr'}; |
|
if ($crstype eq 'official') { |
|
$entry .= ':'.$requests{$key}{'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 = '<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="crstype" value="'.$env{'form.crstype'}.'" />'."\n"; |
|
if (@sortedtimes > 0) { |
|
$output .= &Apache::loncommon::start_data_table(). |
|
&Apache::loncommon::start_data_table_header_row(). |
|
'<th>'.&mt('Action').'</th>'. |
|
'<th>'.&mt('Description').'</th>'; |
|
if ($env{'form.crstype'} eq 'all') { |
|
$output .= '<th>'.&mt('Type').'</th>'; |
|
} |
|
if (($env{'form.crstype'} eq 'all') || ($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:viewrequest('."'$cdom','$cnum'".')" /></td>'. |
|
'<td>'.$desc.'</td>'; |
|
if ($env{'form.crstype'} eq 'all') { |
|
$output .= '<td>'.&course_types($type).'</td>'; |
|
} |
|
if (($env{'form.crstype'} eq 'all') || |
|
($env{'form.crstype'} eq 'official')) { |
|
$output .= '<td>'.$instcode.'</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 .= ' |
|
<input type="button" name="prev" value="'.&mt('Back').'" onclick="javascript:backPage(document.'.$formname.",'crstype'".')" /> |
|
</form>'; |
|
return $output; |
} |
} |
|
|
sub print_request_logs { |
sub print_request_logs { |
|
my ($jscript,$loaditems,$crumb) = @_; |
return; |
return; |
} |
} |
|
|
Line 962 sub print_review {
|
Line 1127 sub print_review {
|
$section_headers = '<th>'.&mt('Sections').'</th>'. |
$section_headers = '<th>'.&mt('Sections').'</th>'. |
'<th>'.&mt('Crosslistings').'</th>'; |
'<th>'.&mt('Crosslistings').'</th>'; |
|
|
my ($startenroll,$endenroll) = &dates_from_form('startenroll','endenroll'); |
my ($enrollstart,$enrollend) = &dates_from_form('enrollstart','enrollend'); |
my @autoroster = (&mt('No'),&mt('Yes')); |
my @autoroster = (&mt('No'),&mt('Yes')); |
$enroll_values = '<td>'.$autoroster[$env{'form.autoadds'}].'</td>'. |
$enroll_values = '<td>'.$autoroster[$env{'form.autoadds'}].'</td>'. |
'<td>'.$autoroster[$env{'form.autodrops'}].'</td>'. |
'<td>'.$autoroster[$env{'form.autodrops'}].'</td>'. |
'<td>'.&Apache::lonlocal::locallocaltime($startenroll).'</td>'. |
'<td>'.&Apache::lonlocal::locallocaltime($enrollstart).'</td>'. |
'<td>'.&Apache::lonlocal::locallocaltime($endenroll).'</td>'; |
'<td>'.&Apache::lonlocal::locallocaltime($enrollend).'</td>'; |
$section_values = '<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) { |
if ($env{'form.sectotal'} > 0) { |
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}) { |
$section_values .= $env{'form.secnum_'.$i}; |
$secinfo .= '<tr><td>'.$env{'form.secnum_'.$i}.'</td><td>'; |
if ($env{'form.loncapasec_'.$i} ne '') { |
if ($env{'form.loncapasec_'.$i} ne '') { |
$section_values .= ' => '.$env{'form.loncapasec_'.$i}; |
$secinfo .= $env{'form.loncapasec_'.$i}; |
|
} else { |
|
$secinfo .= &mt('None'); |
} |
} |
$section_values .= '<br />'; |
$secinfo .= '</td></tr>'; |
} |
} |
} |
} |
} |
} |
$section_values .= '</td><td>'; |
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'}) { |
if ($env{'form.crosslisttotal'}) { |
for (my $i=0; $i<$env{'form.crosslisttotal'}; $i++) { |
for (my $i=0; $i<$env{'form.crosslisttotal'}; $i++) { |
if ($env{'form.crosslist_'.$i}) { |
if ($env{'form.crosslist_'.$i}) { |
if (ref($codetitles) eq 'ARRAY') { |
$xlistinfo .= '<tr><td>'; |
if (@{$codetitles} > 0) { |
if (ref($code_order) eq 'ARRAY') { |
foreach my $item (@{$codetitles}) { |
if (@{$code_order} > 0) { |
$section_values .= $env{'form.crosslist_'.$i.'_'.$item}; |
foreach my $item (@{$code_order}) { |
|
$xlistinfo .= $env{'form.crosslist_'.$i.'_'.$item}; |
} |
} |
} else { |
|
$section_values .= $env{'form.crosslist_'.$i.'_instsec'}; |
|
} |
} |
} else { |
|
$section_values .= $env{'form.crosslist_'.$i.'_instsec'}; |
|
} |
} |
|
$xlistinfo .= $env{'form.crosslist_'.$i.'_instsec'}.'</td><td>'; |
if ($env{'form.crosslist_'.$i.'_lcsec'}) { |
if ($env{'form.crosslist_'.$i.'_lcsec'}) { |
$section_values .= ' => '.$env{'form.crosslist_'.$i.'_lcsec'}; |
$xlistinfo .= $env{'form.crosslist_'.$i.'_lcsec'}; |
|
} else { |
|
$xlistinfo .= &mt('None'); |
} |
} |
$section_values .= '<br />'; |
$xlistinfo .= '</td></tr>'; |
} |
} |
} |
} |
} |
} |
$section_values .= '</td>'; |
if ($xlistinfo eq '') { |
|
$xlistinfo = '<tr><td colspan="2">'.&mt('None').'</td></tr>'; |
|
} |
|
$section_values .= $xlistinfo.'</table></td>'; |
} |
} |
} |
} |
|
|
my %ctxt = &clone_text(); |
my %ctxt = &clone_text(); |
$inst_headers .= '<th>'.&mt('Clone From').'</th>'; |
$inst_headers .= '<th>'.&mt('Clone From').'</th>'; |
if (($env{'form.clonecourse'} =~ /^$match_name$/) && |
if (($env{'form.clonecrs'} =~ /^$match_name$/) && |
($env{'form.clonedomain'} =~ /^$match_domain$/)) { |
($env{'form.clonedom'} =~ /^$match_domain$/)) { |
my %coursehash = |
my %coursehash = |
&Apache::lonnet::courseiddump($env{'form.clonedomain'},'.',1,'.','.', |
&Apache::lonnet::courseiddump($env{'form.clonedom'},'.',1,'.','.', |
$env{'form.clonecourse'},undef,undef,'.'); |
$env{'form.clonecrs'},undef,undef,'.'); |
my $cloneid = $env{'form.clonedomain'}.'_'.$env{'form.clonecourse'}; |
my $cloneid = $env{'form.clonedom'}.'_'.$env{'form.clonecrs'}; |
if (ref($coursehash{$cloneid}) eq 'HASH') { |
if (ref($coursehash{$cloneid}) eq 'HASH') { |
$inst_headers .= '<th>'.$ctxt{'dsh'}.'</th>'; |
$inst_headers .= '<th>'.$ctxt{'dsh'}.'</th>'; |
my $clonedesc = $coursehash{$cloneid}{'description'}; |
my $clonedesc = $coursehash{$cloneid}{'description'}; |
Line 1021 sub print_review {
|
Line 1201 sub print_review {
|
|
|
$inst_values .= '<td>'.$clonedesc.' '; |
$inst_values .= '<td>'.$clonedesc.' '; |
if ($cloneinst ne '') { |
if ($cloneinst ne '') { |
$inst_values .= &mt('([_1] in [_2])',$cloneinst,$env{'form.clonedomain'}); |
$inst_values .= &mt('([_1] in [_2])',$cloneinst,$env{'form.clonedom'}); |
} else { |
} else { |
$inst_values .= &mt('(from [_1])',$env{'form.clonedomain'}); |
$inst_values .= &mt('(from [_1])',$env{'form.clonedom'}); |
} |
} |
$inst_values .= '</td><td>'; |
$inst_values .= '</td><td>'; |
if ($env{'form.datemode'} eq 'preserve') { |
if ($env{'form.datemode'} eq 'preserve') { |
Line 1042 sub print_review {
|
Line 1222 sub print_review {
|
} |
} |
$enroll_headers .= '<th>'.&mt('Access Starts').'</th>'. |
$enroll_headers .= '<th>'.&mt('Access Starts').'</th>'. |
'<th>'.&mt('Access Ends').'</th>'; |
'<th>'.&mt('Access Ends').'</th>'; |
my ($startaccess,$endaccess) = &dates_from_form('startaccess','endaccess'); |
my ($accessstart,$accessend) = &dates_from_form('accessstart','accessend'); |
$enroll_values .= '<td>'.&Apache::lonlocal::locallocaltime($startaccess).'</td>'; |
$enroll_values .= '<td>'.&Apache::lonlocal::locallocaltime($accessstart).'</td>'; |
if ($endaccess == 0) { |
if ($accessend == 0) { |
$enroll_values .= '<td>'.&mt('No end date').'</td>'; |
$enroll_values .= '<td>'.&mt('No end date').'</td>'; |
} else { |
} else { |
$enroll_values .= '<td>'.&Apache::lonlocal::locallocaltime($endaccess).'</td>'; |
$enroll_values .= '<td>'.&Apache::lonlocal::locallocaltime($accessend).'</td>'; |
} |
} |
|
|
my $container = 'Course'; |
my $container = 'Course'; |
Line 1064 sub print_review {
|
Line 1244 sub print_review {
|
for (my $i=0; $i<$env{'form.persontotal'}; $i++) { |
for (my $i=0; $i<$env{'form.persontotal'}; $i++) { |
if ($env{'form.person_'.$i.'_uname'} ne '') { |
if ($env{'form.person_'.$i.'_uname'} ne '') { |
$personnel_values .= |
$personnel_values .= |
'<tr><td>'.$env{'form.person_'.$i.'_first'}.' '. |
'<tr><td>'.$env{'form.person_'.$i.'_firstname'}.' '. |
$env{'form.person_'.$i.'_last'}.'</td>'. |
$env{'form.person_'.$i.'_lastname'}.'</td>'. |
'<td>'.$env{'form.person_'.$i.'_uname'}.':'. |
'<td>'.$env{'form.person_'.$i.'_uname'}.':'. |
$env{'form.person_'.$i.'_dom'}.'</td>'. |
$env{'form.person_'.$i.'_dom'}.'</td>'. |
'<td>'.&Apache::lonnet::plaintext($env{'form.person_'.$i.'_role'}, |
'<td>'.&Apache::lonnet::plaintext($env{'form.person_'.$i.'_role'}, |
Line 1076 sub print_review {
|
Line 1256 sub print_review {
|
my $output = '<p>'.&mt('Review the details of the course request before submission.').'</p>'. |
my $output = '<p>'.&mt('Review the details of the course request before submission.').'</p>'. |
'<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">'. |
'<table class="LC_innerpickbox"><tr>'. |
'<th>'.&mt('Name').'</th>'. |
'<th>'.&mt('Name').'</th>'. |
'<th>'.&mt('Username:Domain').'</th>'. |
'<th>'.&mt('Username:Domain').'</th>'. |
'<th>'.&mt('E-mail address').'</th>'. |
'<th>'.&mt('E-mail address').'</th>'. |
Line 1085 sub print_review {
|
Line 1265 sub print_review {
|
'<td>'.$owneremail.'</td>'. |
'<td>'.$owneremail.'</td>'. |
'</tr></table>'."\n". |
'</tr></table>'."\n". |
&Apache::lonhtmlcommon::row_closure(). |
&Apache::lonhtmlcommon::row_closure(). |
&Apache::lonhtmlcommon::row_title(&mt('Information')). |
&Apache::lonhtmlcommon::row_title(&mt('Description')). |
'<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(). |
Line 1104 sub print_review {
|
Line 1284 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 1111 sub dates_from_form {
|
Line 1293 sub dates_from_form {
|
my ($startname,$endname) = @_; |
my ($startname,$endname) = @_; |
my $startdate = &Apache::lonhtmlcommon::get_date_from_form($startname); |
my $startdate = &Apache::lonhtmlcommon::get_date_from_form($startname); |
my $enddate = &Apache::lonhtmlcommon::get_date_from_form($endname); |
my $enddate = &Apache::lonhtmlcommon::get_date_from_form($endname); |
if ($endname eq 'endaccess') { |
if ($endname eq 'accessend') { |
if (exists($env{'form.no_end_date'}) ) { |
if (exists($env{'form.no_end_date'}) ) { |
$enddate = 0; |
$enddate = 0; |
} |
} |
Line 1123 sub courseinfo_form {
|
Line 1305 sub courseinfo_form {
|
my ($dom,$formname,$crstype) = @_; |
my ($dom,$formname,$crstype) = @_; |
my $output = '<div>'.&Apache::lonhtmlcommon::start_pick_box(). |
my $output = '<div>'.&Apache::lonhtmlcommon::start_pick_box(). |
&Apache::lonhtmlcommon::row_title('Course Description'). |
&Apache::lonhtmlcommon::row_title('Course Description'). |
'<input type="text" size="40" name="cdescr" />'. |
'<input type="text" size="40" name="cdescr" />'; |
&Apache::lonhtmlcommon::row_closure(1). |
my ($home_server_pick,$numlib) = |
&Apache::lonhtmlcommon::end_pick_box().'</div>'. |
&Apache::loncommon::home_server_form_item($dom,'chome', |
'<div>'.&clone_form($dom,$formname,$crstype).'</div>'."\n"; |
'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 1136 sub clone_form {
|
Line 1327 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','clonedomain','','','',$type); |
&Apache::loncommon::selectcourse_link($formname,'clonecrs','clonedom','','','',$type); |
my %lt = &clone_text(); |
my %lt = &clone_text(); |
my $output .= |
my $output .= |
&Apache::lonhtmlcommon::start_pick_box(). |
&Apache::lonhtmlcommon::start_pick_box(). |
&Apache::lonhtmlcommon::row_title($lt{'cid'}).'<label>'. |
&Apache::lonhtmlcommon::row_title($lt{'cid'}).'<label>'. |
'<input type="text" size="25" name="clonecourse" value="" onfocus="this.blur();'. |
'<input type="text" size="25" name="clonecrs" value="" onfocus="this.blur();'. |
'opencrsbrowser('."'$formname','clonecourse','clonedomain','','','','$type'".');" />'. |
'opencrsbrowser('."'$formname','clonecrs','clonedom','','','','$type'".');" />'. |
'</label>'.&Apache::lonhtmlcommon::row_closure(1).'<label>'. |
'</label>'.&Apache::lonhtmlcommon::row_closure(1).'<label>'. |
&Apache::lonhtmlcommon::row_title($lt{'dmn'}).'</label>'. |
&Apache::lonhtmlcommon::row_title($lt{'dmn'}).'</label>'. |
$cloneform.'</label>'.&Apache::lonhtmlcommon::row_closure(). |
$cloneform.'</label>'.&Apache::lonhtmlcommon::row_closure(). |
Line 1297 sub display_navbuttons {
|
Line 1488 sub display_navbuttons {
|
} |
} |
|
|
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'}; |
|
} |
|
} |
|
} |
|
|
|
for (my $i=0; $i<$env{'form.persontotal'}; $i++) { |
|
my $uname = $env{'form.person_'.$i.'_uname'}; |
|
my $udom = $env{'form.person_'.$i.'_uname'}; |
|
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; |
|
if ($env{'form.person_'.$i.'_sections'} ne '') { |
|
my @sections = split(',',$env{'form.person_'.$i.'_sections'}); |
|
foreach my $sec (@sections) { |
|
next if ($sec eq ''); |
|
if (@currsec > 0) { |
|
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 $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 => $env{'form.instcode'}, |
|
clonedom => $env{'form.clonedom'}, |
|
clonecrs => $env{'form.clonecrs'}, |
|
datemode => $env{'form.datemode'}, |
|
dateshift => $env{'form.datshift'}, |
|
sectotal => $env{'form.sectotal'}, |
|
sections => \%sections, |
|
crosslisttotal => $env{'form.crosslisttotal'}, |
|
crosslists => \%crosslistings, |
|
autoadds => $env{'form.autoadds'}, |
|
autodrops => $env{'form.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); |
|
my %reqhash = ( |
|
timestamp => $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{'status'} = $disposition; |
|
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 $type = 'Course'; |
|
if ($crstype eq 'community') { |
|
$type = 'Community'; |
|
} |
|
my %domdefs = &Apache::lonnet::get_domain_defaults($dom); |
|
my ($logmsg,$newusermsg,$addresult,$enrollcount,$response,$keysmsg,%longroles); |
|
my @roles = &Apache::lonuserutils::roles_by_context('course'); |
|
foreach my $role (@roles) { |
|
$longroles{$role}=&Apache::lonnet::plaintext($role,$type); |
|
} |
|
my $owneremail; |
|
my %emails = &Apache::loncommon::getemails(); |
|
foreach my $email ('permanentemail','critnotification','notification') { |
|
$owneremail = $emails{$email}; |
|
last if ($owneremail ne ''); |
|
} |
|
my %reqdetails = &build_batchcreatehash($dom,$details,$owneremail,\%domdefs); |
|
my $cid = &LONCAPA::batchcreatecourse::build_course($dom,$cnum,'requestcourses',\%reqdetails,\%longroles,\$logmsg,\$newusermsg,\$addresult,\$enrollcount,\$output,\$keysmsg,$env{'user.domain'},$env{'user.name'},$cnum,$crstype); |
|
$disposition = 'created'; |
|
if ($cid eq "/$dom/$cnum") { |
|
$disposition = '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 = &mt('An error occurred when processing your course request.').'<br />'.&mt('You may want to review the request details and submit the request again.'); |
|
} |
|
} 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 $putresult = &Apache::lonnet::newput_dom('courserequestqueue',$request, |
|
$dom); |
|
if ($putresult eq 'ok') { |
|
my %emails = &Apache::loncommon::getemails(); |
|
my $address; |
|
if (($emails{'permanentemail'} ne '') || ($emails{'notification'} ne '')) { |
|
$address = $emails{'permanentemail'}; |
|
if ($address eq '') { |
|
$address = $emails{'notification'}; |
|
} |
|
} |
|
$output = &mt('Your course request has been recorded.').'<br />'; |
|
if ($disposition eq 'approval') { |
|
$output .= &mt('Your course request has been recorded.').'<br />'. |
|
&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'}); |
|
&Apache::loncoursequeueadmin::send_selfserve_notification($req_notifylist,$fullname,$now,$dom,$details); |
|
} |
|
} 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>'; |
|
} |
|
} else { |
|
$reqhash{'status'} = '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; |
|
if ($requestkey =~ /^($match_domain)_($match_courseid)$/) { |
|
$storeresult = &Apache::lonnet::store_userdata(\%reqhash,$requestkey, |
|
'courserequests'); |
|
} 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"); |
|
} |
|
} |
|
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; |
return; |
} |
} |
|
|
|
sub build_batchcreatehash { |
|
my ($dom,$details,$owneremail,$domdefs) = @_; |
|
my %batchhash; |
|
my @items = qw{owner domain coursehome clonecrs clonedom datemode dateshift enrollstart enrollend accessstart accessend sections crosslists users}; |
|
if ((ref($details) eq 'HASH') && (ref($domdefs) eq 'HASH')) { |
|
my $emailenc = &Apache::lonnet::escape($owneremail); |
|
my $owner = $details->{'owner'}.':'.$details->{'domain'}; |
|
foreach my $item (@items) { |
|
$batchhash{$item} = $details->{$item}; |
|
} |
|
$batchhash{'title'} = $details->{'cdescr'}; |
|
$batchhash{'coursecode'} = $details->{'instcode'}; |
|
$batchhash{'emailenc'} = $emailenc; |
|
$batchhash{'adds'} = $details->{'autoadds'}; |
|
$batchhash{'drops'} = $details->{'autodrops'}; |
|
$batchhash{'authtype'} = $domdefs->{'auth_def'}; |
|
$batchhash{'authparam'} = $domdefs->{'auth_arg_def'}; |
|
if ($details->{'crstype'} eq 'community') { |
|
$batchhash{'crstype'} = 'Community'; |
|
} else { |
|
$batchhash{'crstype'} = 'Course'; |
|
} |
|
$batchhash{'users'}{$details->{$owner}} = { |
|
firstname => $env{'environment.first'}, |
|
lastname => $env{'environment.last'}, |
|
emailenc => $emailenc, |
|
email => $owneremail, |
|
}; |
|
} |
|
return %batchhash; |
|
} |
|
|
sub retrieve_settings { |
sub retrieve_settings { |
my ($dom,$request_id) = @_; |
my ($dom,$request_id) = @_; |
my %reqinfo = &get_request_settings($request_id,$dom); |
my %reqinfo = &get_request_settings($request_id,$dom); |
my %stored; |
my %stored; |
$stored{'cdescr'} = &unescape($reqinfo{'description'}); |
$stored{'cdescr'} = &unescape($reqinfo{'description'}); |
$stored{'startaccess'} = $reqinfo{'startaccess'}; |
$stored{'accessstart'} = $reqinfo{'accessstart'}; |
$stored{'endaccess'} = $reqinfo{'endaccess'}; |
$stored{'accessend'} = $reqinfo{'accessend'}; |
if ($stored{'endaccess'} == 0) { |
if ($stored{'accessend'} == 0) { |
$stored{'no_end_date'} = 1; |
$stored{'no_end_date'} = 1; |
} |
} |
$stored{'startenroll'} = $reqinfo{'startenroll'}; |
$stored{'enrollstart'} = $reqinfo{'enrollstart'}; |
$stored{'endenroll'} = $reqinfo{'endenroll'}; |
$stored{'enrollend'} = $reqinfo{'enrollend'}; |
$stored{'crosslist'} = $reqinfo{'crosslist'}; |
$stored{'crosslist'} = $reqinfo{'crosslist'}; |
$stored{'clonecourse'} = $reqinfo{'clonecourse'}; |
$stored{'clonecrs'} = $reqinfo{'clonecrs'}; |
$stored{'clonedomain'} = $reqinfo{'clonedomain'}; |
$stored{'clonedom'} = $reqinfo{'clonedom'}; |
$stored{'sections'} = $reqinfo{'sections'}; |
$stored{'sections'} = $reqinfo{'sections'}; |
$stored{'personnel'} = $reqinfo{'personnel'}; |
$stored{'personnel'} = $reqinfo{'personnel'}; |
|
|