Annotation of loncom/homework/essayresponse.pm, revision 1.82

1.1       albertel    1: # The LearningOnline Network with CAPA
                      2: # essay (ungraded) style responses
1.5       albertel    3: #
1.82    ! albertel    4: # $Id: essayresponse.pm,v 1.81 2007/01/08 11:12:44 foxr Exp $
1.5       albertel    5: #
                      6: # Copyright Michigan State University Board of Trustees
                      7: #
                      8: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
                      9: #
                     10: # LON-CAPA is free software; you can redistribute it and/or modify
                     11: # it under the terms of the GNU General Public License as published by
                     12: # the Free Software Foundation; either version 2 of the License, or
                     13: # (at your option) any later version.
                     14: #
                     15: # LON-CAPA is distributed in the hope that it will be useful,
                     16: # but WITHOUT ANY WARRANTY; without even the implied warranty of
                     17: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
                     18: # GNU General Public License for more details.
                     19: #
                     20: # You should have received a copy of the GNU General Public License
                     21: # along with LON-CAPA; if not, write to the Free Software
                     22: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
                     23: #
                     24: # /home/httpd/html/adm/gpl.txt
                     25: #
                     26: # http://www.lon-capa.org/
                     27: #
1.33      albertel   28: 
1.1       albertel   29: package Apache::essayresponse;
                     30: use strict;
1.33      albertel   31: use Apache::lonxml();
1.62      albertel   32: use Apache::lonnet;
1.33      albertel   33: use Apache::lonlocal;
1.72      www        34: use LONCAPA;
                     35:  
