summary refs log tree commit diff stats
path: root/ranger
diff options
context:
space:
mode:
authorWojciech Siewierski <wojciech.siewierski@onet.pl>2016-01-24 22:52:16 +0100
committerWojciech Siewierski <wojciech.siewierski@onet.pl>2016-01-24 22:59:05 +0100
commit6c9e8657537bc03dbab0cbfbfe6e1ce3887759a7 (patch)
tree851b96863cd510c1f3346a4827c140ac4200d8ca /ranger
parentced55701672cb1dc81dfa2a40b76f27007f6c40a (diff)
downloadranger-6c9e8657537bc03dbab0cbfbfe6e1ce3887759a7.tar.gz
:delete refactoring
Fixes #458.

It also fixes the issue where fm.copy_buffer was not properly cleaned up
when fm.delete was called with arguments.
Diffstat (limited to 'ranger')
-rwxr-xr-x[-rw-r--r--]ranger/config/commands.py30
-rw-r--r--ranger/core/actions.py18
2 files changed, 20 insertions, 28 deletions
diff --git a/ranger/config/commands.py b/ranger/config/commands.py
index 6148edf2..98cf0cdf 100644..100755
--- a/ranger/config/commands.py
+++ b/ranger/config/commands.py
@@ -523,14 +523,9 @@ class delete(Command):
 
         def is_directory_with_files(f):
             import os.path
-            if isinstance(f, str):
-                return (os.path.isdir(f) and not os.path.islink(f) \
-                    and len(os.listdir(f)) > 0)
-            else:
-                return (f.is_directory and not f.is_link \
-                    and len(os.listdir(f.path)) > 0)
+            return (os.path.isdir(f) and not os.path.islink(f) \
+                and len(os.listdir(f)) > 0)
 
-        files = None
         if self.rest(1):
             files = shlex.split(self.rest(1))
             many_files = (len(files) > 1 or is_directory_with_files(files[0]))
@@ -541,16 +536,15 @@ class delete(Command):
                 self.fm.notify("Error: no file selected for deletion!", bad=True)
                 return
 
-            many_files = (cwd.marked_items or is_directory_with_files(cf))
+            # relative_path used for a user-friendly output in the confirmation.
+            files = [f.relative_path for f in self.fm.thistab.get_selection()]
+            many_files = (cwd.marked_items or is_directory_with_files(cf.path))
 
         confirm = self.fm.settings.confirm_on_delete
         if confirm != 'never' and (confirm != 'multiple' or many_files):
-            if files is None:
-                filename_list = (f.relative_path for f in self.fm.thistab.get_selection())
-            else:
-                filename_list = files
+            filename_list = files
             self.fm.ui.console.ask("Confirm deletion of: %s (y/N)" %
-                ', '.join(filename_list),
+                ', '.join(files),
                 partial(self._question_callback, files), ('n', 'N', 'y', 'Y'))
         else:
             # no need for a confirmation, just delete
@@ -561,10 +555,12 @@ class delete(Command):
 
     def _delete_with_tags(self, files):
         # Delete the selected files and untag them.
-        for f in self.fm.tags.tags:
-            if str(f).startswith(self.fm.thisfile.path):
-                self.fm.tags.remove(f)
-        self.fm.delete(files)
+        absolute_files = [os.path.abspath(f) for f in files]
+        for f in absolute_files:
+            for tag in self.fm.tags.tags:
+                if str(tag).startswith(os.path.abspath(f)):
+                    self.fm.tags.remove(tag)
+        self.fm.delete(absolute_files)
 
     def _question_callback(self, files, answer):
         if answer == 'y' or answer == 'Y':
diff --git a/ranger/core/actions.py b/ranger/core/actions.py
index 634bb7f8..e45326f3 100644
--- a/ranger/core/actions.py
+++ b/ranger/core/actions.py
@@ -1306,24 +1306,20 @@ class Actions(FileManagerAware, SettingsAware):
         self.loader.add(loadable, append=append)
         self.do_cut = False
 
-    def delete(self, files=None):
+    def delete(self, files):
         # XXX: warn when deleting mount points/unseen marked files?
         self.notify("Deleting!")
-        if files is None:
-            selected = self.thistab.get_selection()
-        else:
-            selected = [File(os.path.expanduser(f)) for f in files]
-        self.copy_buffer -= set(selected)
-        if selected:
-            for f in selected:
-                if isdir(f.path) and not os.path.islink(f.path):
+        self.copy_buffer = set(filter(lambda f: f.path not in files, self.copy_buffer))
+        if files:
+            for f in files:
+                if isdir(f) and not os.path.islink(f):
                     try:
-                        shutil.rmtree(f.path)
+                        shutil.rmtree(f)
                     except OSError as err:
                         self.notify(err)
                 else:
                     try:
-                        os.remove(f.path)
+                        os.remove(f)
                     except OSError as err:
                         self.notify(err)
         self.thistab.ensure_correct_pointer()