Annotation of loncom/interface/statistics/lonstudentsubmissions.pm, revision 1.24

1.1       matthew     1: # The LearningOnline Network with CAPA
                      2: #
1.24    ! matthew     3: # $Id: lonstudentsubmissions.pm,v 1.23 2004/09/23 14:35:54 matthew Exp $
1.1       matthew     4: #
                      5: # Copyright Michigan State University Board of Trustees
                      6: #
                      7: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
                      8: #
                      9: # LON-CAPA is free software; you can redistribute it and/or modify
                     10: # it under the terms of the GNU General Public License as published by
                     11: # the Free Software Foundation; either version 2 of the License, or
                     12: # (at your option) any later version.
                     13: #
                     14: # LON-CAPA is distributed in the hope that it will be useful,
                     15: # but WITHOUT ANY WARRANTY; without even the implied warranty of
                     16: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
                     17: # GNU General Public License for more details.
                     18: #
                     19: # You should have received a copy of the GNU General Public License
                     20: # along with LON-CAPA; if not, write to the Free Software
                     21: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
                     22: #
                     23: # /home/httpd/html/adm/gpl.txt
                     24: #
                     25: # http://www.lon-capa.org/
                     26: #
                     27: package Apache::lonstudentsubmissions;
                     28: 
                     29: use strict;
                     30: use Apache::lonnet();
                     31: use Apache::loncommon();
                     32: use Apache::lonhtmlcommon();
                     33: use Apache::loncoursedata();
                     34: use Apache::lonstatistics;
                     35: use Apache::lonlocal;
                     36: use Apache::lonstathelpers;
                     37: use HTML::Entities();
                     38: use Time::Local();
                     39: use Spreadsheet::WriteExcel();
                     40: 
1.18      matthew    41: my @SubmitButtons = ({ name => 'SelectAnother',
1.1       matthew    42:                        text => 'Choose a different Problem' },
                     43:                      { name => 'Generate',
1.16      matthew    44:                        text => 'Generate Report'},
1.1       matthew    45:                      );
                     46: 
                     47: sub BuildStudentSubmissionsPage {
                     48:     my ($r,$c)=@_;
                     49:     #
                     50:     my %Saveable_Parameters = ('Status' => 'scalar',
                     51:                                'Section' => 'array',
                     52:                                'NumPlots' => 'scalar',
                     53:                                );
                     54:     &Apache::loncommon::store_course_settings('student_submissions',
                     55:                                               \%Saveable_Parameters);
                     56:     &Apache::loncommon::restore_course_settings('student_submissions',
                     57:                                                 \%Saveable_Parameters);
                     58:     #
                     59:     &Apache::lonstatistics::PrepareClasslist();
                     60:     #
                     61:     $r->print(&CreateInterface());
                     62:     #
                     63:     my @Students = @Apache::lonstatistics::Students;
                     64:     #
                     65:     if (@Students < 1) {
                     66:         $r->print('<h2>There are no students in the sections selected</h2>');
                     67:     }
                     68:     #
1.11      matthew    69:     my @CacheButtonHTML = 
1.19      matthew    70:         &Apache::lonstathelpers::manage_caches($r,'Statistics','stats_status',
                     71:                                    '<h3>'.&mt('Loading student data').'</h3>');
1.1       matthew    72:     $r->rflush();
                     73:     #
                     74:     if (exists($ENV{'form.problemchoice'}) && 
                     75:         ! exists($ENV{'form.SelectAnother'})) {
                     76:         foreach my $button (@SubmitButtons) {
                     77:             if ($button->{'name'} eq 'break') {
                     78:                 $r->print("<br />\n");
                     79:             } else {
                     80:                 $r->print('<input type="submit" name="'.$button->{'name'}.'" '.
                     81:                           'value="'.&mt($button->{'text'}).'" />');
                     82:                 $r->print('&nbsp;'x5);
                     83:             }
                     84:         }
1.11      matthew    85:         foreach my $html (@CacheButtonHTML) {
                     86:             $r->print($html.('&nbsp;'x5));
                     87:         }
1.1       matthew    88:         #
1.18      matthew    89:         $r->print('<hr />'.$/);
1.1       matthew    90:         $r->rflush();
                     91:         #
1.18      matthew    92:         # Determine which problems we are to analyze
                     93:         my @Symbs = 
                     94:             &Apache::lonstathelpers::get_selected_symbs('problemchoice');
                     95:         foreach my $selected (@Symbs) {
                     96:             $r->print('<input type="hidden" name="problemchoice" value="'.
                     97:                       $selected.'" />'.$/);
                     98:         }
1.1       matthew    99:         #
1.18      matthew   100:         # Get resource objects
                    101:         my $navmap = Apache::lonnavmaps::navmap->new();
                    102:         if (!defined($navmap)) {
                    103:             $r->print('<h1>'.&mt("Internal error").'</h1>');
                    104:             return;
                    105:         }
                    106:         my %already_seen;
                    107:         my @Problems;
                    108:         foreach my $symb (@Symbs) {
                    109:             my $resource = $navmap->getBySymb($symb);
                    110:             push(@Problems,$resource);
1.1       matthew   111:         }
                    112:         #
1.18      matthew   113:         if (! scalar(@Problems) || ! defined($Problems[0])) {
1.1       matthew   114:             $r->print('resource is undefined');
                    115:         } else {
1.18      matthew   116:             if (scalar(@Problems) == 1) {
                    117:                 my $resource = $Problems[0];
                    118:                 $r->print('<h1>'.$resource->title.'</h1>');
                    119:                 $r->print('<h3>'.$resource->src.'</h3>');
                    120:                 if ($ENV{'form.renderprob'} eq 'true') {
                    121:                     $r->print(
                    122:                               &Apache::lonstathelpers::render_resource({src => $resource->src})
                    123:                               );
                    124:                     $r->rflush();
                    125:                 }
                    126:             }
1.21      matthew   127:             if ($ENV{'form.output'} eq 'excel') {
                    128:                 &prepare_excel_output($r,\@Problems,\@Students);
1.22      matthew   129:             } elsif ($ENV{'form.output'} eq 'csv') {
                    130:                 &prepare_csv_output($r,\@Problems,\@Students);
1.21      matthew   131:             } else {
                    132:                 &prepare_html_output($r,\@Problems,\@Students);
                    133:             }
1.1       matthew   134:         }
                    135:         $r->print('<hr />');
                    136:     } else {
                    137:         $r->print('<input type="submit" name="Generate" value="'.
1.17      matthew   138:                   &mt('Prepare Report').'" />');
1.1       matthew   139:         $r->print('&nbsp;'x5);
1.19      matthew   140:         $r->print('<p>'.
                    141:                   &mt('Computing correct answers greatly increasese the amount of time required to prepare a report.').
                    142:                   '</p>');
                    143:         $r->print('<p>'.
                    144:                   &mt('please select problems and use the <b>Prepare Report</b> button to continue.').
                    145:                   '</p>');
1.18      matthew   146:         $r->print(&Apache::lonstathelpers::MultipleProblemSelector
1.19      matthew   147:                   (undef,'problemchoice','Statistics'));
1.18      matthew   148:     }
                    149: }
                    150: 
                    151: #########################################################
                    152: #########################################################
