+ my $dir = upper_path($virtual);
+
+ return error($config->{'errors'}->{'remove_root'},'/') if($virtual eq '/');
+ return error($config->{'errors'}->{'no_delete'},$dir) unless(-w upper_path($physical));
+
+ if(-d $physical && not -l $physical)
+ {
+ # Remove a directory
+
+ if($data->{'cgi'}->param('confirmed'))
+ {
+ rmtree($physical);
+ return devedit_reload({command => 'show', file => $dir});
+ }
+ else
+ {
+ my $tpl = new Template;
+ $tpl->read_file($config->{'templates'}->{'confirm_rmdir'});
+
+ $tpl->set_var('DIR',encode_html($virtual));
+ $tpl->set_var('DIR_URL',escape($virtual));
+ $tpl->set_var('UPPER_DIR',encode_html($dir));
+ $tpl->set_var('UPPER_DIR_URL',escape($dir));
+ $tpl->set_var('URL',encode_html(equal_url($config->{'httproot'},$virtual)));
+ $tpl->set_var('SCRIPT',$script);
+
+ $tpl->parse;
+
+ my $output = header(-type => 'text/html');
+ $output .= $tpl->get_template;
+
+ return \$output;
+ }
+ }
+ else
+ {
+ # Remove a file
+
+ if($data->{'cgi'}->param('confirmed'))
+ {
+ unlink($physical) or return error($config->{'errors'}->{'delete_failed'},$dir,{FILE => $virtual});
+ return devedit_reload({command => 'show', file => $dir});
+ }
+ else
+ {
+ my $tpl = new Template;
+ $tpl->read_file($config->{'templates'}->{'confirm_rmfile'});
+
+ $tpl->set_var('FILE',encode_html($virtual));
+ $tpl->set_var('FILE_URL',escape($virtual));
+ $tpl->set_var('DIR',encode_html($dir));
+ $tpl->set_var('DIR_URL',escape($dir));
+ $tpl->set_var('URL',encode_html(equal_url($config->{'httproot'},$virtual)));
+ $tpl->set_var('SCRIPT',$script);
+
+ $tpl->parse;
+
+ my $output = header(-type => 'text/html');
+ $output .= $tpl->get_template;
+
+ return \$output;
+ }
+ }
+}
+
+# exec_remove_multi()
+#
+# Remove a file or a directory and return to directory view
+#
+# Params: 1. Reference to user input hash
+# 2. Reference to config hash
+#
+# Return: Output of the command (Scalar Reference)
+
+sub exec_remove_multi($$)
+{
+ my ($data,$config) = @_;
+ my $physical = $data->{'physical'};
+ my $virtual = $data->{'virtual'};
+ my $cgi = $data->{'cgi'};
+
+ my @files = $cgi->param('files');
+ my @new_files;
+
+ if(@files)
+ {
+ foreach my $file(@files)
+ {
+ # Filter out some "bad" files (e.g. files going up in the
+ # directory hierarchy or files containing slashes (it's too
+ # dangerous...)
+
+ next if($file =~ m!^\.+$!);
+ next if($file =~ m!/!);
+ next if($file =~ m!\\!);
+
+ push(@new_files,$file);
+ }
+ }