--- loncom/interface/lonmodifycourse.pm 2009/10/23 16:14:43 1.47 +++ loncom/interface/lonmodifycourse.pm 2009/11/09 03:50:27 1.48 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # handler for DC-only modifiable course settings # -# $Id: lonmodifycourse.pm,v 1.47 2009/10/23 16:14:43 bisitz Exp $ +# $Id: lonmodifycourse.pm,v 1.48 2009/11/09 03:50:27 raeburn Exp $ # # Copyright Michigan State University Board of Trustees # @@ -35,12 +35,23 @@ use Apache::lonhtmlcommon; use Apache::lonlocal; use Apache::lonuserutils; use Apache::lonpickcourse; -use LONCAPA::Enrollment; use lib '/home/httpd/lib/perl'; use LONCAPA; sub get_dc_settable { - return ('courseowner','coursecode','authtype','autharg'); + my ($type) = @_; + if ($type eq 'Community') { + return ('courseowner'); + } else { + return ('courseowner','coursecode','authtype','autharg'); + } +} + +sub autoenroll_keys { + my $internals = ['coursecode','courseowner','authtype','autharg','autoadds','autodrops', + 'autostart','autoend','sectionnums','crosslistings']; + my $accessdates = ['default_enrollment_start_date','default_enrollment_end_date']; + return ($internals,$accessdates); } sub catalog_settable { @@ -61,14 +72,17 @@ sub catalog_settable { sub get_enrollment_settings { my ($cdom,$cnum) = @_; - my %settings = &Apache::lonnet::dump('environment',$cdom,$cnum); + my ($internals,$accessdates) = &autoenroll_keys(); + my @items; + if ((ref($internals) eq 'ARRAY') && (ref($accessdates) eq 'ARRAY')) { + @items = map { 'internal.'.$_; } (@{$internals}); + push(@items,@{$accessdates}); + } + my %settings = &Apache::lonnet::get('environment',\@items,$cdom,$cnum); my %enrollvar; $enrollvar{'autharg'} = ''; $enrollvar{'authtype'} = ''; - my %lt=&Apache::lonlocal::texthash( - 'noen' => "No end date", - ); - foreach my $item (keys %settings) { + foreach my $item (keys(%settings)) { if ($item =~ m/^internal\.(.+)$/) { my $type = $1; if ( ($type eq "autoadds") || ($type eq "autodrops") ) { @@ -79,9 +93,9 @@ sub get_enrollment_settings { } } elsif ( ($type eq "autostart") || ($type eq "autoend") ) { if ( ($type eq "autoend") && ($settings{$item} == 0) ) { - $enrollvar{$type} = $lt{'noen'}; + $enrollvar{$type} = &mt('No end date'); } else { - $enrollvar{$type} = localtime($settings{$item}); + $enrollvar{$type} = &Apache::lonlocal::locallocaltime($settings{$item}); } } elsif ($type eq "sectionnums") { $enrollvar{$type} = $settings{$item}; @@ -102,11 +116,11 @@ sub get_enrollment_settings { } elsif ($item =~ m/^default_enrollment_(start|end)_date$/) { my $type = $1; if ( ($type eq 'end') && ($settings{$item} == 0) ) { - $enrollvar{$item} = $lt{'noen'}; + $enrollvar{$item} = &mt('No end date'); } elsif ( ($type eq 'start') && ($settings{$item} eq '') ) { $enrollvar{$item} = 'When enrolled'; } else { - $enrollvar{$item} = localtime($settings{$item}); + $enrollvar{$item} = &Apache::lonlocal::locallocaltime($settings{$item}); } } } @@ -115,57 +129,62 @@ sub get_enrollment_settings { sub print_course_search_page { my ($r,$dom,$domdesc) = @_; - &print_header($r); + my $action = '/adm/modifycourse'; + my $type = $env{'form.type'}; + if (!defined($env{'form.type'})) { + $type = 'Course'; + } + &print_header($r,$type); my $filterlist = ['descriptfilter', 'instcodefilter','ownerfilter', 'coursefilter']; my $filter = {}; - my ($numtitles,$type,$cctitle,$dctitle); - $type = $env{'form.type'}; - if (!defined($env{'form.type'})) { - $type = 'Course'; + my ($numtitles,$cctitle,$dctitle); + my $ccrole = 'cc'; + if ($type eq 'Community') { + $ccrole = 'co'; } - my $action = '/adm/modifycourse'; - $cctitle = &Apache::lonnet::plaintext('cc',$type); + $cctitle = &Apache::lonnet::plaintext($ccrole,$type); $dctitle = &Apache::lonnet::plaintext('dc'); $r->print(&Apache::lonpickcourse::js_changer()); - if ($type eq 'Course') { - $r->print( - '

