Annotation of loncom/homework/essayresponse.pm, revision 1.66
1.1 albertel 1: # The LearningOnline Network with CAPA
2: # essay (ungraded) style responses
1.5 albertel 3: #
1.66 ! albertel 4: # $Id: essayresponse.pm,v 1.65 2005/05/03 05:31:51 albertel 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.1 albertel 34:
1.6 harris41 35: BEGIN {
1.10 ng 36: &Apache::lonxml::register('Apache::essayresponse',('essayresponse'));
1.1 albertel 37: }
38:
39: sub start_essayresponse {
1.10 ng 40: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
41: my $result;
1.14 albertel 42: my $id = &Apache::response::start_response($parstack,$safeeval);
43: if ($target eq 'meta') {
44: $result=&Apache::response::meta_package_write('essayresponse');
45: } elsif ($target eq 'web') {
1.10 ng 46: my $part= $Apache::inputtags::part;
47: my $ncol= &Apache::lonnet::EXT("resource.$part".'_'."$id.maxcollaborators");
1.34 albertel 48: my $coll= &HTML::Entities::encode($Apache::lonhomework::history{"resource.$part.$id.collaborators"},'<>&"');
1.17 www 49: my $uploadedfiletypes= &Apache::lonnet::EXT("resource.$part".'_'."$id.uploadedfiletypes");
1.21 www 50: $uploadedfiletypes=~s/[^\w\,]//g;
1.13 ng 51: $result='<br /><table border="1">';
1.22 www 52: $result.='<tr><td>'.
1.64 matthew 53: '<label>'.
1.47 albertel 54: '<input type="radio" name="HWDRAFT'.$part.'_'.$id.'" value="yes" checked="checked" /> '.
1.64 matthew 55: &mt('Submit entries below as answer to receive credit').
56: '</label> <br />'.
57: '<label>'.
58: '<input type="radio" name="HWDRAFT'.$part.'_'.$id.'" value="no" /> '.
1.33 albertel 59: &mt('Save entries below as a draft answer (not submitting them for credit yet)').
1.64 matthew 60: '</label>'.
61: ' </td></tr>';
1.10 ng 62: if ($ncol > 0) {
1.64 matthew 63: $result .='<tr><td>'.'<label>'.
1.13 ng 64: 'Collaborators: <input type="text" size="70" max="80" name="HWCOL'.
65: $part.'_'.$id.'" value="'.$coll.'" /><br />'.
1.64 matthew 66: &mt('(Enter maximum [_1] collaborators using username or username@domain, e.g. smithje or smithje@[_2].)',$ncol,$env{'user.domain'}).
67: '</label><br />';
1.10 ng 68: $result .= &check_collaborators($ncol,$coll) if ($coll =~ /\w+/);
1.13 ng 69: $result .='</td></tr>';
1.10 ng 70: }
1.60 albertel 71: $result.=&Apache::inputtags::file_selector($part,$id,
72: $uploadedfiletypes,'both');
1.22 www 73: $result.='</table>';
1.10 ng 74: }
75: return $result;
1.1 albertel 76: }
77:
78: sub end_essayresponse {
1.10 ng 79: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
1.13 ng 80: my $part = $Apache::inputtags::part;
1.14 albertel 81: my $id = $Apache::inputtags::response[-1];
1.27 albertel 82: my $increment = 1;
1.15 albertel 83: my $result;
1.10 ng 84: if ( $target eq 'grade' ) {
1.62 albertel 85: my $collaborators = $env{'form.HWCOL'.$part.'_'.$id};
1.14 albertel 86: if ($collaborators =~ /[^\s]/) {
1.34 albertel 87: my $previous_list= &HTML::Entities::encode($Apache::lonhomework::history{"resource.$part.$id.collaborators"},'<>&"');
1.14 albertel 88: $Apache::lonhomework::results{"resource.$part.$id.collaborators"}=$collaborators
89: if ($collaborators ne $previous_list);
90: }
1.58 albertel 91: if ( &Apache::response::submitted('scantron') ) {
1.31 albertel 92: $increment=&Apache::response::scored_response($part,$id);
1.58 albertel 93: } elsif ( &Apache::response::submitted() ) {
1.62 albertel 94: my $response = $env{'form.HWVAL_'.$id};
95: my $filename= $env{'form.HWFILE'.$part.'_'.$id.'.filename'};
96: my $portfiles = $env{'form.HWPORT'.$part.'_'.$id};
1.42 banghart 97: if (( $response =~ /[^\s]/) || ($filename =~ /[^\s]/) || ($portfiles =~ /[^\s]/)) {
1.61 albertel 98: my $award='DRAFT';
1.62 albertel 99: if ($env{'form.HWDRAFT'.$part.'_'.$id} eq 'yes') {
1.14 albertel 100: $award='SUBMITTED';
101: }
1.22 www 102: my $uploadedflag=0;
1.63 albertel 103: &file_submission($part,$id,'filename',\$award,\$uploadedflag);
104: &file_submission($part,$id,'portfiles',\$award,\$uploadedflag);
1.10 ng 105: $Apache::lonhomework::results{"resource.$part.$id.submission"}=$response;
1.14 albertel 106: $Apache::lonhomework::results{"resource.$part.$id.awarddetail"}=$award;
1.10 ng 107: my %previous=&Apache::response::check_for_previous($response,$part,$id);
1.22 www 108: unless ($uploadedflag) { &Apache::response::handle_previous(\%previous,$award); }
1.32 www 109: #
110: # Store with resource author for similarity testing
111: #
112: if ($award eq 'SUBMITTED') {
113: my ($symb,$crsid,$domain,$name)=
114: &Apache::lonxml::whichuser();
115: if ($crsid) {
116: my $akey=$name.'.'.$domain.'.'.$crsid;
117: my $essayurl=
118: &Apache::lonnet::declutter($ENV{'REQUEST_URI'});
119: my ($adom,$aname,$apath)=
120: ($essayurl=~/^(\w+)\/(\w+)\/(.*)$/);
121: $apath=&Apache::lonnet::escape($apath);
122: $apath=~s/\W/\_/gs;
123: &Apache::lonnet::put('nohist_essay_'.$apath,
124: { $akey => $response },$adom,$aname);
125: }
1.42 banghart 126: }
1.10 ng 127: }
1.42 banghart 128: }
1.15 albertel 129: } elsif ($target eq 'edit') {
130: $result.=&Apache::edit::end_table();
1.16 sakharuk 131: } elsif ($target eq 'tex') {
132: if ($Apache::lonhomework::type eq 'exam') {
1.27 albertel 133: my $repetition=&Apache::response::repetition();
1.25 sakharuk 134: $result.='\begin{enumerate}';
1.62 albertel 135: if ($env{'request.state'} eq "construct" ) {$result.='\item[\strut]';}
1.25 sakharuk 136: for (my $i=0;$i<$repetition;$i++) {
1.27 albertel 137: $result.='\item[\textbf{'.($Apache::lonxml::counter+$i).
1.33 albertel 138: '}.]\textit{'.&mt('Leave blank on scoring form').
139: '}\vskip 0 mm';
1.25 sakharuk 140: }
141: $result.= '\end{enumerate}';
1.37 albertel 142: $increment=$repetition;
1.16 sakharuk 143: }
1.10 ng 144: }
1.27 albertel 145: if ($target eq 'grade' || $target eq 'web' || $target eq 'answer' ||
146: $target eq 'tex' || $target eq 'analyze') {
147: &Apache::lonxml::increment_counter($increment);
148: }
1.10 ng 149: &Apache::response::end_response;
1.42 banghart 150:
1.15 albertel 151: return $result;
1.10 ng 152: }
153:
1.61 albertel 154: sub file_submission {
155: my ($part,$id,$which,$award,$uploadedflag)=@_;
156: my $files;
1.62 albertel 157: if ($which eq 'portfiles') { $files= $env{'form.HWPORT'.$part.'_'.$id}; }
1.61 albertel 158: if ($which eq 'filename') {
1.62 albertel 159: $files = $env{'form.HWFILE'.$part.'_'.$id.'.filename'};
1.61 albertel 160: }
161:
162: if ($files =~ /[^\s]/) {
163: $files =~s/,$//;
164: $Apache::lonhomework::results{"resource.$part.$id.$which"}=$files;
165: my @submitted_files = split(/,/,$files);
166: my $uploadedfiletypes= &Apache::lonnet::EXT("resource.$part".'_'."$id.uploadedfiletypes");
1.65 albertel 167: if ($uploadedfiletypes) {
168: $uploadedfiletypes=~s/[^\w\,]//g;
169: $uploadedfiletypes=','.$uploadedfiletypes.',';
170: foreach my $file (@submitted_files) {
171: my ($extension)=($file=~/\.(\w+)$/);
172: unless ($uploadedfiletypes=~/\,$extension\,/i) {
173: $$award='INVALID_FILETYPE';
174: }
1.61 albertel 175: }
176: }
1.63 albertel 177: if ($$award ne 'INVALID_FILETYPE' && ref($uploadedflag)) {
1.61 albertel 178: $$uploadedflag=1;
179: }
1.63 albertel 180: if ($$award ne 'INVALID_FILETYPE' && $which eq 'portfiles') {
1.61 albertel 181: my ($symb,$crsid,$domain,$name)=&Apache::lonxml::whichuser();
1.66 ! albertel 182: &Apache::lonnet::unmark_as_readonly($domain,$name,[$symb,$crsid]);
! 183: &Apache::lonnet::mark_as_readonly($domain,$name,\@submitted_files,[$symb,$crsid]);
1.61 albertel 184: &Apache::lonnet::clear_selected_files($name);
185: }
1.63 albertel 186: if ($$award ne 'INVALID_FILETYPE' && $which eq 'filename') {
1.61 albertel 187: $Apache::lonhomework::results{"resource.$part.$id.uploadedfile"}=
188: $files;
189: $Apache::lonhomework::results{"resource.$part.$id.uploadedurl"}=
190: &Apache::lonnet::userfileupload('HWFILE'.$part.'_'.$id,undef,
191: 'essayresponse');
192: }
193: } elsif ($which eq 'portfiles' &&
194: $Apache::lonhomework::history{"resource.$part.$id.$which"}) {
195: my ($symb,$crsid,$domain,$name)=&Apache::lonxml::whichuser();
1.66 ! albertel 196: &Apache::lonnet::unmark_as_readonly($domain,$name,[$symb,$crsid]);
1.61 albertel 197: $Apache::lonhomework::results{"resource.$part.$id.$which"}="";
198: }
199: }
200:
1.10 ng 201: sub check_collaborators {
1.11 ng 202: my ($ncol,$coll) = @_;
1.10 ng 203: my %classlist=&Apache::lonnet::dump('classlist',
1.62 albertel 204: $env{'course.'.$env{'request.course.id'}.'.domain'},
205: $env{'course.'.$env{'request.course.id'}.'.num'});
1.10 ng 206: my (@badcollaborators,$result);
207: my (@collaborators) = split(/\,?\s+/,$coll);
208: foreach (@collaborators) {
209: my $collaborator = $_;
210: if (/@/) {
211: $collaborator =~ s/@/:/;
212: } else {
1.62 albertel 213: $collaborator = $_.':'.$env{'user.domain'};
1.10 ng 214: }
215: push @badcollaborators, $_ if (!grep /^$collaborator/i,keys %classlist);
216: }
217:
218: if (scalar(@badcollaborators)) {
1.11 ng 219: $result = '<table border="0"><tr bgcolor="#ffbbbb"><td> The following user'.
220: (scalar(@badcollaborators) > 1 ? 's are' : ' is').' invalid: '.
221: join(', ',@badcollaborators).'. Please correct.</td></tr></table>';
1.10 ng 222: }
223: my $toomany = scalar(@collaborators) - $ncol;
224: if ($toomany > 0) {
225: $result .= '<table border="0"><tr bgcolor="#ffbbbb"><td>'.
226: 'You have too many collaborators. Please remove '.$toomany.' collaborator'.
227: ($toomany > 1 ? 's' :'').'.</td></tr></table>';
228: }
229: return $result;
1.1 albertel 230: }
1.2 albertel 231:
232: 1;
233: __END__
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>