X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=scripts%2Ffiles%2Fsafedel.pl;h=ef4ffcb4aa4fb662f6d3e42aa4a7a9a1ed272a98;hb=8ed08d7d44f80edb3067d1880593491f14692f18;hp=ab64a2780816b773369223d4af1f538552066eca;hpb=8f4a9f51cb240261e612504322fa250adf184884;p=feisty_meow.git diff --git a/scripts/files/safedel.pl b/scripts/files/safedel.pl index ab64a278..ef4ffcb4 100644 --- a/scripts/files/safedel.pl +++ b/scripts/files/safedel.pl @@ -20,12 +20,12 @@ ############################################################################### require Cwd; -require "ctime.pl"; require "filename_helper.pl"; require "inc_num.pl"; -require "importenv.pl"; require "zap_the_dir.pl"; +use Env qw(TMP OS DEBUG_FEISTY_MEOW); + #hmmm: need a usage statement. if ($#ARGV < 0) { @@ -44,12 +44,6 @@ if ($OS eq "UNIX") { die "The Operating System variable (OS) is not set.\n"; } -# The zip program has slightly different parameters depending on the -# version that will be run. The DOS version needs to see a -P to remember -# the directory names. -$use_path = ''; -$wildcard = ""; # used for reasonable zips, like os/2 or unix. - # set the filename used for numbering. local($NUMBER_FILE) = "$TMP/aa_safedel.num"; @@ -72,9 +66,15 @@ sub safedel { # print "final list of whackees: @to_delete\n"; # we store the deleted files in a directory under the temporary directory. - $temp_subdir = $TMP . "/zz_del_keep"; + if (! -d $TMP) { + mkdir "$TMP", 0700; + if (! -d $TMP) { + die "the TMP directory $TMP could not be created!\n"; + } + } + $temp_subdir = $TMP . "/zz_safedel_keep"; if (! -d $temp_subdir) { - mkdir "$temp_subdir", 0777; + mkdir "$temp_subdir", 0700; # create the subdirectory under temp if missing. if (! -d $temp_subdir) { die "the directory $temp_subdir could not be created!\n"; @@ -83,7 +83,6 @@ sub safedel { # reset the list of objects actually whacked. local(@deleted) = (); -# print "deleted list is @deleted\n"; # iterate over the files that we have been told to nuke. foreach $file (@to_delete) { @@ -92,42 +91,60 @@ sub safedel { if (substr($file, length($file) - 1, 1) eq ":") { die "removing the root directory of a drive is not permitted!"; } + +#print "file to whack: '$file'\n"; + if ( ($file =~ /^.*\/\.$/) || ($file =~ /^.*\/\.\.$/) ) { print "ignoring attempt to remove current or parent directory.\n"; next; } - $tempfile = $temp_subdir . "/temp" . "$number"; -#print "tempfile is $tempfile; file is $file.\n"; + +#hmmm: extract this shared bit of code as new method (also in shared snarfer) + $date_tool = "date"; + local($datestamp) = `$date_tool +%Y-%m-%d-%H%M`; + while ($datestamp =~ /[\r\n]$/) { chop $datestamp; } + $archive_file = $temp_subdir . "/del-$number-" . $datestamp; +#print "archive_file is $archive_file; file is $file.\n"; + if (-d $file) { # ensure there aren't any read only files. - system("chmod -R u+rw \"$file\""); + system("chmod -R u+rw '$file'"); # store the directory in the trash storage. - system("$zip -rm $use_path $tempfile \"$file$wildcard\" $DEV_NULL"); + system("$zip -rm $archive_file '$file' $DEV_NULL"); # zip up the files into the safekeeper directory. # recursively unlink in case zip doesn't remove the empty dir. if (-d $file) { # remove the directory itself if possible, since zip did not. &recursively_zap_dirs($file); } - push(@deleted, "$file"); + push(@deleted, "\"$file\""); } elsif (-f $file) { +#print "about to chmod file\n"; + # make the file writable by our user if possible (which resets any + # prior permissions as long as we're the owner). + system("chmod u+rw '$file'"); # store the file in the trash storage. - system("chmod u+rw \"$file\""); - -#print "about to run: system [$zip -m$use_path $tempfile '$file' $DEV_NULL]"; - system("$zip -m$use_path $tempfile \"$file\" $DEV_NULL"); - push(@deleted, "$file"); +#print "about to run: system [$zip -m $archive_file '$file' $DEV_NULL]"; + system("$zip -m $archive_file '$file' $DEV_NULL"); + push(@deleted, "\"$file\""); } else { print "$0 cannot find \"$file\" to delete it.\n"; } } if (@deleted) { - print "Trashed [@deleted].\n"; - open(REPORT, ">>$TMP/zz_safedel.rpt"); + if ($DEBUG_FEISTY_MEOW != "") { + print "Trashed [@deleted].\n"; + } + open(REPORT, ">>$TMP/zz_safedel_report.txt"); - local($printable_date) = &ctime(time); + local($printable_date) = scalar(localtime()); +#&ctime(time); $printable_date =~ s/\n//g; - print REPORT $printable_date . " -- safedel: \"temp" . $number . ".zip\" <= [@deleted]\n"; + local($just_archived_filename) = `basename "$archive_file"`; + while ($just_archived_filename =~ /[\r\n]$/) { chop $just_archived_filename; } + print REPORT "\n"; + print REPORT $printable_date . " -- created \"" . $just_archived_filename . ".zip\"\n"; + print REPORT $printable_date . " -- from [@deleted]\n"; close(REPORT); } else { print "No files were deleted.\n";