1.21      matthew   153: ##
                    154: ##    HTML Output Routines
                    155: ##
                    156: #########################################################
                    157: #########################################################
                    158: sub prepare_html_output {
                    159:     my ($r,$problems,$students) = @_;
                    160:     my $c = $r->connection();
                    161:     #
                    162:     # Set a flag for the case when there is just one problem
                    163:     my $single_response = 0;
                    164:     if (scalar(@$problems) == 1 &&
                    165:         $problems->[0]->countResponses == 1) {
                    166:         $single_response = 1;
                    167:     }
                    168:     #
                    169:     # Compute the number of columns per response
                    170:     my @response_headers = ('Submission');
                    171:     if ($ENV{'form.correctans'} eq 'true') {
                    172:         push(@response_headers,'Correct');
                    173:     } 
                    174:     if ($ENV{'form.prob_status'} eq 'true') {
                    175:         push(@response_headers,'Award Detail'); 
                    176:         push(@response_headers,'Time');
                    177:         push(@response_headers,'Attempt');
                    178:         push(@response_headers,'Awarded');
                    179:     }
                    180:     my $response_multiplier = scalar(@response_headers);
                    181:     #
                    182:     # Create the table header
                    183:     my @student_columns = ('username','domain','id');
                    184:     #
                    185:     my %headers;
                    186:     my $student_column_count = scalar(@student_columns);
                    187:     $headers{'problem'} = qq{<th colspan="$student_column_count">\&nbsp;</th>};
                    188:     foreach (@student_columns) {
                    189:         $headers{'student'}.= '<th>'.ucfirst($_).'</th>';
                    190:     }
                    191:     #
                    192:     # we put the headers into the %headers hash
                    193:     my $total_col = scalar(@student_columns);
                    194:     my $nonempty_part_headers = 0;
                    195:     foreach my $prob (@$problems) {
                    196:         my $prob_span = 0;
                    197:         my $single_part = 0;
                    198:         if (scalar(@{$prob->parts}) == 1) {
                    199:             $single_part = 1;
                    200:         }
                    201:         foreach my $partid (@{$prob->parts}) {
                    202:             my $part_span = 0;
                    203:             my $responses = [$prob->responseIds($partid)];
                    204:             my $resptypes = [$prob->responseType($partid)];
                    205:             for (my $i=0;$i<scalar(@$responses);$i++) {
                    206:                 if ($resptypes->[$i] eq 'essay') {
                    207:                     # do something clever, like shut up.
                    208:                 } else {
                    209:                     $total_col += scalar(@response_headers);
                    210:                     $headers{'response'} .=
                    211:                         '<th colspan="'.scalar(@response_headers).'">'.
                    212:                         &mt('Response [_1]',$responses->[$i]).'</th>';
                    213:                     $headers{'student'}.= '<th>'.join('</th><th>',
                    214:                                                       @response_headers).
                    215:                                                           '</th>';
                    216:                     $part_span += scalar(@response_headers);
                    217:                 }
                    218:             }
                    219:             if (! $single_part) {
                    220:                 my $tmpname = $partid;
                    221:                 if ($partid =~/^\d+$/) {
1.24    ! matthew   222:                     $tmpname = $prob->part_display($partid);
1.21      matthew   223:                 }
                    224:                 $headers{'part'} .= qq{<th colspan="$part_span">$tmpname</th>};
                    225:                 $nonempty_part_headers = 1;
                    226:             } else {
                    227:                 $headers{'part'} .= qq{<th colspan="$part_span">&nbsp</th>};
                    228:             }
                    229:             $prob_span += $part_span;
                    230:         }
1.23      matthew   231:         my $title = $prob->compTitle;
1.21      matthew   232:         if ($prob_span > 0) {
                    233:             $headers{'problem'}.= qq{<th colspan="$prob_span">$title</th>};
                    234:         } elsif ($single_response) {
                    235:             $prob_span = scalar(@student_columns);
                    236:             $headers{'problem'} = qq{<th colspan="$prob_span">$title</th>};
                    237:         }
                    238:     }
                    239:     if (exists($headers{'part'})) {
                    240:         $headers{'part'} = qq{<th colspan="$student_column_count">\&nbsp;</th>}.
                    241:             $headers{'part'};
                    242:     }
                    243:     if (exists($headers{'response'})) {
                    244:         $headers{'response'}=
                    245:             qq{<th colspan="$student_column_count">\&nbsp;</th>}.
                    246:             $headers{'response'};
                    247:     }
                    248:     my $full_header = $/.'<table>'.$/;
                    249:     $full_header .= '<tr align="left">'.$headers{'problem'}.'</tr>'.$/;
                    250:     if ($nonempty_part_headers) {
                    251:         $full_header .= '<tr align="left">'.$headers{'part'}.'</tr>'.$/;
                    252:     }
                    253:     $full_header .= '<tr align="left">'.$headers{'response'}.'</tr>'.$/;
                    254:     $full_header .= '<tr align="left">'.$headers{'student'}.'</tr>'.$/;
                    255:     #
                    256:     # Main loop
                    257:     my $count;
                    258:     $r->print($/.$full_header.$/);
                    259:     my $row_class = 'odd';   # css 
                    260:     foreach my $student (@$students) {
                    261:         my $student_row_data;
                    262:         if ($count++ >= 30) {
                    263:             $r->print('</table>'.$/.$full_header.$/);
                    264:             $count = 0;
                    265:         }
                    266:         last if ($c->aborted());
                    267:         foreach my $field (@student_columns) {
                    268:             $student_row_data .= 
                    269:                 '<td valign="top">'.$student->{$field}.'</td>';
                    270:         }
                    271:         #
                    272:         # Figure out what it is we need to output for this student
                    273:         my @essays;
                    274:         my %problem_data;
                    275:         my $maxrow;
                    276:         foreach my $prob (@$problems) {
                    277:             my $symb = $prob->symb;
                    278:             $problem_data{$symb}={};
                    279:             foreach my $partid (@{$prob->parts}) {
                    280:                 my @responses = $prob->responseIds($partid);
                    281:                 my @response_type = $prob->responseType($partid);
                    282:                 for (my $i=0;$i<=$#responses;$i++) {
                    283:                     my $respid   = $responses[$i];
                    284:                     my $resptype = $response_type[$i];
                    285:                     my $width = scalar(@response_headers);
                    286:                     $problem_data{$symb}->{$partid}->{$respid}={};
                    287:                     my $resp_data = $problem_data{$symb}->{$partid}->{$respid};
                    288:                     $resp_data->{'fake'} = qq{<td colspan="$width">&nbsp</td>};
                    289:                     my $results = 
                    290:                         &Apache::loncoursedata::get_response_data_by_student
                    291:                         ($student,$prob->symb(),$respid);
                    292:                     if (! defined($results)) {
                    293:                         $results = [];
                    294:                     }
                    295:                     #
                    296:                     if (scalar(@$results) > $maxrow && $resptype ne 'essay') {
                    297:                         $maxrow = scalar(@$results);
                    298:                     }
                    299:                     for (my $j=scalar(@$results)-1;$j>=0;$j--) {
                    300:                         my $response = $results->[$j];
                    301:                         if ($ENV{'form.all_sub'} ne 'true') {
                    302:                             next if ($j ne scalar(@$results)-1);
                    303:                         }
                    304:                         if ($resptype eq 'essay') {
                    305:                             push(@essays,
                    306:                                  &html_essay_results($student,
                    307:                                                      $prob,$partid,$respid,
                    308:                                                      $response,
                    309:                                                      $single_response).
                    310:                                  '</td>');
                    311:                         } else {
                    312:                             push(@{$resp_data->{'real'}},
                    313:                                  &html_results($student,
                    314:                                                $prob,$partid,$respid,
                    315:                                                $response,$resptype));
                    316:                         }
                    317:                     } 
                    318:                 } # end of $i loop
                    319:             } # end of partid loop
                    320:         } # end of prob loop
                    321:         #
                    322:         # if there is no data, skip this student.
                    323:         next if (! $maxrow && ! scalar(@essays));
                    324:         #
                    325:         # Go through the problem data and output a row.
                    326:         if ($row_class eq 'even') {
                    327:             $row_class = 'odd'; 
                    328:         } else {
                    329:             $row_class = 'even'; 
                    330:         }
                    331:         my $printed_something;
                    332:         for (my $rows_output = 0;$rows_output<$maxrow;$rows_output++) {
                    333:             my $html;
                    334:             my $no_data = 1;
                    335:             foreach my $prob (@$problems) {
                    336:                 my $symb = $prob->symb;
                    337:                 foreach my $partid (@{$prob->parts}) {
                    338:                     my @responses     = $prob->responseIds($partid);
                    339:                     my @response_type = $prob->responseType($partid);
                    340:                     for (my $i=0;$i<=$#responses;$i++) {
                    341:                         my $respid   = $responses[$i];
                    342:                         my $resp_data = 
                    343:                             $problem_data{$symb}->{$partid}->{$respid};
                    344:                         next if ($response_type[$i] eq 'essay');
                    345:                         if (defined($resp_data->{'real'}->[$rows_output])) {
                    346:                             $html .= $resp_data->{'real'}->[$rows_output];
                    347:                             $no_data = 0;
                    348:                         } else {
                    349:                             $html .= $resp_data->{'fake'};
                    350:                         }
                    351:                     }
                    352:                 }
                    353:             }
                    354:             if (! $no_data) {
                    355:                 $r->print(qq{<tr class="$row_class">$student_row_data$html</tr>}.$/);
                    356:                 $printed_something=1;
                    357:             }
                    358:         }
                    359:         if (@essays) {
                    360:             my $tr = qq{<tr class="$row_class">};
                    361:             my $td = qq{<td  valign="top" class="essay" colspan="$total_col">};
                    362:             if (! $printed_something) {
                    363:                 $r->print($tr.$student_row_data.'</tr>'.$/);
                    364:             }
                    365:             $r->print($tr.$td.
                    366:                       join('</td></tr>'.$/.$tr.$td,@essays).'</td></tr>'.$/);
                    367:             undef(@essays);
                    368:         }
                    369:     } # end of student loop
                    370:     return;
                    371: }
                    372: 
                    373: #####################################################
                    374: ##
                    375: ##     HTML helper routines
                    376: ##
                    377: #####################################################
                    378: sub html_essay_results {
                    379:     my ($student,$prob,$partid,$respid,$response,$single_response)=@_;
                    380:     #
                    381:     my $submission =$response->[&Apache::loncoursedata::RDs_submission()];
                    382:     $submission = &html_format_sub($submission,'essay');
                    383:     #
                    384:     my $correct = '';
                    385:     if ($ENV{'form.correctans'} eq 'true') {
                    386:         $correct = &Apache::lonstathelpers::analyze_problem_as_student
                    387:             ($prob,$student->{'username'},$student->{'domain'},
                    388:              $partid,$respid);
                    389:         $correct = &html_format_sub($correct,'essay');
                    390:     }
                    391:     my $Str;
                    392:     if (! $single_response) {
1.23      matthew   393:         my $id = $prob->compTitle;
1.21      matthew   394:         if (defined($partid) && $partid ne '0') {
1.24    ! matthew   395:             $id .= ' '.$prob->part_display($partid);
1.21      matthew   396:         }
                    397:         if (defined($respid)) {
                    398:             $id .= ' '.$respid;
                    399:         }
                    400:         $Str .= '<nobr>'.$id.'</nobr>'.('&nbsp;'x4);
                    401:     }
                    402:     if ($ENV{'form.prob_status'} eq 'true') {
                    403:         $Str .= '<nobr>';
                    404:         $Str .= $response->[&Apache::loncoursedata::RDs_awarddetail()].
                    405:             ('&nbsp;'x4);
                    406:         $Str .= &mt('Attempt [_1]',
                    407:                     $response->[&Apache::loncoursedata::RDs_tries()]).
                    408:                         ('&nbsp;'x4);
                    409:         $Str .= &Apache::lonlocal::locallocaltime
                    410:             ($response->[&Apache::loncoursedata::RDs_timestamp()]).
                    411:             ('&nbsp;'x4);
                    412:         $Str .= &mt('Awarded: [_1]',
                    413:                     $response->[&Apache::loncoursedata::RDs_awarded()]).
                    414:                         ('&nbsp;'x4);
                    415:         $Str .= '</nobr><br />';
                    416:     }
                    417:     $Str .= $submission;
                    418:     if (defined($correct) && $correct !~ /^\s*$/) {
                    419:         $Str .= '<hr /><b>'.&mt('Correct').'</b>'.$correct
                    420:     }
                    421:     return $Str;
                    422: }
                    423: 
                    424: sub html_results {
                    425:     my ($student,$prob,$partid,$respid,$response,$resptype) = @_;
                    426:     my $submission =$response->[&Apache::loncoursedata::RDs_submission()];
                    427:     $submission = &html_format_sub($submission,$resptype);
                    428:     my $correct = '';
                    429:     if ($ENV{'form.correctans'} eq 'true') {
                    430:         $correct = &Apache::lonstathelpers::analyze_problem_as_student
                    431:             ($prob,$student->{'username'},$student->{'domain'},
                    432:              $partid,$respid);
                    433:         $correct = &html_format_sub($correct,$resptype);
                    434:     }
                    435:     my $Str;
                    436:     $Str .= '<td valign="top">'.$submission.'</td>';
                    437:     if ($ENV{'form.correctans'} eq 'true') {
                    438:         $Str .= '<td valign="top">'.$correct.'</td>';
                    439:     }
                    440:     if ($ENV{'form.prob_status'} eq 'true') {
                    441:         $Str .= '<td valign="top">'.
                    442:             $response->[&Apache::loncoursedata::RDs_awarddetail()].
                    443:             '</td>';
                    444:         $Str .= '<td valign="top"><nobr>'.
                    445:             &Apache::lonlocal::locallocaltime
                    446:             ($response->[&Apache::loncoursedata::RDs_timestamp()]).
                    447:             '</nobr></td>';
                    448:         $Str .= '<td valign="top">'.
                    449:             $response->[&Apache::loncoursedata::RDs_tries()].
                    450:             '</td>';
                    451:         $Str .= '<td valign="top">'.
                    452:             $response->[&Apache::loncoursedata::RDs_awarded()].
                    453:             '</td>';
                    454:     }
                    455:     return $Str;
                    456: }
                    457: 
                    458: sub html_format_sub {
                    459:     my ($submission,$resptype) = @_;
                    460:     return '' if (! defined($submission) || $submission eq '');
                    461:     if ($resptype eq 'essay') {
                    462:         $submission =~ s|\\r\\n|$/|g;
                    463:         $submission = &HTML::Entities::encode($submission,'<>&"');
                    464:         $submission =~ s|$/\s*$/|$/</p><p>$/|g;
                    465:         $submission =~ s|\\||g;
                    466:         $submission = '<p>'.$submission.'</p>';
                    467:     } elsif ($resptype eq 'radiobutton') {
                    468:         $submission =~ s/=([^=])$//;
                    469:     } elsif ($resptype =~ /^(option|match|rank)$/) {
                    470:         $submission = 
                    471:             '<ul class="sub_studentans">'.
                    472:             '<li>'.join('</li><li>',
                    473:                         map { 
                    474:                             &Apache::lonnet::unescape($_) ;
                    475:                         } sort split('&',$submission)
                    476:                         ).
                    477:                         '</li><ul>';
                    478:     }
                    479:     return $submission;
                    480: }