1.1       albertel   36: 
1.6       harris41   37: BEGIN {
1.10      ng         38:     &Apache::lonxml::register('Apache::essayresponse',('essayresponse'));
1.1       albertel   39: }
                     40: 
                     41: sub start_essayresponse {
1.10      ng         42:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
                     43:     my $result;
1.14      albertel   44:     my $id = &Apache::response::start_response($parstack,$safeeval);
                     45:     if ($target eq 'meta') {
                     46: 	$result=&Apache::response::meta_package_write('essayresponse');
1.69      albertel   47:     } elsif ($target eq 'web' &&
                     48: 	     $Apache::inputtags::status[-1] eq 'CAN_ANSWER') {
1.10      ng         49: 	my $part= $Apache::inputtags::part;
                     50: 	my $ncol= &Apache::lonnet::EXT("resource.$part".'_'."$id.maxcollaborators");
1.34      albertel   51: 	my $coll= &HTML::Entities::encode($Apache::lonhomework::history{"resource.$part.$id.collaborators"},'<>&"');
1.17      www        52: 	my $uploadedfiletypes= &Apache::lonnet::EXT("resource.$part".'_'."$id.uploadedfiletypes");
1.21      www        53:         $uploadedfiletypes=~s/[^\w\,]//g;
1.75      albertel   54: 	if ( $Apache::lonhomework::type eq 'survey' ) {
                     55: 	    $result.= '<input type="hidden" name="HWDRAFT'.$part.'_'.$id.'" value="yes" /> ';
                     56: 	}
                     57: 	$result.='<br /><table border="1">';
                     58: 	if ( $Apache::lonhomework::type ne 'survey' ) {
                     59: 	    $result.= '<tr><td>'.
                     60: 		'<label>'.
                     61: 		'<input type="radio" name="HWDRAFT'.$part.'_'.$id.'" value="yes" checked="checked" /> '.
                     62: 		&mt('Submit entries below as answer to receive credit').
                     63: 		'</label> <br />'.
                     64: 		'<label>'.
                     65: 		'<input type="radio" name="HWDRAFT'.$part.'_'.$id.'" value="no" /> '.
                     66: 		&mt('Save entries below as a draft answer (not submitting them for credit yet)').
                     67: 		'</label>'.
                     68: 		'</td></tr>';
                     69: 	}
                     70: 
1.10      ng         71: 	if ($ncol > 0) {
1.64      matthew    72: 	    $result .='<tr><td>'.'<label>'.
1.13      ng         73: 		'Collaborators: <input type="text" size="70" max="80" name="HWCOL'.
                     74: 		$part.'_'.$id.'" value="'.$coll.'" /><br />'.
1.64      matthew    75: 		&mt('(Enter maximum [_1] collaborators using username or username@domain, e.g. smithje or smithje@[_2].)',$ncol,$env{'user.domain'}).
                     76:                 '</label><br />';
1.10      ng         77: 	    $result .= &check_collaborators($ncol,$coll) if ($coll =~ /\w+/);
1.13      ng         78: 	    $result .='</td></tr>';
1.10      ng         79: 	}
1.60      albertel   80: 	$result.=&Apache::inputtags::file_selector($part,$id,
                     81: 						   $uploadedfiletypes,'both');
1.22      www        82:         $result.='</table>';
1.74      albertel   83:     } elsif ($target eq 'web' &&
                     84: 	     $Apache::inputtags::status[-1] ne 'CAN_ANSWER') {
                     85: 	my $part= $Apache::inputtags::part;
                     86: 	my @msgs;
                     87: 	if ($Apache::lonhomework::history{"resource.$part.$id.collaborators"} =~ /\S/) {
                     88: 	    my $coll= &HTML::Entities::encode($Apache::lonhomework::history{"resource.$part.$id.collaborators"},'<>&"');
                     89: 	    $result .= '<td>'.&mt('Collaborated with [_1]',$coll).'</td>';
                     90: 	}
                     91: 
                     92: 	my $file_submission = 
                     93: 	    &Apache::inputtags::show_past_file_submission($part,$id);
                     94: 	if ($file_submission) {
                     95: 	    $result .= '<td>'.$file_submission.'</td>';
                     96: 	}
                     97: 
                     98: 	my $port_submission = 
                     99: 	    &Apache::inputtags::show_past_portfile_submission($part,$id);
                    100: 	if ($port_submission) {
                    101: 	    $result .= '<td>'.$port_submission.'</td>';
                    102: 	}
                    103: 
                    104: 	if ($result ne '') {
                    105: 	    $result = 
                    106: 		'<table class="LC_pastsubmission"><tr>'.$result.
                    107: 		'</tr></table>';
                    108: 	}
1.10      ng        109:     }
                    110:     return $result;
1.1       albertel  111: }
                    112: 
                    113: sub end_essayresponse {
1.10      ng        114:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
1.13      ng        115:     my $part          = $Apache::inputtags::part;
1.14      albertel  116:     my $id            = $Apache::inputtags::response[-1];
1.70      albertel  117:     my $increment     = &Apache::response::repetition();
1.15      albertel  118:     my $result;
1.10      ng        119:     if ( $target eq 'grade' ) {
1.62      albertel  120: 	my $collaborators = $env{'form.HWCOL'.$part.'_'.$id};	
1.14      albertel  121: 	if ($collaborators =~ /[^\s]/) {
1.34      albertel  122: 	    my $previous_list= &HTML::Entities::encode($Apache::lonhomework::history{"resource.$part.$id.collaborators"},'<>&"');
1.14      albertel  123: 	    $Apache::lonhomework::results{"resource.$part.$id.collaborators"}=$collaborators
                    124: 		if ($collaborators ne $previous_list);
                    125: 	}
1.58      albertel  126: 	if (  &Apache::response::submitted('scantron') ) {
1.31      albertel  127: 	    $increment=&Apache::response::scored_response($part,$id);
1.58      albertel  128: 	} elsif ( &Apache::response::submitted() ) {
1.62      albertel  129: 	    my $response      = $env{'form.HWVAL_'.$id};
                    130:             my $filename= $env{'form.HWFILE'.$part.'_'.$id.'.filename'};
                    131:             my $portfiles = $env{'form.HWPORT'.$part.'_'.$id};
1.42      banghart  132: 	    if (( $response =~ /[^\s]/) || ($filename =~ /[^\s]/) || ($portfiles =~ /[^\s]/)) {
1.61      albertel  133:  		my $award='DRAFT';
1.62      albertel  134:         	if ($env{'form.HWDRAFT'.$part.'_'.$id} eq 'yes') {
1.14      albertel  135: 		    $award='SUBMITTED';
                    136: 		}
1.22      www       137:                 my $uploadedflag=0;
1.63      albertel  138: 		&file_submission($part,$id,'filename',\$award,\$uploadedflag);
                    139: 		&file_submission($part,$id,'portfiles',\$award,\$uploadedflag);
1.10      ng        140: 		$Apache::lonhomework::results{"resource.$part.$id.submission"}=$response;
1.14      albertel  141: 		$Apache::lonhomework::results{"resource.$part.$id.awarddetail"}=$award;
1.10      ng        142: 		my %previous=&Apache::response::check_for_previous($response,$part,$id);
1.22      www       143: 		unless ($uploadedflag) { &Apache::response::handle_previous(\%previous,$award); }
1.32      www       144: #
                    145: # Store with resource author for similarity testing
                    146: #
                    147:                 if ($award eq 'SUBMITTED') {
                    148: 		    my ($symb,$crsid,$domain,$name)=
1.77      albertel  149: 			&Apache::lonnet::whichuser();
1.32      www       150: 		    if ($crsid) {
                    151: 			my $akey=$name.'.'.$domain.'.'.$crsid;
                    152: 			my $essayurl=
                    153: 			    &Apache::lonnet::declutter($ENV{'REQUEST_URI'});
                    154: 			my ($adom,$aname,$apath)=
1.80      albertel  155: 			    ($essayurl=~/^($LONCAPA::domain_re)\/($LONCAPA::username_re)\/(.*)$/);
1.72      www       156:                         $apath=&escape($apath);
1.32      www       157: 			$apath=~s/\W/\_/gs;
                    158: 			&Apache::lonnet::put('nohist_essay_'.$apath,
                    159: 					 { $akey => $response },$adom,$aname);
                    160: 		    }
1.42      banghart  161:                 }
1.10      ng        162: 	    }
1.42      banghart  163: 	} 
1.15      albertel  164:     } elsif ($target eq 'edit') {
                    165: 	$result.=&Apache::edit::end_table();
1.71      albertel  166: 
                    167:     } elsif ($target eq 'tex'
                    168: 	     && $Apache::lonhomework::type eq 'exam') {
                    169: 	$result .= &Apache::inputtags::exam_score_line($target);
                    170: 
1.70      albertel  171:     } elsif ($target eq 'answer') {
1.78      albertel  172: 	$result.=&Apache::response::answer_header($$tagstack[-1]);
1.81      foxr      173: 	my $answer = &mt('Essay will be hand graded.');
1.78      albertel  174: 	$result.=&Apache::response::answer_part($$tagstack[-1],$answer,
                    175: 						{'no_verbatim' => 1});
                    176: 	$result.=&Apache::response::answer_footer($$tagstack[-1]);
1.10      ng        177:     }
1.82    ! albertel  178:     if ($target eq 'web') {
        !           179: 	&Apache::response::setup_prior_tries_hash(\&format_prior_response,
        !           180: 						  ['portfiles',
        !           181: 						   'uploadedurl']);
        !           182:     }
1.71      albertel  183: 
1.27      albertel  184:     if ($target eq 'grade' || $target eq 'web' || $target eq 'answer' ||
                    185: 	$target eq 'tex' || $target eq 'analyze') {
                    186: 	&Apache::lonxml::increment_counter($increment);
                    187:     }
1.10      ng        188:     &Apache::response::end_response;
1.42      banghart  189: 
1.15      albertel  190:     return $result;
1.10      ng        191: }
                    192: 