'.&mt('Search for a course in the [_1] domain',$domdesc).'

'. - &mt('Actions available after searching for a course:').''); - } else { - $r->print( - '

'.&mt('Search for a community in the [_1] domain',$domdesc).'

'. - &mt('Actions available after searching for a community:').''); + if ($type eq 'Community') { + $r->print('

'.&mt('Search for a community in the [_1] domain',$domdesc).'

'); + } else { + $r->print('

'.&mt('Search for a course in the [_1] domain',$domdesc).'

'); } $r->print(&Apache::lonpickcourse::build_filters($filterlist,$type, undef,undef,$filter,$action,\$numtitles,'modifycourse')); + if ($type eq 'Community') { + $r->print(&mt('Actions available after searching for a community:').''); + } else { + $r->print(&mt('Actions available after searching for a course:').''); + } } sub print_course_selection_page { my ($r,$dom,$domdesc) = @_; - &print_header($r); + my $type = $env{'form.type'}; + if (!defined($type)) { + $type = 'Course'; + } + &print_header($r,$type); # Criteria for course search my $filterlist = ['descriptfilter', 'instcodefilter','ownerfilter', 'ownerdomfilter','coursefilter']; my %filter; - my $type = $env{'form.type'}; - if (!defined($type)) { - $type = 'Course'; - } my $action = '/adm/modifycourse'; my $dctitle = &Apache::lonnet::plaintext('dc'); my $numtitles; $r->print(&Apache::lonpickcourse::js_changer()); - $r->print(&mt('Revise your search criteria for this domain').' ('.$domdesc.').

'); + $r->print(&mt('Revise your search criteria for this domain').' ('.$domdesc.').
'); $r->print(&Apache::lonpickcourse::build_filters($filterlist,$type, undef,undef,\%filter,$action,\$numtitles)); $filter{'domainfilter'} = $dom; @@ -177,59 +196,86 @@ sub print_course_selection_page { } sub print_modification_menu { - my ($r,$cdesc,$domdesc,$dom) = @_; - &print_header($r,$cdesc); - my $type = 'Course'; + my ($r,$cdesc,$domdesc,$dom,$type) = @_; + &print_header($r,$type); + my ($ccrole,$setquota_text,$setparams_text,$cat_text); + if ($type eq 'Community') { + $ccrole = 'co'; + } else { + $ccrole = 'cc'; + } my $action = '/adm/modifycourse'; - my $cctitle = &Apache::lonnet::plaintext('cc',$type); - my $dctitle = &Apache::lonnet::plaintext('dc'); - my %lt=&Apache::lonlocal::texthash( - 'some' => "Certain settings which control auto-enrollment of students from your institution's student information system.", - 'crqo' => 'The total disk space allocated for storage of portfolio files in all groups in a course.', - ); + if ($type eq 'Community') { + $setquota_text = &mt('Total disk space allocated for storage of portfolio files in all groups in a community.'); + $setparams_text = 'View/Modify community owner'; + $cat_text = 'View/Modify catalog settings for community'; + } else { + $setquota_text = &mt('Total disk space allocated for storage of portfolio files in all groups in a course.'); + $setparams_text = 'View/Modify course owner, institutional code, and default authentication'; + $cat_text = 'View/Modify catalog settings for course'; + } my @menu = ( - { text => 'Modify quota for group portfolio', - phase => 'setquota', - }, - { text => 'Display current settings for automated enrollment', - phase => 'viewparms', - }, - { text => 'Modify institutional code, course owner and/or default authentication', - phase => 'setparms', + { text => $setparams_text, + phase => 'setparms', }, - ); + { text => 'View/Modify quota for group portfolio files', + phase => 'setquota', + } + ); my %domconf = &Apache::lonnet::get_dom('configuration',['coursecategories'],$dom); my @additional_params = &catalog_settable($domconf{'coursecategories'}); if (@additional_params > 0) { - push (@menu, { text => 'Modify course catalog settings for course', + push (@menu, { text => $cat_text, phase => 'catsettings', }); } - my $menu_html = '