1.18      matthew   481: 
1.21      matthew   482: #########################################################
                    483: #########################################################
                    484: ##
                    485: ##    Excel Output Routines
                    486: ##
                    487: #########################################################
                    488: #########################################################
                    489: sub prepare_excel_output {
1.19      matthew   490:     my ($r,$Problems,$Students) = @_;
1.18      matthew   491:     my $c = $r->connection();
                    492:     #
1.19      matthew   493:     #
                    494:     # Determine the number of columns in the spreadsheet
                    495:     my $columncount = 3; # username, domain, id
1.20      matthew   496:     my $response_multiplier = 1;
                    497:     $response_multiplier ++   if ($ENV{'form.correctans'} eq 'true');
                    498:     $response_multiplier += 4 if ($ENV{'form.prob_status'} eq 'true');
                    499:     my $lastprob;
1.19      matthew   500:     foreach my $prob (@$Problems) {
1.20      matthew   501:         $columncount += ($response_multiplier * $prob->countResponses);
1.19      matthew   502:         last if ($columncount > 255);
1.20      matthew   503:         $lastprob = $prob;
1.19      matthew   504:     }
                    505:     if ($columncount > 255) {
                    506:         $r->print('<h1>'.&mt('Unable to complete request').'</h1>'.$/.
                    507:                   '<p>'.&mt('LON-CAPA is unable to produce your Excel spreadsheet because your selections will result in more than 255 columns.  Excel allows only 255 columns in a spreadsheet.').'</p>'.$/.
1.20      matthew   508:                   '<p>'.&mt('Consider selecting fewer problems to generate reports on, or reducing the number of items per problem.  Or use HTML or CSV output.').'</p>'.$/.
1.23      matthew   509:                   '<p>'.&mt('The last problem that will fit in the current spreadsheet is [_1].',$lastprob->compTitle).'</p>');
1.19      matthew   510:         $r->rflush();
                    511:         return;
                    512:     }
                    513:     #
                    514:     # Print out a message telling them what we are doing
1.18      matthew   515:     if (scalar(@$Problems) > 1) {
                    516:         $r->print('<h2>'.
                    517:                   &mt('Preparing Excel spreadsheet of student responses to [_1] problems',
                    518:                       scalar(@$Problems)).
                    519:                   '</h2>');
                    520:     } else {
                    521:         $r->print('<h2>'.
                    522:                   &mt('Preparing Excel spreadsheet of student responses').
                    523:                   '</h2>');
                    524:     }
                    525:     $r->rflush();
                    526:     #
                    527:     # Create the excel spreadsheet
                    528:     my $filename = '/prtspool/'.
                    529:         $ENV{'user.name'}.'_'.$ENV{'user.domain'}.'_'.
                    530:         time.'_'.rand(1000000000).'.xls';
                    531:     my $workbook  = Spreadsheet::WriteExcel->new('/home/httpd'.$filename);
                    532:     if (! defined($workbook)) {
                    533:         $r->log_error("Error creating excel spreadsheet $filename: $!");
                    534:         $r->print('<p>'.&mt("Unable to create new Excel file.  ".
                    535:                             "This error has been logged.  ".
                    536:                             "Please alert your LON-CAPA administrator").
                    537:                   '</p>');
                    538:         return undef;
                    539:     }
                    540:     #
                    541:     $workbook->set_tempdir('/home/httpd/perl/tmp');
                    542:     #
                    543:     my $format = &Apache::loncommon::define_excel_formats($workbook);
                    544:     my $worksheet  = $workbook->addworksheet('Student Submission Data');
                    545:     #
                    546:     # Add headers to the worksheet
                    547:     my $rows_output = 0;
                    548:     $worksheet->write($rows_output++,0,
                    549:                     $ENV{'course.'.$ENV{'request.course.id'}.'.description'},
                    550:                       $format->{'h1'});
                    551:     $rows_output++;
                    552:     my $cols_output = 0;
                    553:     my $title_row  = $rows_output++;
                    554:     my $partid_row = $rows_output++;
                    555:     my $respid_row = $rows_output++;
                    556:     my $header_row = $rows_output++;
                    557:     $worksheet->write($title_row ,0,'Problem Title',$format->{'bold'});
                    558:     $worksheet->write($partid_row,0,'Part ID',$format->{'bold'});
                    559:     $worksheet->write($respid_row,0,'Response ID',$format->{'bold'});
                    560:     # Student headers
                    561:     my @StudentColumns = ('username','domain','id');
                    562:     foreach (@StudentColumns) {
1.19      matthew   563:         $worksheet->write($header_row,$cols_output++,ucfirst($_),
                    564:                           $format->{'bold'});
1.18      matthew   565:     }
                    566:     # Problem headers
                    567:     foreach my $prob (@$Problems) {
1.23      matthew   568:         my $title = $prob->compTitle;
1.18      matthew   569:         $worksheet->write($title_row,$cols_output,
                    570:                           $title,$format->{'h3'});
                    571:         foreach my $partid (@{$prob->parts}) {
1.24    ! matthew   572:             $worksheet->write($partid_row,$cols_output,
        !           573:                               $prob->part_display($partid));
1.18      matthew   574:             my $responses = [$prob->responseIds($partid)];
                    575:             my $resptypes = [$prob->responseType($partid)];
                    576:             for (my $i=0;$i<scalar(@$responses);$i++) {
                    577:                 $worksheet->write($respid_row,$cols_output,
                    578:                                   $resptypes->[$i].', '.$responses->[$i]);
                    579:                 $worksheet->write($header_row,$cols_output,'Submission');
                    580:                 $cols_output++;
1.19      matthew   581:                 if ($ENV{'form.correctans'} eq 'true') {
                    582:                     $worksheet->write($header_row,$cols_output,'Correct');
                    583:                     $cols_output++;
                    584:                 }
1.20      matthew   585:                 if ($ENV{'form.prob_status'} eq 'true') {
                    586:                     $worksheet->write($header_row,$cols_output++,
                    587:                                       'Award Detail');
                    588:                     $worksheet->write($header_row,$cols_output++,'Attempt');
                    589:                     $worksheet->write($header_row,$cols_output++,'Time');
                    590:                     $worksheet->write($header_row,$cols_output++,'Awarded');
                    591:                 }
1.18      matthew   592:             }
                    593:         }
                    594:     }
                    595:     #
                    596:     # Populate the worksheet with the student data
                    597:     my %prog_state=&Apache::lonhtmlcommon::Create_PrgWin
                    598:         ($r,'Excel File Compilation Status',
                    599:          'Excel File Compilation Progress', 
                    600:          scalar(@$Students),'inline',undef,'Statistics','stats_status');
1.20      matthew   601:     my $max_row = $rows_output;
1.18      matthew   602:     foreach my $student (@$Students) {
                    603:         last if ($c->aborted());
                    604:         $cols_output = 0;
1.20      matthew   605:         my $student_row = $max_row;
1.18      matthew   606:         foreach my $field (@StudentColumns) {
1.20      matthew   607:             $worksheet->write($student_row,$cols_output++,
1.18      matthew   608:                               $student->{$field});
                    609:         }
1.20      matthew   610:         my $last_student_col = $cols_output-1;
                    611:         my $response_count;
1.18      matthew   612:         foreach my $prob (@$Problems) {
                    613:             foreach my $partid (@{$prob->parts}) {
                    614:                 my @Response = $prob->responseIds($partid);
                    615:                 my @ResponseType = $prob->responseType($partid);
                    616:                 for (my $i=0;$i<=$#Response;$i++) {
1.20      matthew   617:                     my $response_start_col = $last_student_col + 
                    618:                         $response_count * $response_multiplier + 1;
                    619:                     $response_count++;
1.18      matthew   620:                     my $respid   = $Response[$i];
                    621:                     my $resptype = $ResponseType[$i];
                    622:                     my $results = 
                    623:                         &Apache::loncoursedata::get_response_data_by_student
                    624:                         ($student,$prob->symb(),$respid);
1.20      matthew   625:                     if (! defined($results)) {
                    626:                         $results = [];
                    627:                     }
                    628:                     #
                    629:                     $rows_output = $student_row;
                    630:                     #
                    631:                     for (my $j=scalar(@$results)-1;$j>=0;$j--) {
                    632:                         $cols_output = $response_start_col;
                    633:                         my $response = $results->[$j];
                    634:                         if ($ENV{'form.all_sub'} ne 'true') {
                    635:                             next if ($j ne scalar(@$results)-1);
                    636:                         }
                    637:                         my $cols_output = &write_excel_row
                    638:                             ($worksheet,
                    639:                              $rows_output++,$cols_output,
                    640:                              $response,$student,
                    641:                              $prob,$partid,$respid,
                    642:                              $format,$resptype);
                    643:                         if ($rows_output > $max_row) {
                    644:                             $max_row = $rows_output;
                    645:                         }
1.19      matthew   646:                     }
1.18      matthew   647:                 }
                    648:             }
                    649:         }
                    650:         $rows_output++;
                    651:         &Apache::lonhtmlcommon::Increment_PrgWin($r,\%prog_state,
                    652:                                                  'last student');
                    653:     }
                    654:     &Apache::lonhtmlcommon::Close_PrgWin($r,\%prog_state);
                    655:     #
                    656:     # Close the excel file
                    657:     $workbook->close();
                    658:     #
                    659:     # Write a link to allow them to download it
                    660:     $r->print('<p><a href="'.$filename.'">'.
                    661:               &mt('Your Excel spreadsheet.').
                    662:               '</a></p>'."\n");
                    663:     $r->print('<script>'.
                    664:               'window.document.Statistics.stats_status.value="'.
                    665:               'Done compiling spreadsheet.  See link below to download.'.
                    666:               '";</script>');
                    667:     $r->rflush();
                    668:     return;
                    669: }
                    670: 
