--- loncom/interface/Attic/londropadd.pm 2001/02/13 21:24:18 1.10 +++ loncom/interface/Attic/londropadd.pm 2001/02/14 22:51:48 1.12 @@ -15,7 +15,7 @@ # 12/08,12/12 Gerd Kortemeyer) # # 12/26,12/27,12/28, -# 01/01/01,01/15,02/10,02/13 Gerd Kortemeyer +# 01/01/01,01/15,02/10,02/13,02/14 Gerd Kortemeyer package Apache::londropadd; @@ -189,8 +189,8 @@ sub menu_phase_one {

Enroll a single student


-

Drop a student

-

+

Drop students

+

ENDUPFORM } @@ -431,6 +431,7 @@ ENDPICK

Login Type

+Note: this will not take effect if the user already exists

Kerberos authenticated with domain

@@ -454,29 +455,292 @@ LON-CAPA domain: Set Ending Date

Full Update

Full update -(also dropping students)

+(also print list of users not enrolled anymore)


Note: for large courses, this operation might be time consuming. ENDPICK } +# ======================================================= Enroll single student + +sub enroll_single_student { + my $r=shift; + $r->print('

Enrolling Student

'); + if (($ENV{'form.cuname'})&&($ENV{'form.cuname'}!~/\W/)&& + ($ENV{'form.cdomain'})&&($ENV{'form.cdomain'}!~/\W/)) { + my $amode=''; + my $genpwd=''; + if ($ENV{'form.login'} eq 'krb') { + $amode='krb4'; + $genpwd=$ENV{'form.krbdom'}; + } elsif ($ENV{'form.login'} eq 'int') { + $amode='internal'; + $genpwd=$ENV{'form.intpwd'}; + } + if (($amode) && ($genpwd)) { + &dropstudent($ENV{'form.cdomain'},$ENV{'form.cuname'}, + $ENV{'request.course.id'},$ENV{'form.csec'}); + $r->print(&Apache::lonnet::modifystudent( + $ENV{'form.cdomain'},$ENV{'form.cuname'}, + $ENV{'form.cstid'},$amode,$genpwd, + $ENV{'form.cfirst'},$ENV{'form.cmiddle'}, + $ENV{'form.clast'},$ENV{'form.cgen'}, + $ENV{'form.csec'},$ENV{'form.enddate'}, + $ENV{'form.startdate'})); + } else { + $r->print('Invalid login mode or password'); + } + } else { + $r->print('Invalid username or domain'); + } +} + # ======================================================= Menu Phase Two Enroll sub menu_phase_two_enroll { my $r=shift; + + $ENV{'SERVER_NAME'}=~/(\w+\.\w+)$/; + my $krbdefdom=$1; + $krbdefdom=~tr/a-z/A-Z/; + + my $today=time; + my $halfyear=$today+15552000; + + my $defdom=$r->dir_config('lonDefDomain'); + + $r->print(< +function verify(vf) { + var founduname=0; + var foundpwd=0; + var foundname=0; + var foundid=0; + var foundsec=0; + var foundatype=0; + var tw; + var message=''; + if ((vf.cuname.value!=undefined) && (vf.cuname.value!='') && + (vf.cdomain.value!=undefined) && (vf.cdomain.value!='')) { + founduname=1; + } + if ((vf.cfirst.value!=undefined) && (vf.cfirst.value!='') && + (vf.clast.value!=undefined) && (vf.clast.value!='')) { + foundname=1; + } + if ((vf.csec.value!=undefined) && (vf.csec.value!='')) { + foundsec=1; + } + if ((vf.cstid.value!=undefined) && (vf.cstid.value!='')) { + foundid=1; + } + if (founduname==0) { + alert('You need to specify at least the username and domain fields'); + return; + } + if (vf.login[0].checked) { + foundatype=1; + if (vf.krbdom.value=='') { + alert('You need to specify the Kerberos domain'); + return; + } + } + if (vf.login[1].checked) { + foundatype=1; + if ((vf.intpwd.value=='') && (foundpwd==0)) { + alert('You need to specify the initial password'); + return; + } + } + if (foundatype==0) { + alert('You need to set the login type'); + return; + } + if (foundname==0) { message='No first and last name specified. '; } + if (foundid==0) { message+='No ID or student number field specified. '; } + if (foundsec==0) { message+='No section or group field specified. '; } + if (vf.startdate.value=='') { + message+='No starting date set. '; + } + if (vf.enddate.value=='') { + message+='No ending date set. '; + } + if ((vf.enddate.value!='') && (vf.startdate.value!='')) { + if (Math.round(vf.enddate.value) +

Personal Data

+First Name:
+Middle Name:
+Last Name:
+Generation:

+ +ID/Student Number:

+ +Group/Section:

+ +

Login Data

+Username:

+Domain:

+Note: login settings below will not take effect if the user already exists

+ + +Kerberos authenticated with domain +

+ +Internally authenticated (with initial password +) + +

Starting and Ending Dates

+ + + + + +Set Starting Date

+ +Set Ending Date

+
+ +ENDSENROLL } # ========================================================= Menu Phase Two Drop sub menu_phase_two_drop { my $r=shift; + my $cid=$ENV{'request.course.id'}; + my $classlst=&Apache::lonnet::reply + ('dump:'.$ENV{'course.'.$cid.'.domain'}.':'. + $ENV{'course.'.$cid.'.num'}.':classlist', + $ENV{'course.'.$cid.'.home'}); + my %currentlist=(); + my $now=time; + unless ($classlst=~/^error\:/) { + map { + my ($name,$value)=split(/\=/,$_); + my ($end,$start)=split(/\:/, + &Apache::lonnet::unescape($value)); + my $active=1; + if (($end) && ($now>$end)) { $active=0; } + if ($active) { + $currentlist{&Apache::lonnet::unescape($name)}=1; + } + } split(/\&/,$classlst); +# ----------------------------------------------------------- Print out choices + &show_drop_list($r,%currentlist); + } else { + $r->print( + '

Could not access classlist: '.$classlst. + '

'); + } +} + +# =================================================== Show student list to drop + +sub show_drop_list { + my ($r,%currentlist)=@_; + my $cid=$ENV{'request.course.id'}; + + $r->print(''); + $r->print(''); + map { + my ($sname,$sdom)=split(/\:/,$_); + my %reply=&Apache::lonnet::idrget($sdom,$sname); + my $ssec=&Apache::lonnet::usection($sdom,$sname,$cid); + my @reply=split(/[\&\=]/,&Apache::lonnet::reply( + 'get:'.$sdom.':'.$sname. + ':environment:firstname&middlename&lastname&generation', + &Apache::lonnet::homeserver($sname,$sdom))); + $r->print( + '\n"); + } sort keys %currentlist; + $r->print('
'. + $sname.''.$sdom.''. + $reply{$sname}.''. + &Apache::lonnet::unescape($reply[2]).' '. + &Apache::lonnet::unescape($reply[3]).', '. + &Apache::lonnet::unescape($reply[0]).' '. + &Apache::lonnet::unescape($reply[1]). + ''. + $ssec."

'); + $r->print(''); } # ================================================= Drop/Add from uploaded file sub upfile_drop_add { my $r=shift; - $r->print(''); &load_tmp_file($r); my @studentdata=&upfile_record_sep(); @@ -620,26 +884,7 @@ sub upfile_drop_add { } } @studentdata; # ----------------------------------------------------------- Print out choices - $r->print(''); - map { - my ($sname,$sdom)=split(/\:/,$_); - my %reply=&Apache::lonnet::idrget($sdom,$sname); - my $ssec=&Apache::lonnet::usection($sdom,$sname,$cid); - my @reply=split(/[\&\=]/,&Apache::lonnet::reply( - 'get:'.$sdom.':'.$sname. - ':environment:firstname&middlename&lastname&generation', - &Apache::lonnet::homeserver($sname,$sdom))); - $r->print( - '\n"); - } sort keys %currentlist; - $r->print('
'. - $sname.''.$sdom.''. - $reply{$sname}.''. - $reply[2].' '.$reply[3],', '.$reply[0].' '. - $reply[1].''. - $ssec."

'); - $r->print(''); - + &show_drop_list($r,%currentlist); } else { $r->print( '

Could not access classlist: '.$classlst. @@ -651,6 +896,23 @@ sub upfile_drop_add { } } +# ================================================================== Phase four + +sub drop_student_list { + my $r=shift; + my $count=0; + map { + if ($_=~/^form\.drop\:/) { + my ($dummy,$uname,$udom)=split(/\:/,$_); + &dropstudent($udom,$uname,$ENV{'request.course.id'}); + $r->print('Dropped '.$uname.' at '.$udom.'
'); + $count++; + } + } keys %ENV; + $r->print('

Dropped '.$count.' student(s).'); + $r->print('

Re-enrollment will re-activate data.'); +} + # ================================================================ Main Handler sub handler { @@ -696,6 +958,14 @@ sub handler { &upfile_drop_add($r); } } +# ------------------------------------------------------------------ Phase four + if ($ENV{'form.phase'} eq 'four') { + &drop_student_list($r); + } +# ------------------------------------------------------------------ Phase four + if ($ENV{'form.phase'} eq 'five') { + &enroll_single_student($r); + } # ------------------------------------------------------------------------- End $r->print(''); } else {