'.&mt('View/Modify settings for: ').$cdesc.'

'."\n". - &mt('Although almost all course settings can be modified by a [_1], a number of settings exist which only a [_2] may change:',$cctitle,$dctitle).' -

'); } if (grep(/^categorize$/,@cat_params)) { - $r->print('

'.&mt('Categorize Course').'

'); + $r->print('

'.$lt{'categ'}.'

'); if (ref($domconf{'coursecategories'}) eq 'HASH') { my $cathash = $domconf{'coursecategories'}{'cats'}; if (ref($cathash) eq 'HASH') { - $r->print(&mt('Assign one or more categories to this course.').'

'. + $r->print($lt{'assi'}.'

'. &Apache::loncommon::assign_categories_table($cathash, $currsettings{'categories'})); } else { @@ -381,12 +441,20 @@ sub print_catsettings { } else { $r->print(&mt('No categories defined for this domain')); } - $r->print('

'.&mt('If auto-cataloging based on institutional code is enabled in the domain, a course will continue to be listed in the catalog of official courses, in addition to receiving a listing under any manually assigned categor(ies).').'

'); + unless ($type eq 'Community') { + $r->print('

'.&mt('If auto-cataloging based on institutional code is enabled in the domain, a course will continue to be listed in the catalog of official courses, in addition to receiving a listing under any manually assigned categor(ies).').'

'); + } } - $r->print(''); + $r->print('

'); } else { - $r->print(''.&mt('Catalog settings in this domain are set in course context via "Set Course Environment".').'

'."\n". + $r->print(''); + if ($type eq 'Community') { + $r->print(&mt('Catalog settings in this domain are set in community context via "Community Configuration".')); + } else { + $r->print(&mt('Catalog settings in this domain are set in course context via "Course Configuration".')); + } + $r->print('

