2017-08-04 00:52:19 +00:00
|
|
|
# Copyright 2017 Virgil Dupras
|
2010-04-07 06:52:24 +00:00
|
|
|
|
2017-08-04 00:47:58 +00:00
|
|
|
# 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
|
2010-04-07 06:52:24 +00:00
|
|
|
# http://www.hardcoded.net/licenses/bsd_license
|
|
|
|
|
2011-03-10 09:55:46 +00:00
|
|
|
# This is a reimplementation of plat_other.py with reference to the
|
|
|
|
# freedesktop.org trash specification:
|
|
|
|
# [1] http://www.freedesktop.org/wiki/Specifications/trash-spec
|
|
|
|
# [2] http://www.ramendik.ru/docs/trashspec.html
|
|
|
|
# See also:
|
|
|
|
# [3] http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html
|
|
|
|
#
|
|
|
|
# For external volumes this implementation will raise an exception if it can't
|
|
|
|
# find or create the user's trash directory.
|
2010-07-07 14:12:13 +00:00
|
|
|
|
2013-07-19 22:42:32 +00:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2018-02-06 22:28:47 +00:00
|
|
|
import errno
|
2010-04-21 08:30:51 +00:00
|
|
|
import sys
|
|
|
|
import os
|
|
|
|
import os.path as op
|
2011-03-10 09:55:46 +00:00
|
|
|
from datetime import datetime
|
2011-03-10 17:21:05 +00:00
|
|
|
import stat
|
2020-06-03 16:49:41 +00:00
|
|
|
|
2013-07-19 22:42:32 +00:00
|
|
|
try:
|
|
|
|
from urllib.parse import quote
|
|
|
|
except ImportError:
|
|
|
|
# Python 2
|
|
|
|
from urllib import quote
|
2010-04-06 16:55:30 +00:00
|
|
|
|
2017-08-04 00:47:58 +00:00
|
|
|
from .compat import text_type, environb
|
2018-02-06 22:28:47 +00:00
|
|
|
from .exceptions import TrashPermissionError
|
2017-07-07 20:09:16 +00:00
|
|
|
|
2017-08-01 11:26:09 +00:00
|
|
|
try:
|
2020-06-03 16:49:41 +00:00
|
|
|
fsencode = os.fsencode # Python 3
|
2017-08-01 11:26:09 +00:00
|
|
|
fsdecode = os.fsdecode
|
|
|
|
except AttributeError:
|
2020-06-03 16:49:41 +00:00
|
|
|
|
|
|
|
def fsencode(u): # Python 2
|
2017-08-01 11:26:09 +00:00
|
|
|
return u.encode(sys.getfilesystemencoding())
|
2020-06-03 16:49:41 +00:00
|
|
|
|
2017-08-01 11:26:09 +00:00
|
|
|
def fsdecode(b):
|
|
|
|
return b.decode(sys.getfilesystemencoding())
|
2020-06-03 16:49:41 +00:00
|
|
|
|
2017-08-01 11:26:09 +00:00
|
|
|
# The Python 3 versions are a bit smarter, handling surrogate escapes,
|
|
|
|
# but these should work in most cases.
|
|
|
|
|
2020-06-03 16:49:41 +00:00
|
|
|
FILES_DIR = b"files"
|
|
|
|
INFO_DIR = b"info"
|
|
|
|
INFO_SUFFIX = b".trashinfo"
|
2011-03-10 09:55:46 +00:00
|
|
|
|
|
|
|
# Default of ~/.local/share [3]
|
2020-06-03 16:49:41 +00:00
|
|
|
XDG_DATA_HOME = op.expanduser(environb.get(b"XDG_DATA_HOME", b"~/.local/share"))
|
|
|
|
HOMETRASH_B = op.join(XDG_DATA_HOME, b"Trash")
|
2017-08-01 11:26:09 +00:00
|
|
|
HOMETRASH = fsdecode(HOMETRASH_B)
|
2011-03-10 09:55:46 +00:00
|
|
|
|
|
|
|
uid = os.getuid()
|
2020-06-03 16:49:41 +00:00
|
|
|
TOPDIR_TRASH = b".Trash"
|
|
|
|
TOPDIR_FALLBACK = b".Trash-" + text_type(uid).encode("ascii")
|
|
|
|
|
2011-03-10 09:55:46 +00:00
|
|
|
|
|
|
|
def is_parent(parent, path):
|
2020-06-03 16:49:41 +00:00
|
|
|
path = op.realpath(path) # In case it's a symlink
|
2017-08-01 11:26:09 +00:00
|
|
|
if isinstance(path, text_type):
|
|
|
|
path = fsencode(path)
|
2011-03-12 10:48:19 +00:00
|
|
|
parent = op.realpath(parent)
|
2017-08-01 11:26:09 +00:00
|
|
|
if isinstance(parent, text_type):
|
|
|
|
parent = fsencode(parent)
|
2011-03-12 10:48:19 +00:00
|
|
|
return path.startswith(parent)
|
2011-03-10 09:55:46 +00:00
|
|
|
|
2020-06-03 16:49:41 +00:00
|
|
|
|
2011-03-10 09:55:46 +00:00
|
|
|
def format_date(date):
|
|
|
|
return date.strftime("%Y-%m-%dT%H:%M:%S")
|
|
|
|
|
2020-06-03 16:49:41 +00:00
|
|
|
|
2011-03-10 09:55:46 +00:00
|
|
|
def info_for(src, topdir):
|
2016-04-10 08:09:46 +00:00
|
|
|
# ...it MUST not include a ".." directory, and for files not "under" that
|
2011-03-10 09:55:46 +00:00
|
|
|
# directory, absolute pathnames must be used. [2]
|
2011-03-10 17:22:21 +00:00
|
|
|
if topdir is None or not is_parent(topdir, src):
|
2011-03-10 09:55:46 +00:00
|
|
|
src = op.abspath(src)
|
|
|
|
else:
|
|
|
|
src = op.relpath(src, topdir)
|
|
|
|
|
2020-06-03 16:49:41 +00:00
|
|
|
info = "[Trash Info]\n"
|
2011-03-10 19:56:19 +00:00
|
|
|
info += "Path=" + quote(src) + "\n"
|
2011-03-10 09:55:46 +00:00
|
|
|
info += "DeletionDate=" + format_date(datetime.now()) + "\n"
|
|
|
|
return info
|
|
|
|
|
2020-06-03 16:49:41 +00:00
|
|
|
|
2011-03-10 09:55:46 +00:00
|
|
|
def check_create(dir):
|
|
|
|
# use 0700 for paths [3]
|
|
|
|
if not op.exists(dir):
|
|
|
|
os.makedirs(dir, 0o700)
|
|
|
|
|
2020-06-03 16:49:41 +00:00
|
|
|
|
2011-03-10 09:55:46 +00:00
|
|
|
def trash_move(src, dst, topdir=None):
|
|
|
|
filename = op.basename(src)
|
|
|
|
filespath = op.join(dst, FILES_DIR)
|
|
|
|
infopath = op.join(dst, INFO_DIR)
|
|
|
|
base_name, ext = op.splitext(filename)
|
|
|
|
|
|
|
|
counter = 0
|
|
|
|
destname = filename
|
2020-06-03 16:49:41 +00:00
|
|
|
while op.exists(op.join(filespath, destname)) or op.exists(
|
|
|
|
op.join(infopath, destname + INFO_SUFFIX)
|
|
|
|
):
|
2011-03-10 09:55:46 +00:00
|
|
|
counter += 1
|
2020-06-03 16:49:41 +00:00
|
|
|
destname = base_name + b" " + text_type(counter).encode("ascii") + ext
|
2017-08-04 00:47:58 +00:00
|
|
|
|
2011-03-10 09:55:46 +00:00
|
|
|
check_create(filespath)
|
|
|
|
check_create(infopath)
|
2021-03-02 05:44:03 +00:00
|
|
|
|
2020-12-01 07:43:12 +00:00
|
|
|
with open(op.join(infopath, destname + INFO_SUFFIX), "w") as f:
|
|
|
|
f.write(info_for(src, topdir))
|
2020-07-23 01:57:15 +00:00
|
|
|
os.rename(src, op.join(filespath, destname))
|
2010-04-06 16:55:30 +00:00
|
|
|
|
2020-06-03 16:49:41 +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.
|
2011-03-13 18:38:03 +00:00
|
|
|
# Use realpath in case it's a symlink
|
2020-06-03 16:49:41 +00:00
|
|
|
path = op.realpath(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
|
|
|
|
|
2020-06-03 16:49:41 +00:00
|
|
|
|
2011-03-10 09:55:46 +00:00
|
|
|
def find_ext_volume_global_trash(volume_root):
|
|
|
|
# from [2] Trash directories (1) check for a .Trash dir with the right
|
|
|
|
# permissions set.
|
|
|
|
trash_dir = op.join(volume_root, TOPDIR_TRASH)
|
|
|
|
if not op.exists(trash_dir):
|
|
|
|
return None
|
2017-08-04 00:47:58 +00:00
|
|
|
|
2011-03-10 09:55:46 +00:00
|
|
|
mode = os.lstat(trash_dir).st_mode
|
|
|
|
# vol/.Trash must be a directory, cannot be a symlink, and must have the
|
|
|
|
# sticky bit set.
|
2011-03-10 17:21:05 +00:00
|
|
|
if not op.isdir(trash_dir) or op.islink(trash_dir) or not (mode & stat.S_ISVTX):
|
2011-03-10 09:55:46 +00:00
|
|
|
return None
|
2010-04-06 17:54:10 +00:00
|
|
|
|
2020-06-03 16:49:41 +00:00
|
|
|
trash_dir = op.join(trash_dir, text_type(uid).encode("ascii"))
|
2011-03-10 09:55:46 +00:00
|
|
|
try:
|
|
|
|
check_create(trash_dir)
|
|
|
|
except OSError:
|
|
|
|
return None
|
|
|
|
return trash_dir
|
|
|
|
|
2020-06-03 16:49:41 +00:00
|
|
|
|
2011-03-10 09:55:46 +00:00
|
|
|
def find_ext_volume_fallback_trash(volume_root):
|
|
|
|
# from [2] Trash directories (1) create a .Trash-$uid dir.
|
|
|
|
trash_dir = op.join(volume_root, TOPDIR_FALLBACK)
|
2018-02-06 22:28:47 +00:00
|
|
|
# Try to make the directory, if we lack permission, raise TrashPermissionError
|
|
|
|
try:
|
|
|
|
check_create(trash_dir)
|
|
|
|
except OSError as e:
|
|
|
|
if e.errno == errno.EACCES:
|
|
|
|
raise TrashPermissionError(e.filename)
|
|
|
|
raise
|
2011-03-10 09:55:46 +00:00
|
|
|
return trash_dir
|
|
|
|
|
2020-06-03 16:49:41 +00:00
|
|
|
|
2011-03-10 09:55:46 +00:00
|
|
|
def find_ext_volume_trash(volume_root):
|
|
|
|
trash_dir = find_ext_volume_global_trash(volume_root)
|
2011-03-10 17:22:21 +00:00
|
|
|
if trash_dir is None:
|
2011-03-10 09:55:46 +00:00
|
|
|
trash_dir = find_ext_volume_fallback_trash(volume_root)
|
|
|
|
return trash_dir
|
2010-04-06 17:54:10 +00:00
|
|
|
|
2020-06-03 16:49:41 +00:00
|
|
|
|
2011-03-13 18:40:52 +00:00
|
|
|
# Pull this out so it's easy to stub (to avoid stubbing lstat itself)
|
|
|
|
def get_dev(path):
|
|
|
|
return os.lstat(path).st_dev
|
|
|
|
|
2020-06-03 16:49:41 +00:00
|
|
|
|
|
|
|
def send2trash(paths):
|
|
|
|
if not isinstance(paths, list):
|
|
|
|
paths = [paths]
|
|
|
|
for path in paths:
|
|
|
|
if isinstance(path, text_type):
|
|
|
|
path_b = fsencode(path)
|
|
|
|
elif isinstance(path, bytes):
|
|
|
|
path_b = path
|
|
|
|
elif hasattr(path, "__fspath__"):
|
|
|
|
# Python 3.6 PathLike protocol
|
|
|
|
return send2trash(path.__fspath__())
|
|
|
|
else:
|
|
|
|
raise TypeError("str, bytes or PathLike expected, not %r" % type(path))
|
|
|
|
|
|
|
|
if not op.exists(path_b):
|
|
|
|
raise OSError("File not found: %s" % path)
|
|
|
|
# ...should check whether the user has the necessary permissions to delete
|
|
|
|
# it, before starting the trashing operation itself. [2]
|
|
|
|
if not os.access(path_b, os.W_OK):
|
|
|
|
raise OSError("Permission denied: %s" % path)
|
|
|
|
# if the file to be trashed is on the same device as HOMETRASH we
|
|
|
|
# want to move it there.
|
|
|
|
path_dev = get_dev(path_b)
|
|
|
|
|
|
|
|
# If XDG_DATA_HOME or HOMETRASH do not yet exist we need to stat the
|
|
|
|
# home directory, and these paths will be created further on if needed.
|
|
|
|
trash_dev = get_dev(op.expanduser(b"~"))
|
|
|
|
|
|
|
|
if path_dev == trash_dev:
|
|
|
|
topdir = XDG_DATA_HOME
|
|
|
|
dest_trash = HOMETRASH_B
|
|
|
|
else:
|
|
|
|
topdir = find_mount_point(path_b)
|
|
|
|
trash_dev = get_dev(topdir)
|
|
|
|
if trash_dev != path_dev:
|
|
|
|
raise OSError("Couldn't find mount point for %s" % path)
|
|
|
|
dest_trash = find_ext_volume_trash(topdir)
|
|
|
|
trash_move(path_b, dest_trash, topdir)
|