1.82    ! albertel  193: sub format_prior_response {
        !           194:     my ($mode,$answer,$other_data) = @_;
        !           195:     my $output;
        !           196: 
        !           197:     my (undef,undef,$udom,$uname) = &Apache::lonnet::whichuser();
        !           198:     my $port_url = '/uploaded/'.$udom.'/'.$uname.'/portfolio/';
        !           199: 
        !           200:     my $file_list;
        !           201: 
        !           202:     foreach my $file (split(/\s*,\s*/,
        !           203: 			    $other_data->[0].','.$other_data->[1])) {
        !           204: 	next if ($file!~/\S/);
        !           205: 	if ($file !~ m{^/uploaded/}) { $file=$port_url.$file; }
        !           206: 	$file=~s|/+|/|g;
        !           207: 	&Apache::lonnet::allowuploaded('/adm/essayresponse',$file);
        !           208: 	$file_list.='<li><span class="LC_nobreak"><a href="'.$file.'?rawmode=1" target="lonGRDs"><img src="'.
        !           209: 	    &Apache::loncommon::icon($file).'" alt="file icon" border="0" /> '.$file.
        !           210: 	    '</a></span></li>'."\n";
        !           211:     }
        !           212:     if ($file_list) {
        !           213: 	$output.= &mt('Submitted Files').'<ul>'.$file_list.'</ul>';
        !           214:     }
        !           215:     if ($answer =~ /\S/) {
        !           216: 	$output.='<p>'.&mt('Submitted text').
        !           217: 	    '<blockquote>'.$answer.'</blockquote></p>';
        !           218:     }
        !           219: 
        !           220:     return '<div class="LC_prior_essay">'.$output.'</div>';
        !           221: }
        !           222: 
