version 1.107, 2010/06/17 00:13:20
|
version 1.128, 2025/03/02 05:22:43
|
Line 29
|
Line 29
|
package Apache::essayresponse; |
package Apache::essayresponse; |
use strict; |
use strict; |
use Apache::lonxml(); |
use Apache::lonxml(); |
|
use Apache::lonhtmlcommon; |
|
use Apache::loncommon; |
use Apache::lonnet; |
use Apache::lonnet; |
|
use Apache::lonnavmaps; |
use Apache::lonlocal; |
use Apache::lonlocal; |
use LONCAPA qw(:DEFAULT :match); |
use LONCAPA qw(:DEFAULT :match); |
|
|
Line 44 sub start_essayresponse {
|
Line 47 sub start_essayresponse {
|
my $id = &Apache::response::start_response($parstack,$safeeval); |
my $id = &Apache::response::start_response($parstack,$safeeval); |
if ($target eq 'meta') { |
if ($target eq 'meta') { |
$result=&Apache::response::meta_package_write('essayresponse'); |
$result=&Apache::response::meta_package_write('essayresponse'); |
} elsif ($target eq 'web' && |
} elsif ($target eq 'web') { |
$Apache::inputtags::status[-1] eq 'CAN_ANSWER') { |
my $part= $Apache::inputtags::part; |
my $part= $Apache::inputtags::part; |
my $coll; |
my $ncol= &Apache::lonnet::EXT("resource.$part".'_'."$id.maxcollaborators"); |
if ($Apache::lonhomework::history{"resource.$part.$id.collaborators"} =~ /\S/) { |
my $coll= &HTML::Entities::encode($Apache::lonhomework::history{"resource.$part.$id.collaborators"},'<>&"'); |
$coll = &HTML::Entities::encode($Apache::lonhomework::history{"resource.$part.$id.collaborators"},'<>&"'); |
my $uploadedfiletypes= &Apache::lonnet::EXT("resource.$part".'_'."$id.uploadedfiletypes"); |
} |
$uploadedfiletypes=~s/[^\w\,]//g; |
if ($Apache::inputtags::status[-1] eq 'CAN_ANSWER') { |
my $maxfilesize=&Apache::lonnet::EXT("resource.$part".'_'."$id.maxfilesize"); |
my $ncol= &Apache::lonnet::EXT("resource.$part".'_'."$id.maxcollaborators"); |
if (!defined($maxfilesize)) { |
my $uploadedfiletypes= &Apache::lonnet::EXT("resource.$part".'_'."$id.uploadedfiletypes"); |
$maxfilesize = 10.0; #FIXME This should become a domain configuration |
$uploadedfiletypes=~s/[^\w\,]//g; |
|
my $maxfilesize=&Apache::lonnet::EXT("resource.$part".'_'."$id.maxfilesize"); |
|
if (!defined($maxfilesize)) { |
|
$maxfilesize = 10.0; #FIXME This should become a domain configuration |
|
} |
|
my $hiddendraft; |
|
if (($Apache::lonhomework::type eq 'survey') || |
|
($Apache::lonhomework::type eq 'surveycred') || |
|
($Apache::lonhomework::type eq 'anonsurvey') || |
|
($Apache::lonhomework::type eq 'anonsurveycred')) { |
|
$hiddendraft = '<input type="hidden" name="HWDRAFT'.$part.'_'.$id.'" value="yes" />'; |
|
} else { |
|
$result = &draft_row($part,$id,$ncol,$uploadedfiletypes,'essayresponse'); |
|
} |
|
if ($ncol > 0) { |
|
$result .= &get_collab_row($part,$id,$coll,$ncol); |
|
} |
|
my $filesfrom = 'both'; |
|
my $stuname = &Apache::lonnet::EXT('user.name'); |
|
my $studom = &Apache::lonnet::EXT('user.domain'); |
|
if (!&Apache::lonnet::usertools_access($stuname,$studom,'portfolio')) { |
|
$filesfrom = 'uploadonly'; |
|
} |
|
$result.=&Apache::inputtags::file_selector($part,$id,$uploadedfiletypes, |
|
$filesfrom,undef,$maxfilesize); |
|
if ($result) { |
|
$result = |
|
'<div>'.$hiddendraft. |
|
&Apache::lonhtmlcommon::start_pick_box(). |
|
$result. |
|
&Apache::lonhtmlcommon::end_pick_box().'</div>'; |
|
} else { |
|
$result = $hiddendraft; |
|
} |
|
} else { |
|
$result = &show_status_table($part,$id,$coll); |
} |
} |
if (($Apache::lonhomework::type eq 'survey') || |
} |
($Apache::lonhomework::type eq 'surveycred') || |
return $result; |
($Apache::lonhomework::type eq 'anonsurvey') || |
} |
($Apache::lonhomework::type eq 'anonsurveycred')) { |
|
$result.= '<input type="hidden" name="HWDRAFT'.$part.'_'.$id.'" value="yes" /> '; |
|
} |
|
$result.='<br /><table border="1">'; |
|
if (($Apache::lonhomework::type ne 'survey') && |
|
($Apache::lonhomework::type ne 'surveycred') && |
|
($Apache::lonhomework::type ne 'anonsurvey') && |
|
($Apache::lonhomework::type ne 'anonsurveycred')) { |
|
$result.= '<tr><td>'. |
|
'<label>'. |
|
'<input type="radio" name="HWDRAFT'.$part.'_'.$id.'" value="yes" checked="checked" /> '. |
|
&mt('Submit entries below as answer to receive credit'). |
|
'</label> <br />'. |
|
'<label>'. |
|
'<input type="radio" name="HWDRAFT'.$part.'_'.$id.'" value="no" /> '. |
|
&mt('Save entries below (not submitted for credit yet)'). |
|
'</label>'. |
|
'</td></tr>'; |
|
} |
|
|
|
if ($ncol > 0) { |
|
$result .='<tr><td>'.'<label>'. |
|
&mt('Collaborators:').' <input type="text" size="70" max="80" name="HWCOL'. |
|
$part.'_'.$id.'" value="'.$coll.'" /><br />'. |
|
&mt('(Enter a maximum of [quant,_1,collaborator] using username or username:domain, e.g. smithje or smithje:[_2].)',$ncol,$env{'user.domain'}); |
|
if ($ncol > 1) { |
|
$result .= '<br />'.&mt('If entering more than one, use spaces to separate the collaborators.'); |
|
} |
|
$result .= '</label><br />'; |
|
$result .= &check_collaborators($ncol,$coll) if ($coll =~ /\w+/); |
|
$result .='</td></tr>'; |
|
} |
|
my $filesfrom = 'both'; |
|
my $stuname = &Apache::lonnet::EXT('user.name'); |
|
my $studom = &Apache::lonnet::EXT('user.domain'); |
|
if (!&Apache::lonnet::usertools_access($stuname,$studom,'portfolio')) { |
|
$filesfrom = 'uploadonly'; |
|
} |
|
$result.=&Apache::inputtags::file_selector($part,$id,$uploadedfiletypes, |
|
$filesfrom,undef,$maxfilesize); |
|
$result.='</table>'; |
|
} elsif ($target eq 'web' && |
|
$Apache::inputtags::status[-1] ne 'CAN_ANSWER') { |
|
my $part= $Apache::inputtags::part; |
|
my @msgs; |
|
if ($Apache::lonhomework::history{"resource.$part.$id.collaborators"} =~ /\S/) { |
|
my $coll= &HTML::Entities::encode($Apache::lonhomework::history{"resource.$part.$id.collaborators"},'<>&"'); |
|
$result .= '<td><i>'.&mt('Collaborated with [_1]',$coll).'</i></td>'; |
|
} |
|
|
|
my $file_submission = |
sub draft_row { |
&Apache::inputtags::show_past_file_submission($part,$id); |
my ($part,$id,$ncol,$uploadedfiletypes,$resptype) = @_; |
if ($file_submission) { |
my $status_text = &mt('Submission type'); |
$result .= '<td>'.$file_submission.'</td>'; |
if ($Apache::lonhomework::history{"resource.$part.award"} eq 'DRAFT') { |
} |
$status_text .= '<br />'.&mt('(Currently -- draft)'); |
|
} |
|
my $closure; |
|
unless ($ncol || $uploadedfiletypes) { |
|
$closure = 1; |
|
} |
|
my %label = ( |
|
draft => { |
|
essayresponse => &mt('Save entries below (not submitted for credit yet)'), |
|
externalresponse => &mt('Save entries below (not submitted for grading yet)'), |
|
}, |
|
submit => { |
|
essayresponse => &mt('Submit entries below as answer to receive credit'), |
|
externalresponse => &mt('Submit entries below for grading'), |
|
} |
|
); |
|
return &Apache::lonhtmlcommon::row_title($status_text). |
|
'<fieldset class="LC_landmark">'. |
|
'<legend class="LC_visually_hidden">'.$status_text.'</legend>'. |
|
'<div><label><input type="radio" name="HWDRAFT'.$part.'_'.$id.'" value="yes" checked="checked" />'. |
|
' '.$label{'submit'}{$resptype}.'</label></div>'. |
|
'<div><label>'. |
|
'<input type="radio" name="HWDRAFT'.$part.'_'.$id.'" value="no" /> '. |
|
$label{'draft'}{$resptype}.'</label></div></fieldset>'. |
|
&Apache::lonhtmlcommon::row_closure($closure); |
|
} |
|
|
my $port_submission = |
sub get_collab_row { |
&Apache::inputtags::show_past_portfile_submission($part,$id); |
my ($part,$id,$coll,$ncol,$closure) = @_; |
if ($port_submission) { |
my $output = &Apache::lonhtmlcommon::row_title(&mt('Collaborators')). |
$result .= '<td>'.$port_submission.'</td>'; |
'<label>'. |
} |
&mt('Collaborators:').' <input type="text" size="70" max="80" name="HWCOL'. |
|
$part.'_'.$id.'" value="'.$coll.'" /><br />'. |
|
&mt('Enter a maximum of [quant,_1,collaborator] using username or username:domain, e.g. smithje or smithje:[_2].', |
|
$ncol,$env{'user.domain'}); |
|
if ($ncol > 1) { |
|
$output .= '<br />'.&mt('If entering more than one, use spaces to separate the collaborators.'); |
|
} |
|
$output .= '</label><br />'; |
|
$output .= &check_collaborators($ncol,$coll) if ($coll =~ /\w+/); |
|
$output .= &Apache::lonhtmlcommon::row_closure($closure); |
|
return $output; |
|
} |
|
|
if ($result ne '') { |
sub show_status_table { |
$result = |
my ($part,$id,$coll) = @_; |
'<table class="LC_pastsubmission"><tr>'.$result. |
my $output; |
'</tr></table>'; |
if ($coll) { |
} |
my $udom = $env{'user.domain'}; |
|
my $uname = $env{'user.name'}; |
|
my @collaborators; |
|
foreach my $possible_collaborator |
|
(split(/[,;\s]+/,$coll)) { |
|
$possible_collaborator =~ s/[\$\^\(\)]//g; |
|
next if ($possible_collaborator eq ''); |
|
my ($co_name,$co_dom) = split(/:/,$possible_collaborator); |
|
$co_dom = $udom if (! defined($co_dom) || $co_dom =~ /^domain$/i); |
|
next if ($co_name eq $uname && $co_dom eq $udom); |
|
push(@collaborators,$possible_collaborator); |
|
} |
|
if (@collaborators) { |
|
$output = '<div style="display: inline-block; float: left">'."\n". |
|
&Apache::loncommon::start_data_table(). |
|
&Apache::loncommon::data_table_caption(&mt('Collaborators'),'LC_filesub_status'). |
|
&Apache::loncommon::start_data_table_header_row(). |
|
'<th>'.&mt('Username').'</th>'. |
|
&Apache::loncommon::end_data_table_header_row()."\n"; |
|
foreach my $user (@collaborators) { |
|
$output .= &Apache::loncommon::start_data_table_row(). |
|
'<td>'.$user.'</td>'. |
|
&Apache::loncommon::end_data_table_row()."\n"; |
|
} |
|
$output .= &Apache::loncommon::end_data_table().'</div>'; |
|
} |
|
} |
|
my $current_files_display = |
|
&Apache::inputtags::current_file_submissions($part,$id,'',&mt('Submitted files')); |
|
if ($current_files_display) { |
|
$output .= '<div style="display: inline-block; float:left;">'. |
|
$current_files_display.'</div>'; |
|
} |
|
if ($output ne '') { |
|
return '<div style="padding:0;clear:both;margin:0;border:0"></div>'. |
|
$output. |
|
'<div style="padding:0;clear:both;margin:0;border:0"></div>'; |
} |
} |
return $result; |
return; |
} |
} |
|
|
sub end_essayresponse { |
sub end_essayresponse { |
Line 136 sub end_essayresponse {
|
Line 197 sub end_essayresponse {
|
my $increment = &Apache::response::repetition(); |
my $increment = &Apache::response::repetition(); |
my $result; |
my $result; |
if ( $target eq 'grade' ) { |
if ( $target eq 'grade' ) { |
# Deal with collaborators |
&get_collaborators($part,$id); |
my $collaborators = $env{'form.HWCOL'.$part.'_'.$id}; |
|
my $previous_list= &HTML::Entities::encode($Apache::lonhomework::history{"resource.$part.$id.collaborators"},'<>&"'); |
|
if ($collaborators ne $previous_list) { |
|
# &Apache::lonnet::logthis("New collaborators [$collaborators] [$previous_list]"); |
|
$Apache::lonhomework::results{"resource.$part.$id.collaborators"}=$collaborators; |
|
} |
|
# Scantron |
# Scantron |
if ( &Apache::response::submitted('scantron') ) { |
if ( &Apache::response::submitted('scantron') ) { |
$increment=&Apache::response::scored_response($part,$id); |
$increment=&Apache::response::scored_response($part,$id); |
} elsif ( &Apache::response::submitted() ) { |
} elsif ( &Apache::response::submitted() ) { |
my $response = $env{'form.HWVAL_'.$id}; |
my $response = $env{'form.HWVAL_'.$id}; |
my $filename = $env{'form.HWFILE'.$part.'_'.$id.'.filename'} || |
my $jspart=$part; |
|
$jspart=~s/\./_/g; |
|
my $filename = $env{'form.HWFILE'.$jspart.'_'.$id.'.filename'} || |
$env{'form.HWFILETOOBIG'.$part.'_'.$id}; |
$env{'form.HWFILETOOBIG'.$part.'_'.$id}; |
my $portfiles = $env{'form.HWPORT'.$part.'_'.$id}; |
my $portfiles = $env{'form.HWPORT'.$jspart.'_'.$id}; |
if (( $response =~ /[^\s]/) || ($filename =~ /[^\s]/) || ($portfiles =~ /[^\s]/)) { |
my @deletions = &Apache::loncommon::get_env_multiple('form.HWFILE'.$jspart.'_'.$id.'_delete'); |
|
my ($is_submit,$was_draft); |
|
if ($env{'form.HWDRAFT'.$part.'_'.$id} eq 'yes') { |
|
$is_submit = 1; |
|
} |
|
if ($Apache::lonhomework::history{"resource.$part.award"} eq 'DRAFT') { |
|
$was_draft = 1; |
|
} |
|
if (($response =~ /[^\s]/) || ($filename =~ /[^\s]/) || ($portfiles =~ /[^\s]/) || |
|
(@deletions > 0) || ($was_draft && $is_submit)) { |
my $award='DRAFT'; |
my $award='DRAFT'; |
if ($env{'form.HWDRAFT'.$part.'_'.$id} eq 'yes') { |
if ($env{'form.HWDRAFT'.$part.'_'.$id} eq 'yes') { |
if ($Apache::lonhomework::type eq 'anonsurvey') { |
if ($Apache::lonhomework::type eq 'anonsurvey') { |
Line 166 sub end_essayresponse {
|
Line 232 sub end_essayresponse {
|
} |
} |
my $uploadedflag=0; |
my $uploadedflag=0; |
my $totalsize=0; |
my $totalsize=0; |
&file_submission($part,$id,'filename',\$award,\$uploadedflag,\$totalsize); |
&file_submission($part,$id,\$award,\$uploadedflag,\$totalsize,\@deletions); |
&file_submission($part,$id,'portfiles',\$award,\$uploadedflag,\$totalsize); |
|
$Apache::lonhomework::results{"resource.$part.$id.submission"}=$response; |
$Apache::lonhomework::results{"resource.$part.$id.submission"}=$response; |
$Apache::lonhomework::results{"resource.$part.$id.awarddetail"}=$award; |
$Apache::lonhomework::results{"resource.$part.$id.awarddetail"}=$award; |
my %previous=&Apache::response::check_for_previous($response,$part,$id); |
my %previous=&Apache::response::check_for_previous($response,$part,$id); |
Line 189 sub end_essayresponse {
|
Line 254 sub end_essayresponse {
|
&escape($crsid)); |
&escape($crsid)); |
my $essayurl= |
my $essayurl= |
&Apache::lonnet::declutter($ENV{'REQUEST_URI'}); |
&Apache::lonnet::declutter($ENV{'REQUEST_URI'}); |
my ($adom,$aname,$apath)= |
if ($essayurl eq 'lib/templates/simpleproblem.problem') { |
($essayurl=~/^($LONCAPA::domain_re)\/($LONCAPA::username_re)\/(.*)$/); |
my %crsinfo = &Apache::lonnet::coursedescription($crsid); |
$apath=&escape($apath); |
my $cdom = $crsinfo{'domain'}; |
$apath=~s/\W/\_/gs; |
my $cnum = $crsinfo{'num'}; |
&Apache::lonnet::put('nohist_essay_'.$apath, |
my ($map,$id,$res) = &Apache::lonnet::decode_symb($symb); |
{ $akey => $response },$adom,$aname); |
if ($map =~ m{^\Quploaded/$cdom/$cnum/\E(default(?:|_\d+)\.(?:sequence|page))$}) { |
} |
my $apath = $1.'_'.$id; |
|
$apath=~s/\W/\_/gs; |
|
my $akey = join('.',&escape($name),&escape($domain)); |
|
&Apache::lonnet::put('nohist_essay_'.$apath, |
|
{ $akey => $response },$cdom,$cnum); |
|
} |
|
} else { |
|
my ($adom,$aname,$apath)= |
|
($essayurl=~/^($LONCAPA::domain_re)\/($LONCAPA::username_re)\/(.*)$/); |
|
$apath=&escape($apath); |
|
$apath=~s/\W/\_/gs; |
|
&Apache::lonnet::put('nohist_essay_'.$apath, |
|
{ $akey => $response },$adom,$aname); |
|
} |
|
} |
} |
} |
} |
} |
} |
} |
} elsif ($target eq 'edit') { |
} elsif ($target eq 'edit') { |
$result.=&Apache::edit::end_table(); |
$result.=&Apache::edit::end_table(); |
|
|
Line 234 sub end_essayresponse {
|
Line 313 sub end_essayresponse {
|
return $result; |
return $result; |
} |
} |
|
|
|
sub get_collaborators { |
|
my ($part,$id) = @_; |
|
my $collaborators = $env{'form.HWCOL'.$part.'_'.$id}; |
|
my $previous_list= &HTML::Entities::encode($Apache::lonhomework::history{"resource.$part.$id.collaborators"},'<>&"' |
|
); |
|
if ($collaborators ne $previous_list) { |
|
$Apache::lonhomework::results{"resource.$part.$id.collaborators"}=$collaborators; |
|
} |
|
} |
|
|
sub format_prior_response { |
sub format_prior_response { |
my ($mode,$answer,$other_data) = @_; |
my ($mode,$answer,$other_data) = @_; |
my $output; |
my $output; |
Line 258 sub format_prior_response {
|
Line 347 sub format_prior_response {
|
} |
} |
if ($answer =~ /\S/) { |
if ($answer =~ /\S/) { |
$output.='<p>'.&mt('Submitted text'). |
$output.='<p>'.&mt('Submitted text'). |
'<blockquote>'.$answer.'</blockquote></p>'; |
'<blockquote>'.&HTML::Entities::encode($answer, '"<>&').'</blockquote></p>'; |
} |
} |
|
|
return '<div class="LC_prior_essay">'.$output.'</div>'; |
return '<div class="LC_prior_essay">'.$output.'</div>'; |
} |
} |
|
|
sub file_submission { |
sub file_submission { |
my ($part,$id,$which,$award,$uploadedflag,$totalsize)=@_; |
my ($part,$id,$award,$uploadedflag,$totalsize,$deletions,$context,$info)=@_; |
my $files; |
my $files; |
my $jspart=$part; |
my $jspart=$part; |
$jspart=~s/\./_/g; |
$jspart=~s/\./_/g; |
if ($which eq 'portfiles') { |
my ($symb,$crsid,$udom,$uname) = &Apache::lonnet::whichuser(); |
$files= $env{'form.HWPORT'.$jspart.'_'.$id}; |
my %crsinfo = &Apache::lonnet::coursedescription($crsid); |
} elsif ($which eq 'filename') { |
my $cdom = $crsinfo{'domain'}; |
if ($env{'form.HWFILETOOBIG'.$jspart.'_'.$id} ne '') { |
my $cnum = $crsinfo{'num'}; |
$$award = 'EXCESS_FILESIZE'; |
my (@portfiles,$uploadedurl,@submitted_portfiles,$submitted_upload, |
return; |
@acceptable_portfiles,$acceptable_upload,@accepted_portfiles, |
} else { |
$accepted_upload,@savedportfiles,$stored_upload,@tolock, |
$files = $env{'form.HWFILE'.$jspart.'_'.$id.'.filename'}; |
%port_delete,$uploaded_delete); |
|
if ($Apache::lonhomework::history{"resource.$part.$id.portfiles"} || |
|
$Apache::lonhomework::history{"resource.$part.$id.uploadedurl"}) { |
|
if ($Apache::lonhomework::history{"resource.$part.$id.portfiles"}) { |
|
my @possfiles = split(/,/,$Apache::lonhomework::history{"resource.$part.$id.portfiles"}); |
|
foreach my $file (@possfiles) { |
|
my ($path,$name) = ($file =~ m{^(.*/)([^/]+)$}); |
|
my ($origname,$version,$ext) = &Apache::lonnet::file_name_version_ext($name); |
|
unless ($version) { |
|
push(@portfiles,$file); |
|
} |
|
} |
|
} |
|
$uploadedurl = $Apache::lonhomework::history{"resource.$part.$id.uploadedurl"}; |
|
if (ref($deletions) eq 'ARRAY') { |
|
if (@{$deletions} > 0) { |
|
foreach my $file (@{$deletions}) { |
|
$file = &HTML::Entities::decode($file); |
|
if (grep(/^\Q$file\E$/,@portfiles)) { |
|
$port_delete{$file} = 1; |
|
} elsif ($file =~ m{^/uploaded/\Q$udom\E/\Q$uname\E/essayresponse/\Q$cdom\E/\Q$cnum\E/}) { |
|
$uploaded_delete = $file; |
|
} elsif ($file =~ m{^/uploaded/\Q$udom\E/\Q$uname\E/essayresponse/[^/]+$}) { |
|
$uploaded_delete = $file; |
|
} |
|
} |
|
} |
|
} |
|
foreach my $current (@portfiles) { |
|
unless ($port_delete{$current}) { |
|
push(@savedportfiles,$current); |
|
} |
|
} |
|
if ($uploaded_delete) { |
|
if ($uploaded_delete eq $uploadedurl) { |
|
$Apache::lonhomework::results{"resource.$part.$id.uploadedfile"} = ""; |
|
$Apache::lonhomework::results{"resource.$part.$id.uploadedurl"} = ""; |
|
} else { |
|
undef($uploaded_delete); |
|
} |
} |
} |
} |
} |
my ($symb,$crsid,$udom,$uname)=&Apache::lonnet::whichuser(); |
if ($env{'form.HWPORT'.$jspart.'_'.$id} ne '') { |
if ($files =~ /[^\s]/) { |
my $newfiles= $env{'form.HWPORT'.$jspart.'_'.$id}; |
$files =~s/,$//; |
$newfiles =~s/,$//; |
my (@submitted_files,@acceptable_files,@accepted_files); |
if ($newfiles =~ /[^\s]/) { |
if ($which eq 'portfiles') { |
foreach my $file (split(/\s*,\s*/,$newfiles)) { |
@submitted_files = split(/\s*,\s*/,$files); |
if ($file =~ /[^\s]/) { |
} else { |
push(@submitted_portfiles,$file); |
@submitted_files = ($files); |
} |
|
} |
|
} |
|
} |
|
if ($env{'form.HWFILETOOBIG'.$part.'_'.$id} ne '') { |
|
$$award = 'EXCESS_FILESIZE'; |
|
} elsif ($env{'form.HWFILE'.$jspart.'_'.$id.'.filename'} ne '') { |
|
my $newfile = $env{'form.HWFILE'.$jspart.'_'.$id.'.filename'}; |
|
if ($newfile =~ /[^\s]/) { |
|
$submitted_upload = $newfile; |
} |
} |
my $uploadedfiletypes= |
} |
|
if (@savedportfiles) { |
|
foreach my $file (reverse(@savedportfiles)) { |
|
unless(grep(/^\Q$file\E$/,@submitted_portfiles)) { |
|
unshift(@submitted_portfiles,$file); |
|
} |
|
} |
|
} |
|
if (@submitted_portfiles || $submitted_upload) { |
|
my $uploadedfiletypes= |
&Apache::lonnet::EXT("resource.$part".'_'."$id.uploadedfiletypes"); |
&Apache::lonnet::EXT("resource.$part".'_'."$id.uploadedfiletypes"); |
if ($uploadedfiletypes ne '') { |
if ($uploadedfiletypes ne '') { |
$uploadedfiletypes=~s/[^\w\,]//g; |
$uploadedfiletypes=~s/[^\w\,]//g; |
$uploadedfiletypes=','.$uploadedfiletypes.','; |
$uploadedfiletypes=','.$uploadedfiletypes.','; |
foreach my $file (@submitted_files) { |
if (@submitted_portfiles) { |
my ($extension)=($file=~/\.(\w+)$/); |
foreach my $file (@submitted_portfiles) { |
if ($uploadedfiletypes=~/\,\s*\Q$extension\E\s*\,/i) { |
my ($extension)=($file=~/\.(\w+)$/); |
push(@acceptable_files,$file); |
if ($uploadedfiletypes=~/\,\s*\Q$extension\E\s*\,/i) { |
|
push(@acceptable_portfiles,$file); |
|
} |
|
} |
|
} |
|
if ($submitted_upload) { |
|
my ($upload_ext)=($submitted_upload=~/\.(\w+)$/); |
|
if ($uploadedfiletypes=~/\,\s*\Q$upload_ext\E\s*\,/i) { |
|
$acceptable_upload = $submitted_upload; |
} else { |
} else { |
$$award='INVALID_FILETYPE'; |
$$award='INVALID_FILETYPE'; |
if ($which eq 'filename') { |
&delete_form_items($jspart,$id); |
&delete_form_items($jspart,$id); |
|
} |
|
} |
} |
} |
} |
} else { |
} else { |
@acceptable_files = @submitted_files; |
@acceptable_portfiles = @submitted_portfiles; |
|
$acceptable_upload = $submitted_upload; |
} |
} |
|
} |
|
if ((@acceptable_portfiles) || ($acceptable_upload ne '')) { |
my $maxfilesize=&Apache::lonnet::EXT("resource.$part".'_'."$id.maxfilesize"); |
my $maxfilesize=&Apache::lonnet::EXT("resource.$part".'_'."$id.maxfilesize"); |
if (!$maxfilesize) { |
if (!$maxfilesize) { |
$maxfilesize = 10.0; #FIXME This should become a domain configuration |
$maxfilesize = 10.0; #FIXME This should become a domain configuration |
} |
} |
my %dirlist; |
my %dirlist; |
foreach my $file (@acceptable_files) { |
if (@acceptable_portfiles) { |
if ($which eq 'filename') { |
foreach my $file (@acceptable_portfiles) { |
if (ref($totalsize)) { |
|
$$totalsize += $env{'form.HWFILESIZE'.$jspart.'_'.$id}; |
|
} |
|
} else { |
|
my ($path,$filename) = ($file =~ m{^(.*/)([^/]+)$}); |
my ($path,$filename) = ($file =~ m{^(.*/)([^/]+)$}); |
my $fullpath = '/userfiles/portfolio'.$path; |
my $fullpath = '/userfiles/portfolio'.$path; |
if (!exists($dirlist{$fullpath})) { |
if (!exists($dirlist{$fullpath})) { |
my @list = &Apache::lonnet::dirlist($fullpath,$udom,$uname,1); |
my ($listref,$listerror) = |
$dirlist{$fullpath} = \@list; |
&Apache::lonnet::dirlist($fullpath,$udom,$uname,1); |
|
if (ref($listref) eq 'ARRAY') { |
|
$dirlist{$fullpath} = $listref; |
|
} |
} |
} |
if (ref($dirlist{$fullpath}) eq 'ARRAY') { |
if (ref($dirlist{$fullpath}) eq 'ARRAY') { |
foreach my $dir_line (@{$dirlist{$fullpath}}) { |
foreach my $dir_line (@{$dirlist{$fullpath}}) { |
my ($fname,$dom,undef,$testdir,undef,undef,undef,undef, |
my ($fname,$dom,undef,$testdir,undef,undef,undef,undef, |
$size,undef,$mtime,undef,undef,undef,$obs,undef) = |
$size,undef,$mtime,undef,undef,undef,$obs,undef) = |
split(/\&/,$dir_line,16); |
split(/\&/,$dir_line,16); |
if ($filename eq $fname) { |
if ($filename eq $fname) { |
my $mbsize = $size/(1024.0*1024.0); |
my $mbsize = $size/(1024.0*1024.0); |
Line 338 sub file_submission {
|
Line 492 sub file_submission {
|
} |
} |
} |
} |
} |
} |
} |
if (ref($totalsize)) { |
if (ref($totalsize)) { |
if ($$totalsize > $maxfilesize) { |
if ($$totalsize > $maxfilesize) { |
$$award='EXCESS_FILESIZE'; |
$$award='EXCESS_FILESIZE'; |
|
if ($which eq 'filename') { |
|
&delete_form_items($jspart,$id); |
&delete_form_items($jspart,$id); |
|
} else { |
|
push(@accepted_portfiles,$file); |
} |
} |
last; |
|
} else { |
} else { |
push(@accepted_files,$file); |
push(@accepted_portfiles,$file); |
} |
} |
} else { |
|
push(@accepted_files,$file); |
|
} |
} |
} |
} |
if ($which eq 'portfiles') { |
if ($acceptable_upload ne '') { |
my @to_mark; |
if (ref($totalsize)) { |
if ($Apache::lonhomework::results{"resource.$part.$id.portfiles"}) { |
$$totalsize += $env{'form.HWFILESIZE'.$jspart.'_'.$id}; |
@to_mark = ($Apache::lonhomework::results{"resource.$part.$id.portfiles"}); |
if ($$totalsize > $maxfilesize) { |
} |
$$award='EXCESS_FILESIZE'; |
if (@accepted_files) { |
delete($env{'form.HWFILE'.$jspart.'_'.$id}); |
if ($Apache::lonhomework::results{"resource.$part.$id.portfiles"}) { |
} else { |
$Apache::lonhomework::results{"resource.$part.$id.$which"} .= ','; |
$accepted_upload = $acceptable_upload; |
} |
} |
$Apache::lonhomework::results{"resource.$part.$id.$which"}.=join(',',@accepted_files); |
} else { |
push(@to_mark,@accepted_files); |
$accepted_upload = $acceptable_upload; |
} |
|
&Apache::lonnet::unmark_as_readonly($udom,$uname,[$symb,$crsid]); |
|
&Apache::lonnet::mark_as_readonly($udom,$uname,\@to_mark,[$symb,$crsid]); |
|
&Apache::lonnet::clear_selected_files($uname); |
|
} |
|
if (($$award eq 'INVALID_FILETYPE') || ($$award eq 'EXCESS_FILESIZE')) { |
|
if ($which eq 'filename') { |
|
delete($env{'form.HWFILE'.$jspart.'_'.$id}); |
|
} |
} |
return; |
|
} |
} |
if (ref($uploadedflag)) { |
} |
$$uploadedflag=1; |
if ($accepted_upload ne '') { |
} |
my ($path,$multiresp) = |
if ($which eq 'filename') { |
&Apache::loncommon::get_turnedin_filepath($symb,$uname,$udom, |
my $cleanpart = $part; |
'submission'); |
$cleanpart =~ s/\W/_/g; |
if ($path eq '') { |
my $cleanid = $id; |
$$award = 'INTERNAL_ERROR'; |
$cleanid =~ s/\W/_/g; |
} else { |
my ($map,$resid,$resurl)=&Apache::lonnet::decode_symb($symb); |
if ($multiresp) { |
my %crsdesc = &Apache::lonnet::coursedescription($crsid); |
$path .= '/'.$jspart.'_'.$id; |
my $turnindir; |
|
my %userhash = &Apache::lonnet::userenvironment($udom,$uname,'turnindir'); |
|
$turnindir = $userhash{'turnindir'}; |
|
if ($turnindir eq '') { |
|
$turnindir = &mt('turned in'); |
|
$turnindir =~ s/\W+/_/g; |
|
my %newhash = ( |
|
'turnindir' => $turnindir, |
|
); |
|
&Apache::lonnet::put('environment',\%newhash,$udom,$uname); |
|
} |
} |
my $prefix = 'portfolio'; |
my $prefix = 'portfolio'; |
my $path = '/'.$turnindir.'/'; |
|
my $crsname = $crsdesc{'description'}; |
|
my $restitle=&Apache::lonnet::gettitle($symb); |
|
foreach my $item ($crsname,$restitle) { |
|
$item =~ s/\W+/_/g; |
|
} |
|
if ($crsname eq '') { |
|
$crsname = $crsid; |
|
} |
|
if ($restitle eq '') { |
|
$restitle = ($resurl =~ m{/[^/]+$}); |
|
if ($restitle eq '') { |
|
$restitle = time; |
|
} |
|
} |
|
my @pathitems; |
|
my $navmap = Apache::lonnavmaps::navmap->new(); |
|
if (defined($navmap)) { |
|
my $mapres = $navmap->getResourceByUrl($map); |
|
if (ref($mapres)) { |
|
my $pcslist = $mapres->map_hierarchy(); |
|
if ($pcslist ne '') { |
|
foreach my $pc (split(/,/,$pcslist)) { |
|
my $res = $navmap->getByMapPc($pc); |
|
if (ref($res)) { |
|
my $title = $res->compTitle(); |
|
$title =~ s/\W+/_/g; |
|
if ($title ne '') { |
|
push(@pathitems,$title); |
|
} |
|
} |
|
} |
|
} |
|
my $maptitle = $mapres->compTitle(); |
|
$maptitle =~ s/\W+/_/g; |
|
if ($maptitle ne '') { |
|
push(@pathitems,$maptitle); |
|
} |
|
} else { |
|
$$award = 'INTERNAL_ERROR'; |
|
} |
|
} else { |
|
$$award = 'INTERNAL_ERROR'; |
|
} |
|
push(@pathitems,$restitle); |
|
unshift(@pathitems,$crsname); |
|
$path .= join('/',@pathitems); |
|
my $formelement = 'HWFILE'.$jspart.'_'.$id; |
my $formelement = 'HWFILE'.$jspart.'_'.$id; |
my $fname = $env{'form.'.$formelement.'.filename'}; |
my $fname = &Apache::lonnet::clean_filename($env{'form.'.$formelement.'.filename'}); |
&Apache::lonnet::clean_filename($fname); |
|
my $url = '/uploaded/'.$udom.'/'.$uname.'/'.$prefix.$path.'/'.$fname; |
my $url = '/uploaded/'.$udom.'/'.$uname.'/'.$prefix.$path.'/'.$fname; |
my @stat = &Apache::lonnet::stat_file($url); |
my @stat = &Apache::lonnet::stat_file($url); |
|
my $conflicts = 0; |
if (@stat && $stat[0] ne 'no_such_dir') { |
if (@stat && $stat[0] ne 'no_such_dir') { |
$$award = 'FILENAME_INUSE'; |
my $current_permissions = |
} else { |
&Apache::lonnet::get_portfile_permissions($udom,$uname); |
|
if (ref($current_permissions) eq 'HASH') { |
|
if (ref($current_permissions->{$path.'/'.$fname}) eq 'ARRAY') { |
|
foreach my $record (@{$current_permissions->{$path.'/'.$fname}}) { |
|
if (ref($record) eq 'ARRAY') { |
|
next if (($record->[0] eq $symb) && |
|
($record->[1] eq $crsid)); |
|
$conflicts ++; |
|
} |
|
} |
|
} |
|
} |
|
if ($conflicts) { |
|
$$award = 'FILENAME_INUSE'; |
|
} |
|
} |
|
unless ($conflicts) { |
my ($mode,%allfiles,%codebase); |
my ($mode,%allfiles,%codebase); |
my $result = &Apache::lonnet::userfileupload($formelement,'', |
my $result = &Apache::lonnet::userfileupload($formelement,'', |
$prefix.$path,$mode,\%allfiles,\%codebase); |
$prefix.$path,$mode,\%allfiles,\%codebase); |
if ($result =~ m{^/uploaded/}) { |
if ($result =~ m{^/uploaded/}) { |
$Apache::lonhomework::results{"resource.$part.$id.portfiles"} .= $path.'/'.$fname; |
$stored_upload = $path.'/'.$fname; |
&Apache::lonnet::unmark_as_readonly($udom,$uname,[$symb,$crsid]); |
unless (grep(/^\Q$stored_upload\E$/,@accepted_portfiles)) { |
|
$Apache::lonhomework::results{"resource.$part.$id.portfiles"} = $stored_upload; |
&Apache::lonnet::mark_as_readonly($udom,$uname,[$path.'/'.$fname],[$symb,$crsid]); |
push(@tolock,$stored_upload); |
|
} |
} else { |
} else { |
$$award = 'INTERNAL_ERROR'; |
$$award = 'INTERNAL_ERROR'; |
} |
} |
} |
} |
delete($env{'form.HWFILE'.$jspart.'_'.$id}); |
} |
} |
delete($env{'form.HWFILE'.$jspart.'_'.$id}); |
} |
} |
|
if (@accepted_portfiles) { |
|
if ($Apache::lonhomework::results{"resource.$part.$id.portfiles"}) { |
|
$Apache::lonhomework::results{"resource.$part.$id.portfiles"} .= ','; |
|
} |
|
$Apache::lonhomework::results{"resource.$part.$id.portfiles"}.=join(',',@accepted_portfiles); |
|
push(@tolock,@accepted_portfiles); |
|
} |
|
if (!defined($Apache::lonhomework::results{"resource.$part.$id.portfiles"})) { |
|
if (keys(%port_delete) > 0) { |
|
$Apache::lonhomework::results{"resource.$part.$id.portfiles"} = ""; |
|
} |
|
} |
|
if (($Apache::lonhomework::history{"resource.$part.$id.portfiles"} ne |
|
$Apache::lonhomework::results{"resource.$part.$id.portfiles"}) || |
|
($uploaded_delete)) { |
|
if (ref($uploadedflag)) { |
|
$$uploadedflag=1; |
|
} |
|
} |
|
if ($context eq 'externalresponse') { |
|
my @todelete = map { "/uploaded/$udom/$uname/portfolio".$_; } keys(%port_delete); |
|
if (@tolock || @todelete) { |
|
if (ref($info) eq 'HASH') { |
|
if (($info->{'ip'}) && ($info->{'is_submit'})) { |
|
my @adds; |
|
if (@tolock) { |
|
@adds = map { "/uploaded/$udom/$uname/portfolio".$_; } @tolock; |
|
} |
|
&Apache::lonnet::automated_portfile_access('ip',\@adds,\@todelete,$info); |
|
} |
|
} |
|
} |
|
} |
|
&Apache::lonnet::unmark_as_readonly($udom,$uname,[$symb,$crsid]); |
|
&Apache::lonnet::mark_as_readonly($udom,$uname,[@tolock],[$symb,$crsid]); |
|
&Apache::lonnet::clear_selected_files($uname); |
|
return; |
} |
} |
|
|
sub delete_form_items { |
sub delete_form_items { |
Line 546 described at http://www.lon-capa.org.
|
Line 685 described at http://www.lon-capa.org.
|
|
|
=item start_essayresponse() |
=item start_essayresponse() |
|
|
|
=item draft_row() |
|
|
|
=item get_collab_row() |
|
|
|
=item show_status_table() |
|
|
=item end_essayresponse() |
=item end_essayresponse() |
|
|
|
=item get_collaborators() |
|
|
=item format_prior_response() |
=item format_prior_response() |
|
|
=item file_submission() |
=item file_submission() |