%PDF- %PDF-
Direktori : /proc/self/root/usr/share/webmin/authentic-theme/extensions/file-manager/ |
Current File : //proc/self/root/usr/share/webmin/authentic-theme/extensions/file-manager/paste.cgi |
#!/usr/bin/perl # # Authentic Theme (https://github.com/authentic-theme/authentic-theme) # Copyright Ilia Rostovtsev <programming@rostovtsev.io> # Licensed under MIT (https://github.com/authentic-theme/authentic-theme/blob/master/LICENSE) # use strict; use File::Basename; our (%in, %request_uri, $cwd, $base, $path); require(dirname(__FILE__) . '/file-manager-lib.pm'); open(my $fh, "<" . &get_paste_buffer_file()) or die "Error: $!"; my @arr = <$fh>; close($fh); if (test_all_items_query()) { my @entries_list; my @entries_list_entries = get_entries_list(); push(@entries_list, $arr[0], $arr[1], @entries_list_entries); undef(@arr); @arr = @entries_list; } my $act = $arr[0]; my $dir = $arr[1]; chomp($act); chomp($dir); my $from = abs_path($base . $dir); my @errors; my $mv = ($act eq "copy" ? 0 : 1); my $fr = (length $request_uri{'ua'} ? 1 : 0); my $fo = ($request_uri{'ua'} eq '1' ? 1 : 0); for (my $i = 2; $i <= scalar(@arr) - 1; $i++) { chomp($arr[$i]); $arr[$i] = simplify_path($arr[$i]); my $out; if ((-e "$cwd/$arr[$i]") && $cwd ne $from && !$fr) { set_response('ep'); } else { $out = paster("$cwd", "$arr[$i]", "$from/$arr[$i]", "$cwd/$arr[$i]", $fo, $mv); } $out && push(@errors, $out); } if (scalar(@errors) > 0) { set_response('err'); redirect_local('list.cgi?path=' . urlize($path) . '&module=' . $in{'module'} . '&error=' . text('filemanager_paste_warning') . extra_query()); } else { set_response_count(scalar(@arr) - 2); redirect_local('list.cgi?path=' . urlize($path) . '&module=' . $in{'module'} . '&error=1' . extra_query()); }