'."\n". ''. $lt{'back'}.''); } @@ -395,102 +463,154 @@ sub print_catsettings { } sub print_course_modification_page { - my ($r,$cdom,$cnum,$cdesc,$domdesc) = @_; - my %longtype = &course_settings_descrip(); - my %enrollvar = &get_enrollment_settings($cdom,$cnum); - my $ownertable; + my ($r,$cdom,$cnum,$cdesc,$type) = @_; my %lt=&Apache::lonlocal::texthash( 'actv' => "Active", 'inac' => "Inactive", - 'ccor' => "Course Coordinator", - 'noen' => "No end date", 'ownr' => "Owner", 'name' => "Name", 'unme' => "Username:Domain", 'stus' => "Status", - 'cquo' => "Disk space for storage of group portfolio", - 'gpqu' => "Course portfolio files disk space", - 'each' => "Each course group can be assigned a quota for portfolio files uploaded to the group.", - 'cose' => "Course settings for LON-CAPA courses that control automated student enrollment based on classlist data available from your institution's student information system fall into two groups: (a) settings that can be modified by a Course Coordinator using the ", - 'aenm' => "Automated Enrollment Manager", - 'andb' => " and (b) settings that may only be modified by a Domain Coordinator via this page.", - 'caes' => 'Current automated enrollment settings', - 'cour' => "Course settings that control automated enrollment in this LON-CAPA course -are currently:", - 'nocc' => "There is currently no course owner set for this course. In addition, no active course coordinators from this LON-CAPA domain were found, so you will not be able assign a course owner. If you wish to assign a course owner, it is recommended that you use the 'User Roles' screen to add a course coordinator with a LON-CAPA account in this domain to the course.", - 'ccus' => "A course coordinator can use the 'Automated Enrollment Manager' to change -all settings except course code, course owner, and default authentication method for students added to your course (who are also new to the LON-CAPA system at this domain).", - 'ccod' => "Course Code", - 'ccus' => "The course code is used during automated enrollment to map the internal LON-CAPA course ID for this course to the corresponding course section ID(s) used by the office responsible for providing official class lists for courses at your institution.", - 'cown' => "Course Owner", - 'cous' => "The course owner is used in the retrieval of class lists from your institution's student information system when access to class lists data incorporates validation of instructor status.", - 'tabl' => 'The table below contains a list of active course coordinators in this course, who are from this domain', - 'usrd' => 'Use the radio buttons to select a different course owner.', - 'deam' => "Default Authentication method", - 'deus' => "The default authentication method, and default authentication parameter (domain, initial password or argument) are used when automatic enrollment of students in a course requires addition of new user accounts in your domain, and the class list file contains empty entries for the <authtype> and <autharg> properties for the new student. If you choose 'internally authenticated', and leave the initial password field empty, the automated enrollment process will create a randomized password for each new student account that it adds to your LON-CAPA domain.", + 'nocc' => 'There is currently no owner set for this course.', 'gobt' => "Save", ); - - my @coursepersonnel = &Apache::lonnet::getkeys('nohist_userroles',$cdom,$cnum); - my @local_ccs = (); - my %cc_status = (); - my %pname = (); - my $active_cc; - foreach my $person (@coursepersonnel) { - my ($role,$user) = split(/:/,$person,2); - $user =~ s/:$//; - if (($role eq 'cc') && ($user ne '')) { - if (!grep(/^\Q$user\E$/,@local_ccs)) { - my ($ccname,$ccdom) = split(/:/,$user); - $active_cc = - &Apache::loncommon::check_user_status($ccdom,$ccname,$cdom, - $cnum,'cc'); - if ($active_cc eq 'active') { - push(@local_ccs,$user); - $pname{$user} = &Apache::loncommon::plainname($ccname,$ccdom); - $cc_status{$user} = $lt{'actv'}; - } - } + my ($ownertable,$ccrole,$javascript_validations,$authenitems,$ccname); + my %enrollvar = &get_enrollment_settings($cdom,$cnum); + if ($type eq 'Community') { + $ccrole = 'co'; + $lt{'nocc'} = &mt('There is currently no owner set for this community.'); + } else { + $ccrole ='cc'; + ($javascript_validations,$authenitems) = &gather_authenitems($cdom,\%enrollvar); + } + $ccname = &Apache::lonnet::plaintext($ccrole,$type); + my %roleshash = &Apache::lonnet::get_my_roles($cnum,$cdom,'','',[$ccrole]); + my (@local_ccs,%cc_status,%pname); + foreach my $item (keys(%roleshash)) { + my ($uname,$udom) = split(/:/,$item); + if (!grep(/^\Q$uname\E:\Q$udom\E$/,@local_ccs)) { + push(@local_ccs,$uname.':'.$udom); + $pname{$uname.':'.$udom} = &Apache::loncommon::plainname($uname,$udom); + $cc_status{$uname.':'.$udom} = $lt{'actv'}; } } - if ( (!grep(/^$enrollvar{'courseowner'}$/,@local_ccs)) && - ($enrollvar{'courseowner'} ne '') ) { - my ($owneruname,$ownerdom) = split(/:/,$enrollvar{'courseowner'}); + if (($enrollvar{'courseowner'} ne '') && + (!grep(/^$enrollvar{'courseowner'}$/,@local_ccs))) { push(@local_ccs,$enrollvar{'courseowner'}); + my ($owneruname,$ownerdom) = split(/:/,$enrollvar{'courseowner'}); $pname{$enrollvar{'courseowner'}} = &Apache::loncommon::plainname($owneruname,$ownerdom); - $active_cc = &Apache::loncommon::check_user_status($ownerdom,$owneruname, - $cdom,$cnum,'cc'); + my $active_cc = &Apache::loncommon::check_user_status($ownerdom,$owneruname, + $cdom,$cnum,$ccrole); if ($active_cc eq 'active') { $cc_status{$enrollvar{'courseowner'}} = $lt{'actv'}; } else { $cc_status{$enrollvar{'courseowner'}} = $lt{'inac'}; } } - my $numlocalcc = @local_ccs; + @local_ccs = sort(@local_ccs); + if (@local_ccs == 0) { + $ownertable = $lt{'nocc'}; + } else { + my $numlocalcc = scalar(@local_ccs); + $ownertable = ''. + &Apache::loncommon::start_data_table()."\n". + &Apache::loncommon::start_data_table_header_row()."\n". + ''.$lt{'ownr'}.''. + ''.$lt{'name'}.''. + ''.$lt{'unme'}.''. + ''.$lt{'stus'}.''. + &Apache::loncommon::end_data_table_header_row()."\n"; + foreach my $cc (@local_ccs) { + $ownertable .= &Apache::loncommon::start_data_table_row()."\n"; + if ($cc eq $enrollvar{'courseowner'}) { + $ownertable .= ''."\n"; + } else { + $ownertable .= ''."\n"; + } + $ownertable .= + ''.$pname{$cc}.''."\n". + ''.$cc.''."\n". + ''.$cc_status{$cc}.' '.$ccname.''."\n". + &Apache::loncommon::end_data_table_row()."\n"; + } + $ownertable .= &Apache::loncommon::end_data_table(); + } + &print_header($r,$type,$javascript_validations); + my $dctitle = &Apache::lonnet::plaintext('dc'); + my $mainheader = &modifiable_only_title($type); + my $hidden_elements = &hidden_form_elements(); + $r->print(''."\n". + '