1.20      matthew   671: sub write_excel_row {
                    672:     my ($worksheet,$row,$col,$response,$student,$prob,$partid,$respid,
                    673:         $format,$resptype) = @_;
                    674:     # 
                    675:     my $submission =$response->[&Apache::loncoursedata::RDs_submission()];
                    676:     $submission = &excel_format_response($submission,$resptype);
                    677:     $worksheet->write($row,$col++,$submission);
                    678:     if ($ENV{'form.correctans'} eq 'true') {
                    679:         my $correct = &Apache::lonstathelpers::analyze_problem_as_student
                    680:             ($prob,$student->{'username'},$student->{'domain'},
                    681:              $partid,$respid);
                    682:         $correct =&excel_format_response($correct,$resptype);
                    683:         $worksheet->write($row,$col++,$correct);
                    684:     }
                    685:     if ($ENV{'form.prob_status'} eq 'true') {
                    686:         $worksheet->write
                    687:             ($row,$col++,
                    688:              $response->[&Apache::loncoursedata::RDs_awarddetail()]);
                    689:         $worksheet->write
                    690:             ($row,$col++,$response->[&Apache::loncoursedata::RDs_tries()]);
                    691:         $worksheet->write
                    692:             ($row,$col++,
                    693:              &Apache::lonstathelpers::calc_serial
                    694:              ($response->[&Apache::loncoursedata::RDs_timestamp()]),
                    695:              $format->{'date'});
                    696:         $worksheet->write
                    697:             ($row,$col++,$response->[&Apache::loncoursedata::RDs_awarded()]);
                    698:     }
                    699:     return $col;
                    700: }
                    701: 
