version 1.23, 2009/06/09 13:50:03
|
version 1.35, 2015/05/25 15:36:11
|
Line 40 use Apache::lonmeta;
|
Line 40 use Apache::lonmeta;
|
use Apache::File; |
use Apache::File; |
use Apache::lonlocal; |
use Apache::lonlocal; |
use HTML::Entities; |
use HTML::Entities; |
use LONCAPA; |
use LONCAPA qw(:DEFAULT :match); |
|
|
sub make_link { |
sub make_link { |
my ($filename, $listname) = @_; |
my ($filename, $listname) = @_; |
Line 50 sub make_link {
|
Line 50 sub make_link {
|
} |
} |
|
|
sub stage_2 { |
sub stage_2 { |
my ($r, $filename, $author, $listname) = @_; |
my ($r, $filename, $listname) = @_; |
my ($uname, $udom) = &Apache::loncacc::constructaccess('/~'.$author.'/',$r->dir_config('lonDefDomain')); |
my ($author)=($filename=~/\/res\/[^\/]+\/([^\/]+)\//); |
$r->print(&Apache::loncommon::start_page('Copy Problem Source Code to Construction Space') |
$r->print(&Apache::loncommon::start_page('Copy Problem Source Code to Authoring Space',undef, |
|
{'only_body' => 1,}) |
.&mt('Please enter the directory that you would like the source code to go into.') |
.&mt('Please enter the directory that you would like the source code to go into.') |
.'<p>' |
.'<p>' |
.&mt('Note: the path is in reference to the root of your construction space,' |
.&mt('Note: the path is in reference to the root of your Authoring Space,' |
.' and new directories will be automatically created.') |
.' and new directories will be automatically created.') |
.'</p>'); |
.'</p>'); |
$r->print('<form name="copy" action="/adm/source" target="_parent" method="post"> |
$r->print('<form name="copy" action="/adm/source" target="_parent" method="post"> |
Line 64 sub stage_2 {
|
Line 65 sub stage_2 {
|
<input type="hidden" name="action" value="copy_stage" /> |
<input type="hidden" name="action" value="copy_stage" /> |
<input type="text" size="50" name="newpath" value="/'.&mt('shared_source').'/'.$author.'" /> |
<input type="text" size="50" name="newpath" value="/'.&mt('shared_source').'/'.$author.'" /> |
<input type="submit" value="'.&mt('Copy').'" /> |
<input type="submit" value="'.&mt('Copy').'" /> |
</form>'); |
</form>'. |
|
&Apache::loncommon::end_page()); |
return OK; |
return OK; |
} |
} |
|
|
|
sub copy_author { |
sub copy_stage { |
|
my ($r, $filename, $listname, $newpath) = @_; |
|
|
|
#Figure out if we are author or co-author |
|
my $role; |
my $role; |
my $domain; |
my $domain; |
my $author_name; |
my $author_name; |
Line 83 sub copy_stage {
|
Line 81 sub copy_stage {
|
$domain = $env{'user.domain'}; |
$domain = $env{'user.domain'}; |
$author_name = $env{'user.name'}; |
$author_name = $env{'user.name'}; |
} |
} |
|
return ($role,$author_name,$domain); |
|
} |
|
|
my $path_to_new_file = '/home/'.$author_name.'/public_html/'.$newpath.'/'.$listname; |
|
#Just checking again for access as we want to make sure that it is really ok now that we have the real path |
|
|
|
my ($uname,$udom)= &Apache::loncacc::constructaccess($path_to_new_file,$domain); |
|
|
|
if (!$uname || !$udom) { |
sub copy_stage { |
$r->print(&Apache::loncommon::start_page('Not Allowed')); |
my ($r, $filename, $listname, $newpath) = @_; |
$r->print(&mt('Not allowed to create file [_1]', $path_to_new_file)); |
|
$r->print(&Apache::loncommon::end_page()); |
|
return; |
|
} |
|
|
|
|
my ($path_to_new_file,$uname,$udom) = &get_path_to_newfile($r,$newpath,$listname); |
|
|
#allowed |
#allowed |
$r->print(&Apache::loncommon::start_page('Copying Source')); |
if ($path_to_new_file) { |
my $result = &Apache::loncfile::exists($uname, $udom, $path_to_new_file); |
$r->print(&Apache::loncommon::start_page('Copying Source',undef,{'only_body' => 1})); |
$r->print($result); |
my $result = &Apache::loncfile::exists($uname, $udom, $path_to_new_file); |
if(($result) && ($result =~ m|published|) ) { |
$r->print($result); |
&delete_copy_file($r, $author_name, $newpath, $filename, $path_to_new_file, '1'); |
if (($result) && ($result =~ /published/)) { |
} elsif(($result) && ($result =~ m|exists!|)) { |
&delete_copy_file($r, $newpath, $filename, $path_to_new_file, '1'); |
&confirm($r, $author_name, $newpath, $filename, $path_to_new_file); |
} elsif (($result) && ($result =~ /exists\!/)) { |
} else { |
&confirm($r, $newpath, $filename, $listname); |
©_file($r, $author_name, $newpath, $filename, $path_to_new_file); |
} else { |
|
©_file($r, $newpath, $filename, $path_to_new_file); |
|
} |
|
$r->print(&Apache::loncommon::end_page()); |
} |
} |
|
return; |
$r->print(&Apache::loncommon::end_page()); |
|
} |
} |
|
|
sub confirm { |
sub confirm { |
my ($r, $author_name, $newpath, $filename, $path_to_new_file) = @_; |
my ($r, $newpath, $filename, $listname) = @_; |
$r->print("<b>Press delete to remove file and replace it with a copy of the source you are viewing</b><br /><br / >"); |
$r->print('<b>'.&mt('Press delete to remove file and replace it with a copy of the source you are viewing.').'</b><br /><br />'); |
$r->print('<form name="delete_confirm" action="/adm/source" target="_parent" method="post"> |
$r->print('<form name="delete_confirm" action="/adm/source" target="_parent" method="post"> |
<input type="hidden" name="filename" value="'.$filename.'" /> |
<input type="hidden" name="filename" value="'.$filename.'" /> |
<input type="hidden" name="path" value="'.$path_to_new_file.'" /> |
<input type="hidden" name="listname" value="'.$listname.'" /> |
<input type="hidden" name="author" value="'.$author_name.'" /> |
|
<input type="hidden" name="newpath" value="'.$newpath.'" /> |
<input type="hidden" name="newpath" value="'.$newpath.'" /> |
<input type="hidden" name="action" value="delete_confirm" /> |
<input type="hidden" name="action" value="delete_confirm" /> |
|
|
<input type="submit" value="Delete" /> |
<input type="submit" value="Delete" /> |
</form>'); |
</form>'); |
|
return; |
} |
} |
|
|
sub delete_copy_file { |
sub delete_copy_file { |
my ($r, $author_name, $newpath, $filename, $path_to_new_file, $type) = @_; |
my ($r, $newpath, $filename, $path_to_new_file, $type) = @_; |
if($type eq '1') { |
if ($type eq '1') { |
$r->print('<p><span class="LC_warning">' |
$r->print('<p><span class="LC_warning">' |
.&mt('Cannot delete non-obsolete published file.') |
.&mt('Cannot delete non-obsolete published file.') |
.'</span><br />' |
.'</span><br />' |
.&mt('Please use the code view in previous window to use shared code.') |
.&mt('Please use the code view in previous window to use shared code.') |
.'<br /><br />'); |
.'<br /><br />'); |
$r->print('<input type="button" value="Close Window" name="close"' |
$r->print('<form name="delete_done" action="/adm/source" target="_parent" method="post">' |
.' onClick="window.close()" />' |
.'<input type="button" value="'.&mt('Close Window').'" name="close"' |
.'</p>'); |
.' onclick="window.close()" />' |
|
.'</form></p>'); |
|
return; |
} else { |
} else { |
if(-e $path_to_new_file) { |
$r->print(&Apache::loncommon::start_page('Copying Source',undef,{'only_body' => 1})); |
unless(unlink($path_to_new_file)) { |
if (-e $path_to_new_file) { |
|
unless (unlink($path_to_new_file)) { |
$r->print('<p class="LC_error"">'.&mt('Error:').' '.$!.'</p>'); |
$r->print('<p class="LC_error"">'.&mt('Error:').' '.$!.'</p>'); |
return 0; |
return 0; |
} |
} |
} else { |
} else { |
$r->print('<p class="LC_error">'.&mt('No such file').'</p></form>'); |
$r->print('<p class="LC_error">'.&mt('No such file').'</p>'); |
return 0; |
return 0; |
} |
} |
©_file($r, $author_name, $newpath, $filename, $path_to_new_file); |
©_file($r, $newpath, $filename, $path_to_new_file); |
|
$r->print(&Apache::loncommon::end_page()); |
|
return; |
} |
} |
} |
} |
|
|
sub copy_file { |
sub copy_file { |
my ($r, $author_name, $newpath, $filename, $path_to_new_file) = @_; |
my ($r, $newpath, $filename, $path_to_new_file) = @_; |
$r->print("<b>Creating directories</b>"); |
$r->print('<b>'.&mt('Creating directories').'</b>'); |
my $path = '/home/'.$author_name.'/public_html/'; |
|
|
#Figure out if we are author or co-author |
|
my ($role,$author_name,$domain)=©_author(); |
|
|
|
my $path = $r->dir_config('lonDocRoot')."/priv/$domain/$author_name/"; |
my @directories = split(/\//,$newpath); |
my @directories = split(/\//,$newpath); |
|
|
foreach my $now_checking (@directories) { |
foreach my $now_checking (@directories) { |
if($now_checking ne '') { |
if($now_checking ne '') { |
$path = $path.'/'.$now_checking; |
$path = $path.'/'.$now_checking; |
Line 174 sub copy_file {
|
Line 178 sub copy_file {
|
} else { } #Just move along |
} else { } #Just move along |
|
|
} |
} |
$r->print("<br /><b>Copying File</b>"); |
$r->print('<br /><b>'.&mt('Copying File').'</b>'); |
my $problem_filename = $Apache::lonnet::perlvar{'lonDocRoot'}.$filename; |
my $problem_filename = $Apache::lonnet::perlvar{'lonDocRoot'}.$filename; |
my $file_output = &includemeta(&Apache::lonnet::getfile($problem_filename),$filename); |
my $file_output = &includemeta(&Apache::lonnet::getfile($problem_filename),$filename); |
my $fs=Apache::File->new(">$path_to_new_file"); |
my $fs=Apache::File->new(">$path_to_new_file"); |
Line 182 sub copy_file {
|
Line 186 sub copy_file {
|
print $fs $file_output; |
print $fs $file_output; |
} |
} |
$r->print("<br /><br />"); |
$r->print("<br /><br />"); |
$r->print('<input type="button" value="Close Window" name="close" onClick="window.close()" />'); |
$r->print('<form name="copied_file" action="/adm/source" target="_parent" method="post">' |
|
.'<input type="button" value="' |
|
.&mt('Close Window').'" name="close" onclick="window.close()" />' |
|
.'</form>'); |
#Some 1.3'ish feature is to include the derivative feature, will go here..' |
#Some 1.3'ish feature is to include the derivative feature, will go here..' |
|
return; |
} |
} |
|
|
sub print_item { |
sub print_item { |
my ($r, $filename) = @_; |
my ($r,$filename,$listname) = @_; |
my $file_output = &includemeta(&Apache::lonnet::getfile($Apache::lonnet::perlvar{'lonDocRoot'}.$filename),$filename); |
my $file_output = |
my $count=0; |
&includemeta(&Apache::lonnet::getfile($Apache::lonnet::perlvar{'lonDocRoot'}.$filename), |
my $maxlength=-1; |
$filename); |
foreach (split ("\n", $file_output)) { |
$r->print(&Apache::loncommon::start_page('View Source Code',undef, |
$count+=int(length($_)/79); |
{'only_body' => 1})); |
$count++; |
if ($file_output ne '') { |
if (length($_) > $maxlength) { |
my $access_to_cstr; |
$maxlength = length($_); |
my $lonhost = $r->dir_config('lonHostID'); |
|
if (&Apache::lonnet::is_library($lonhost)) { |
|
my @possdoms = &Apache::lonnet::current_machine_domains(); |
|
foreach my $dom (@possdoms) { |
|
if ($env{"user.role.au./$dom/"}) { |
|
$access_to_cstr = 1; |
|
last; |
|
} |
|
} |
|
unless ($access_to_cstr) { |
|
foreach my $key (keys(%env)) { |
|
if ($key =~ m{^\Quser.role.ca./\E($match_domain)/}) { |
|
my $adom = $1; |
|
if (grep(/^\Q$adom\E$/,@possdoms)) { |
|
$access_to_cstr = 1; |
|
last; |
|
} |
|
} |
|
} |
|
} |
|
if ($access_to_cstr) { |
|
$r->print(' |
|
<form name="copy" action="/adm/source" target="_parent" method="post"> |
|
<input type="button" value="'.&mt('Close Window').'" name="close" onclick="window.close();" /> |
|
<input type="hidden" name="filename" value="'.$filename.'" /> |
|
<input type="hidden" name="listname" value="'.$listname.'" /> |
|
<input type="hidden" name="action" value="stage2" /> |
|
<input type="submit" value="'.&mt('Copy to Authoring Space').'" /> |
|
</form><hr /> |
|
'); |
|
} else { |
|
$r->print('<p><span class="LC_info">'. |
|
&mt('Source code is displayed, but you can not copy to Authoring Space, as you do not have an author or co-author role on this server.'). |
|
'</span></p><a href="javascript:window.close();">'.&mt('Close Window'). |
|
'</a><br /><hr />' |
|
); |
|
} |
|
} else { |
|
$r->print('<p><span class="LC_info">'. |
|
&mt('Source code is displayed, but you can not copy to Authoring Space on this server.'). |
|
'</span></p><a href="javascript:window.close();">'.&mt('Close Window'). |
|
'</a><br /><hr />' |
|
); |
|
|
|
} |
|
my $count=0; |
|
my $maxlength=-1; |
|
foreach (split ("\n", $file_output)) { |
|
$count+=int(length($_)/79); |
|
$count++; |
|
if (length($_) > $maxlength) { |
|
$maxlength = length($_); |
|
} |
} |
} |
|
my $rows = $count; |
|
my $cols = $maxlength; |
|
$r->print('<form name="showsrc" action="" method="post" onsubmit="return false">'."\n". |
|
'<textarea rows="'.$rows.'" cols="'.$cols.'" name="editxmltext">'. |
|
&HTML::Entities::encode($file_output,'<>&"').'</textarea></form>'); |
|
} else { |
|
$r->print('<p class="LC_warning">'. |
|
&mt('Unable to retrieve file contents.'). |
|
'</p><a href="javascript:window.close();">'.&mt('Close Window').'</a>' |
|
); |
} |
} |
my $rows = $count; |
$r->print(&Apache::loncommon::end_page()); |
my $cols = $maxlength; |
return; |
$r->print('<textarea rows="'.$rows.'" cols="'.$cols.'" name="editxmltext">'. |
|
&HTML::Entities::encode($file_output,'<>&"').'</textarea>'); |
|
return OK; |
|
|
|
} |
} |
|
|
sub includemeta { |
sub includemeta { |
Line 220 sub includemeta {
|
Line 286 sub includemeta {
|
} else { |
} else { |
$file_output=~s/(\<(?:html|problem)[^\>]*\>)/$1\n\<meta name=\"isbasedontime\" content=\"\Q$copytime\E\" \/\>/i; |
$file_output=~s/(\<(?:html|problem)[^\>]*\>)/$1\n\<meta name=\"isbasedontime\" content=\"\Q$copytime\E\" \/\>/i; |
} |
} |
return $file_output; |
if ($file_output eq '-1') { |
|
return; |
|
} else { |
|
return $file_output; |
|
} |
|
} |
|
|
|
sub get_path_to_newfile { |
|
my ($r,$newpath,$listname) = @_; |
|
|
|
#Figure out if we are author or co-author |
|
my ($role,$author_name,$domain) = ©_author(); |
|
|
|
# Construct path to copy and filter out any possibly nasty stuff |
|
my $path = $r->dir_config('lonDocRoot')."/priv/$domain/$author_name/"; |
|
my $path_to_new_file = $path."$newpath/$listname"; |
|
$path_to_new_file=~s/\.\.//g; |
|
$path_to_new_file=~s/\~//g; |
|
$path_to_new_file=~s/\/+/\//g; |
|
|
|
#Just checking again for access as we want to make sure that it is really ok |
|
#now that we have the real path |
|
|
|
my ($uname,$udom)= &Apache::lonnet::constructaccess($path_to_new_file); |
|
|
|
if (!$uname || !$udom) { |
|
$r->print(&Apache::loncommon::start_page('Not Allowed',undef,{'only_body' => 1})); |
|
$r->print(&mt('Not allowed to create file [_1]', $path_to_new_file)); |
|
$r->print(&Apache::loncommon::end_page()); |
|
if (wantarray) { |
|
return(); |
|
} else { |
|
return; |
|
} |
|
} |
|
if (wantarray) { |
|
return ($path_to_new_file,$uname,$udom); |
|
} else { |
|
return $path_to_new_file; |
|
} |
} |
} |
|
|
sub handler { |
sub handler { |
Line 229 sub handler {
|
Line 334 sub handler {
|
['filename','listname']); |
['filename','listname']); |
my $filename = $env{'form.filename'}; |
my $filename = $env{'form.filename'}; |
my $listname = $env{'form.listname'}; |
my $listname = $env{'form.listname'}; |
|
|
my $source = &Apache::lonnet::metadata($filename,'sourceavail'); |
my $source = &Apache::lonnet::metadata($filename,'sourceavail'); |
if ($source ne 'open') { |
if ($source ne 'open') { |
$env{'user.error.msg'}="$filename:cre:1:1:Source code not available"; |
$env{'user.error.msg'}="$filename:cre:1:1:Source code not available"; |
return HTTP_NOT_ACCEPTABLE; |
return HTTP_NOT_ACCEPTABLE; |
} |
} |
unless ((&Apache::lonnet::allowed('bre',$filename)) && |
unless (&Apache::lonnet::allowed('bre',$filename)) { |
(&Apache::lonnet::allowed('cre','/'))) { |
|
$env{'user.error.msg'}="$filename:bre:1:1:Access to resource denied"; |
$env{'user.error.msg'}="$filename:bre:1:1:Access to resource denied"; |
return HTTP_NOT_ACCEPTABLE; |
return HTTP_NOT_ACCEPTABLE; |
} |
} |
|
unless (&Apache::lonnet::allowed('cre','/')) { |
|
$env{'user.error.msg'}="$filename:cre:1:1:Access to source code denied"; |
|
return HTTP_NOT_ACCEPTABLE; |
|
} |
|
my $newpath = $env{'form.newpath'}; |
|
|
&Apache::loncommon::content_type($r,'text/html'); |
&Apache::loncommon::content_type($r,'text/html'); |
$r->send_http_header; |
$r->send_http_header; |
|
|
if ($env{'form.action'} eq 'stage2') { |
if ($env{'form.action'} eq 'stage2') { |
my $author = &Apache::lonnet::metadata($filename,'authorspace'); |
&stage_2($r,$filename,$listname); |
#strip the domain of the author name |
|
if ($author =~ /:/) { |
|
($author) = split(/:/,$author); |
|
} else { |
|
($author) = split(/@/,$author); |
|
} |
|
&stage_2($r, $env{'form.filename'}, $author, $listname); |
|
} elsif($env{'form.action'} eq 'copy_stage') { |
} elsif($env{'form.action'} eq 'copy_stage') { |
©_stage($r, $filename,$env{'form.listname'},$env{'form.newpath'}); |
©_stage($r,$filename,$listname,$newpath); |
} elsif($env{'form.action'} eq 'delete_confirm') { |
} elsif($env{'form.action'} eq 'delete_confirm') { |
&delete_copy_file($r, $env{'form.author'}, $env{'form.newpath'}, $env{'form.filename'}, $env{'form.path'}, '0'); |
my $path_to_new_file = &get_path_to_newfile($r,$newpath,$listname); |
|
if ($path_to_new_file) { |
|
&delete_copy_file($r, $newpath, $filename, $path_to_new_file, '0'); |
|
} |
} else { |
} else { |
$r->print('<form name="copy" action="/adm/source" target="_parent" method="post"> |
&print_item($r,$filename,$listname); |
<input type="button" value="'.&mt('Close Window').'" name="close" onClick="window.close()" /> |
|
<input type="hidden" name="filename" value="'.$filename.'" /> |
|
<input type="hidden" name="listname" value="'.$listname.'" /> |
|
<input type="hidden" name="action" value="stage2" /> |
|
<input type="submit" value="'.&mt('Copy to Construction Space').'" /> |
|
</form>'); |
|
$r->print('<hr />'); |
|
&print_item($r, $env{'form.filename'}); |
|
} |
} |
return OK; |
return OK; |
} |
} |