'.$mainheader.' '.$cdesc.'

'. + &Apache::lonhtmlcommon::start_pick_box()); + if ($type eq 'Community') { + $r->print(&Apache::lonhtmlcommon::row_title( + &Apache::loncommon::help_open_topic('Modify_Community_Owner'). + ' '.&mt('Community Owner'))."\n"); + } else { + $r->print(&Apache::lonhtmlcommon::row_title( + &Apache::loncommon::help_open_topic('Modify_Course_Instcode'). + ' '.&mt('Course Code'))."\n". + ''. + &Apache::lonhtmlcommon::row_closure(). + &Apache::lonhtmlcommon::row_title( + &Apache::loncommon::help_open_topic('Modify_Course_Defaultauth'). + ' '.&mt('Default Authentication method'))."\n". + $authenitems."\n". + &Apache::lonhtmlcommon::row_closure(). + &Apache::lonhtmlcommon::row_title( + &Apache::loncommon::help_open_topic('Modify_Course_Owner'). + ' '.&mt('Course Owner'))."\n"); + } + $r->print($ownertable."\n".&Apache::lonhtmlcommon::row_closure(1). + &Apache::lonhtmlcommon::end_pick_box().'

'.$hidden_elements. + 'print('this.form.submit();"'); + } else { + $r->print('javascript:verify_message(this.form);"'); + } + $r->print('value="'.$lt{'gobt'}.'" />

'); + return; +} + +sub modifiable_only_title { + my ($type) = @_; + my $dctitle = &Apache::lonnet::plaintext('dc'); + if ($type eq 'Community') { + return &mt('Community settings modifiable only by [_1] for:',$dctitle); + } else { + return &mt('Course settings modifiable only by [_1] for:',$dctitle); + } +} - my $helplink=&Apache::loncommon::help_open_topic('Modify_Course',&mt("Help on Modifying Courses")); +sub gather_authenitems { + my ($cdom,$enrollvar) = @_; my ($krbdef,$krbdefdom)=&Apache::loncommon::get_kerberos_defaults($cdom); my $curr_authtype = ''; my $curr_authfield = ''; - if ($enrollvar{'authtype'} =~ /^krb/) { - $curr_authtype = 'krb'; - } elsif ($enrollvar{'authtype'} eq 'internal' ) { - $curr_authtype = 'int'; - } elsif ($enrollvar{'authtype'} eq 'localauth' ) { - $curr_authtype = 'loc'; + if (ref($enrollvar) eq 'HASH') { + if ($enrollvar->{'authtype'} =~ /^krb/) { + $curr_authtype = 'krb'; + } elsif ($enrollvar->{'authtype'} eq 'internal' ) { + $curr_authtype = 'int'; + } elsif ($enrollvar->{'authtype'} eq 'localauth' ) { + $curr_authtype = 'loc'; + } } unless ($curr_authtype eq '') { $curr_authfield = $curr_authtype.'arg'; } - my $javascript_validations=&Apache::lonuserutils::javascript_validations('modifycourse',$krbdefdom,$curr_authtype,$curr_authfield); + my $javascript_validations = + &Apache::lonuserutils::javascript_validations('modifycourse',$krbdefdom, + $curr_authtype,$curr_authfield); my %param = ( formname => 'document.'.$env{'form.phase'}, - kerb_def_dom => $krbdefdom, - kerb_def_auth => $krbdef, + kerb_def_dom => $krbdefdom, + kerb_def_auth => $krbdef, mode => 'modifycourse', curr_authtype => $curr_authtype, - curr_autharg => $enrollvar{'autharg'} - ); + curr_autharg => $enrollvar->{'autharg'} + ); my (%authform,$authenitems); $authform{'krb'} = &Apache::loncommon::authform_kerberos(%param); $authform{'int'} = &Apache::loncommon::authform_internal(%param); @@ -499,169 +619,79 @@ all settings except course code, course if ($authform{$item} ne '') { $authenitems .= $authform{$item}.'
'; } - } - if ($numlocalcc == 0) { - $ownertable = $lt{'nocc'}; } - - if ($numlocalcc > 0) { - @local_ccs = sort @local_ccs; - $ownertable = qq( - - - - - - - - \n". - "\n". - "\n". - "\n". - &Apache::loncommon::end_data_table_header_row()."\n"; - foreach my $cc (@local_ccs) { - $ownertable .= &Apache::loncommon::start_data_table_row()."\n"; - if ($cc eq $enrollvar{'courseowner'}) { - $ownertable .= ''."\n"; - } else { - $ownertable .= ''."\n"; - } - $ownertable .= - ''."\n". - ''."\n". - ''."\n". - &Apache::loncommon::end_data_table_row()."\n"; - } - $ownertable .= &Apache::loncommon::end_data_table()." - - -
$lt{'tabl'} - $cdom ($domdesc). $lt{'usrd'} -
 
). - &Apache::loncommon::start_data_table()."\n". - &Apache::loncommon::start_data_table_header_row()."\n". - "$lt{'ownr'}$lt{'name'}$lt{'unme'}$lt{'stus'}'.$pname{$cc}.''.$cc.''.$cc_status{$cc}.' '.$lt{'ccor'}.'
"; - } - &print_header($r,$cdesc,$javascript_validations); - my $type = $env{'form.type'}; - if ($type eq '') { - $type = 'Course'; - } - my $dctitle = &Apache::lonnet::plaintext('dc'); - my $cctitle = &Apache::lonnet::plaintext('cc',$type); - my $mainheader = &mt('Course settings modifiable by [_1] only.',$dctitle); - my $hidden_elements = &hidden_form_elements(); - $r->print(< -

