--- loncom/interface/Attic/londropadd.pm 2001/02/13 21:24:18 1.10 +++ loncom/interface/Attic/londropadd.pm 2001/09/25 18:12:43 1.16 @@ -7,6 +7,7 @@ # # (TeX Content Handler # +# YEAR=2000 # 05/29/00,05/30,10/11 Gerd Kortemeyer) # # 10/11,10/12,10/16 Gerd Kortemeyer) @@ -15,7 +16,11 @@ # 12/08,12/12 Gerd Kortemeyer) # # 12/26,12/27,12/28, -# 01/01/01,01/15,02/10,02/13 Gerd Kortemeyer +# YEAR=2001 +# 01/01/01,01/15,02/10,02/13,02/14,02/22 Gerd Kortemeyer +# 8/6 Scott Harrison +# Guy Albertelli +# 9/25 Gerd Kortemeyer package Apache::londropadd; @@ -147,7 +152,7 @@ sub dropstudent { if ($key=~/^$courseid(?:\/)*(\w+)*\_st$/) { my $section=$1; if ($key eq $courseid.'_st') { $section=''; } - if ($section ne $csec) { + if (((!$section) && (!$csec)) || ($section ne $csec)) { my ($dummy,$end,$start)=split(/\_/, &Apache::lonnet::unescape($value)); my $now=time; @@ -189,8 +194,8 @@ sub menu_phase_one {

Enroll a single student


-

Drop a student

-

+

Drop students

+

ENDUPFORM } @@ -257,6 +262,10 @@ function verify(vf) { return; } } + if (vf.login[2].checked) { + foundatype=1; + //An argument is not required + } if (foundatype==0) { alert('You need to set the login type'); return; @@ -315,6 +324,7 @@ function flip(vf,tf) { vf.login[1].checked=true; vf.intpwd.value=''; vf.krbdom.value=''; + vf.locarg.value=''; } } @@ -411,14 +421,14 @@ ENDPICK 'id:ID/Student Number','sec:Group/Section', 'ipwd:Initial Password'); $r->print(''); - if (defined($sone{$i})) { - $r->print($sone{$i}."
\n"); + if (defined($sone{$_})) { + $r->print($sone{$_}."
\n"); } - if (defined($stwo{$i})) { - $r->print($stwo{$i}."
\n"); + if (defined($stwo{$_})) { + $r->print($stwo{$_}."
\n"); } - if (defined($sthree{$i})) { - $r->print($sthree{$i}."
\n"); + if (defined($sthree{$_})) { + $r->print($sthree{$_}."
\n"); } $r->print(''); $i++; @@ -431,12 +441,22 @@ ENDPICK

Login Type

- +

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

+

+ Kerberos authenticated with domain -

- + +

+

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

+

+ +Local Authentication with argument + +

LON-CAPA Domain for Students

LON-CAPA domain:

Starting and Ending Dates

@@ -454,29 +474,321 @@ 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'}; + } elsif ($ENV{'form.login'} eq 'loc') { + $amode='localauth'; + $genpwd=$ENV{'form.locarg'}; + if (!$genpwd) { $genpwd=" "; } + } + 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 ((typeof(vf.cuname.value)!="undefined") && (vf.cuname.value!='') && + (typeof(vf.cdomain.value)!="undefined") && (vf.cdomain.value!='')) { + founduname=1; + } + if ((typeof(vf.cfirst.value)!="undefined") && (vf.cfirst.value!='') && + (typeof(vf.clast.value)!="undefined") && (vf.clast.value!='')) { + foundname=1; + } + if ((typeof(vf.csec.value)!="undefined") && (vf.csec.value!='')) { + foundsec=1; + } + if ((typeof(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 (vf.login[2].checked) { + foundatype=1; + //An argument is not required + } + 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 +) +

+ +Local Authentication with argument + +

+

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(); @@ -503,7 +815,12 @@ sub upfile_drop_add { if ((defined($ENV{'form.intpwd'})) && ($ENV{'form.intpwd'})) { $genpwd=$ENV{'form.intpwd'}; } - } + } elsif ($ENV{'form.login'} eq 'loc') { + $amode='localauth'; + if ((defined($ENV{'form.locarg'})) && ($ENV{'form.locarg'})) { + $genpwd=$ENV{'form.locarg'}; + } + } unless (($domain=~/\W/) || ($amode eq '')) { $r->print('

Enrolling Students

'); my $count=0; @@ -620,26 +937,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 +949,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 +1011,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 {