2010-04-07 06:52:24 +00:00
|
|
|
# Copyright 2010 Hardcoded Software (http://www.hardcoded.net)
|
|
|
|
|
|
|
|
# This software is licensed under the "BSD" License as described in the "LICENSE" file,
|
|
|
|
# which should be included with this package. The terms are also available at
|
|
|
|
# http://www.hardcoded.net/licenses/bsd_license
|
|
|
|
|
2010-07-07 14:12:13 +00:00
|
|
|
|
2010-04-21 08:30:51 +00:00
|
|
|
import sys
|
|
|
|
import os
|
|
|
|
import os.path as op
|
2010-04-06 17:11:37 +00:00
|
|
|
import logging
|
2010-04-06 16:55:30 +00:00
|
|
|
|
2010-04-06 17:11:37 +00:00
|
|
|
CANDIDATES = [
|
|
|
|
'~/.local/share/Trash/files',
|
|
|
|
'~/.Trash',
|
|
|
|
]
|
|
|
|
|
|
|
|
for candidate in CANDIDATES:
|
|
|
|
candidate_path = op.expanduser(candidate)
|
|
|
|
if op.exists(candidate_path):
|
|
|
|
TRASH_PATH = candidate_path
|
|
|
|
break
|
|
|
|
else:
|
|
|
|
logging.warning("Can't find path for Trash")
|
|
|
|
TRASH_PATH = op.expanduser('~/.Trash')
|
2010-04-06 16:55:30 +00:00
|
|
|
|
2010-04-06 17:54:10 +00:00
|
|
|
EXTERNAL_CANDIDATES = [
|
|
|
|
'.Trash-1000/files',
|
|
|
|
'.Trash/files',
|
|
|
|
'.Trash-1000',
|
|
|
|
'.Trash',
|
|
|
|
]
|
2010-04-06 16:55:30 +00:00
|
|
|
|
2010-04-06 17:54:10 +00:00
|
|
|
def find_mount_point(path):
|
|
|
|
# Even if something's wrong, "/" is a mount point, so the loop will exit.
|
2010-07-10 04:46:19 +00:00
|
|
|
path = op.abspath(path) # Required to avoid infinite loop
|
2010-04-06 17:54:10 +00:00
|
|
|
while not op.ismount(path):
|
2010-07-10 04:46:19 +00:00
|
|
|
path = op.split(path)[0]
|
2010-04-06 17:54:10 +00:00
|
|
|
return path
|
|
|
|
|
|
|
|
def find_ext_volume_trash(volume_root):
|
|
|
|
for candidate in EXTERNAL_CANDIDATES:
|
|
|
|
candidate_path = op.join(volume_root, candidate)
|
|
|
|
if op.exists(candidate_path):
|
|
|
|
return candidate_path
|
|
|
|
else:
|
|
|
|
# Something's wrong here. Screw that, just create a .Trash folder
|
|
|
|
trash_path = op.join(volume_root, '.Trash')
|
|
|
|
os.mkdir(trash_path)
|
|
|
|
return trash_path
|
|
|
|
|
|
|
|
def move_without_conflict(src, dst):
|
|
|
|
filename = op.basename(src)
|
|
|
|
destpath = op.join(dst, filename)
|
2010-04-06 16:55:30 +00:00
|
|
|
counter = 0
|
|
|
|
while op.exists(destpath):
|
|
|
|
counter += 1
|
|
|
|
base_name, ext = op.splitext(filename)
|
|
|
|
new_filename = '{0} {1}{2}'.format(base_name, counter, ext)
|
2010-07-10 04:49:46 +00:00
|
|
|
destpath = op.join(dst, new_filename)
|
2010-04-06 17:54:10 +00:00
|
|
|
os.rename(src, destpath)
|
|
|
|
|
|
|
|
def send2trash(path):
|
2010-07-07 14:12:13 +00:00
|
|
|
if not isinstance(path, str):
|
|
|
|
path = str(path, sys.getfilesystemencoding())
|
2010-04-06 17:54:10 +00:00
|
|
|
try:
|
|
|
|
move_without_conflict(path, TRASH_PATH)
|
|
|
|
except OSError:
|
|
|
|
# We're probably on an external volume
|
|
|
|
mount_point = find_mount_point(path)
|
|
|
|
dest_trash = find_ext_volume_trash(mount_point)
|
|
|
|
move_without_conflict(path, dest_trash)
|