1.61      albertel  223: sub file_submission {
                    224:     my ($part,$id,$which,$award,$uploadedflag)=@_;
                    225:     my $files;
1.67      albertel  226:     my $jspart=$part;
                    227:     $jspart=~s/\./_/g;
                    228:     if ($which eq 'portfiles') { $files= $env{'form.HWPORT'.$jspart.'_'.$id}; }
1.61      albertel  229:     if ($which eq 'filename') {
1.67      albertel  230: 	$files = $env{'form.HWFILE'.$jspart.'_'.$id.'.filename'};
1.61      albertel  231:     }
                    232:     
                    233:     if ($files =~ /[^\s]/) {
                    234: 	$files =~s/,$//;
                    235: 	$Apache::lonhomework::results{"resource.$part.$id.$which"}=$files;
1.68      albertel  236: 	
                    237: 	my @submitted_files = ($files);
                    238: 	if ( $which eq 'portfiles' ) {
1.73      albertel  239: 	    @submitted_files = split(/\s*,\s*/,$files);
1.68      albertel  240: 	}
                    241: 
1.61      albertel  242: 	my $uploadedfiletypes= &Apache::lonnet::EXT("resource.$part".'_'."$id.uploadedfiletypes");
1.65      albertel  243: 	if ($uploadedfiletypes) {
                    244: 	    $uploadedfiletypes=~s/[^\w\,]//g;
                    245: 	    $uploadedfiletypes=','.$uploadedfiletypes.',';
                    246: 	    foreach my $file (@submitted_files) {
                    247: 		my ($extension)=($file=~/\.(\w+)$/);
                    248: 		unless ($uploadedfiletypes=~/\,$extension\,/i) {
                    249: 		    $$award='INVALID_FILETYPE';
                    250: 		}
1.61      albertel  251: 	    }
                    252: 	}
1.63      albertel  253: 	if ($$award ne 'INVALID_FILETYPE' && ref($uploadedflag)) {
1.61      albertel  254: 	    $$uploadedflag=1;
                    255: 	}
1.63      albertel  256: 	if ($$award ne 'INVALID_FILETYPE' && $which eq 'portfiles') {
1.77      albertel  257: 	    my ($symb,$crsid,$domain,$name)=&Apache::lonnet::whichuser();
1.66      albertel  258: 	    &Apache::lonnet::unmark_as_readonly($domain,$name,[$symb,$crsid]);
                    259: 	    &Apache::lonnet::mark_as_readonly($domain,$name,\@submitted_files,[$symb,$crsid]);
1.61      albertel  260: 	    &Apache::lonnet::clear_selected_files($name);
                    261: 	}
1.63      albertel  262: 	if ($$award ne 'INVALID_FILETYPE' && $which eq 'filename') {
1.61      albertel  263: 	    $Apache::lonhomework::results{"resource.$part.$id.uploadedfile"}=
                    264: 		$files;
                    265: 	    $Apache::lonhomework::results{"resource.$part.$id.uploadedurl"}=
1.67      albertel  266: 		&Apache::lonnet::userfileupload('HWFILE'.$jspart.'_'.$id,undef,
1.61      albertel  267: 						'essayresponse');
                    268: 	}
                    269:     } elsif ($which eq 'portfiles' &&
                    270: 	     $Apache::lonhomework::history{"resource.$part.$id.$which"}) {
1.77      albertel  271: 	my ($symb,$crsid,$domain,$name)=&Apache::lonnet::whichuser();
1.66      albertel  272: 	&Apache::lonnet::unmark_as_readonly($domain,$name,[$symb,$crsid]);
1.61      albertel  273: 	$Apache::lonhomework::results{"resource.$part.$id.$which"}="";
                    274:     }
                    275: }
                    276: 
1.10      ng        277: sub check_collaborators {
1.11      ng        278:     my ($ncol,$coll) = @_;
1.10      ng        279:     my %classlist=&Apache::lonnet::dump('classlist',
1.62      albertel  280: 					$env{'course.'.$env{'request.course.id'}.'.domain'},
                    281: 					$env{'course.'.$env{'request.course.id'}.'.num'});
1.10      ng        282:     my (@badcollaborators,$result);
                    283:     my (@collaborators) = split(/\,?\s+/,$coll);
                    284:     foreach (@collaborators) {
                    285: 	my $collaborator = $_;
                    286: 	if (/@/) {
                    287: 	    $collaborator =~ s/@/:/;
                    288: 	} else {
1.62      albertel  289: 	    $collaborator = $_.':'.$env{'user.domain'};
1.10      ng        290: 	}
                    291: 	push @badcollaborators, $_ if (!grep /^$collaborator/i,keys %classlist);
                    292:     }
                    293:     
                    294:     if (scalar(@badcollaborators)) {
1.11      ng        295: 	$result = '<table border="0"><tr bgcolor="#ffbbbb"><td> The following user'.
                    296: 	    (scalar(@badcollaborators) > 1 ? 's are' : ' is').' invalid: '.
                    297: 	    join(', ',@badcollaborators).'. Please correct.</td></tr></table>';
1.10      ng        298:     }
                    299:     my $toomany = scalar(@collaborators) - $ncol;
                    300:     if ($toomany > 0) {
                    301: 	$result .= '<table border="0"><tr bgcolor="#ffbbbb"><td>'.
                    302: 	    'You have too many collaborators. Please remove '.$toomany.' collaborator'.
                    303: 	    ($toomany > 1 ? 's' :'').'.</td></tr></table>';
                    304:     }
                    305:     return $result;
1.1       albertel  306: }
1.2       albertel  307: 
                    308: 1;
                    309: __END__

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