--- loncom/interface/lonpopulate.pm 2004/06/08 22:09:44 1.12 +++ loncom/interface/lonpopulate.pm 2009/06/05 12:49:50 1.63 @@ -1,5 +1,5 @@ # automated enrollment configuration handler -# $Id: lonpopulate.pm,v 1.12 2004/06/08 22:09:44 raeburn Exp $ +# $Id: lonpopulate.pm,v 1.63 2009/06/05 12:49:50 bisitz Exp $ # # Copyright Michigan State University Board of Trustees # @@ -31,35 +31,34 @@ use Apache::lonnet; use Apache::loncommon; use Apache::lonhtmlcommon; use Apache::lonlocal; +use Apache::loncoursedata; +use Apache::longroup; +use Apache::lonuserutils; use Apache::Constants qw(:common :http REDIRECT); use Time::Local; use LONCAPA::Enrollment; -use localenroll; ############################################################### sub header { - my $bodytag=&Apache::loncommon::bodytag('Classlist Manager'); - return(< - -LON-CAPA Classlist Manager - -$bodytag -ENDHEAD + return &Apache::loncommon::start_page('Classlist Manager'); } ############################################################### sub choose_header { - my $bodytag=&Apache::loncommon::bodytag('Classlist Manager'); + my ($action) = @_; + my $notify_check = '/^note_[0-9]+$/'; my $scripttag = qq| - |; - return(< - -LON-CAPA Classlist Manager -$scripttag -$bodytag -ENDHEAD + + return &Apache::loncommon::start_page('Classlist Manager', + $scripttag); } sub print_mainbox { my ($r,$tasklongref,$realm,$reply) = @_; my $action = "information"; - if ( exists($ENV{'form.action'}) ) { - $action = $ENV{'form.action'}; + if ( exists($env{'form.action'}) ) { + $action = $env{'form.action'}; } my $page = ''; if ($action eq "information") { - $page = "Automated Enrollment"; + $page = "".&mt("Automated Enrollment").""; } else { - $page = 'Automated Enrollment'; + $page = ''.&mt('Automated Enrollment').''; if ($reply) { if ($action eq "newcross") { $action = "crosslist"; @@ -151,14 +222,16 @@ sub print_mainbox { $page .= " -> ".$$tasklongref{$action}.""; } } + my $usrmang = &mt('User Management'); + my $autenrl = &mt('Automated Enrollment Manager'); $r->print(< - $realm -> Enrollment Manager -> $page
+ $realm -> $usrmang -> $page
- Automated Enrollment Manager  + $autenrl  @@ -170,8 +243,8 @@ ENDTHIS sub print_navmenu { my ($r,$tasksref,$tasklongref) = @_; my $action = "information"; - if (exists($ENV{'form.action'}) ) { - $action = $ENV{'form.action'}; + if (exists($env{'form.action'}) ) { + $action = $env{'form.action'}; } $r->print(<  @@ -207,10 +280,10 @@ ENDONE ############################################################### sub print_main_frame { - my ($r,$realm,$dom,$crs,$tasktitleref,$homeserver,$server) = @_; + my ($r,$realm,$dom,$crs,$tasktitleref) = @_; my $action = "information"; - if (exists($ENV{'form.action'}) ) { - $action = $ENV{'form.action'}; + if (exists($env{'form.action'}) ) { + $action = $env{'form.action'}; } # Get course settings @@ -220,6 +293,8 @@ sub print_main_frame { foreach my $item (keys %settings) { if ($item =~ m/^internal\.(.+)$/) { $enrollvar{$1} = $settings{$item}; + } elsif ($item =~ /^default_enrollment_(start|end)_date$/) { + $enrollvar{$item} = $settings{$item}; } } @@ -231,7 +306,7 @@ sub print_main_frame { Use the menu on the left to choose an enrollment management task.

  - Use "Automated adds/drops" to enable or disable automatic nightly adds or drops in your LON-CAPA course based on instututional enrollment information. + Use "Automated adds/drops" to enable or disable automatic nightly adds or drops in your LON-CAPA course based on institutional enrollment information.   @@ -239,6 +314,10 @@ sub print_main_frame {   + Use "Change access dates" to change the default start and/or end dates for student roles created by automated enrollment. + + +   Use "Notification of changes" to enable or disable notification of enrollment changes and to add or remove course coordinators from the recipient list. @@ -250,13 +329,21 @@ sub print_main_frame { Use "Section settings" to make changes to the choice of sections included for enrollment in your LON-CAPA course.   - Use "Student photos" to enable or disable automatic upload of student photos to your course. + Use "Student photo settings" to enable or disable automatic import of photos for registered students in your course.   Use "Update roster now" to add and/or drop students from your course based on the most current institutional classlist information. +   + Use "Update student photos" to import your institution's most current digital photos for registered students in your course. + + +   + Use "View students and change type" to display the current course roster, and (optionally) change enrollment type for selected students from 'auto' to 'manual' and vice versa. + +   @@ -283,13 +370,13 @@ ENDONE ENDTWO if ($enrollvar{autoadds}) { $r->print(" -  Enable    -  Disable + + "); } else { $r->print(" -  Enable    -  Disable + + "); } $r->print(" @@ -300,12 +387,12 @@ ENDTWO Removals based on classlist changes:  "); if ($enrollvar{autodrops}) { $r->print(" -  Enable    -  Disable"); + + "); } else { $r->print(" -  Enable    -  Disable"); + + "); } $r->print(" @@ -313,36 +400,36 @@ ENDTWO -Note: Any students added manually by course coordinators using the Enrollment Manager will be unaffected by the nightly removal process if you choose to enable it. +Note: Any students added manually by course coordinators using the User Manager will be unaffected by the nightly removal process if you choose to enable it. - + - - + + "); } elsif ($action eq "setdates") { - my ($start_table,$end_table) = &date_setting_table($enrollvar{autostart},$enrollvar{autoend}); + my ($start_table,$end_table) = &date_setting_table($enrollvar{autostart},$enrollvar{autoend},$action); my $oldstartshow = ''; my $oldendshow = ''; if ( defined($enrollvar{autostart}) ) { - $oldstartshow = localtime($enrollvar{autostart}); + $oldstartshow = &Apache::lonlocal::locallocaltime($enrollvar{autostart}); } if ( defined($enrollvar{autoend}) ) { - $oldendshow = localtime($enrollvar{autoend}); + $oldendshow = &Apache::lonlocal::locallocaltime($enrollvar{autoend}); if ($enrollvar{autoend} == 0) { $oldendshow = "No ending date"; } } my $dateshow; if ( ($oldendshow eq '') && ($oldstartshow eq '') ) { - $dateshow = "
Warning. Currently NO first enrollment or last enrollment dates are set. You must use this menu to set a start date and an end date (or check the 'no ending date' checkbox) if you plan to utilise automated adds and/or drops in this course.\n"; + $dateshow = "
Warning. Currently NO first enrollment or last enrollment dates are set. You must use this menu to set a start date and an end date if you plan to utilise automated adds and/or drops in this course.\n"; } else { $dateshow = "Currently: First enrollment: $oldstartshow, Last enrollment: $oldendshow\n"; } @@ -396,24 +483,38 @@ Note: Any students added manually by cou
- +
- - + + + +ENDTWO + } elsif ($action eq "setaccess") { + &print_accessdate_table($r,\%enrollvar,$tasktitleref,$action); + $r->print(< + + + + + + + + ENDTWO } elsif ($action eq "notify") { - my @notified = (); - if ($enrollvar{notifylist} =~ m/,/) { - @notified = split/,/,$enrollvar{notifylist}; - } else { - @notified = $enrollvar{notifylist}; - } my $notifycount = 0; - foreach (@notified) { - unless ($_ eq '') { $notifycount ++; } + my @notified = split(/,/,$enrollvar{notifylist}); + my @domcoord; + my @showdom; + for (my $i=0; $i<@notified; $i++) { + if ($notified[$i] !~ /:/) { + $notified[$i] =~ s/\@/:/; + } + unless ($notified[$i] eq '') { $notifycount ++; } } my $noteset = ''; if ($notifycount) { @@ -421,7 +522,15 @@ ENDTWO } else { $noteset = "OFF"; } - + my %dompersonnel = &Apache::lonnet::get_domain_roles($dom,['dc']); + foreach my $server (keys(%dompersonnel)) { + foreach my $user (sort(keys(%{$dompersonnel{$server}}))) { + my ($trole,$uname,$udom,$runame,$rudom,$rsec) = split(/:/,$user); + if (!grep(/^$uname:$udom$/,@domcoord)) { + push(@domcoord,$uname.':'.$udom); + } + } + } $r->print("

@@ -438,131 +547,159 @@ ENDTWO "); if ($notifycount) { $r->print(" -  Yes    -  No + + "); } else { $r->print(" -  Yes    -  No + + "); } $r->print(" "); - my @coursepersonnel = &Apache::lonnet::getkeys('nohist_userroles',$dom,$crs); - my @ccs = (); - my @oldccs = (); - my %pname = (); - my %notifystate = (); - foreach (@coursepersonnel) { - my @roleinfo = split/:/,$_; - if ($roleinfo[0] eq 'cc') { - unless (grep/^$roleinfo[1]\@$roleinfo[2]/,@ccs) { - my $active_cc = &LONCAPA::Enrollment::check_user_status($roleinfo[2],$roleinfo[1],$dom,$crs,'cc'); - if ($active_cc eq 'ok') { - push @ccs, "$roleinfo[1]\@$roleinfo[2]"; - $pname{"$roleinfo[1]\@$roleinfo[2]"} = &Apache::loncommon::plainname($roleinfo[1],$roleinfo[2]); - if (grep/^$roleinfo[1]\@$roleinfo[2]$/,@notified) { - $notifystate{"$roleinfo[1]\@$roleinfo[2]"} = 1; - } else { - $notifystate{"$roleinfo[1]\@$roleinfo[2]"} = 0; - } + my %coursepersonnel = &Apache::lonnet::dump('nohist_userroles',$dom,$crs); + my @ccs; + my %pname; + my %notifystate; + my %status; + my $now = time; + foreach my $person (sort(keys(%coursepersonnel))) { + my $match = 0; + my ($role,$user,$usec) = ($person =~ /^([^:]+):([^:]+:[^:]+):([^:]*)/); + $user =~ s/:$//; + my ($end,$start) = split(/:/,$coursepersonnel{$person}); + if ($end == -1 || $start == -1) { + next; + } + if ($role eq 'cc') { + unless (grep(/^$user$/,@ccs)) { + if ($end && $end < $now) { + $status{$user} = 'previous'; + } elsif ($start > $now) { + $status{$user} = 'future'; } else { - push @oldccs, "$roleinfo[1]\@$roleinfo[2]"; + $status{$user} = 'active'; + } + push(@ccs,$user); + my ($uname,$udom) = split(/:/,$user); + $pname{$user} = + &Apache::loncommon::plainname($uname,$udom); + if (grep(/^$user$/,@notified)) { + $notifystate{$user} = 1; + } else { + $notifystate{$user} = 0; } } } } - if ($notifycount > 0) { - foreach my $person (@notified) { - unless ( (grep/^$person$/,@ccs) || ($person eq '') || (grep/^$person$/,@oldccs) ) { - push @ccs, $person; - my ($puname,$pdom) = split/\@/,$person; - $pname{$person} = &Apache::loncommon::plainname($puname,$pdom); - $notifystate{$person} = 1; - } - } - } - my $viewer = $ENV{'user.name'}.'@'.$ENV{'user.domain'}; - unless ( (grep/^$viewer$/,@ccs) || ($viewer eq '') ) { - push @ccs,$viewer; - $pname{$viewer} = &Apache::loncommon::plainname($ENV{'user.name'},$ENV{'user.domain'}); - $notifystate{$viewer} = 0; - } - - my $notifyshow = @ccs; - + my $notifyshow = 0; + my %lt = &Apache::lonlocal::texthash( + name => 'Name', + usnm => 'username:domain', + coac => 'Course Access', + curn => 'Current notification status', + notf => 'Notification?', + ntac => 'Notification active', + ntin => 'Notification inactive', + ); if (@ccs > 0) { @ccs = sort @ccs; $r->print(" - - + + + - "); - } else { - $r->print(" - - "); + + "); + } + if (@ccs > 0 || @showdom > 0) { + $r->print(" + + "); } $r->print(" -
The table below contains a list of course coordinators in this course. Uncheck the 'Notification?' checkbox for each person who is to be removed from the list of recipients who are currently informed of roster changes whenever any adds or drops occur during the nightly enrollment check. To include individuals who are not currently recipients, simply check the 'Notification?' checkbox. Click 'Go' to store your changes. + ".&mt('The table below contains a list of [_1]s in this course.',&Apache::lonnet::plaintext('cc'))."
- - - - - - - - "); - for (my $i=0; $i<@ccs; $i++) { - my $colflag = $i%2; - $r->print(" - - - "); + "); + } else { + $r->print(" + + + "); + } + my $viewer = $env{'user.name'}.':'.$env{'user.domain'}; + my $showalldc = 0; + if (grep(/^$viewer$/,@domcoord)) { + $showalldc = 1; + } + foreach my $dc (@domcoord) { + if (!grep(/^$dc$/,@ccs)) { + if (grep(/^$dc$/,@notified)) { + $notifystate{$dc} = 1; } else { - $r->print(""); + $notifystate{$dc} = 0; + if (!$showalldc) { + next; + } } + my ($dcuname,$dcdom) = split(/:/,$dc); + $pname{$dc} = &Apache::loncommon::plainname($dcuname,$dcdom); + push(@showdom,$dc); } + } + my $showdomnum = scalar(@showdom); + if ($showdomnum) { $r->print(" -
NameusernameCurrent statusNotification?
$pname{$ccs[$i]}$ccs[$i] - "); - if ($notifystate{$ccs[$i]} == 1) { - $r->print("Notification active"); - } else { - $r->print("Notification inactive"); - } - if ($notifystate{$ccs[$i]} == 1) { - $r->print("
"); + $r->print(¬ifier_tables('cc',\%lt,\@ccs,\%status,\%notifystate, + \%pname,\$notifyshow)); + $r->print("
". + &mt('No [_1]s found.',&Apache::lonnet::plaintext('cc'))." +
-
- - - - -
- -
+
 
"); + if ($showalldc) { + $r->print(&mt("The table below contains a list of [_1]s from this course's domain who are not also [_2]s.",&Apache::lonnet::plaintext('dc'),&Apache::lonnet::plaintext('cc'))); + } else { + $r->print(&mt("The table below contains a list of [_1] from this course's domain who currently receive notification, and are not also [_2]s.",&Apache::lonnet::plaintext('dc'),&Apache::lonnet::plaintext('cc'))); + } + $r->print("
- No course coordinators found. -
"); + $r->print(¬ifier_tables('dc',\%lt,\@showdom,\%status,\%notifystate, + \%pname,\$notifyshow)); + $r->print(" +
 
"); + if ($notifycount) { + $r->print(&mt("Uncheck the checkbox(es) to terminate notification for people currently informed of roster changes from the nightly enrollment update.
")); + } + if ((@ccs + @showdom) > $notifycount) { + $r->print(&mt("Check the checkbox(es) to initiate notification for people not currently informed of roster changes from the nightly enrollment update.
")); + } + $r->print(&mt("Click 'Go' to save your changes.")." +
+ + + + +
+ +
+
- - - -
+ + + + + "); } elsif ($action eq "crosslist") { - my @xlists = (); - if ($enrollvar{crosslistings} =~ m/,/) { - @xlists = split/,/,$enrollvar{crosslistings}; - } elsif ($enrollvar{crosslistings} ne '') { - $xlists[0] = $enrollvar{crosslistings}; + my @xlists; + if ($enrollvar{crosslistings} ne '') { + @xlists = split(/,/,$enrollvar{crosslistings}); } my $cross_str = @xlists; $r->print(" @@ -573,42 +710,37 @@ ENDTWO "); if ($cross_str > 0) { $r->print(" - Currently, this LON-CAPA course is crosslisted with $cross_str course section(s). Students enrolling in these course sections will be automatically added to the class roster for the course, if you have chosen to enable a nightly automated enrollment update. For each crosslisting, leave the checkbox checked if you want registered students in that course to be included in the student roster for LON-CAPA course: $realm ($enrollvar{coursecode}); otherwise uncheck it. If you wish to change the section/group ID assigned in your LON-CAPA course for a crosslisted course, enter the new section/group ID in the appropriate textbox. The LON-CAPA section/group ID can be left (or set to) empty, if you do not wish to tie a section/group ID to this crosslisting. If you wish to add new crosslisted courses, enter the number of new courses to add in the textbox at the bottom of the page. You will provide information about each of the new crosslistings on a subsequent page. Click 'Go' to store your changes. + Currently, this LON-CAPA course is crosslisted with $cross_str course section(s). Students enrolling in these course sections will be automatically added to the class roster for the course, if you have chosen to enable a nightly automated enrollment update. For each crosslisting, leave the checkbox checked if you want registered students in that course to be included in the student roster for LON-CAPA course: $realm ($enrollvar{coursecode}); otherwise uncheck it. If you wish to change the section ID assigned in your LON-CAPA course for a crosslisted course, enter the new section ID in the appropriate textbox. The LON-CAPA section ID can be left (or set to) empty, if you do not wish to tie a section ID to this crosslisting. If you wish to add new crosslisted courses, enter the number of new courses to add in the textbox at the bottom of the page. You will provide information about each of the new crosslistings on a subsequent page. Click 'Go' to save your changes.
- - - - -
- - - - - - + "); + $r->print(&Apache::loncommon::start_data_table()); + $r->print(&Apache::loncommon::start_data_table_row()); + $r->print(" + + + "); + $r->print(&Apache::loncommon::end_data_table_row()); for (my $i=0; $i<@xlists; $i++) { my $xl = ' '; - my $gp = ' '; - if ($xlists[$i] =~ /(\w+):(.+)$/) { + my $lc_sec = ' '; + if ($xlists[$i] =~ /^([^:]+):?(.*)$/) { $xl = $1; - $gp = $2; + $lc_sec = $2; } my $colflag = $i%2; + $r->print(&Apache::loncommon::start_data_table_row()); $r->print(" - - + - - + "); + $r->print(&Apache::loncommon::end_data_table_row()); } - $r->print("
Enrollment?Crosslisted courseLON-CAPA section/groupID
Enrollment?Crosslisted courseLON-CAPA section ID
$xl
-
- "); + $r->print(&Apache::loncommon::end_data_table()); } else { $r->print(" @@ -632,25 +764,20 @@ ENDTWO
- +
- - + + "); } elsif ($action eq "sections") { my @sections = (); - @sections = &Apache::lonnet::auto_get_sections($homeserver,$enrollvar{coursecode}); - my @storedsections = (); + @sections = &Apache::lonnet::auto_get_sections($crs,$dom,$enrollvar{coursecode}); + my @storedsections = split(/,/,$enrollvar{sectionnums}); my @currsections = (); my %sec_id = (); - if ($enrollvar{sectionnums} =~ m/,/) { - @storedsections = split/,/,$enrollvar{sectionnums}; - } else { - $storedsections[0] = $enrollvar{sectionnums}; - } foreach (@storedsections) { if ($_ =~ m/^(\w+):(\w*)$/) { push @currsections, $1; @@ -669,23 +796,25 @@ ENDTWO - For each section, check the checkbox if you want registered students in that section to be included in the student roster for LON-CAPA course: $realm ($enrollvar{coursecode}); otherwise uncheck it. If you want to change the section/group designation used for this section in LON-CAPA, delete the current value in the LON-CAPA section/group textbox and enter the new value. The LON-CAPA section/group ID can be left (or set to) empty, if you do not wish to tie a section/group ID to this section. To add a new section, check the 'Enrollment in this course?' checkbox, and enter the desired LON-CAPA section/groupID in the appropriate textbox. Click 'Go' to store -your changes. + For each section, check the checkbox if you want registered students in that section to be included in the student roster for LON-CAPA course: $realm ($enrollvar{coursecode}); otherwise uncheck it. If you want to change the section ID designation used for this section in LON-CAPA, delete the current value in the LON-CAPA section ID textbox and enter the new value. The LON-CAPA section ID can be left (or set to) empty, if you do not wish to tie a section ID to this section. To add a new section, check the 'Enrollment in this course?' checkbox, and enter the desired LON-CAPA section ID in the appropriate textbox. Click 'Go' to save your changes.
- - - - - - - "); + $r->print(&Apache::loncommon::start_data_table()); + $r->print(&Apache::loncommon::start_data_table_row()); + $r->print(" + + + + + "); + $r->print(&Apache::loncommon::end_data_table_row()); for (my $i=0; $i<@sections; $i++) { my $colflag = $i%2; my $shrflag = 0; - $r->print(" + $r->print(&Apache::loncommon::start_data_table_row()); + $r->print(" $r->print("Enrollment inactive"); } if ($shrflag) { - $r->print(""); + $r->print(""); } else { - $r->print(""); + $r->print(""); } + $r->print(&Apache::loncommon::end_data_table_row()); } + $r->print(&Apache::loncommon::end_data_table()); $r->print(" -
SectionCurrent statusLON-CAPA section/group IDEnrollment in this course?
SectionCurrent statusLON-CAPA section IDEnrollment in this course?
$sections[$i] "); @@ -696,24 +825,25 @@ your changes.

- +
- - + + "); } else { @@ -726,36 +856,31 @@ your changes. if (@currsections) { my $secshow = @currsections; $r->print(" - Currently, this LON-CAPA course incorporates enrollment from $secshow sections. Students enrolling in any of these course sections will be automatically added to the class roster for the course, if you have chosen to enable a nightly automated enrollment update. For each section, uncheck the checkbox if you want registered students in that section to cease being included in the student roster for LON-CAPA course: $realm ($enrollvar{coursecode}); otherwise leave it checked. If you want to change the section/group designation used for this section in LON-CAPA, delete the current value in the LON-CAPA section/groupID textbox and enter the new value. If you wish to add new course section, enter the number of new sections to add in the textbox at the bottom of the page. You will provide information about each of the new sections on a subsequent page. Click 'Go' to store your changes. + Currently, this LON-CAPA course incorporates enrollment from $secshow sections. Students enrolling in any of these course sections will be automatically added to the class roster for the course, if you have chosen to enable a nightly automated enrollment update. For each section, uncheck the checkbox if you want registered students in that section to cease being included in the student roster for LON-CAPA course: $realm ($enrollvar{coursecode}); otherwise leave it checked. If you want to change the section ID designation used for this section in LON-CAPA, delete the current value in the LON-CAPA section ID textbox and enter the new value. If you wish to add new course section, enter the number of new sections to add in the textbox at the bottom of the page. You will provide information about each of the new sections on a subsequent page. Click 'Go' to save your changes.
- - - - -
- - - - - - "); + $r->print(&Apache::loncommon::start_data_table()); + $r->print(&Apache::loncommon::start_data_table_row()); + $r->print(" + + + + "); + $r->print(&Apache::loncommon::end_data_table_row()); for (my $j=0; $j<@currsections; $j++) { my $colflag = $j%2; + $r->print(&Apache::loncommon::start_data_table_row()); $r->print(" - - + - - + "); + $r->print(&Apache::loncommon::end_data_table_row()); } - $r->print("
Enrollment?SectionLON-CAPA section/groupID
Enrollment?SectionLON-CAPA section ID
$currsections[$j]
-
- "); + $r->print(&Apache::loncommon::end_data_table()); } else { $r->print(" Currently no sections of $realm ($enrollvar{coursecode}) are contributing enrollment to the LON-CAPA class roster. @@ -778,12 +903,12 @@ your changes.
- +
- - + + "); } @@ -794,7 +919,7 @@ your changes.
$$tasktitleref{$action}
- Currently: Student photo import: $photosets[$enrollvar{showphotos}] + Currently: Student photo import: $photosets[$enrollvar{showphoto}]
@@ -804,40 +929,105 @@ your changes. Automatic import of student photos from institutional data repository:   "); - if ($enrollvar{showphotos}) { + if ($enrollvar{showphoto}) { $r->print(" -  Yes    -  No + + "); } else { $r->print(" -  Yes    -  No + + "); } - $r->print(" + $r->print(' + + + '); + my ($result,$perm_reqd)=&Apache::lonnet::auto_photo_permission($crs,$dom); + my $can_enable = 1; + my $institution = &Apache::lonnet::domain($dom,'description'); + if ($result eq 'ok') { + if ($perm_reqd eq 'yes') { + if (!($enrollvar{'photopermission'} eq 'yes')) { + $can_enable = 0; + } else { + if (&user_is_courseowner($enrollvar{'courseowner'})) { + $r->print(' + + '. +&mt('Previously the owner of this course agreed to the conditions of use of digital student photos required by [_1].', $institution).'
'.&mt('As a result [_1]s can choose to automatically import student photos into this course.',&Apache::lonnet::plaintext('cc')).'
+ '); + } + } + } + } else { + $r->print(' + + '. +&mt('There was a problem determining whether course owner permission is required in order for a course coordinator to have access to student photos in this domain.').' '.&mt('As a result you will not be able to configure access to student photos at this time').'

+ + + + '); + return; + } + if ($can_enable) { + $r->print(' - -Note: if you enable automatic import of student photos, your course will automatically have access to photos stored by your institution for all officially registered students, via a conduit established by your LON-CAPA domain coordinator. + '. +&mt('Note: if you enable automatic import of student photos, your course will automatically have access to photos saved by your institution for officially registered students, via a conduit established by your LON-CAPA domain coordinator.').' +'); + } else { + if (&user_is_courseowner($enrollvar{'courseowner'})) { + $r->print(' + + '. +&mt('[_1] requires a course owner to indicate acceptance of conditions of use of digital student photos before enabling automatic import into a course. If you choose to enable import of photos you will be prompted for your agreement on the next page.',$institution).' + + + '); + } else { + my ($ownername,$owneremail) = &get_ownerinfo($dom, + $enrollvar{'courseowner'}); + my $emailstr; + if ($owneremail) { + $emailstr = "(e-mail: $owneremail)"; + } + $r->print(' + + ' + .&mt('The policies of your institution ([_1]) require that the course owner ([_2]) must indicate acceptance of the conditions of use of digital photos of registered students, before they may be made available for use in a course.',$institution,$ownername) + .'

' + .&mt('Please direct the course owner [_1] to visit the "Student photos" page in the Automated Enrollment Manager to indicate acceptance of these conditions of use.',$emailstr) + .'

+ + + + '); + return; + } + } + $r->print('   - - + + - - + + - "); + '); } elsif ($action eq "updatenow") { $r->print("

@@ -850,976 +1040,1797 @@ Note: if you enable automatic import of - - - + + + - - - - -
- Add any students currently included in institutional classlist(s) but not enrolled in your LON-CAPA course. -  Yes  -  No  + Add any students currently included in institutional classlist(s) but not enrolled in your LON-CAPA course.
+ +
- Expire students previously added by nightly enrollment process, but no longer listed in institutional classlist(s). -  Yes  -  No 
-
- + Expire students previously added by nightly enrollment process, but no longer listed in institutional classlist(s).
+ +
+
Note: Any students previously added manually by course coordinator(s) using either 'Upload classlist CSV file' or 'Enroll a single user' will be unaffected by the removal process. - -
- -
- - -
+
+ + + + + "); + &print_accessdate_table($r,\%enrollvar,$tasktitleref,$action); + $r->print(" + + + + + + + + + + + "); + } elsif ($action eq 'updatephotos') { + $r->print(" + + + + + +
$$tasktitleref{$action} +
"); + if ($enrollvar{'showphoto'}) { + my ($update,$commentary) = &Apache::lonnet::auto_photochoice($crs, + $dom); + if ($update) { + $r->print('
'.$commentary.'

+
+ + + +
'); + } else { + $r->print(&mt('Update of photos via the Automated Enrollment Manager is unavailable in this domain.') + .'

'); + } + } else { + $r->print('Update of photos is unavailable, as import of student photos is currently disabled.
Enable this first via: '.$$tasktitleref{'photos'}.''); + } + $r->print('
 
'); + } elsif ($action eq 'viewclass') { + $r->print(" +

+ + + + + + + + +
$$tasktitleref{$action} +
Section changes, name changes, and class drops that can be set to occur either automatically or when using the 'Update roster now' feature, will affect only those students with an enroll type of 'auto'. Students with an enroll type of 'manual', will be converted automatically to the 'auto' type, when they first appear in the institutional classlist for the course - as long as nightly adds are enabled and active, or the update roster utility is used. Use the 'Lock' checkbox for any manually enrolled students for whom you wish to prevent type conversion. Use the 'Change' checkbox to switch the enroll type from auto to manual, and vice versa. Use the 'Unlock' checkbox for any maually enrolled students for whom you no longer wish to lock the enroll type. Click the 'Go' button at the end of the page to process your desired changes.
 
+ + + + \n"); + } else { + $r->print(&mt('Student Status: [_1]',$status_select)."\n"); + $r->print(''. + "\n

\n"); + my $context = 'course'; + my $mode = 'autoenroll'; + my ($studentcount,$autocount,$manualcount,$lockcount,$unlockcount) = &Apache::lonuserutils::show_users_list($r,$context,$mode,$permission,$env{'form.Status'},\%userlist,$keylist); + $r->print(" + + + "); + if ($studentcount > 0) { + $r->print(" + + + + + + "); + } else { + $r->print(' + + + + '); + } + $r->print(" +
+ "); + if (! exists($env{'form.sortby'})) { + $env{'form.sortby'} = 'username'; + } + if ($env{'form.Status'} !~ /^(Any|Expired|Active|Future)$/) { + $env{'form.Status'} = 'Active'; + } + my $status_select = &Apache::lonhtmlcommon::StatusOptions($env{'form.Status'}); +# Get current classlist + my %userlist; + my ($indexhash,$keylist) = &Apache::lonuserutils::make_keylist_array(); + my $classlist = &Apache::loncoursedata::get_classlist(); + my $secidx = &Apache::loncoursedata::CL_SECTION(); + my ($permission,$allowed) = &Apache::lonuserutils::get_permission(); + foreach my $student (keys(%{$classlist})) { + if (exists($permission->{'view_section'})) { + if ($classlist->{$student}[$secidx] ne $permission->{'view_section'}) { + next; + } else { + $userlist{$student} = $classlist->{$student}; + } + } else { + $userlist{$student} = $classlist->{$student}; + } + } + + if (! defined($classlist)) { + $r->print(&mt('There are no students either currently or previously enrolled.')." +
+ "); + my $cellcount = 0; + if ($autocount > 0) { + $cellcount ++; + $r->print(<
Change auto   +
+END + } + if ($manualcount > 0) { + $cellcount ++; + $r->print(<
Change manual   +
+END + } + if ($lockcount > 0) { + if ($cellcount == 2) { + $r->print("
"); + } + $cellcount ++; + $r->print(<
Lock manual   +
+END + } + if ($unlockcount > 0) { + if ($cellcount == 2) { + $r->print("
"); + } + $cellcount ++; + $r->print(<
Unlock manual   +
+END + } + $r->print(" +
+
+
 
+ +

+ '.&mt('There are no students with the selected status.').' +
+ + +
+ "); + } } } +sub notifier_tables { + my ($role,$lt,$users,$status,$notifystate,$pname,$notifyshow) = @_; + my $output = &Apache::loncommon::start_data_table(); + $output .= &Apache::loncommon::start_data_table_header_row(); + $output .= "$$lt{name} + $$lt{usnm}"; + if ($role eq 'cc') { + $output .= "$$lt{coac}"; + } + $output .= "$$lt{curn} + $$lt{notf}"; + $output .= &Apache::loncommon::end_data_table_header_row(); + for (my $i=0; $i<@{$users}; $i++) { + $output .= &Apache::loncommon::start_data_table_row(); + $output .= ''.$$pname{$$users[$i]}.''. + ''.$$users[$i].''; + if ($role eq 'cc') { + $output .= ''.$$status{$$users[$i]}.''; + } + $output .= ''; + if ($$notifystate{$$users[$i]} == 1) { + $output .= $$lt{ntac}; + } else { + $output .= $$lt{ntin}; + } + $output .= ' 'Currently NO default first access or last access dates are set.', + 'ifyo' => 'If you do not set a start date and an end date, then student roles for students added by the automated enrollment process will start immediately when the student is added and will never become inactive.', + 'ifyd' => 'If you do not set an access start date and an end date, then student roles for new students added when you click "Go" will become active immediately and will never become inactive.', + 'setf' => 'Set date of first access', + 'setl' => 'Set date of last access', + 'freg' => 'for registered students added via automated enrollment', + 'fnew' => 'for new students added when you update the class roster', + 'ifad' => 'If automated adds are enabled, then when students are added their student roles will become active on the date set here for first access, and their roles will become inactive on the date set here for last access. These default access dates will be overridden for specific students if the institutional classlist data supplied to the automatic enrollment process includes entries for the startdate and enddate fields for those students.', + 'ncds' => 'changing default start and end access dates will affect future enrollments and also currently inactive students (i.e., those for whom access will begin in the future).', + 'tcha' => 'To change access dates for currently active students, use User Management -> "Display Class Lists and Manage Multiple Users" to display currently active students, then use the dropdown menu for "Action to take for selected users:" to choose "Change starting/ending dates", select the students to change, and click "Proceed".', + ); + my $dateshow; + if ( ($oldendshow eq '') && ($oldstartshow eq '') ) { + $dateshow = "
".&mt('Warning').". ".$lt{'cuno'}." "; + if ($action eq 'setaccess') { + $dateshow .= $lt{'ifyo'}."\n"; + } elsif ($action eq 'updatenow') { + $dateshow .= $lt{'ifyd'}."\n"; + } + } else { + $dateshow = &mt('Currently: default first access').": $oldstartshow, ".&mt('default last access').": $oldendshow\n"; + } + if ($action eq 'setaccess') { + $r->print(<
+ + + + +
$$tasktitleref{$action} +

+ $dateshow +
+ENDONE + } elsif ($action eq 'updatenow') { + $r->print(" +

$dateshow\n"); + } + $r->print(< + + + + + + + + +
+ENDTWO + if ($action eq 'setaccess') { + $r->print("$lt{'setf'} $lt{'freg'}"); + } elsif ($action eq 'updatenow') { + $r->print("$lt{'setf'} $lt{'fnew'}"); + } + $r->print(< +
$start_table +
+ + + + + + + + + + +
+ENDTHREE + if ($action eq 'setaccess') { + $r->print("$lt{'setl'} $lt{'freg'}"); + } elsif ($action eq 'updatenow') { + $r->print("$lt{'setl'} $lt{'fnew'}"); + } + $r->print(< +
$end_table +
+ + +ENDFOUR + if ($action eq 'setaccess') { + $r->print(" + + $lt{'ifad'} + + +   + + + ".&mt('Note').": ".$lt{'ncds'}.' '.$lt{'tcha'}." + + + "); + } elsif ($action eq 'updatenow') { + $r->print(" + + + "); + } +} + ############################################################### sub print_doc_base { - my $r = shift; - $r->print(<print(< -
- - +
ENDBASE + $r->print(&Apache::loncommon::end_page()); } ################################################################### sub print_chgsettings_response { - my ($r,$realm,$dom,$crs,$action,$tasktitleref) = @_; - my %settings = &Apache::lonnet::get('environment',['internal.sectionnums','internal.crosslistings','internal.autostart','internal.autoend','internal.autoadds','internal.autodrops'],$dom,$crs); - my $currend = ''; - my $currstart = ''; - my $currsecs = ''; - my $currxlists = ''; - my $curradds = ''; - my $currdrops = ''; - if ( defined($settings{'internal.autoadds'}) ) { - $curradds = $settings{'internal.autoadds'}; - } - if ( defined($settings{'internal.autodrops'}) ) { - $currdrops = $settings{'internal.autodrops'}; - } - if ( defined($settings{'internal.autostart'}) ) { - $currstart = $settings{'internal.autostart'}; - } - if ( defined($settings{'internal.autoend'}) ) { - $currend = $settings{'internal.autoend'}; - } - if ( defined($settings{'internal.sectionnums'}) ) { - $currsecs = $settings{'internal.sectionnums'}; - } - if ( defined($settings{'internal.crosslistings'}) ) { - $currxlists = $settings{'internal.crosslistings'} - } - my $autoadds = ''; - my $autodrops = ''; - - if ( exists($ENV{'form.autoadds'}) ) { - $autoadds=$ENV{'form.autoadds'}; - } - if ( exists($ENV{'form.autodrops'}) ) { - $autodrops=$ENV{'form.autodrops'}; - } + my ($r,$realm,$dom,$crs,$action,$tasktitleref) = @_; + my %settings = &Apache::lonnet::get('environment',['internal.sectionnums','internal.crosslistings','internal.autostart','internal.autoend','internal.autoadds','internal.autodrops'],$dom,$crs); + my $currend = ''; + my $currstart = ''; + my $currsecs = ''; + my $currxlists = ''; + my $curradds = ''; + my $currdrops = ''; + if ( defined($settings{'internal.autoadds'}) ) { + $curradds = $settings{'internal.autoadds'}; + } + if ( defined($settings{'internal.autodrops'}) ) { + $currdrops = $settings{'internal.autodrops'}; + } + if ( defined($settings{'internal.autostart'}) ) { + $currstart = $settings{'internal.autostart'}; + } + if ( defined($settings{'internal.autoend'}) ) { + $currend = $settings{'internal.autoend'}; + } + if ( defined($settings{'internal.sectionnums'}) ) { + $currsecs = $settings{'internal.sectionnums'}; + } + if ( defined($settings{'internal.crosslistings'}) ) { + $currxlists = $settings{'internal.crosslistings'} + } + my $autoadds = ''; + my $autodrops = ''; - my $response = ""; - my $warning = ""; - my $warn_prefix = ""; - my $warn_suffix = ""; - my $warnfiller = ""; - my %cenv = ('internal.autoadds' => $autoadds, - 'internal.autodrops' => $autodrops); - my $reply = &Apache::lonnet::put('environment',\%cenv,$dom,$crs); - if ($reply !~ /^ok$/) { - $response = "There was a problem processing your requested changes. The automated enrollment settings for this course have been left unchanged.
"; - } else { - if ($autoadds) { - if ($curradds) { - $response = "Nightly additions based on classlist changes still enabled
"; - } else { - $response = "Nightly additions based on classlist changes now enabled
"; - } - } else { - if ($curradds) { - $response = "Nightly additions based on classlist changes now disabled
"; - } else { - $response = "Nightly additions based on classlist changes still disabled
"; - } - } - if ($autodrops) { - if ($currdrops) { - $response .= "Nightly removals based on classlist changes still enabled
"; - } else { - $response .= "Nightly removals based on classlist changes now enabled
"; - } - } else { - if ($currdrops) { - $response .= "Nightly removals based on classlist changes now disabled
"; - } else { - $response .= "Nightly removals based on classlist changes still disabled"; - } - } - if ($autoadds || $autodrops) { - $warning = &warning_message($dom,$crs,$action); - $warn_prefix = "
Warning. Although you indicated that nightly "; - $warn_suffix = " should be enabled, additional action is required.
"; - } - if ($autoadds) { - if ($autodrops) { - $warnfiller = "adds and drops"; - } else { - $warnfiller = "adds"; - } - } else { - if ($autodrops) { - $warnfiller = "drops"; - } - } - unless ($warning eq '') { - $response = $warn_prefix.$warnfiller.$warn_suffix.$warning; - } - } - &print_reply($r,$response,$$tasktitleref{$action}); - return; + if ( exists($env{'form.autoadds'}) ) { + $autoadds=$env{'form.autoadds'}; + } + if ( exists($env{'form.autodrops'}) ) { + $autodrops=$env{'form.autodrops'}; + } + + my $response = ""; + my $warning = ""; + my $warn_prefix = ""; + my $warn_suffix = ""; + my $warnfiller = ""; + my %cenv = ('internal.autoadds' => $autoadds, + 'internal.autodrops' => $autodrops); + my $reply = &Apache::lonnet::put('environment',\%cenv,$dom,$crs); + if ($reply !~ /^ok$/) { + $response = "There was a problem processing your requested changes. The automated enrollment settings for this course have been left unchanged.
"; + } else { + if ($autoadds) { + if ($curradds) { + $response = "Nightly additions based on classlist changes still enabled
"; + } else { + $response = "Nightly additions based on classlist changes now enabled
"; + } + } else { + if ($curradds) { + $response = "Nightly additions based on classlist changes now disabled
"; + } else { + $response = "Nightly additions based on classlist changes still disabled
"; + } + } + if ($autodrops) { + if ($currdrops) { + $response .= "Nightly removals based on classlist changes still enabled
"; + } else { + $response .= "Nightly removals based on classlist changes now enabled
"; + } + } else { + if ($currdrops) { + $response .= "Nightly removals based on classlist changes now disabled
"; + } else { + $response .= "Nightly removals based on classlist changes still disabled"; + } + } + if ($autoadds || $autodrops) { + $warning = &warning_message($dom,$crs,$action); + $warn_prefix = "
Warning. Although you indicated that nightly "; + $warn_suffix = " should be enabled, additional action is required.
"; + } + if ($autoadds) { + if ($autodrops) { + $warnfiller = "adds and drops"; + } else { + $warnfiller = "adds"; + } + } else { + if ($autodrops) { + $warnfiller = "drops"; + } + } + unless ($warning eq '') { + $response = $warn_prefix.$warnfiller.$warn_suffix.$warning; + } + } + &print_reply($r,$response,$$tasktitleref{$action}); + return; } sub print_setdates_response { - my ($r,$realm,$dom,$crs,$action,$tasktitleref) = @_; - my %settings = &Apache::lonnet::get('environment',['internal.autostart','internal.autoend'],$dom,$crs); - my $currstart = $settings{'internal.autostart'}; - my $currend = $settings{'internal.autoend'}; - my $response = ''; - my ($autostart,$autoend) = &get_dates_from_form(); - my $showstart = localtime($autostart); - my $showend = ''; - my $warning = ''; - my $warn_prefix = ''; - if ($autoend) { - $showend = localtime($autoend); - } else { - $showend = "'No end date'"; - } - - my %cenv = ('internal.autostart' => $autostart, - 'internal.autoend' => $autoend); - my $reply = &Apache::lonnet::put('environment',\%cenv,$dom,$crs); - if ($reply !~ /^ok$/) { - $response = "There was a problem processing your requested changes. The automated enrollment settings for this course have been left unchanged.
"; - } else { - if ($currstart == $autostart) { - $response = "The first date for automated enrollment has been left unchanged as $showstart.
"; - } else { - $response = "The first date for automated enrollment has been changed to $showstart.
"; - } - if ($currend == $autoend) { - $response .= "The last date for automated enrollment has been left unchanged as $showend.
"; - } else { - $response .= "The last date for automated enrollment has been changed to $showend.
"; - } + my ($r,$realm,$dom,$crs,$action,$tasktitleref) = @_; + my %settings = &Apache::lonnet::get('environment',['internal.autostart','internal.autoend'],$dom,$crs); + my $currstart = $settings{'internal.autostart'}; + my $currend = $settings{'internal.autoend'}; + my $response = ''; + my $showstart = ''; + my $showend = ''; + my $warning = ''; + my $warn_prefix = ''; + my ($autostart,$autoend) = &get_dates_from_form(); + if ( ($autostart eq '') || ($autoend eq '') ) { + $response = "There was a problem processing your requested changes. The automated enrollment settings for this course have been left unchanged.
"; + } elsif (($autoend > 0) && ($autoend <= $autostart)) { + $response = 'The date/time selected for starting auto-enrollment was the same or later than the date/time selected for ending auto-enrollment. As this means auto-enrollment will never be active, your requested changes have not been processed, and the existing values remain in effect. Please go back to the previous page to try your changes again.'."\n"; + } else { + $showstart = &Apache::lonlocal::locallocaltime($autostart); + if ($autoend) { + $showend = &Apache::lonlocal::locallocaltime($autoend); + } else { + $showend = "'No end date'"; + } + + my %cenv = ('internal.autostart' => $autostart, + 'internal.autoend' => $autoend); + my $reply = &Apache::lonnet::put('environment',\%cenv,$dom,$crs); + if ($reply !~ /^ok$/) { + $response = "There was a problem processing your requested changes. The automated enrollment settings for this course have been left unchanged.
"; + } else { + if ($currstart == $autostart) { + $response = "The first date for automated enrollment has been left unchanged as $showstart.
"; + } else { + $response = "The first date for automated enrollment has been changed to $showstart.
"; + } + if ($currend == $autoend) { + $response .= "The last date for automated enrollment has been left unchanged as $showend.
"; + } else { + $response .= "The last date for automated enrollment has been changed to $showend.
"; + } -# Generate message in case where old first access date was later than today, but new first access date is now today or earlier. +# Generate message in case where old first enrollment date was later than today, but new first enrollment date is now today or earlier. - my $rosterupdated = 0; - my $firstaccess = ""; - my $nextupdate = ""; - my $lastupdate = ""; - - my $nowstamp = time; - my @date_list=localtime(time); - my $cur_year = $date_list[5]; - my $curday = $date_list[3]; - my $curmonth = $date_list[4]; - my $lastmidnt = timelocal(0,0,0,$date_list[3],$date_list[4],$date_list[5]); - my $nextmidnt = 86400 + $lastmidnt; - - my $todayupdate = timelocal(0,30,1,$date_list[3],$date_list[4],$date_list[5]); - my $lastupdate = $todayupdate - 86400; - if ($nowstamp < $todayupdate) { - $nextupdate = "today"; - } else { - $nextupdate = "tomorrow"; - } - if ($currstart < $lastupdate) { - $rosterupdated = 1; - } - if ($autostart < $nextmidnt ) { - if ( $autostart >= $lastmidnt) { - $firstaccess = "today"; - } else { - $firstaccess = "a date prior to today"; - } - if (($nowstamp >= $autostart) && ($rosterupdated == 0)) { - $response .= qq|
Although you have now set the first enrollment date to $firstaccess, automatic enrollment will not occur until the next automatic enrollment update occurs for all LON-CAPA courses at 1.30 am $nextupdate. If you wish to grant immediate course access for registered students included in the institutional classlist for this class, please visit the roster update page.
|; - } - } - $warning = &warning_message($dom,$crs,$action); - $warn_prefix = "
Warning. Although you set a start and end date for auto-enrollment, additional action is required.
"; - unless ($warning eq '') { - $response .= $warn_prefix.$warning; - } - } - &print_reply($r,$response,$$tasktitleref{$action}); - return; + my $rosterupdated = 0; + my $firstaccess = ""; + my $nextupdate = ""; + my $lastupdate = ""; + + my $nowstamp = time; + my @date_list=localtime(time); + my $cur_year = $date_list[5]; + my $curday = $date_list[3]; + my $curmonth = $date_list[4]; + my $lastmidnt = timelocal(0,0,0,$date_list[3],$date_list[4],$date_list[5]); + my $nextmidnt = 86400 + $lastmidnt; + + my $todayupdate = timelocal(0,30,1,$date_list[3],$date_list[4],$date_list[5]); + my $lastupdate = $todayupdate - 86400; + if ($nowstamp < $todayupdate) { + $nextupdate = "today"; + } else { + $nextupdate = "tomorrow"; + } + if ($currstart < $lastupdate) { + $rosterupdated = 1; + } + if ($autostart < $nextmidnt ) { + if ( $autostart >= $lastmidnt) { + $firstaccess = "today"; + } else { + $firstaccess = "a date prior to today"; + } + if (($nowstamp >= $autostart) && ($rosterupdated == 0)) { + $response .= qq|
Although you have now set the first enrollment date to $firstaccess, automatic enrollment will not occur until the next automatic enrollment update occurs for all LON-CAPA courses at 1.30 am $nextupdate. If you wish to immediately enroll registered students included in the institutional classlist for this class, please visit the roster update page.
|; + } + } + $warning = &warning_message($dom,$crs,$action); + $warn_prefix = "
Warning. Although you set a start and end date for auto-enrollment, additional action is required.
"; + unless ($warning eq '') { + $response .= $warn_prefix.$warning; + } + } + } + &print_reply($r,$response,$$tasktitleref{$action}); + return; +} + +sub print_setaccess_response { + my ($r,$realm,$dom,$crs,$action,$tasktitleref) = @_; + my %settings = &Apache::lonnet::get('environment',['default_enrollment_start_date','default_enrollment_end_date','internal.autostart'],$dom,$crs); + my $currstart = $settings{'default_enrollment_start_date'}; + my $currend = $settings{'default_enrollment_end_date'}; + my $autostart = $settings{'internal.autostart'}; + my $response = ''; + my ($startaccess,$endaccess) = &get_dates_from_form(); + if (($startaccess eq '') || ($endaccess eq '')) { + $response = "There was a problem processing your requested changes. The default +start and end access dates for this course have been left unchanged.
"; + } elsif (($endaccess > 0) && ($endaccess <= $startaccess)) { + $response = 'The default start access date/time you chose was the same or later than the default end access date/time. As this means that roles will never be active, your requested changes have not been processed, and the existing values remain in effect. Please go back to the previous page to try your changes again.'."\n"; + } else { + my $showstart = &Apache::lonlocal::locallocaltime($startaccess); + my $showend = ''; + my $warning = ''; + my $warn_prefix = ''; + if ($endaccess) { + $showend = &Apache::lonlocal::locallocaltime($endaccess); + } else { + $showend = "'No end date'"; + } + + my %cenv = ('default_enrollment_start_date' => $startaccess, + 'default_enrollment_end_date' => $endaccess); + my $reply = &Apache::lonnet::put('environment',\%cenv,$dom,$crs); + if ($reply !~ /^ok$/) { + $response = "There was a problem processing your requested changes. The automated enrollment settings for this course have been left unchanged.
"; + } else { + if ($currstart == $startaccess) { + $response = "The first access date for students being added via automated enrollment has been left unchanged as $showstart.
"; + } else { + $response = "The first access date for students being added via automated enrollment has been changed to $showstart.
"; + } + if ($currend == $endaccess) { + $response .= "The last access date for students being added via automated enrollment has been left unchanged as $showend.
"; + } else { + $response .= "The last access date for students being added via automated enrollment has been changed to $showend.
"; + } + $response .= '
'.&mt('Any change in access dates will only apply to students who are not currently active, i.e., those who currently have access start dates in the future, and to those added by future automated enrollment.').'

'.&mt('To change access dates for any currently active students, use User Management -> "Display Class Lists and Manage Multiple Users" to display currently active students, then use the dropdown menu for "Action to take for selected users:" to choose "Change starting/ending dates", select the students to change, and click "Proceed".').'
'; + +# Generate message in case where old first access date was later than today, but new first access date is now today or earlier. + + my $accessgiven= 0; + my $firstaccess = ""; + my $nextupdate = ""; + my $lastupdate = ""; + + my $nowstamp = time; + my @date_list=localtime(time); + my $cur_year = $date_list[5]; + my $curday = $date_list[3]; + my $curmonth = $date_list[4]; + my $lastmidnt = timelocal(0,0,0,$date_list[3],$date_list[4],$date_list[5]); + my $nextmidnt = 86400 + $lastmidnt; + + my $todayupdate = timelocal(0,30,1,$date_list[3],$date_list[4],$date_list[5]); + my $tomorrowupdate = $todayupdate + 86400; + my $lastupdate = $todayupdate - 86400; + + if ($autostart < $nextmidnt) { + if ($nowstamp < $todayupdate) { + $nextupdate = "at 1.30 am today"; + } else { + $nextupdate = "at 1.30 am tomorrow"; + } + } else { + my @enrollstart = localtime($autostart); + $nextupdate = timelocal(0,30,1,$enrollstart[3],$enrollstart[4],$enrollstart[5]); + unless (($enrollstart[2] < 1) || ($enrollstart[2] == 1 && $enrollstart[1] <=30)) { + $nextupdate += 86400; + } + $nextupdate = &Apache::lonlocal::locallocaltime($nextupdate); + } + if (($currstart < $lastupdate) && ($autostart < $lastupdate)) { + $accessgiven = 1; + } + if ($startaccess < $nextmidnt ) { + if ( $startaccess >= $lastmidnt) { + $firstaccess = "today"; + } else { + $firstaccess = "a date prior to today"; + } + if (($nowstamp >= $startaccess) && ($accessgiven == 0)) { + $response .= qq|
Although you have now set the first access date to $firstaccess, automatic enrollment will not occur until the next automatic enrollment update occurs for all LON-CAPA courses $nextupdate. If you wish to grant immediate course access for registered students included in the institutional classlist for this class, please visit the roster update page.
|; + } + } + $warning = &warning_message($dom,$crs,$action); + $warn_prefix = "
Warning. Although you have set default first and last access dates for students who are added via automatic enrollment, additional action is required.
"; + unless ($warning eq '') { + $response .= $warn_prefix.$warning; + } + } + } + &print_reply($r,$response,$$tasktitleref{$action}); + return; } sub print_notify_response { - my ($r,$realm,$dom,$crs,$action,$tasktitleref) = @_; + my ($r,$realm,$dom,$crs,$action,$tasktitleref) = @_; # Get current settings - my %settings = &Apache::lonnet::get('environment',['internal.notifylist','internal.coursecode'],$dom,$crs); - my $notifylist = $settings{'internal.notifylist'}; - my $coursecode = $settings{'internal.coursecode'}; - my @currpeople = (); - my $notify = 0; - my @people = (); - my $peoplestr = ""; - my $response = ""; - my $noprocess = 0; - - if ($notifylist =~ m/,/) { - @currpeople = split/,/,$notifylist; - } else { - $currpeople[0] = $notifylist; - } - my $currcount = 0; - foreach (@currpeople) { - unless ($_ eq '') { $currcount ++; } - } - - if ( exists($ENV{'form.notify'}) ) { - $notify=$ENV{'form.notify'}; - } - if ( exists($ENV{'form.notifyshow'}) ) { - my $notifyshow = $ENV{'form.notifyshow'}; - for (my $i=0; $i<$notifyshow; $i++) { - if ( exists($ENV{"form.note_$i"}) ) { - if ( exists($ENV{"form.notifyname_$i"}) ) { - unless ( $ENV{"form.notifyname_$i"} eq '' ) { - push @people, $ENV{"form.notifyname_$i"}; - } - } - } - } - if ($notify) { $peoplestr = join(",",@people); } - } else { - if ($notify) { - if ($currcount) { - $response = "There was a problem retrieving the updated list of recipients of notification messages. The notification settings for this course have been left unchanged.
."; - $peoplestr = $notifylist; - @people = @currpeople; - $noprocess = 1; - } - } - } - unless ($noprocess == 1) { - my %cenv = ('internal.notifylist' => $peoplestr); - my $reply = &Apache::lonnet::put('environment',\%cenv,$dom,$crs); - if ($reply !~ /^ok$/) { - $response = "There was a problem processing your requested changes. The notification settings for this course have been left unchanged.
"; - } else { - if ($notify) { - if (@people) { - if ($currcount) { - $response .= "Notification of enrollment changes still enabled
"; - } else { - $response .= "Notification of enrollment changes now enabled
"; - } - $response .= "
The following will receive notification if there are any changes in enrollment in LON-CAPA course: $realm ($coursecode) as a result of the nightly enrollment check:
    \n"; - foreach my $person (@people) { - $response .= "
  • $person
  • \n"; - } - $response .= "
\n"; - } else { - $response = "Notification of enrollment changes was not enabled as no course coordinators were selected as recipients.
"; - } - } else { - if ($currcount) { - $response = "Notification of enrollment changes now disabled
"; - } else { - $response = "Notification of enrollment changes still disabled
"; - } - } - } - } - &print_reply($r,$response,$$tasktitleref{$action}); - return; + my %settings = &Apache::lonnet::get('environment',['internal.notifylist','internal.coursecode'],$dom,$crs); + my $notifylist = $settings{'internal.notifylist'}; + my $coursecode = $settings{'internal.coursecode'}; + my @currpeople = split(/,/,$notifylist); + my $notify = 0; + my @people = (); + my $peoplestr = ""; + my $response = ""; + my $noprocess = 0; + + my $currcount = 0; + foreach (@currpeople) { + unless ($_ eq '') { $currcount ++; } + } + + if ( exists($env{'form.notify'}) ) { + $notify=$env{'form.notify'}; + } + if ( exists($env{'form.notifyshow'}) ) { + my $notifyshow = $env{'form.notifyshow'}; + for (my $i=0; $i<$notifyshow; $i++) { + if ( exists($env{"form.note_$i"}) ) { + if ( exists($env{"form.notifyname_$i"}) ) { + unless ( $env{"form.notifyname_$i"} eq '' ) { + push @people, $env{"form.notifyname_$i"}; + } + } + } + } + if ($notify) { $peoplestr = join(",",@people); } + } else { + if ($notify) { + if ($currcount) { + $response = "There was a problem retrieving the updated list of recipients of notification messages. The notification settings for this course have been left unchanged.
."; + $peoplestr = $notifylist; + @people = @currpeople; + $noprocess = 1; + } + } + } + unless ($noprocess == 1) { + my %cenv = ('internal.notifylist' => $peoplestr); + my $reply = &Apache::lonnet::put('environment',\%cenv,$dom,$crs); + if ($reply !~ /^ok$/) { + $response = "There was a problem processing your requested changes. The notification settings for this course have been left unchanged.
"; + } else { + if ($notify) { + if (@people) { + if ($currcount) { + $response .= "Notification of enrollment changes still enabled
"; + } else { + $response .= "Notification of enrollment changes now enabled
"; + } + $response .= "
The following will receive notification if there are any changes in enrollment in LON-CAPA course: $realm ($coursecode) as a result of the nightly enrollment check:
    \n"; + foreach my $person (@people) { + $response .= "
  • $person
  • \n"; + } + $response .= "
\n"; + } else { + $response = &mt('Notification of enrollment changes was not enabled as no [_1]s were selected as recipients.
',&Apache::lonnet::plaintext('cc')); + } + } else { + if ($currcount) { + $response = "Notification of enrollment changes now disabled
"; + } else { + $response = "Notification of enrollment changes still disabled
"; + } + } + } + } + &print_reply($r,$response,$$tasktitleref{$action}); + return; } sub print_crosslistings_menu () { - my ($r,$realm,$dom,$crs,$action,$tasktitleref,$homeserver,$server) = @_; - my %settings = &Apache::lonnet::get('environment',['internal.crosslistings','internal.coursecode'],$dom,$crs); - my @currxlists = (); - my @xlists = (); - my $crosscount = 0; - my $removecount = 0; - my $xliststr = ''; - my $response = ''; - my $coursecode = $settings{'internal.coursecode'}; - if ($settings{'internal.crosslistings'} =~ m/,/) { - @currxlists = split/,/,$settings{'internal.crosslistings'}; - } elsif ($settings{'internal.crosslistings'} ne '') { - $currxlists[0] = $settings{'internal.crosslistings'}; - } - - if (@currxlists > 0) { - for (my $i=0; $i<@currxlists; $i++) { - my $xlist = "cross_".$i; - my $gp = "gp_".$i; - if ( exists($ENV{"form.$xlist"}) ) { - my $xlistentry = ''; - if ($currxlists[$i] =~ m/^(\w+:)/) { - $xlistentry = $1; - } - if ( exists($ENV{"form.$gp"}) ) { - $xlistentry .= $ENV{"form.$gp"}; - } - push @xlists,$xlistentry; - $crosscount ++; - } else { - $removecount ++; - } - } - } - - if ($crosscount > 1) { - $xliststr = join(",",@xlists); - } else { - $xliststr = $xlists[0]; - } - my %cenv = ('internal.crosslistings' => $xliststr); - my $reply = &Apache::lonnet::put('environment',\%cenv,$dom,$crs); - if ($reply !~ /^ok$/) { - $response = "There was a problem processing your requested changes. The automated enrollment settings for this course have been left unchanged.
"; - } else { - if ($removecount > 0) { - $response = "A total of $removecount courses are no longer crosslisted with LON-CAPA course: $realm ($coursecode).

"; - } - if ($crosscount > 0) { - $response .= "The $crosscount courses listed below remain crosslisted with this LON-CAPA course, and students enrolling in these course sections will be automatically added to the class roster for the course, if you have chosen to enable a nightly automated enrollment update.
    \n"; - foreach (@xlists) { - my ($xlist,$gp) = split/:/,$_; - $response .= "
  • $xlist - ID: $gp
  • \n"; - } - $response .= "

\n"; - } - } - if ( exists($ENV{'form.numcross'}) ) { - my $numcross = $ENV{'form.numcross'}; - if ($numcross > 0) { - my @bgcolors=("#eeeeee","#cccccc"); - $response .= qq( - You indicated that you wish to add an additional $numcross crosslisting(s). For each new crosslisting enter the insititutional course section code (e.g., fs03zol101001, for section 001 of zol101 for fs03 semester), and the LON-CAPA section/group ID you wish to assign to students who will be enrolled in your LON-CAPA class as a result of their registration in the crosslisted course section. The LON-CAPA section/group ID can be left blank, if you do not wish to tie a section/group ID to this crosslisting. The institutional course section code should only contain letters and/or numbers, and must be consistent with the scheme adopted by your Domain Coordinator to map course codes (and section numbers) to your institution's student information system.

-
- - - + ); + $response .= &Apache::loncommon::end_data_table_row(); + } + $response .= &Apache::loncommon::end_data_table(); + $response .= qq(
- - - - - - ); - for (my $i=0; $i<$numcross; $i++) { - my $colflag = $i%2; - $response .= qq( - + my ($r,$realm,$dom,$crs,$action,$tasktitleref) = @_; + my %settings = &Apache::lonnet::get('environment',['internal.crosslistings','internal.coursecode'],$dom,$crs); + my @currxlists = (); + my @xlists = (); + my $crosscount = 0; + my $removecount = 0; + my $xliststr = ''; + my $response = ''; + my $coursecode = $settings{'internal.coursecode'}; + if ($settings{'internal.crosslistings'} ne '') { + @currxlists = split(/,/,$settings{'internal.crosslistings'}); + } + + if (@currxlists > 0) { + for (my $i=0; $i<@currxlists; $i++) { + my $xlist = "cross_".$i; + my $lc_sec = "lcsec_".$i; + if ( exists($env{"form.$xlist"}) ) { + my $xlistentry = ''; + if ($currxlists[$i] =~ m/^([^:]+)/) { + $xlistentry = $1.':'; + } + if ( exists($env{"form.$lc_sec"}) ) { + $xlistentry .= $env{"form.$lc_sec"}; + } + push @xlists,$xlistentry; + $crosscount ++; + } else { + $removecount ++; + } + } + } + + $xliststr = join(",",@xlists); + + my %cenv = ('internal.crosslistings' => $xliststr); + my $reply = &Apache::lonnet::put('environment',\%cenv,$dom,$crs); + if ($reply !~ /^ok$/) { + $response = "There was a problem processing your requested changes. The automated enrollment settings for this course have been left unchanged.
"; + } else { + if ($removecount > 0) { + $response = "A total of $removecount courses are no longer crosslisted with LON-CAPA course: $realm ($coursecode).

"; + } + if ($crosscount > 0) { + $response .= "The $crosscount courses listed below remain crosslisted with this LON-CAPA course, and students enrolling in these course sections will be automatically added to the class roster for the course, if you have chosen to enable a nightly automated enrollment update.
    \n"; + foreach (@xlists) { + my ($xlist,$lc_sec) = split/:/,$_; + $response .= "
  • $xlist - ID: $lc_sec
  • \n"; + } + $response .= "

\n"; + } + } + if ( exists($env{'form.numcross'}) ) { + my $numcross = $env{'form.numcross'}; + if ($numcross > 0) { + my @bgcolors=("#eeeeee","#cccccc"); + $response .= qq(You indicated that you wish to add an additional $numcross crosslisting(s). For each new crosslisting enter the insititutional course section code (e.g., fs03zol101001, for section 001 of zol101 for fs03 semester), and the LON-CAPA section ID you wish to assign to students who will be enrolled in your LON-CAPA class as a result of their registration in the crosslisted course section. The LON-CAPA section ID can be left blank, if you do not wish to tie a section ID to this crosslisting. The institutional course section code should only contain letters and/or numbers, and must be consistent with the scheme adopted by your Domain Coordinator to map course codes (and section numbers) to your institution's student information system.

+ ); #' stupid emacs + $response .= &Apache::loncommon::start_data_table(); + $response .= &Apache::loncommon::start_data_table_row(); + $response .= qq( + + + ); + $response .= &Apache::loncommon::end_data_table_row(); + for (my $i=0; $i<$numcross; $i++) { + $response .= &Apache::loncommon::start_data_table_row(); + $response .= qq( - - - ); - } - $response .= qq(
CrosslistingLON-CAPA section/groupID
CrosslistingLON-CAPA section ID
+
- +
- - - + + +
- ); - } - } - &print_reply($r,$response,$$tasktitleref{$action}); - return; + ); + } + } + &print_reply($r,$response,$$tasktitleref{$action}); + return; } sub print_crosslistings_response () { - my ($r,$realm,$dom,$crs,$action,$tasktitleref,$homeserver,$server) = @_; - my %settings = &Apache::lonnet::get('environment',['internal.crosslistings','internal.coursecode','internal.courseowner'],$dom,$crs); - my @currxlists = (); - my @xlists = (); - my @allxlists = (); - my @badxlists = (); - my @badowner = (); - my $numcross = 0; - my $xliststr = $settings{'internal.crosslistings'}; - my $coursecode = $settings{'internal.coursecode'}; - my $owner = $settings{'internal.courseowner'}; - my $response = ''; - my $warning = ''; - my $warn_prefix = ''; - - if ($xliststr =~ m/,/) { - @allxlists = split/,/,$xliststr; - } else { - unless ($xliststr eq '') { $allxlists[0] = $xliststr; } - } + my ($r,$realm,$dom,$crs,$action,$tasktitleref) = @_; + my %settings = &Apache::lonnet::get('environment',['internal.crosslistings','internal.coursecode','internal.courseowner'],$dom,$crs); + my @currxlists = (); + my @xlists = (); + my @allxlists = (); + my @badxlists = (); + my @badowner = (); + my @reserved = (); + my @matchgroup = (); + my $numcross = 0; + my $xliststr = $settings{'internal.crosslistings'}; + my $coursecode = $settings{'internal.coursecode'}; + my $owner = $settings{'internal.courseowner'}; + my $response = ''; + my $warning = ''; + my $warn_prefix = ''; - if ( exists($ENV{'form.numcross'}) ) { - $numcross = $ENV{'form.numcross'}; - } + if ($xliststr ne '') { + @allxlists = split(/,/,$xliststr); + } - if ($numcross > 0) { - for (my $i=0; $i<$numcross; $i++) { - my $xl = "newcross_".$i; - my $gp = "newgroupid_".$i; - if ( exists($ENV{"form.$xl"}) ) { - my $coursecheck = ''; -# if ($homeserver eq $server) { -# $coursecheck = &localenroll::validate_courseID($ENV{"form.$xl"}); -# } else { - $coursecheck = &Apache::lonnet::auto_validate_courseID($homeserver,$ENV{"form.$xl"}); -# } - if ($coursecheck eq 'ok') { - my $addcheck = ''; -# if ($homeserver eq $server) { -# $addcheck = &localenroll::new_course($ENV{"form.$xl"},$owner); -# } else { - $addcheck = &Apache::lonnet::auto_new_course($homeserver,$ENV{"form.$xl"},$owner); -# } - if ($addcheck eq 'ok') { - push @xlists,$ENV{"form.$xl"}.":".$ENV{"form.$gp"}; - } else { - push @badowner,$ENV{"form.$xl"}.":".$ENV{"form.$gp"}; - } - } else { - push @badxlists, $ENV{"form.$xl"}.":".$ENV{"form.$gp"}.":".$coursecheck; - } - } - } - push @allxlists, @xlists; - } + if ( exists($env{'form.numcross'}) ) { + $numcross = $env{'form.numcross'}; + } - if (@xlists > 0 ) { - unless ($xliststr eq '') { $xliststr .= ","; } - if (@xlists > 1) { - $xliststr .= join(",",@xlists); - } else { - $xliststr .= $xlists[0]; - } - my %cenv = ('internal.crosslistings' => $xliststr); - my $reply = &Apache::lonnet::put('environment',\%cenv,$dom,$crs); - if ($reply !~ /^ok$/) { - $response = "There was a problem processing your requested changes. The automated enrollment settings for this course have been left unchanged.

"; - } else { - $response = "The courses listed below are now crosslisted with this LON-CAPA course, and students enrolling in these course sections will be automatically added to the class roster for the course, if you have chosen to enable a nightly automated enrollment update.
    \n"; - foreach (@allxlists) { - my ($xlist,$gp) = split/:/,$_; - $response .= "
  • $xlist - ID: $gp
  • \n"; - } - $response .= "


\n"; - } - } else { - if ($xliststr =~ m/:/) { - my @oldxlists = (); - if ($xliststr =~ m/,/) { - @oldxlists = split/,/,$xliststr; - } else { - $oldxlists[0] = $xliststr; - } - $response .= "Although no new crosslistings were added, the courses listed below continue to be crosslisted with your LON-CAPA course.
    \n"; - foreach (@oldxlists) { - my ($xlist,$gp) = split/:/,$_; - $response .= "
  • $xlist - ID: $gp
  • \n"; - } - $response .= "


\n"; - } - } - if (@badxlists > 0) { - $response .= "The courses listed below could not be included in the crosslistings for this LON-CAPA course, because they are not valid courses according to your institution's official schedule of classes and sections.
    \n"; - foreach (@badxlists) { - my ($xlist,$gp,$prob) = split/:/,$_; - $response .= "
  • $xlist - ID: $gp - Error: $prob
  • \n"; - } - $response .= "


\n"; - } + if ($numcross > 0) { + my %curr_groups = &Apache::longroup::coursegroups(); + for (my $i=0; $i<$numcross; $i++) { + my $xl = "newcross_".$i; + my $lc_sec = "newlcsec_".$i; + if ( exists($env{"form.$xl"}) ) { + if (exists($env{"form.$lc_sec"})) { + my $lc_sec_check = &validate_lcsec(\%curr_groups, + $env{"form.$lc_sec"}); + if ($lc_sec_check eq 'reserved') { + push(@reserved,$env{"form.$xl"}.":".$env{"form.$lc_sec"}); + next; + } elsif ($lc_sec_check eq 'group') { + push (@matchgroup,$env{"form.$xl"}.":".$env{"form.$lc_sec"}); + next; + } + } + my $coursecheck = ''; + $coursecheck = &Apache::lonnet::auto_validate_courseID($crs,$dom,$env{"form.$xl"}); + if ($coursecheck eq 'ok') { + my $addcheck = ''; + $addcheck = &Apache::lonnet::auto_new_course($crs,$dom,$env{"form.$xl"},$owner); + if ($addcheck eq 'ok') { + push @xlists,$env{"form.$xl"}.":".$env{"form.$lc_sec"}; + } else { + push @badowner,$env{"form.$xl"}.":".$env{"form.$lc_sec"}; + } + } else { + push @badxlists, $env{"form.$xl"}.":".$env{"form.$lc_sec"}.":".$coursecheck; + } + } + } + push @allxlists, @xlists; + } + + if (@xlists > 0 ) { + unless ($xliststr eq '') { $xliststr .= ","; } + $xliststr .= join(",",@xlists); + + my %cenv = ('internal.crosslistings' => $xliststr); + my $reply = &Apache::lonnet::put('environment',\%cenv,$dom,$crs); + if ($reply !~ /^ok$/) { + $response = "There was a problem processing your requested changes. The automated enrollment settings for this course have been left unchanged.

"; + } else { + $response = "The courses listed below are now crosslisted with this LON-CAPA course, and students enrolling in these course sections will be automatically added to the class roster for the course, if you have chosen to enable a nightly automated enrollment update.
    \n"; + foreach (@allxlists) { + my ($xlist,$lc_sec) = split/:/,$_; + $response .= "
  • $xlist - ID: $lc_sec
  • \n"; + } + $response .= "


\n"; + } + } else { + if ($xliststr =~ m/:/) { + my @oldxlists = (split/,/,$xliststr); + $response .= "Although no new crosslistings were added, the courses listed below continue to be crosslisted with your LON-CAPA course.
    \n"; + foreach (@oldxlists) { + my ($xlist,$lc_sec) = split/:/,$_; + $response .= "
  • $xlist - ID: $lc_sec
  • \n"; + } + $response .= "


\n"; + } + } + if (@badxlists > 0) { + $response .= "The courses listed below could not be included in the crosslistings for this LON-CAPA course, because they are not valid courses according to your institution's official schedule of classes and sections.
    \n"; + foreach (@badxlists) { + my ($xlist,$lc_sec,$prob) = split/:/,$_; + $response .= "
  • $xlist - ID: $lc_sec - Error: $prob
  • \n"; + } + $response .= "


\n"; + } + + if (@badowner > 0) { + $response .= "The courses listed below could not be included in the crosslistings for this LON-CAPA course, because the owner of this course - $owner - does not have rights to view enrollment in those classes as determined by your instititution's policies on access to official classlists.
    \n"; + foreach (@badowner) { + my ($xlist,$lc_sec) = split/:/,$_; + $response .= "
  • $xlist - ID: $lc_sec
  • \n"; + } + $response .= "


\n"; + } + if (@reserved > 0) { + $response .= "The courses listed below could not be included in the crosslistings for this LON-CAPA course, because the section ID associated with the crosslisted course is a reserved word. Please go back and change the section ID for each of these courses.
    \n"; + foreach (@reserved) { + my ($xlist,$lc_sec) = split/:/,$_; + $response .= "
  • $xlist - ID: $lc_sec
  • \n"; + } + $response .= "


\n"; + } - if (@badowner > 0) { - $response .= "The courses listed below could not be included in the crosslistings for this LON-CAPA course, because the owner of this course - $owner - does not have rights to view enrollment in those classes as determined by your instititution's policies on access to official classlists.
    \n"; - foreach (@badowner) { - my ($xlist,$gp) = split/:/,$_; - $response .= "
  • $xlist - ID: $gp
  • \n"; - } - $response .= "


\n"; - } + if (@matchgroup > 0) { + $response .= "The courses listed below could not be included in the crosslistings for this LON-CAPA course, because the section ID associated with the crosslisted course is the name of a group in this course. Please go back and change the section ID for each of these courses.
    \n"; + foreach (@matchgroup) { + my ($xlist,$lc_sec) = split/:/,$_; + $response .= "
  • $xlist - ID: $lc_sec
  • \n"; + } + $response .= "


\n"; + } - if (@allxlists > 0) { - $warning = &warning_message($dom,$crs,$action); - $warn_prefix = "
Warning. Although you have selected crosslisted courses to contribute enrollment to this course, additional action is required.
"; - unless ($warning eq '') { - $response .= $warn_prefix.$warning; - } - } + if (@allxlists > 0) { + $warning = &warning_message($dom,$crs,$action); + $warn_prefix = "
Warning. Although you have selected crosslisted courses to contribute enrollment to this course, additional action is required.
"; + unless ($warning eq '') { + $response .= $warn_prefix.$warning; + } + } - &print_reply($r,$response,$$tasktitleref{$action}); - return; + &print_reply($r,$response,$$tasktitleref{$action}); + return; } sub print_sections_menu () { - my ($r,$realm,$dom,$crs,$action,$tasktitleref,$homeserver,$server) = @_; - my %settings = &Apache::lonnet::get('environment',['internal.sectionnums','internal.coursecode','internal.courseowner'],$dom,$crs); - my @currsections = (); - my @sections = (); - my @badowner = (); - my @badsections = (); - my $seccount = 0; - my $removecount = 0; - my $addcount = 0; - my $secstr = ''; - my $response = ''; - my $warning = ""; - my $warn_prefix = ""; - my $coursecode = $settings{'internal.coursecode'}; - my $owner = $settings{'internal.courseowner'}; - if ($settings{'internal.sectionnums'} =~ m/,/) { - @currsections = split/,/,$settings{'internal.sectionnums'}; - } elsif ($settings{'internal.sectionnums'} ne '') { - $currsections[0] = $settings{'internal.sectionnums'}; - } + my ($r,$realm,$dom,$crs,$action,$tasktitleref) = @_; + my %settings = &Apache::lonnet::get('environment',['internal.sectionnums','internal.coursecode','internal.courseowner'],$dom,$crs); + my @currsections = (); + my @sections = (); + my @badowner = (); + my @badsections = (); + my $seccount = 0; + my $removecount = 0; + my $addcount = 0; + my $secstr = ''; + my $response = ''; + my $warning = ""; + my $warn_prefix = ""; + my $coursecode = $settings{'internal.coursecode'}; + my $owner = $settings{'internal.courseowner'}; + if ($settings{'internal.sectionnums'} ne '') { + @currsections = split(/,/,$settings{'internal.sectionnums'}); + } + + if ( exists($env{'form.secshow'}) ) { + for (my $i=0; $i<$env{'form.secshow'}; $i++) { + my $lc_sec = "loncapasec_".$i; + my $secnum = "secnum_".$i; + my $sec = "sec_".$i; + if ( exists( $env{"form.$sec"} ) ) { + my $secentry; + if ( exists( $env{"form.$secnum"} ) ) { + $secentry = $env{"form.$secnum"}.':'; + } + if ( exists( $env{"form.$lc_sec"} ) ) { + $secentry .= $env{"form.$lc_sec"}; + } + if ( grep/^$env{"form.$secnum"}:/,@currsections) { + push @sections, $secentry; + $seccount ++; + } else { + my $newsec = $coursecode.$env{"form.$secnum"}; + my $coursecheck = &Apache::lonnet::auto_validate_courseID($crs,$dom,$newsec); + if ($coursecheck eq 'ok') { + my $addcheck = &Apache::lonnet::auto_new_course($crs,$dom,$newsec,$owner); + if ($addcheck eq 'ok') { + push @sections,$env{"form.$secnum"}.":".$env{"form.$lc_sec"}; + $seccount ++; + $addcount ++; + } else { + push @badowner,$env{"form.$secnum"}.":".$env{"form.$lc_sec"}; + } + } else { + push @badsections, $env{"form.$secnum"}.":".$env{"form.$lc_sec"}.":".$coursecheck; + } + } + } + } + if (@currsections > 0) { + for (my $i=0; $i<@currsections; $i++) { + if ($currsections[$i] =~ m/^(\w+:)/ ) { + my $oldsec = $1; + unless (grep/^$oldsec/,@sections) { + $removecount ++; + } + } + } + } + } elsif (@currsections > 0) { + for (my $i=0; $i<@currsections; $i++) { + my $sec = "sec_".$i; + my $lc_sec = "lcsec_".$i; + if ( exists($env{"form.$sec"}) ) { + my $secentry = ''; + if ($currsections[$i] =~ m/^(\w+:)/ ) { + $secentry = $1; + } + if ( exists($env{"form.$lc_sec"}) ) { + $secentry .= $env{"form.$lc_sec"}; + } + push @sections,$secentry; + $seccount ++; + } else { + $removecount ++; + } + } + } + + $secstr = join(",",@sections); - if ( exists($ENV{'form.secshow'}) ) { - for (my $i=0; $i<$ENV{'form.secshow'}; $i++) { - my $gp = "loncapasec_".$i; - my $secnum = "secnum_".$i; - my $sec = "sec_".$i; - if ( exists( $ENV{"form.$sec"} ) ) { - my $secentry; - if ( exists( $ENV{"form.$secnum"} ) ) { - $secentry = $ENV{"form.$secnum"}.':'; - } - if ( exists( $ENV{"form.$gp"} ) ) { - $secentry .= $ENV{"form.$gp"}; - } - if ( grep/^$ENV{"form.$secnum"}:/,@currsections) { - push @sections, $secentry; - $seccount ++; - } else { - my $newsec = $coursecode.$ENV{"form.$secnum"}; - my $coursecheck = ''; -# if ($homeserver eq $server) { -# $coursecheck = &localenroll::validate_courseID($newsec); -# } else { - $coursecheck = &Apache::lonnet::auto_validate_courseID($homeserver,$newsec); -# } - if ($coursecheck eq 'ok') { - my $addcheck = ''; -# if ($homeserver eq $server) { -# $addcheck = &localenroll::new_course($newsec,$owner); -# } else { - $addcheck = &Apache::lonnet::auto_new_course($homeserver,$newsec,$owner); -# } - if ($addcheck eq 'ok') { - push @sections,$ENV{"form.$secnum"}.":".$ENV{"form.$gp"}; - $seccount ++; - $addcount ++; - } else { - push @badowner,$ENV{"form.$secnum"}.":".$ENV{"form.$gp"}; - } - } else { - push @badsections, $ENV{"form.$secnum"}.":".$ENV{"form.$gp"}.":".$coursecheck; - } - } - } - } - if (@currsections > 0) { - for (my $i=0; $i<@currsections; $i++) { - if ($currsections[$i] =~ m/^(\w+:)/ ) { - my $oldsec = $1; - unless (grep/^$oldsec/,@sections) { - $removecount ++; - } - } - } - } - } elsif (@currsections > 0) { - for (my $i=0; $i<@currsections; $i++) { - my $sec = "sec_".$i; - my $gp = "secgp_".$i; - if ( exists($ENV{"form.$sec"}) ) { - my $secentry = ''; - if ($currsections[$i] =~ m/^(\w+:)/ ) { - $secentry = $1; - } - if ( exists($ENV{"form.$gp"}) ) { - $secentry .= $ENV{"form.$gp"}; - } - push @sections,$secentry; - $seccount ++; - } else { - $removecount ++; - } - } - } - - if ($seccount > 1) { - $secstr = join(",",@sections); - } else { - $secstr = $sections[0]; - } - my %cenv = ('internal.sectionnums' => $secstr); - my $reply = &Apache::lonnet::put('environment',\%cenv,$dom,$crs); - if ($reply !~ /^ok$/) { - $response = "There was a problem processing your requested changes. The automated enrollment settings for this course have been left unchanged.
"; - } else { - if ($removecount > 0) { - $response = "A total of $removecount sections have been removed from the list of sections which contribute to enrollment in LON-CAPA course: $realm ($coursecode).

"; - } - if ($addcount > 0) { - $response .= "A total of $addcount sections have been added to the list of + my %cenv = ('internal.sectionnums' => $secstr); + my $reply = &Apache::lonnet::put('environment',\%cenv,$dom,$crs); + if ($reply !~ /^ok$/) { + $response = "There was a problem processing your requested changes. The automated enrollment settings for this course have been left unchanged.
"; + } else { + if ($removecount > 0) { + $response = "A total of $removecount sections have been removed from the list of sections which contribute to enrollment in LON-CAPA course: $realm ($coursecode).

"; + } + if ($addcount > 0) { + $response .= "A total of $addcount sections have been added to the list of sections which contribute to enrollment in LON-CAPA course: $realm ($coursecode).

"; - } - if ($seccount > 0) { - $response .= "Students enrolling in the $seccount section(s) listed below will be automatically added to the class roster for the course, if you have chosen to enable a nightly automated enrollment update.
    \n"; - foreach (@sections) { - my ($sec,$gp) = split/:/,$_; - $response .= "
  • $sec - ID: $gp
  • \n"; - } - $response .= "

\n"; - } - } - - if (@badsections > 0) { - $response .= "The sections listed below could not be included in the sections for this LON-CAPA course, because they are not valid section numbers according to your institution's official schedule of classes and sections.
    \n"; - foreach (@badsections) { - my ($secnum,$gp,$prob) = split/:/,$_; - $response .= "
  • $secnum - ID: $gp - Error: $prob
  • \n"; - } - $response .= "


\n"; - } - - if (@badowner > 0) { - $response .= "The sections listed below could not be included in the sections for this LON-CAPA course, because the owner of this course - $owner - does not have rights to view enrollment in those classes as determined by your instititution's policies on access to official classlists.
    \n"; - foreach (@badowner) { - my ($secnum,$gp) = split/:/,$_; - $response .= "
  • $secnum - ID: $gp
  • \n"; - } - $response .= "


\n"; - } - - if ($seccount > 0) { - $warning = &warning_message($dom,$crs,$action); - $warn_prefix = "
Warning. Although you have selected sections to contribute enrollment to this course, additional action is required.
"; - unless ($warning eq '') { - $response .= $warn_prefix.$warning; - } - } - - if ( exists($ENV{'form.numsec'}) ) { - my $numsec = $ENV{'form.numsec'}; - if ($numsec > 0) { - my @bgcolors=("#eeeeee","#cccccc"); - $response .= qq( - You indicated that you wish to incorporate student enrollment in your LON-CAPA course from an additional $numsec section(s). For each new section enter the insititutional section code (e.g., 004), and the LON-CAPA section/group ID you wish to assign to students who will be enrolled in your LON-CAPA class as a result of their registration in this particular section. The LON-CAPA section/group ID can be left blank, if you do not wish to designate a section/group ID for this course section. The institutional section code should only contain letters and/or numbers, and must be consistent with the scheme adopted by your Domain Coordinator to map course section numbers to your institution's student information system.

+ } + if ($seccount > 0) { + $response .= "Students enrolling in the $seccount section(s) listed below will be automatically added to the class roster for the course, if you have chosen to enable a nightly automated enrollment update.
    \n"; + foreach (@sections) { + my ($sec,$lc_sec) = split/:/,$_; + $response .= "
  • $sec - ID: $lc_sec
  • \n"; + } + $response .= "

\n"; + } + } + + if (@badsections > 0) { + $response .= "The sections listed below could not be included in the sections for this LON-CAPA course, because they are not valid section numbers according to your institution's official schedule of classes and sections.
    \n"; + foreach (@badsections) { + my ($secnum,$lc_sec,$prob) = split/:/,$_; + $response .= "
  • $secnum - ID: $lc_sec - Error: $prob
  • \n"; + } + $response .= "


\n"; + } + + if (@badowner > 0) { + $response .= "The sections listed below could not be included in the sections for this LON-CAPA course, because the owner of this course - $owner - does not have rights to view enrollment in those classes as determined by your instititution's policies on access to official classlists.
    \n"; + foreach (@badowner) { + my ($secnum,$lc_sec) = split/:/,$_; + $response .= "
  • $secnum - ID: $lc_sec
  • \n"; + } + $response .= "


\n"; + } + + if ($seccount > 0) { + $warning = &warning_message($dom,$crs,$action); + $warn_prefix = "
Warning. Although you have selected sections to contribute enrollment to this course, additional action is required.
"; + unless ($warning eq '') { + $response .= $warn_prefix.$warning; + } + } + + if ( exists($env{'form.numsec'}) ) { + my $numsec = $env{'form.numsec'}; + if ($numsec > 0) { + my @bgcolors=("#eeeeee","#cccccc"); + $response .= qq( + You indicated that you wish to incorporate student enrollment in your LON-CAPA course from an additional $numsec section(s). For each new section enter the insititutional section code (e.g., 004), and the LON-CAPA section ID you wish to assign to students who will be enrolled in your LON-CAPA class as a result of their registration in this particular section. The LON-CAPA section ID can be left blank, if you do not wish to designate a section ID for this course section. The institutional section code should only contain letters and/or numbers, and must be consistent with the scheme adopted by your Domain Coordinator to map course section numbers to your institution\'s student information system.

- + + ); + $response .= &Apache::loncommon::end_data_table_row(); + for (my $i=0; $i<$numsec; $i++) { + $response .= &Apache::loncommon::start_data_table_row(); + $response .= qq( + + + ); + $response .= &Apache::loncommon::end_data_table_row(); + } + $response .= &Apache::loncommon::end_data_table(); + $response .= qq(
- - - - - - ); - for (my $i=0; $i<$numsec; $i++) { - my $colflag = $i%2; - $response .= qq( - - - - - ); - } - $response .= qq(
Section numberLON-CAPA section/groupID
+
); + $response .= &Apache::loncommon::start_data_table(); + $response .= &Apache::loncommon::start_data_table_row(); + $response .= qq( + Section numberLON-CAPA section ID + +
- +
- - - + + +
- ); - } - } - &print_reply($r,$response,$$tasktitleref{$action}); - return; + ); + } + } + &print_reply($r,$response,$$tasktitleref{$action}); + return; } sub print_sections_response () { - my ($r,$realm,$dom,$crs,$action,$tasktitleref,$homeserver,$server) = @_; - my %settings = &Apache::lonnet::get('environment',['internal.sectionnums','internal.coursecode','internal.courseowner'],$dom,$crs); - my @currsections = (); - my @sections = (); - my @allsections = (); - my @badowner = (); - my @badsections = (); - my $numsec = 0; - my $secstr = $settings{'internal.sectionnums'}; - my $coursecode = $settings{'internal.coursecode'}; - my $owner = $settings{'internal.courseowner'}; - my $response = ''; - my $putreply = ''; - my $warning = ''; - my $warn_prefix = ''; - if ($secstr =~ m/,/) { - @allsections = split/,/,$secstr; - } else { - unless ($secstr eq '') { $allsections[0] = $secstr; } - } - - if ( exists($ENV{'form.numsec'}) ) { - $numsec = $ENV{'form.numsec'}; - } - - if ($numsec > 0) { - for (my $i=0; $i<$numsec; $i++) { - my $sec = "newsec_".$i; - my $gp = "newsecgp_".$i; - if ( exists($ENV{"form.$sec"}) ) { - unless ( (grep/^$ENV{"form.$sec"}:/,@allsections) || (grep/^$ENV{"form.$sec"}:/,@sections) ) { - my $newsec = $coursecode.$ENV{"form.$sec"}; - my $coursecheck = ''; -# if ($homeserver eq $server) { -# $coursecheck = &localenroll::validate_courseID($newsec); -# } else { - $coursecheck = &Apache::lonnet::auto_validate_courseID($homeserver,$newsec); -# } - if ($coursecheck eq 'ok') { - my $addcheck = ''; -# if ($homeserver eq $server) { -# $addcheck = &localenroll::new_course($newsec,$owner); -# } else { - $addcheck = &Apache::lonnet::auto_new_course($homeserver,$newsec,$owner); -# } - if ($addcheck eq 'ok') { - push @sections,$ENV{"form.$sec"}.":".$ENV{"form.$gp"}; - } else { - push @badowner,$ENV{"form.$sec"}.":".$ENV{"form.$gp"}; - } - } else { - push @badsections, $ENV{"form.$sec"}.":".$ENV{"form.$gp"}.":".$coursecheck; - } - } - } - } - push @allsections, @sections; - } - - if (@sections > 0 ) { - unless ($secstr eq '') { $secstr .= ","; } - if (@sections > 1) { - $secstr .= join(",",@sections); - } else { - $secstr .= $sections[0]; - } - my %cenv = ('internal.sectionnums' => $secstr); - $putreply = &Apache::lonnet::put('environment',\%cenv,$dom,$crs); - if ($putreply !~ /^ok$/) { - $response = "There was a problem processing your requested changes. The automated enrollment settings for this course have been left unchanged.

"; - } - } - - if ($putreply =~ /^ok/) { - $response = "Students enrolling in the sections listed below will be automatically added to the class roster for LON-CAPA course $realm ($coursecode), if you have chosen to enable a nightly automated enrollment update.
    \n"; - foreach (@allsections) { - my ($sec,$gp) = split/:/,$_; - $response .= "
  • $sec - ID: $gp
  • \n"; - } - $response .= "


\n"; - } - - if (@badsections > 0) { - $response .= "The sections listed below could not be included in the sections for this LON-CAPA course, because they are not valid section numbers according to your institution's official schedule of classes and sections.
    \n"; - foreach (@badsections) { - my ($secnum,$gp,$prob) = split/:/,$_; - $response .= "
  • $secnum - ID: $gp - Error: $prob
  • \n"; - } - $response .= "


\n"; - } + my ($r,$realm,$dom,$crs,$action,$tasktitleref) = @_; + my %settings = &Apache::lonnet::get('environment',['internal.sectionnums','internal.coursecode','internal.courseowner'],$dom,$crs); + my @currsections = (); + my @sections = (); + my @allsections = (); + my @badowner = (); + my @badsections = (); + my @reserved = (); + my @matchgroup = (); + my $numsec = 0; + my $secstr = $settings{'internal.sectionnums'}; + my $coursecode = $settings{'internal.coursecode'}; + my $owner = $settings{'internal.courseowner'}; + my $response = ''; + my $putreply = ''; + my $warning = ''; + my $warn_prefix = ''; + if ($secstr ne '') { + @allsections = split(/,/,$secstr); + } + + if ( exists($env{'form.numsec'}) ) { + $numsec = $env{'form.numsec'}; + } + + if ($numsec > 0) { + my %curr_groups = &Apache::longroup::coursegroups(); + for (my $i=0; $i<$numsec; $i++) { + my $sec = "newsec_".$i; + my $lc_sec = "newlcsec_".$i; + if ( exists($env{"form.$sec"}) ) { + unless ( (grep/^$env{"form.$sec"}:/,@allsections) || (grep/^$env{"form.$sec"}:/,@sections) ) { + my $lc_sec_check = &validate_lcsec(\%curr_groups, $env{"form.$lc_sec"}); + if ($lc_sec_check eq 'reserved') { + push(@reserved,$env{"form.$sec"}.":".$env{"form.$lc_sec"}); + next; + } elsif ($lc_sec_check eq 'group') { + push (@matchgroup,$env{"form.$sec"}.":".$env{"form.$lc_sec"}); + next; + } + my $newsec = $coursecode.$env{"form.$sec"}; + my $coursecheck = &Apache::lonnet::auto_validate_courseID($crs,$dom,$newsec); + if ($coursecheck eq 'ok') { + my $addcheck = &Apache::lonnet::auto_new_course($crs,$dom,$newsec,$owner); + if ($addcheck eq 'ok') { + push @sections,$env{"form.$sec"}.":".$env{"form.$lc_sec"}; + } else { + push @badowner,$env{"form.$sec"}.":".$env{"form.$lc_sec"}; + } + } else { + push @badsections, $env{"form.$sec"}.":".$env{"form.$lc_sec"}.":".$coursecheck; + } + } + } + } + push @allsections, @sections; + } + + if (@sections > 0 ) { + unless ($secstr eq '') { $secstr .= ","; } + $secstr .= join(",",@sections); + my %cenv = ('internal.sectionnums' => $secstr); + $putreply = &Apache::lonnet::put('environment',\%cenv,$dom,$crs); + if ($putreply !~ /^ok$/) { + $response = "There was a problem processing your requested changes. The automated enrollment settings for this course have been left unchanged.

"; + } + } + + if ($putreply =~ /^ok/) { + $response = "Students enrolling in the sections listed below will be automatically added to the class roster for LON-CAPA course $realm ($coursecode), if you have chosen to enable a nightly automated enrollment update.
    \n"; + foreach (@allsections) { + my ($sec,$lc_sec) = split/:/,$_; + $response .= "
  • $sec - ID: $lc_sec
  • \n"; + } + $response .= "


\n"; + } + + if (@badsections > 0) { + $response .= "The sections listed below could not be included in the sections for this LON-CAPA course, because they are not valid section numbers according to your institution's official schedule of classes and sections.
    \n"; + foreach (@badsections) { + my ($secnum,$lc_sec,$prob) = split/:/,$_; + $response .= "
  • $secnum - ID: $lc_sec - Error: $prob
  • \n"; + } + $response .= "


\n"; + } + + if (@badowner > 0) { + $response .= "The sections listed below could not be included in the sections for this LON-CAPA course, because the owner of this course - $owner - does not have rights to view enrollment in those classes as determined by your instititution's policies on access to official classlists.
    \n"; + foreach (@badowner) { + my ($secnum,$lc_sec) = split/:/,$_; + $response .= "
  • $secnum - ID: $lc_sec
  • \n"; + } + $response .= "


\n"; + } + + if (@reserved > 0) { + $response .= "The sections listed below could not be included in the sections for this LON-CAPA course, because the section ID associated with the institutional section is a reserved word. Please go back and change the section ID for each of these sections.
    \n"; + foreach (@reserved) { + my ($xlist,$lc_sec) = split/:/,$_; + $response .= "
  • $xlist - ID: $lc_sec
  • \n"; + } + $response .= "


\n"; + } + + if (@matchgroup > 0) { + $response .= "The sections listed below could not be included in the sections for this LON-CAPA course, because the section ID associated with the institutional section is the name of a group in this course. Please go back and change the section ID for each of these sections.
    \n"; + foreach (@matchgroup) { + my ($xlist,$lc_sec) = split/:/,$_; + $response .= "
  • $xlist - ID: $lc_sec
  • \n"; + } + $response .= "


\n"; + } - if (@badowner > 0) { - $response .= "The sections listed below could not be included in the sections for this LON-CAPA course, because the owner of this course - $owner - does not have rights to view enrollment in those classes as determined by your instititution's policies on access to official classlists.
    \n"; - foreach (@badowner) { - my ($secnum,$gp) = split/:/,$_; - $response .= "
  • $secnum - ID: $gp
  • \n"; - } - $response .= "


\n"; - } - if (@allsections > 0) { - $warning = &warning_message($dom,$crs,$action); - $warn_prefix = "
Warning. Although you have selected sections to contribute enrollment to this course, additional action is required.
"; - unless ($warning eq '') { - $response .= $warn_prefix.$warning; - } - } + if (@allsections > 0) { + $warning = &warning_message($dom,$crs,$action); + $warn_prefix = "
Warning. Although you have selected sections to contribute enrollment to this course, additional action is required.
"; + unless ($warning eq '') { + $response .= $warn_prefix.$warning; + } + } + + &print_reply($r,$response,$$tasktitleref{$action}); + return; +} + +sub photo_permission { + my ($r,$realm,$dom,$crs,$action,$tasktitleref) = @_; + my %settings = &Apache::lonnet::get('environment', + ['internal.courseowner', + 'internal.photopermission', + 'internal.showphoto'], + $dom,$crs); + my ($showphotos,$response); + if (exists($env{'form.cancel_agreement'})) { + if (&user_is_courseowner($settings{'internal.courseowner'})) { + my %cenv = ( + 'internal.photopermission' => 'no', + ); + my $reply = &Apache::lonnet::put('environment',\%cenv,$dom,$crs); + if ($reply !~ /^ok$/) { + $response = &mt('There was a problem processing the record of your agreement to the conditions of use. Settings for this course have been left unchanged.').'
'."\n"; + &print_reply($r,$response,$$tasktitleref{$action}); + } else { + &print_photos_response($r,$realm,$dom,$crs,$action, + $tasktitleref,$showphotos,'no',\%cenv); + } + return; + } + } + if (exists($env{'form.showphotos'})) { + $showphotos=$env{'form.showphotos'}; + } + if ($showphotos) { + if ($env{'form.photopermission'}) { + my %cenv = ( + 'internal.photopermission' => $env{'form.photopermission'}, + ); + my $reply = &Apache::lonnet::put('environment',\%cenv,$dom,$crs); + if ($reply !~ /^ok$/) { + $response = &mt('There was a problem processing the record of your agreement to the conditions of use. Settings for this course have been left unchanged.').'
'."\n"; + } else { + &print_photos_response($r,$realm,$dom,$crs,$action, + $tasktitleref,$showphotos, + $env{'form.photopermission'},\%cenv); + } + } else { + my ($result,$perm_reqd,$conditions) = + &Apache::lonnet::auto_photo_permission($crs,$dom); + my $permcheck; + if ($result eq 'ok') { + if ($perm_reqd eq 'yes') { + if ($settings{'internal.photopermission'} eq 'yes') { + &print_photos_response($r,$realm,$dom,$crs,$action, + $tasktitleref,$showphotos); + } else { + return(&print_photo_agreement($r,$realm,$dom,$crs, + $action,$tasktitleref, + $conditions, + $settings{'internal.courseowner'})); + } + } elsif ($perm_reqd eq 'no') { + &print_photos_response($r,$realm,$dom,$crs,$action, + $tasktitleref,$showphotos); + } else { + $permcheck = 'fail'; + } + } else { + $permcheck = 'fail'; + } + if ($permcheck eq 'fail') { + my $response = &mt('There was a problem processing your requested change, because it could not be determined whether course owner permission is required in order for a course coordinator to have access to student photos in this domain.').' '.&mt('The student photo import setting for this course has been left unchanged.').'
'; + &print_reply($r,$response,$$tasktitleref{$action}); + } + } + } else { + &print_photos_response($r,$realm,$dom,$crs,$action,$tasktitleref); + } + return; +} - &print_reply($r,$response,$$tasktitleref{$action}); - return; +sub print_photo_agreement { + my ($r,$realm,$dom,$crs,$action,$tasktitleref,$conditions,$courseowner)=@_; + my $response; + my $institution = &Apache::lonnet::domain($dom,'description'); + if (&user_is_courseowner($courseowner)) { + $response = ' + +
+ + + + +
Use of student photos
'."\n". + &mt('Acceptance by the course owner of the conditions of use of photos is currently [_1] set.','not').'
'.&mt('Please indicate your acceptance of the conditions of use of digital photos of registered students in courses at [_1].',$institution).' +
+ + + + + + + +
+ +
+ + + +
+ + + + +
+'; + } else { + my ($ownername,$owneremail) = &get_ownerinfo($dom,$courseowner); + my $emailstr; + if ($owneremail) { + $emailstr = "(e-mail: $owneremail)"; + } + $response = &mt('The policies of your institution [_1] require that the course owner [_2] must indicate acceptance of the conditions of use of digital photos of registered students, before they may be made available for use in a course.',$institution,$ownername) + .'

' + .&mt('Please direct the course owner [_1] to visit the "Student photos" page in the Automated Enrollment Manager to indicate acceptance of these conditions of use.',$emailstr); + } + &print_reply($r,$response,$$tasktitleref{$action}); +} + +sub print_photos_response { + my ($r,$realm,$dom,$crs,$action,$tasktitleref,$showphotos,$photopermission, + $permissionenv)=@_; + my %newenv; + if (defined($permissionenv)) { + foreach my $key (keys(%{$permissionenv})) { + if (exists($env{'request.course.id'})) { + $newenv{$env{'request.course.id'}.'.'.$key} = + $$permissionenv{$key}; + } + } + } + my %settings = &Apache::lonnet::get('environment',['internal.showphoto'], + $dom,$crs); + my $currphotos = $settings{'internal.showphoto'}; + my $response = ""; + if (defined($photopermission)) { + if ($photopermission eq 'yes') { + $response = &mt('Acceptance of photo use policy recorded.').'
'."\n"; + } else { + $response = &mt('Non-acceptance of photo use policy recorded.').'
'."\n"; + $showphotos = 0; + } + } + my %cenv = ('internal.showphoto' => $showphotos); + my $reply = &Apache::lonnet::put('environment',\%cenv,$dom,$crs); + if ($reply !~ /^ok$/) { + $response .= "There was a problem processing your requested change. The student photo retrieval setting for this course has been left unchanged.
"; + } else { + if ($showphotos) { + if ($currphotos) { + $response .= "Retrieval of student photos is still enabled.
"; + } else { + $response .= "Retrieval of student photos in now enabled.
"; + my ($update,$commentary) = + &Apache::lonnet::auto_photochoice($crs,$dom); + if ($update) { + $response .= '
'.$commentary.'

+
+ + + +
'; + } + } + } else { + if ($currphotos) { + $response .= "Retrieval of student photos is now disabled.
"; + } else { + $response .= "Retrieval of student photos is still disabled.
"; + } + } + foreach my $key (keys(%cenv)) { + if (exists($env{'request.course.id'})) { + $newenv{'course.'.$env{'request.course.id'}.'.'.$key} = + $cenv{$key}; + } + } + } + if (keys(%newenv) > 0) { + &Apache::lonnet::appenv(\%newenv); + } + &print_reply($r,$response,$$tasktitleref{$action}); + return; } -sub print_photos_response () { - my ($r,$realm,$dom,$crs,$action,$tasktitleref) = @_; - my %settings = &Apache::lonnet::get('environment',['internal.showphotos'],$dom,$crs); - my $currphotos = $settings{'internal.showphotos'}; - my $showphotos = ''; - if ( exists($ENV{'form.showphotos'}) ) { - $showphotos=$ENV{'form.showphotos'}; - } +sub print_photoupdate_response { + my ($r,$realm,$dom,$crs,$action,$tasktitleref) = @_; + my $response; + my %changes; + my %lt = &LONCAPA::Enrollment::photo_response_types(); + my %settings = &Apache::lonnet::get('environment', + ['internal.coursecode', + 'internal.sectionnums', + 'internal.crosslistings'], + $dom,$crs); + my @allcourses = (); + my %LC_code; + my %affiliates; + my $outcome; + &Apache::loncommon::get_institutional_codes(\%settings,\@allcourses,\%LC_code); + if (@allcourses > 0) { + @{$affiliates{$crs}} = @allcourses; + $outcome = &Apache::lonnet::auto_photoupdate(\%affiliates,$dom,$crs,\%changes); + unless ($outcome eq 'ok') { + &Apache::lonnet::logthis("lonpopulate::print_photoupdate_response". + "failed to update student photos". + " for ".$crs."\@".$dom." by ". + $env{'user.name'}." \@ ".$env{'user.domain'}. + ": ".$outcome); + } + if ($outcome eq 'ok') { + if (keys(%changes) > 0) { + $response = &mt('Update of photos for registered students resulted in the following ').':
' + .' +'; + foreach my $type (sort(keys(%changes))) { + my @usernames = sort(split(/\&/,$changes{$type})); + my $count = @usernames; + $response .= ''.&mt('For [_1] students, photos ', + $count).$lt{$type}.'
    '; + foreach my $username (@usernames) { + $response .= '
  • '.$username; + if (($type eq 'new') || ($type eq 'same') || ($type eq 'update')) { + $response .= ' View
  • '; + } + } + $response .= '

'; + } + } else { + $response = &mt('No updates of photos of registered students occurred'). + '
'; + } + } else { + $response = "There was a problem updating student photos for registered students in this course.
"; + } + } else { + $response = "No institutional course sections are currently associated with this course so there are no registered students for whom photos can be imported/updated"; + } + &print_reply($r,$response,$$tasktitleref{$action}); + return; +} - my $response = ""; - my %cenv = ('internal.showphotos' => $showphotos); - my $reply = &Apache::lonnet::put('environment',\%cenv,$dom,$crs); - if ($reply !~ /^ok$/) { - $response = "There was a problem processing your requested change. The student photo import setting for this course has been left unchanged.
"; - } else { - if ($showphotos) { - if ($currphotos) { - $response = "Retrieval of student photos is still enabled
"; - } else { - $response = "Retrieval of student photos in now enabled
"; - } - } else { - if ($currphotos) { - $response = "Retrieval of student photos is now disabled
"; - } else { - $response = "Retrieval of student photos is still disabled
"; - } - } - } - &print_reply($r,$response,$$tasktitleref{$action}); - return; +sub get_ownerinfo { + my ($dom,$owner) = @_; + my ($ownername,$owneremail,$own_uname,$own_udom); + if ($owner) { + if ($owner =~ /^([^:]+):([^:]+)$/) { + $own_uname = $1; + $own_udom = $2; + } else { + $own_uname = $owner; + $own_udom = $dom; + } + $ownername=&Apache::loncommon::plainname($own_uname,$own_udom, + 'firstname'); + my %ownerinfo = &Apache::lonnet::get('environment',['permanentemail'], + $own_udom,$own_uname); + $owneremail = $ownerinfo{'permanentemail'}; + } + return ($ownername,$owneremail); } sub print_update_result () { - my ($r,$realm,$dom,$crs,$action,$tasktitleref,$homeserver,$server) = @_; - my $response = ''; - my $updateadds = 0; - my $updatedrops = 0; - my $changecount = 0; - my %affiliates = (); - my %reply = (); - my @allcourses = (); - my %LC_code = (); - my $logmsg = ''; - my $newusermsg = ''; - - my %settings = &Apache::lonnet::get('environment',['internal.coursecode','internal.sectionnums','internal.crosslistings','internal.authtype','internal.autharg','internal.autostart','internal.autoend'],$dom,$crs); - my $coursecode = $settings{'internal.coursecode'}; - my $authtype = $settings{'internal.authtype'}; - my $autharg = $settings{'internal.autharg'}; - my $autostart = $settings{'internal.autostart'}; - my $autoend = $settings{'internal.autoend'}; - - if ( exists($ENV{'form.updateadds'}) ) { - $updateadds = $ENV{'form.updateadds'}; - } - if ( exists($ENV{'form.updatedrops'}) ) { - $updatedrops = $ENV{'form.updatedrops'}; - } - if (!$updateadds && !$updatedrops) { - $response = "An update of the class roster has not been carried out because you indicated that you wanted to neither add new students, nor expire dropped students based on a comparison between the institutional class lists for the course sections and crosslisted courses that contribure enrollment to this LON-CAPA course."; - } elsif ($coursecode eq '') { - $response = "There was a problem retrieving the course code for this LON-CAPA course. An update of the class roster has not been carried out, and enrollment remains unchanged"; - } else { -# Get complete list of course sections to update - my @currsections = (); - my @currxlists = (); - - if ($settings{'internal.sectionnums'} =~ m/,/) { - @currsections = split/,/,$settings{'internal.sectionnums'}; - } elsif ($settings{'internal.sectionnums'} ne '') { - $currsections[0] = $settings{'internal.sectionnums'}; - } - - if ($settings{'internal.crosslistings'} =~ m/,/) { - @currxlists = split/,/,$settings{'internal.crosslistings'}; - } elsif ($settings{'internal.crosslistings'} ne '') { - $currxlists[0] = $settings{'internal.crosslistings'}; - } - - if (@currxlists > 0) { - foreach (@currxlists) { - if (m/^(\w+):(\w*)$/) { - unless (grep/^$1$/,@allcourses) { - push @allcourses,$1; - $LC_code{$1} = $2; - } - } - } - } - - if (@currsections > 0) { - foreach (@currsections) { - if (m/^(\w+):(\w*)$/) { - my $sec = $coursecode.$1; - my $gp = $2; - unless (grep/^$sec$/,@allcourses) { - push @allcourses,$sec; - $LC_code{$sec} = $gp; - } - } - } - } + my ($r,$realm,$dom,$crs,$action,$tasktitleref) = @_; + my $response = ''; + my $updateadds = 0; + my $updatedrops = 0; + my $changecount = 0; + my %affiliates = (); + my %reply = (); + my @allcourses = (); + my %LC_code = (); + my $logmsg = ''; + my $newusermsg = ''; + my %phototypes = (); + my %settings = &Apache::lonnet::get('environment',['internal.coursecode','internal.sectionnums','internal.crosslistings','internal.authtype','internal.autharg','internal.showphoto'],$dom,$crs); + my $coursecode = $settings{'internal.coursecode'}; + my $authtype = $settings{'internal.authtype'}; + my $autharg = $settings{'internal.autharg'}; + my $showphotos = $settings{'internal.showphoto'}; + my ($startaccess,$endaccess) = &get_dates_from_form(); + if ( exists($env{'form.updateadds'}) ) { + $updateadds = $env{'form.updateadds'}; + } + if ( exists($env{'form.updatedrops'}) ) { + $updatedrops = $env{'form.updatedrops'}; + } + if (($startaccess eq '') || ($endaccess eq '')) { + $response = "There was a problem processing your requested roster update because start and and access dates could not be determined. No changes have been made to the class roster.
"; + } elsif ($updateadds && (($endaccess > 0) && ($endaccess <= $startaccess))) { + $response = 'The start access date/time is the same or later than the end access date/time. As this means that new roles will never be active, your requested roster update has not been carried out, and the roster remains unchanged. Please go back to the previous page to try your changes again.'."\n"; + } elsif (!$updateadds && !$updatedrops) { + $response = "An update of the class roster has not been carried out because you indicated that you wanted to neither add new students, nor expire dropped students based on a comparison between the institutional class lists for the course sections and crosslisted courses that contribure enrollment to this LON-CAPA course."; + } elsif ($coursecode eq '') { + $response = "There was a problem retrieving the course code for this LON-CAPA course. An update of the class roster has not been carried out, and enrollment remains unchanged"; + } else { + &Apache::loncommon::get_institutional_codes(\%settings,\@allcourses,\%LC_code); + if (@allcourses > 0) { + @{$affiliates{$crs}} = @allcourses; + my $outcome = &Apache::lonnet::fetch_enrollment_query('updatenow',\%affiliates,\%reply,$dom,$crs); + unless ($outcome eq 'ok') { + &Apache::lonnet::logthis("lonpopulate:update roster". + "failed to retrieve classlist". + " data for ".$crs."\@".$dom." by ". + $env{'user.name'}." \@ ".$env{'user.domain'}. + ": ".$outcome); + } + if ($reply{$crs} > 0) { + ($changecount,$response) = &LONCAPA::Enrollment::update_LC($dom,$crs,$updateadds,$updatedrops,$startaccess,$endaccess,$authtype,$autharg,\@allcourses,\%LC_code,\$logmsg,\$newusermsg,"updatenow",\%phototypes); + } else { + $response = "There was a problem retrieving institutional class list data for the course sections and crosslisted courses which contribute enrollment to this course. No updates have been carried out, and the roster remains unchanged."; + } + } else { + $response = "There are currently no course sections or crosslisted courses designated as contributors to enrollment in this LON-CAPA course. As a result a student roster update has not been carried out for $realm ($coursecode)"; + } + } + unless ($logmsg eq '') { + my $loglength = length($logmsg); + $logmsg = substr($logmsg,0,$loglength-4); + $logmsg = "

The following messages were generated by the roster update process:
  • ".$logmsg."

"; + } + unless ($newusermsg eq '') { + $newusermsg = substr( $newusermsg,0,rindex($newusermsg,'
  • ') ); + $newusermsg = "

    The following new system user(s) who was/were created will be using local or internal authentication with an initial randomly generated password. A valid e-mail address was not available for this/these user(s) so LON-CAPA account credentials could not be sent via e-mail.
    • ".$newusermsg."

    "; + } + $response .= $logmsg.$newusermsg; + &print_reply($r,$response,$$tasktitleref{$action}); + return; +} + +sub print_viewclass_response { + my ($r,$realm,$dom,$crs,$action,$tasktitleref) = @_; + my $response; + my $chgtotal = 0; + my $chgok = 0; + my $chgfail = 0; + my $othdom = 0; + my $locktotal = 0; + my $lockok = 0; + my $lockfail = 0; + my $cid = $dom."_".$crs; + my %chg = (); + my %nochg = (); + my %otherdom = (); + my %lockchg = (); + my %nolockchg = (); + my $classlist = &Apache::loncoursedata::get_classlist($dom,$crs); + my $endidx = &Apache::loncoursedata::CL_END; + my $startidx = &Apache::loncoursedata::CL_START; + my $ididx=&Apache::loncoursedata::CL_ID; + my $secidx=&Apache::loncoursedata::CL_SECTION; + my $typeidx=&Apache::loncoursedata::CL_TYPE; + my $lockedidx=&Apache::loncoursedata::CL_LOCKEDTYPE; + &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['chgauto','chgmanual','lockchg','unlockchg']); + my @typechglist = (&Apache::loncommon::get_env_multiple('form.chgauto'), + &Apache::loncommon::get_env_multiple('form.chgmanual')); + my @lockchglist = (&Apache::loncommon::get_env_multiple('form.lockchg'), + &Apache::loncommon::get_env_multiple('form.unlockchg')); + + foreach my $student (sort @typechglist) { + my ($uname,$udom) = split(/:/,$student); + my $sdata = $classlist->{$student}; + my $section = $sdata->[$secidx]; + my $uid = $sdata->[$ididx]; + my $start = $sdata->[$startidx]; + my $end = $sdata->[$endidx]; + my $type = $sdata->[$typeidx]; + my $lock = $sdata->[$lockedidx]; + my $newlock = $lock; + $chgtotal ++; + my $newtype = 'auto'; + my $change = 'auto'; + my $oldtype = 'manual'; + if ($type eq 'auto') { + $oldtype = 'auto'; + $newtype = ''; + $change = 'manual'; + } + if ($udom eq $dom) { + if ($newtype eq 'auto') { + $newlock = ''; + } elsif ($newtype eq '') { + $newlock = '1'; + } + my $modreply = &Apache::lonnet::modify_student_enrollment($udom,$uname,$uid,'','','','',$section,$end,$start,$newtype,$newlock,$cid,'','chgtype'); + if ($modreply eq 'ok') { + $chgok ++; + $chg{$student} = "Changed to $change"; + } else { + $chgfail ++; + $nochg{$student} = "Still set to $oldtype"; + } + } else { + $othdom ++; + $otherdom{$student} = "Still set to $oldtype"; + } + } + foreach my $student (@lockchglist) { + my ($uname,$udom) = split(/:/,$student); + my $sdata = $classlist->{$student}; + my $section = $sdata->[$secidx]; + my $uid = $sdata->[$ididx]; + my $start = $sdata->[$startidx]; + my $end = $sdata->[$endidx]; + my $type = $sdata->[$typeidx]; + my $lock = $sdata->[$lockedidx]; + my $newlock = 1; + my $oldlockname = &mt('unlocked'); + my $newlockname = &mt('locked'); + $locktotal++; + unless ($type eq 'auto') { + if ($lock) { + $newlock = ''; + $newlockname = &mt('unlocked'); + $oldlockname = &mt('locked'); + } + my $lockreply = &Apache::lonnet::modify_student_enrollment($udom,$uname,$uid,'','','','',$section,$end,$start,$type,$newlock,$cid,'','chgtype'); + if ($lockreply eq 'ok') { + $lockok ++; + $lockchg{$student} = 'Changed to '.$newlockname; + } else { + $lockfail ++; + $nolockchg{$student} = 'Still set to '.$oldlockname; + } + } + } + if ($chgtotal > 0) { + $response = &mt('You requested a change in enrollment type for [quant,_1,student].',$chgtotal).'

    '."\n"; + $classlist = &Apache::loncoursedata::get_classlist($dom,$crs); + if ($chgok > 0) { + $response .= &mt('The following [quant,_1,change was,changes were] successful;',$chgtotal).':

    '; + $response .= &enrolltype_result(\%chg,$classlist,$endidx,$startidx,$ididx,$secidx,$typeidx); + } + if ($chgfail > 0) { + $response .= &mt('The following [quant,_1,student was,students were] not modified successfully',$chgfail).': 
    '; + $response .= &enrolltype_result(\%nochg,$classlist,$endidx,$startidx,$ididx,$secidx,$typeidx); + } + if ($othdom > 0) { + $response .= &mt("The following [quant,_1,student was,students were] not modified because students must be in the same LON-CAPA domain as the course, in order to be set to an enrollment type of 'auto'",$othdom).':
    '; + $response .= &enrolltype_result(\%otherdom,$classlist,$endidx,$startidx,$ididx,$secidx,$typeidx); + } + $response .= "

    "; + } + if ($locktotal > 0) { + $response .= &mt('You requested locking/unlocking for [quant,_1,manually enrolled student]',$locktotal).'

    '."\n"; + $classlist = &Apache::loncoursedata::get_classlist($dom,$crs); + if ($lockok > 0) { + $response .= &mt('The following [quant,_1,change was,changes were] successful',$lockok).':

    '; + $response .= &enrolltype_result(\%lockchg,$classlist,$endidx,$startidx,$ididx,$secidx,$typeidx,$lockedidx); + } + if ($lockfail > 0) { + $response .= &mt('The following [quant,_1,student was,students were] not modified successfully',$lockfail).': 
    '; + $response .= &enrolltype_result(\%nolockchg,$classlist,$endidx,$startidx,$ididx,$secidx,$typeidx,$lockedidx); + } + } + &print_reply($r,$response,$$tasktitleref{$action}); + return; +} - if (@allcourses > 0) { - @{$affiliates{$crs}} = @allcourses; -# if ($homeserver eq $server) { -# &localenroll::fetch_enrollment($dom,\%affiliates,\%reply); -# } else { - &Apache::lonnet::fetch_enrollment_query($homeserver,$dom,\%affiliates,\%reply); -# } - if ($reply{$crs} > 0) { - ($changecount,$response) = &LONCAPA::Enrollment::update_LC($dom,$crs,$updateadds,$updatedrops,$autostart,$autoend,$authtype,$autharg,\@allcourses,\%LC_code,\$logmsg,\$newusermsg,"updatenow"); - } else { - $response = "There was a problem retrieving institutional class list data for the course sections and crosslisted courses which contribute enrollment to this course. No updates have been carried out, and the roster remains unchanged."; - } - } else { - $response = "There are currently no course sections or crosslisted courses designated as contributors to enrollment in this LON-CAPA course. As a result a student roster update has not been carried out for $realm ($coursecode)"; - } - } - unless ($logmsg eq '') { - my $loglength = length($logmsg); - $logmsg = substr($logmsg,0,$loglength-4); - $logmsg = "

    The following messages were generated by the roster update process:
    • ".$logmsg."

    "; - } - unless ($newusermsg eq '') { - $newusermsg = substr( $newusermsg,0,rindex($newusermsg,'
  • ') ); - $newusermsg = "

    The following new system user(s) who was/were created will be using internal authentication with an initial randomly generated password. A valid e-mail address was not available for this/these user(s) so LON-CAPA account credentials could not be sent via e-mail.
    • ".$newusermsg."

    "; - } - $response .= $logmsg.$newusermsg; - &print_reply($r,$response,$$tasktitleref{$action}); - return; +sub enrolltype_result { + my ($changes,$classlist,$endidx,$startidx,$ididx,$secidx,$typeidx,$lockedidx) = @_; + my $reply = &Apache::loncommon::start_data_table(). + &Apache::loncommon::start_data_table_header_row().' + username + domain + ID + student name + section + start date + end date + enrollment change'."\n". + &Apache::loncommon::end_data_table_header_row(); + foreach my $chg (sort keys %{$changes}) { + my $sdata = $classlist->{$chg}; + my ($uname,$udom) = split(/:/,$chg); + my $section = $sdata->[$secidx]; + my $uid = $sdata->[$ididx]; + my $start = $sdata->[$startidx]; + my $end = $sdata->[$endidx]; + my $type = $sdata->[$typeidx]; + if (! defined($start) || $start == 0) { + $start = &mt('none'); + } else { + $start = &Apache::lonlocal::locallocaltime($start); + } + if (! defined($end) || $end == 0) { + $end = &mt('none'); + } else { + $end = &Apache::lonlocal::locallocaltime($end); + } + if (!defined($section) || ($section eq '')) { + $section = ' '; + } + if (!defined($uid) || ($uid eq '')) { + $uid = ' '; + } + $reply .= &Apache::loncommon::start_data_table_row().' + '.$uname.' + '.$udom.' + '.$uid.' + '.&Apache::loncommon::plainname($uname,$udom).' + '.$section.' + '.$start.' + '.$end.' + '.$$changes{$chg}.''."\n". + &Apache::loncommon::end_data_table_row(); + } + $reply .= &Apache::loncommon::end_data_table(); + return $reply; } sub warning_message { @@ -1873,8 +2884,7 @@ sub print_reply () { $r->print("
    - $caller - result

    $response - +
    $caller - result

    $response
    "); @@ -1882,21 +2892,25 @@ sub print_reply () { } sub setup_date_selectors { - my ($starttime,$endtime) = @_; + my ($starttime,$endtime,$action) = @_; if (! defined($starttime)) { $starttime = time; - if (exists($ENV{'course.'.$ENV{'request.course.id'}. + if ($action eq 'setdates') { + if (exists($env{'course.'.$env{'request.course.id'}. '.default_enrollment_start_date'})) { - $starttime = $ENV{'course.'.$ENV{'request.course.id'}. + $starttime = $env{'course.'.$env{'request.course.id'}. '.default_enrollment_start_date'}; + } } } if (! defined($endtime)) { $endtime = time+(6*30*24*60*60); # 6 months from now, approx - if (exists($ENV{'course.'.$ENV{'request.course.id'}. + if ($action eq 'setdates') { + if (exists($env{'course.'.$env{'request.course.id'}. '.default_enrollment_end_date'})) { - $endtime = $ENV{'course.'.$ENV{'request.course.id'}. + $endtime = $env{'course.'.$env{'request.course.id'}. '.default_enrollment_end_date'}; + } } } my $startdateform = &Apache::lonhtmlcommon::date_setter('enter', @@ -1909,22 +2923,24 @@ sub setup_date_selectors { } sub get_dates_from_form { - my $startdate = &Apache::lonhtmlcommon::get_date_from_form('startdate'); - my $enddate = &Apache::lonhtmlcommon::get_date_from_form('enddate'); - if ( exists ($ENV{'form.no_end_date'}) ) { + my $startdate; + my $enddate; + $startdate = &Apache::lonhtmlcommon::get_date_from_form('startdate'); + $enddate = &Apache::lonhtmlcommon::get_date_from_form('enddate'); + if ( exists ($env{'form.no_end_date'}) ) { $enddate = 0; } return ($startdate,$enddate); } sub date_setting_table { - my ($starttime,$endtime) = @_; - my ($startform,$endform) = &setup_date_selectors($starttime,$endtime); - my $perpetual = ''; + $perpetual.= ' />'.' no ending date'; my $start_table = ''; $start_table .= "\n"; $start_table .= ''. @@ -1940,84 +2956,113 @@ sub date_setting_table { return ($start_table, $end_table); } +sub validate_lcsec { + my ($curr_groups,$lcsec) = @_; + if (($lcsec eq 'all') || ($lcsec eq 'none')) { + return 'reserved'; + } else { + if (exists($$curr_groups{$lcsec})) { + return 'group'; + } + } + return 'ok'; +} + +sub user_is_courseowner { + my ($courseowner) = @_; + my $user; + if ($courseowner =~ /^[^:]+:[^:]+$/) { + $user = $env{'user.name'}.':'.$env{'user.domain'}; + } else { + $user = $env{'user.name'}; + } + return ($user eq $courseowner); +} + ################################################################### sub handler { my $r = shift; if ($r->header_only) { - $r->content_type('text/html'); + &Apache::loncommon::content_type($r,'text/html'); $r->send_http_header; return OK; } &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['action','state']); # Needs to be in a course - if (! (($ENV{'request.course.fn'}) && (&Apache::lonnet::allowed('cst',$ENV{'request.course.id'})))) { + if (! (($env{'request.course.fn'}) && (&Apache::lonnet::allowed('cst',$env{'request.course.id'})))) { # Not in a course, or not allowed to modify parms - $ENV{'user.error.msg'}="/adm/populate:cst:0:0:Cannot drop or add students"; - return HTTP_NOT_ACCEPTABLE; + $env{'user.error.msg'}="/adm/populate:cst:0:0:Cannot drop or add students"; + return HTTP_NOT_ACCEPTABLE; } # Start page - $r->content_type('text/html'); + &Apache::loncommon::content_type($r,'text/html'); $r->send_http_header; - my @tasks = ("information","chgsettings","setdates","notify","crosslist","sections","photos","updatenow"); + my @tasks = ("information","chgsettings","setdates","setaccess","notify","crosslist","sections","photos","updatenow","updatephotos","viewclass"); my %tasklong = ( information => "Task information", chgsettings => "Automated adds/drops", setdates => "Change enrollment dates", + setaccess => "Change access dates", notify => "Notification of changes", crosslist => "Change crosslistings", sections => "Section settings", - photos => "Student photos", + photos => "Student photo settings", + updatephotos => "Update student photos", updatenow => "Update roster now", newcross => "Add crosslistings", - newsections => "Add sections" + newsections => "Add sections", + viewclass => "View students and change type", ); my %tasktitle = ( chgsettings => "Changes to nightly automated enrollments", setdates => "Changes to first and/or last automated enrollment dates", + setaccess => "Changes to default start and/or end dates for student access", notify => "Notification of enrollment changes", crosslist => "Changes to crosslistings", sections => "Changes to section settings", - photos => "Automatic import of student photos", + photos => "Student photo settings", + updatephotos => "Update student photos", updatenow => "Immediate course roster update", newcross => "Adding new crosslisted courses", - newsections => "Adding new course sections" + newsections => "Adding new course sections", + viewclass => "Viewing class roster and enrollment type" ); my $realm = ''; - if ( exists($ENV{'request.course.id'}) ) { - $realm= $ENV{'course.'.$ENV{'request.course.id'}.'.description'}; + if ( exists($env{'request.course.id'}) ) { + $realm= $env{'course.'.$env{'request.course.id'}.'.description'}; } unless ($realm) { $realm=' '; } - my $dom = $ENV{'course.'.$ENV{'request.course.id'}.'.domain'}; - my $crs = $ENV{'course.'.$ENV{'request.course.id'}.'.num'}; + my $dom = $env{'course.'.$env{'request.course.id'}.'.domain'}; + my $crs = $env{'course.'.$env{'request.course.id'}.'.num'}; # # Main switch on form.action and form.state, as appropriate # my $action = "information"; - if ( exists($ENV{'form.action'}) ) { - $action = $ENV{'form.action'}; + if ( exists($env{'form.action'}) ) { + $action = $env{'form.action'}; } my $state = "choose"; - if ( exists($ENV{'form.state'}) ) { - $state = $ENV{'form.state'}; + if ( exists($env{'form.state'}) ) { + $state = $env{'form.state'}; } if ($action eq "information") { $r->print(&header()); } else { if ($state eq "choose") { - $r->print(&choose_header()); + $r->print(&choose_header($action)); } else { if ($action eq "crosslist") { - if ( exists($ENV{'form.numcross'}) ) { - if ( $ENV{'form.numcross'} > 0 ) { - $r->print(&choose_header()); + if ( exists($env{'form.numcross'}) ) { + if ( $env{'form.numcross'} > 0 ) { + $r->print(&choose_header($action)); } else { $r->print(&header()); } @@ -2025,9 +3070,9 @@ sub handler { $r->print(&header()); } } elsif ($action eq "sections") { - if ( exists($ENV{'form.numsec'}) ) { - if ( $ENV{'form.numsec'} > 0 ) { - $r->print(&choose_header()); + if ( exists($env{'form.numsec'}) ) { + if ( $env{'form.numsec'} > 0 ) { + $r->print(&choose_header($action)); } else { $r->print(&header()); } @@ -2040,10 +3085,6 @@ sub handler { } } -# Determine course home server and current server - my $homeserver = &Apache::lonnet::homeserver($crs,$dom); - my $server = $Apache::lonnet::perlvar{'lonHostID'}; - my $reply = 0; unless ($state eq "choose") { $reply = 1; } @@ -2051,25 +3092,35 @@ sub handler { &print_navmenu($r,\@tasks,\%tasklong); if (($state eq "choose") || ($action eq "information")) { - &print_main_frame($r,$realm,$dom,$crs,\%tasktitle,$homeserver,$server); + &print_main_frame($r,$realm,$dom,$crs,\%tasktitle); } elsif ($action eq "chgsettings") { &print_chgsettings_response($r,$realm,$dom,$crs,$action,\%tasktitle); } elsif ($action eq "setdates") { &print_setdates_response($r,$realm,$dom,$crs,$action,\%tasktitle); + } elsif ($action eq "setaccess") { + &print_setaccess_response($r,$realm,$dom,$crs,$action,\%tasktitle); } elsif ($action eq "notify") { &print_notify_response($r,$realm,$dom,$crs,$action,\%tasktitle); } elsif ($action eq "sections") { - &print_sections_menu($r,$realm,$dom,$crs,$action,\%tasktitle,$homeserver,$server); + &print_sections_menu($r,$realm,$dom,$crs,$action,\%tasktitle); } elsif ($action eq "crosslist") { - &print_crosslistings_menu($r,$realm,$dom,$crs,$action,\%tasktitle,$homeserver,$server); + &print_crosslistings_menu($r,$realm,$dom,$crs,$action,\%tasktitle); } elsif ($action eq "updatenow") { - &print_update_result($r,$realm,$dom,$crs,$action,\%tasktitle,$homeserver,$server); + &print_update_result($r,$realm,$dom,$crs,$action,\%tasktitle); } elsif ($action eq "photos") { - &print_photos_response($r,$realm,$dom,$crs,$action,\%tasktitle); + if ($state eq "photoupdate") { + &print_photoupdate_response($r,$realm,$dom,$crs,$action,\%tasktitle); + } else { + &photo_permission($r,$realm,$dom,$crs,$action,\%tasktitle); + } + } elsif ($action eq "updatephotos") { + &print_photoupdate_response($r,$realm,$dom,$crs,$action,\%tasktitle); } elsif ($action eq "newcross") { - &print_crosslistings_response($r,$realm,$dom,$crs,$action,\%tasktitle,$homeserver,$server); + &print_crosslistings_response($r,$realm,$dom,$crs,$action,\%tasktitle); } elsif ($action eq "newsections") { - &print_sections_response($r,$realm,$dom,$crs,$action,\%tasktitle,$homeserver,$server); + &print_sections_response($r,$realm,$dom,$crs,$action,\%tasktitle); + } elsif ($action eq "viewclass") { + &print_viewclass_response($r,$realm,$dom,$crs,$action,\%tasktitle); } &print_doc_base($r); return OK;
    Starting Date