1.18      matthew   702: sub excel_format_response {
                    703:     my ($answer,$responsetype) = @_;
                    704:     if ($responsetype eq 'radiobutton') {
                    705:         $answer =~ s/=([^=])$//;
1.19      matthew   706:     } elsif ($responsetype =~ /^(option|match)$/) {
1.18      matthew   707:         $answer = join("\n",
                    708:                        map { 
                    709:                            &Apache::lonnet::unescape($_) ;
                    710:                        } sort split('&',$answer)
                    711:                        );
1.1       matthew   712:     }
1.18      matthew   713:     if ($answer =~ m/^=/) {
                    714:         $answer = ' '.$answer;
                    715:     }
                    716:     return $answer;
1.1       matthew   717: }
                    718: 
                    719: #########################################################
                    720: #########################################################
1.17      matthew   721: ##
                    722: ##      CSV output of student answers
                    723: ##
                    724: #########################################################
                    725: #########################################################
                    726: sub prepare_csv_output {
1.22      matthew   727:     my ($r,$problems,$students) = @_;
1.17      matthew   728:     my $c = $r->connection();
                    729:     #
                    730:     $r->print('<h2>'.
                    731:               &mt('Generating CSV report of student responses').'</h2>');
                    732:     #
                    733:     # Progress window
                    734:     my %prog_state=&Apache::lonhtmlcommon::Create_PrgWin
                    735:         ($r,'CSV File Compilation Status',
                    736:          'CSV File Compilation Progress', 
1.22      matthew   737:          scalar(@$students),'inline',undef,'Statistics','stats_status');
                    738:     
1.17      matthew   739:     $r->rflush();
                    740:     #
                    741:     # Open a file
                    742:     my $outputfile;
                    743:     my $filename = '/prtspool/'.
                    744:         $ENV{'user.name'}.'_'.$ENV{'user.domain'}.'_'.
                    745:             time.'_'.rand(1000000000).'.csv';
                    746:     unless ($outputfile = Apache::File->new('>/home/httpd'.$filename)) {
                    747:         $r->log_error("Couldn't open $filename for output $!");
                    748:         $r->print("Problems occured in writing the csv file.  ".
                    749:                   "This error has been logged.  ".
                    750:                   "Please alert your LON-CAPA administrator.");
                    751:         $outputfile = undef;
                    752:     }
                    753:     #
1.22      matthew   754:     # Compute the number of columns per response
                    755:     my @response_headers = ('Submission');
                    756:     if ($ENV{'form.correctans'} eq 'true') {
                    757:         push(@response_headers,'Correct');
                    758:     } 
                    759:     if ($ENV{'form.prob_status'} eq 'true') {
                    760:         push(@response_headers,'Award Detail'); 
                    761:         push(@response_headers,'Time');
                    762:         push(@response_headers,'Attempt');
                    763:         push(@response_headers,'Awarded');
                    764:     }
                    765:     my $response_multiplier = scalar(@response_headers);
                    766:     #
                    767:     # Create the table header
                    768:     my @student_columns = ('username','domain','id');
1.17      matthew   769:     #
1.22      matthew   770:     my %headers;
                    771:     push(@{$headers{'student'}},@student_columns);
                    772:     # Pad for the student data
                    773:     foreach my $row ('problem','part','response') {
                    774:         foreach (@student_columns) {
                    775:             push(@{$headers{$row}},'');
                    776:         }
                    777:     }
                    778:     #
                    779:     # we put the headers into the %headers hash
                    780:     my $prob_start_idx = 0;
                    781:     foreach my $prob (@$problems) {
1.23      matthew   782:         $headers{'problem'}->[$prob_start_idx] = $prob->compTitle;
1.22      matthew   783:         my $part_start_idx = $prob_start_idx;
                    784:         foreach my $partid (@{$prob->parts}) {
1.24    ! matthew   785:             $headers{'part'}->[$part_start_idx] = $prob->part_display($partid);
1.22      matthew   786:             my $responses = [$prob->responseIds($partid)];
                    787:             for (my $i=0;$i<scalar(@$responses);$i++) {
                    788:                 my $resp_idx = $prob_start_idx + $response_multiplier * $i;
                    789:                 $headers{'response'}->[$resp_idx]=
                    790:                     &mt('Response [_1]',$responses->[$i]);
                    791:                 for (my $j=0;$j<=$#response_headers;$j++) {
                    792:                     $headers{'student'}->[$resp_idx+$j]=$response_headers[$j];
                    793:                 }
1.17      matthew   794:             }
1.22      matthew   795:             $part_start_idx += scalar(@$responses)*$response_multiplier;
1.17      matthew   796:         }
1.22      matthew   797:         $prob_start_idx += $prob->countResponses * $response_multiplier;
1.17      matthew   798:     }
1.22      matthew   799:     foreach my $row ('problem','part','response','student') {
                    800:         print $outputfile '"'.join('","',map { ''; } @student_columns).'","'.
                    801:             join('","',
                    802:                  map { 
                    803:                      &Apache::loncommon::csv_translate($_); 
                    804:                  } @{$headers{$row}}).'"'.$/;
1.17      matthew   805:     }
                    806:     #
1.22      matthew   807:     # Main loop
                    808:     foreach my $student (@$students) {
                    809:         my @rows;
                    810:         my $prob_start_idx = 0;
                    811:         foreach my $prob (@$problems) {
                    812:             my $part_start_idx = 0;
                    813:             foreach my $partid (@{$prob->parts}) {
                    814:                 my @responses = $prob->responseIds($partid);
                    815:                 my @response_type = $prob->responseType($partid);
                    816:                 for (my $i=0;$i<=$#responses;$i++) {
                    817:                     my $resp_start_idx = $response_multiplier * $i;
                    818:                     my $respid   = $responses[$i];
                    819:                     my $results = 
                    820:                         &Apache::loncoursedata::get_response_data_by_student
                    821:                         ($student,$prob->symb(),$respid);
                    822:                     if (! defined($results)) {
                    823:                         $results = [];
                    824:                     }
                    825:                     for (my $j=0; $j<scalar(@$results);$j++) {
                    826:                         if ($ENV{'form.all_sub'} ne 'true') {
                    827:                             next if ($j != 0);
                    828:                         }
                    829:                         my $idx = scalar(@$results) - $j - 1;
                    830:                         my $response = $results->[$idx];
                    831:                         my @data = &compile_response_data($response,$student,
                    832:                                                           $prob,$partid,
                    833:                                                           $respid);
                    834:                         for (my $k=0;$k<=$#data;$k++) {
                    835:                             $rows[$j]->[$prob_start_idx + $part_start_idx +
                    836:                                         $resp_start_idx + $k] = $data[$k];
                    837:                         }
                    838:                     }
                    839:                 }
                    840:                 $part_start_idx += scalar(@responses)*$response_multiplier;
1.17      matthew   841:             }
1.22      matthew   842:             $prob_start_idx += $prob->countResponses * $response_multiplier;
                    843:         }
                    844:         foreach my $row (@rows) {
                    845:             print $outputfile '"'.join('","',
                    846:                                        map { $student->{$_}; }
                    847:                                        @student_columns).'"';
                    848:                                            
                    849:             for (my $i=0;$i<$prob_start_idx;$i++) {
                    850:                 my $value = &Apache::loncommon::csv_translate($row->[$i]);
                    851:                 $value ||='';
                    852:                 print $outputfile ',"'.$value.'"';
1.17      matthew   853:             }
1.22      matthew   854:             print $outputfile $/;
1.17      matthew   855:         }
1.22      matthew   856:         undef(@rows);
1.17      matthew   857:         &Apache::lonhtmlcommon::Increment_PrgWin($r,\%prog_state,
                    858:                                                  'last student');
                    859:     }
                    860:     close($outputfile);
                    861:     #
                    862:     # Close the progress window
                    863:     &Apache::lonhtmlcommon::Close_PrgWin($r,\%prog_state);
                    864:     #
                    865:     # Tell the user where to get their csv file
                    866:     $r->print('<br />'.
                    867:               '<a href="'.$filename.'">'.&mt('Your csv file.').'</a>'."\n");
                    868:     $r->rflush();
                    869:     return;
                    870: }
                    871: 
1.22      matthew   872: sub compile_response_data {
                    873:     my ($response,$student,$prob,$partid,$respid) = @_;
                    874:     my @rowdata;
                    875:     push(@rowdata,$response->[&Apache::loncoursedata::RDs_submission()]);
1.17      matthew   876:     if ($ENV{'form.correctans'} eq 'true') {
1.22      matthew   877:         my $correct = &Apache::lonstathelpers::analyze_problem_as_student
                    878:             ($prob,$student->{'username'},$student->{'domain'},
                    879:              $partid,$respid);
                    880:         push(@rowdata,$correct);
1.17      matthew   881:     }
1.22      matthew   882:     if ($ENV{'form.prob_status'}) {
                    883:         push(@rowdata,$response->[&Apache::loncoursedata::RDs_awarddetail()]);
                    884:         push(@rowdata,&Apache::lonlocal::locallocaltime
                    885:              ($response->[&Apache::loncoursedata::RDs_timestamp()]));
                    886:         push(@rowdata,$response->[&Apache::loncoursedata::RDs_tries()]);
                    887:         push(@rowdata,$response->[&Apache::loncoursedata::RDs_awarded()]);
1.17      matthew   888:     }
1.22      matthew   889:     return @rowdata;
1.15      matthew   890: }
                    891: 
1.1       matthew   892: #########################################################
                    893: #########################################################
                    894: ##
                    895: ##   Generic Interface Routines
                    896: ##
                    897: #########################################################
                    898: #########################################################
                    899: sub CreateInterface {
                    900:     ##
1.16      matthew   901:     ## Output Selection
1.19      matthew   902:     my $output_selector = $/.'<select name="output">'.$/;
1.22      matthew   903:     foreach ('HTML','Excel','CSV') {
1.19      matthew   904:         $output_selector .= '    <option value="'.lc($_).'"';
1.16      matthew   905:         if ($ENV{'form.output'} eq lc($_)) {
1.19      matthew   906:             $output_selector .= ' selected ';
1.16      matthew   907:         }
1.19      matthew   908:         $output_selector .='>'.&mt($_).'</option>'.$/;
1.16      matthew   909:     } 
1.19      matthew   910:     $output_selector .= '</select>'.$/;
1.16      matthew   911:     ##
1.1       matthew   912:     ## Environment variable initialization
                    913:     my $Str = '';
1.2       matthew   914:     $Str .= &Apache::lonhtmlcommon::breadcrumbs
1.5       matthew   915:         (undef,'Student Submission Reports');
1.11      matthew   916:     $Str .= '<p>';
1.1       matthew   917:     $Str .= '<table cellspacing="5">'."\n";
                    918:     $Str .= '<tr>';
1.16      matthew   919:     $Str .= '<th>'.&mt('Sections').'</th>';
                    920:     $Str .= '<th>'.&mt('Enrollment Status').'</th>';
1.21      matthew   921:     $Str .= '<th>'.&mt('Output as [_1]',$output_selector).'</th>';
1.1       matthew   922:     $Str .= '</tr>'."\n";
1.11      matthew   923:     #
1.1       matthew   924:     $Str .= '<tr><td align="center">'."\n";
                    925:     $Str .= &Apache::lonstatistics::SectionSelect('Section','multiple',5);
                    926:     $Str .= '</td>';
                    927:     #
                    928:     $Str .= '<td align="center">';
                    929:     $Str .= &Apache::lonhtmlcommon::StatusOptions(undef,undef,5);
                    930:     $Str .= '</td>';
1.6       matthew   931:     #
1.15      matthew   932:     # Render problem checkbox
                    933:     my $prob_checkbox = '<input type="checkbox" name="renderprob" ';
                    934:     if (exists($ENV{'form.renderprob'}) && $ENV{'form.renderprob'} eq 'true') {
                    935:         $prob_checkbox .= 'checked ';
                    936:     }
                    937:     $prob_checkbox .= 'value="true" />';
                    938:     #
                    939:     # Compute correct answers checkbox
                    940:     my $ans_checkbox = '<input type="checkbox" name="correctans" ';
1.13      matthew   941:     if (exists($ENV{'form.correctans'}) && $ENV{'form.correctans'} eq 'true') {
1.15      matthew   942:         $ans_checkbox .= 'checked ';
1.13      matthew   943:     }
1.15      matthew   944:     $ans_checkbox .= 'value="true" />';
                    945:     #
1.19      matthew   946:     # Show all submissions checkbox
                    947:     my $all_sub_checkbox = '<input type="checkbox" name="all_sub" ';
                    948:     if (exists($ENV{'form.all_sub'}) && 
                    949:         $ENV{'form.all_sub'} eq 'true') {
                    950:         $all_sub_checkbox .= 'checked ';
1.15      matthew   951:     }
1.19      matthew   952:     $all_sub_checkbox.= 'value="true" />';
1.15      matthew   953:     #
1.20      matthew   954:     # problem status checkbox
                    955:     my $prob_status_checkbox = '<input type="checkbox" name="prob_status" ';
                    956:     if (exists($ENV{'form.prob_status'}) && 
                    957:         $ENV{'form.prob_status'} eq 'true') {
                    958:         $prob_status_checkbox .= 'checked ';
1.15      matthew   959:     }
1.20      matthew   960:     $prob_status_checkbox .= 'value="true" />';
1.15      matthew   961:     #
1.16      matthew   962:     $Str .= '<td align="right" halign="top">'.
                    963:         '<label><b>'.
1.20      matthew   964:         &mt('Show problem [_1]',$prob_checkbox).'</b></label><br />'.
                    965:         '<label><b>'.
                    966:         &mt('Show correct answers [_1]',$ans_checkbox).'</b></label><br />'.
                    967:         '<label><b>'.
                    968:         &mt('Show all submissions [_1]',$all_sub_checkbox).
                    969:         '</b></label><br />'.
1.15      matthew   970:         '<label><b>'.
1.20      matthew   971:         &mt('Show problem grading [_1]',$prob_status_checkbox).
                    972:         '</b></label><br />'.
1.15      matthew   973:         '</td>';
1.13      matthew   974:     #
1.1       matthew   975:     $Str .= '</tr>'."\n";
                    976:     $Str .= '</table>'."\n";
                    977:     #
1.11      matthew   978:     $Str .= '<nobr>'.&mt('Status: [_1]',
                    979:                          '<input type="text" '.
                    980:                          'name="stats_status" size="60" value="" />').
                    981:             '</nobr>'.'</p>';    
                    982:     ##
1.1       matthew   983:     return $Str;
                    984: }
                    985: 
                    986: 1;
                    987: 
                    988: __END__

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>