$mainheader

-

- - - - - - - - - - - -
Use the appropriate text boxes and radio buttons below to change some or all of the four automated enrollment settings that may only be changed by a Domain Coordinator. -
- $lt{'ccod'}:   -

- $lt{'ccus'} -
- $lt{'cown'}:

- $ownertable -

- $lt{'cous'} -
- $lt{'deam'}:

- $authenitems -
- $lt{'deus'}. -
 
- - - - -
- $hidden_elements - -
- -
-
-ENDDOCUMENT - return; + return($javascript_validations,$authenitems); } sub modify_course { my ($r,$cdom,$cnum,$cdesc,$domdesc,$type) = @_; - my %longtype = &course_settings_descrip(); - my %settings = &Apache::lonnet::get('environment',['internal.courseowner','internal.coursecode','internal.authtype','internal.autharg','internal.sectionnums','internal.crosslistings','description'],$cdom,$cnum); - my %currattr = (); - my %newattr = (); - my %cenv = (); - my $response; - my $chgresponse; - my $nochgresponse; - my $warning; - my $reply; - my @changes = (); - my @nochanges = (); - my @sections = (); - my @xlists = (); - my %changed = ( code => 0, - owner => 0, - ); - unless ($settings{'internal.sectionnums'} eq '') { - if ($settings{'internal.sectionnums'} =~ m/,/) { - @sections = split/,/,$settings{'internal.sectionnums'}; - } else { - $sections[0] = $settings{'internal.sectionnums'}; - } + my %longtype = &course_settings_descrip($type); + my @items = ('internal.courseowner','description'); + unless ($type eq 'Community') { + push(@items,('internal.coursecode','internal.authtype','internal.autharg', + 'internal.sectionnums','internal.crosslistings')); } - unless ($settings{'internal.crosslistings'} eq'') { - if ($settings{'internal.crosslistings'} =~ m/,/) { - @xlists = split/,/,$settings{'internal.crosslistings'}; - } else { - $xlists[0] = $settings{'internal.crosslistings'}; - } - } - - my @modifiable_params = &get_dc_settable(); + my %settings = &Apache::lonnet::get('environment',\@items,$cdom,$cnum); + my $description = $settings{'description'}; + my ($ccrole,$response,$chgresponse,$nochgresponse,$reply,%currattr,%newattr,%cenv,%changed, + @changes,@nochanges,@sections,@xlists,@warnings); + my @modifiable_params = &get_dc_settable($type); foreach my $param (@modifiable_params) { - my $attr = 'internal.'.$param; - $currattr{$param} = $settings{$attr}; + $currattr{$param} = $settings{'internal.'.$param}; } - - my $description = $settings{'description'}; - - if ($env{'form.login'} eq 'krb') { - $newattr{'authtype'} = $env{'form.login'}; - $newattr{'authtype'} .= $env{'form.krbver'}; - $newattr{'autharg'} = $env{'form.krbarg'}; - } elsif ($env{'form.login'} eq 'int') { - $newattr{'authtype'} ='internal'; - if ((defined($env{'form.intarg'})) && ($env{'form.intarg'})) { - $newattr{'autharg'} = $env{'form.intarg'}; - } - } elsif ($env{'form.login'} eq 'loc') { - $newattr{'authtype'} = 'localauth'; - if ((defined($env{'form.locarg'})) && ($env{'form.locarg'})) { - $newattr{'autharg'} = $env{'form.locarg'}; - } - } - if ( $newattr{'authtype'}=~ /^krb/) { - if ($newattr{'autharg'} eq '') { - $warning = '

' - .&mt('As you did not include the default Kerberos domain' + if ($type eq 'Community') { + %changed = ( owner => 0 ); + $ccrole = 'co'; + } else { + %changed = ( code => 0, + owner => 0, + ); + $ccrole = 'cc'; + unless ($settings{'internal.sectionnums'} eq '') { + if ($settings{'internal.sectionnums'} =~ m/,/) { + @sections = split/,/,$settings{'internal.sectionnums'}; + } else { + $sections[0] = $settings{'internal.sectionnums'}; + } + } + unless ($settings{'internal.crosslistings'} eq'') { + if ($settings{'internal.crosslistings'} =~ m/,/) { + @xlists = split/,/,$settings{'internal.crosslistings'}; + } else { + $xlists[0] = $settings{'internal.crosslistings'}; + } + } + if ($env{'form.login'} eq 'krb') { + $newattr{'authtype'} = $env{'form.login'}; + $newattr{'authtype'} .= $env{'form.krbver'}; + $newattr{'autharg'} = $env{'form.krbarg'}; + } elsif ($env{'form.login'} eq 'int') { + $newattr{'authtype'} ='internal'; + if ((defined($env{'form.intarg'})) && ($env{'form.intarg'})) { + $newattr{'autharg'} = $env{'form.intarg'}; + } + } elsif ($env{'form.login'} eq 'loc') { + $newattr{'authtype'} = 'localauth'; + if ((defined($env{'form.locarg'})) && ($env{'form.locarg'})) { + $newattr{'autharg'} = $env{'form.locarg'}; + } + } + if ( $newattr{'authtype'}=~ /^krb/) { + if ($newattr{'autharg'} eq '') { + push(@warnings, + &mt('As you did not include the default Kerberos domain' .' to be used for authentication in this class, the' .' institutional data used by the automated' .' enrollment process must include the Kerberos' - .' domain for each new student.') - .'

'; + .' domain for each new student.')); + } + } + + if ( exists($env{'form.coursecode'}) ) { + $newattr{'coursecode'}=$env{'form.coursecode'}; + unless ( $newattr{'coursecode'} eq $currattr{'coursecode'} ) { + $changed{'code'} = 1; + } } } @@ -671,19 +701,17 @@ sub modify_course { $changed{'owner'} = 1; } } - - if ( exists($env{'form.coursecode'}) ) { - $newattr{'coursecode'}=$env{'form.coursecode'}; - unless ( $newattr{'coursecode'} eq $currattr{'coursecode'} ) { - $changed{'code'} = 1; - } - } + if ($changed{'owner'} || $changed{'code'}) { my %crsinfo = &Apache::lonnet::courseiddump($cdom,'.',1,'.','.',$cnum, undef,undef,'.'); if (ref($crsinfo{$env{'form.pickedcourse'}}) eq 'HASH') { - $crsinfo{$env{'form.pickedcourse'}}{'inst_code'} = $env{'form.coursecode'}; - $crsinfo{$env{'form.pickedcourse'}}{'owner'} = $env{'form.courseowner'}; + if ($changed{'code'}) { + $crsinfo{$env{'form.pickedcourse'}}{'inst_code'} = $env{'form.coursecode'}; + } + if ($changed{'owner'}) { + $crsinfo{$env{'form.pickedcourse'}}{'owner'} = $env{'form.courseowner'}; + } my $chome = &Apache::lonnet::homeserver($cnum,$cdom); my $putres = &Apache::lonnet::courseidput($cdom,\%crsinfo,$chome,'notime'); } @@ -692,73 +720,84 @@ sub modify_course { if ($currattr{$param} eq $newattr{$param}) { push(@nochanges,$param); } else { - my $attr = 'internal.'.$param; - $cenv{$attr} = $newattr{$param}; + $cenv{'internal.'.$param} = $newattr{$param}; push(@changes,$param); } } if (@changes > 0) { - $chgresponse = &mt("The following automated enrollment parameters have been changed: