--- loncom/interface/lonmanagekeys.pm 2003/04/23 01:55:52 1.3 +++ loncom/interface/lonmanagekeys.pm 2003/05/02 19:00:29 1.11 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # Handler to manage course access keys # -# $Id: lonmanagekeys.pm,v 1.3 2003/04/23 01:55:52 www Exp $ +# $Id: lonmanagekeys.pm,v 1.11 2003/05/02 19:00:29 www Exp $ # # Copyright Michigan State University Board of Trustees # @@ -54,65 +54,66 @@ ENDHEAD # =================================================== Show student list to drop sub show_key_list { - my ($r,$mode,$linkto,$action,$statusmode,$classlist,$keylist)=@_; -# -# Just junk so that this compiles -# - my ($username,$domain,$id,$name,$section,$status,@Sorted_Students); -# -# -# - my $cid=$ENV{'form.cid'}; - # - # Variables for excel output - my ($excel_workbook, $excel_sheet, $excel_filename,$row); - # - - # Print out header - if ($mode eq 'view') { - } elsif ($mode eq 'excel') { - # Create the excel spreadsheet - $excel_filename = '/prtspool/'. - $ENV{'user.name'}.'_'.$ENV{'user.domain'}.'_'. - time.'_'.rand(1000000000).'.xls'; - $excel_workbook = Spreadsheet::WriteExcel->new('/home/httpd'. - $excel_filename); - $excel_workbook->set_tempdir('/home/httpd/perl/tmp'); - $excel_sheet = $excel_workbook->addworksheet('classlist'); - # - my $description = 'Classlist for '. - $ENV{'course.'.$ENV{'request.course.id'}.'.description'}; - $excel_sheet->write($row++,0,$description); - # - $excel_sheet->write($row++,0,["username","domain","ID", - "student name","section","status"]); - } - foreach my $student (@Sorted_Students) { - if ($mode eq 'view') { - } elsif ($mode eq 'csv') { - # no need to bother with $linkto - my @line = (); - foreach ($username,$domain,$id,$name,$section) { - push @line,&Apache::loncommon::csv_translate($_); + my ($r,$csvlist,$comment,$newonly,$checkonly,%cenv)=@_; + $comment=~s/\W/\./g; + my %accesskeys=&Apache::lonnet::dump + ('accesskeys',$cenv{'domain'},$cenv{'num'}); + unless ($csvlist) { + $r->print(< + function copyallcom(tf) { + for (i=0; iprint("\"@line\"\n"); - $" = $tmp; - } elsif ($mode eq 'excel') { - $excel_sheet->write($row++,0,[$username,$domain,$id, - $name,$section,$status]); } + + } + +

List of Keys/Enter New Comments

+ + + +ENDTABLEHEADER + } + foreach (keys %accesskeys) { + if ($_=~/^error\:/) { + $r->print(''); + } elsif ($accesskeys{$_}=~/$comment/) { + my ($checkout,$com)=split(/\s*\#\s*/,$accesskeys{$_}); + unless ($checkout) { + if ($checkonly) { next; } + } else { + if ($newonly) { next; } + } + unless ($csvlist) { + $r->print("\n'); + } else { + my @line = (); + push @line,&Apache::loncommon::csv_translate($_); + push @line,&Apache::loncommon::csv_translate($checkout); + foreach (split(/\s*\;\s*/,$com)) { + push @line,&Apache::loncommon::csv_translate($_); + } + my $tmp = $"; + $" = '","'; + $r->print("\"@line\"\n"); + $" = $tmp; + } + } } - if ($mode eq 'view') { - } elsif ($mode eq 'excel') { - $excel_workbook->close(); - $r->print('

'. - 'Your Excel spreadsheet is ready for download.

'."\n"); + unless ($csvlist) { + $r->print('
KeyChecked OutComments/Remarks/NotesEnter Additional Comments/Remarks/Notes
+ + +
No keys have been generated yet.
".$_.''.($checkout? + $checkout:'-').''. + join('
',split(/\s*\;\s*/,$com)). + '
'); + $r->print('
'); } + return ''; } @@ -136,14 +137,38 @@ sub togglekeyaccess { sub genkeys { my ($num,$comments,%cenv)=@_; + unless ($comments) { $comments=''; } + $comments=~s/\#/ /g; + $comments=~s/\;/ /g; unless ($num) { return 'No number of keys given.'; } unless (($num=~/^\d+$/) && ($num>0)) { return 'Invalid number of keys given.'; } + my $batchnumber='BATCH_'.time().'_'.$$; return 'Generated '.&Apache::lonnet::generate_access_keys - ($num,$cenv{'domain'},$cenv{'number'},$comments).' access keys.'; + ($num,$cenv{'domain'},$cenv{'num'},$batchnumber.'; '.$comments).' of '. + $num.' access keys (Batch Number: '.$batchnumber.')',$batchnumber; } +# ---------------------------------------------------------------- Add comments + +sub addcom { + my %cenv=@_; + my %newcomment=(); + undef %newcomment; + foreach (keys %ENV) { + if ($_=~/^form\.com\_(.+)$/) { + my $key=$1; + my $comment=$ENV{$_}; + $comment=~s/^\s+//gs; + if ($comment) { + &Apache::lonnet::comment_access_key + ($key,$cenv{'domain'},$cenv{'num'},$comment); + } + } + } + return ''; +} ################################################################### ################################################################### sub handler { @@ -166,14 +191,18 @@ sub handler { } if ($ENV{'form.cid'}) { my %cenv=&Apache::lonnet::coursedescription($ENV{'form.cid'}); - if (exists($ENV{'form.state'}) && ($ENV{'form.state'} eq 'csv')) { + if ($ENV{'form.listkeyscsv'}) { # # CSV Output # $r->content_type('text/csv'); + $r->send_http_header; # # Do CSV # + &show_key_list($r,1,$ENV{'form.listcom'}, + $ENV{'form.newonly'},$ENV{'form.checkonly'},%cenv); + } else { # # Normal web stuff @@ -189,23 +218,39 @@ sub handler { $r->print(&togglekeyaccess(%cenv).'
'); %cenv=&Apache::lonnet::coursedescription($ENV{'form.cid'}); } + my $batchnumber=''; if ($ENV{'form.genkeys'}) { - $r->print( - &genkeys($ENV{'form.num'},$ENV{'form.comments'},%cenv).'
'); + (my $msg,$batchnumber)= + &genkeys($ENV{'form.num'},$ENV{'form.comments'},%cenv); + $r->print($msg.'
'); } + if ($ENV{'form.listkeys'}) { + &show_key_list($r,0,$ENV{'form.listcom'}, + $ENV{'form.newonly'},$ENV{'form.checkonly'},%cenv); + } + if ($ENV{'form.addcom'}) { + &addcom(%cenv); + } # --- Menu $r->print('

Key Access

'); if ($cenv{'keyaccess'} eq 'yes') { - $r->print('Access to this course is key controlled. ') + $r->print('Access to this course is key controlled.
') } else { - $r->print('Access to this course is open, no access keys. '); + $r->print('Access to this course is open, no access keys.
'); } - $r->print(<print(<

Generate New Keys

Number of keys to be generated:
Comments/Remarks/Notes:
-ENDKEYGEN +

List Keys

+Comments/Remarks/Notes/User/Batch Number Filter: +
+ Unused keys only
+ Used keys only
+ + +ENDKEYMENU $r->print(''); } } else {