aboutsummaryrefslogtreecommitdiff
path: root/cli/onionshare_cli/web/send_base_mode.py
diff options
context:
space:
mode:
authorMicah Lee <micah@micahflee.com>2020-11-23 14:52:52 -0800
committerMicah Lee <micah@micahflee.com>2020-11-23 14:52:52 -0800
commitabca27cb5841783b298479b3a037f97b89b7ead7 (patch)
tree608c69e712e36d819c16d5648d381a16c05211c3 /cli/onionshare_cli/web/send_base_mode.py
parente8419e660cf293e43ce70763d75408ed669bcd97 (diff)
downloadonionshare-abca27cb5841783b298479b3a037f97b89b7ead7.tar.gz
onionshare-abca27cb5841783b298479b3a037f97b89b7ead7.zip
Allow directory listing work with or without trailing slash (removing trailing slash by default), and make directory listing links absolute instead of relative
Diffstat (limited to 'cli/onionshare_cli/web/send_base_mode.py')
-rw-r--r--cli/onionshare_cli/web/send_base_mode.py27
1 files changed, 19 insertions, 8 deletions
diff --git a/cli/onionshare_cli/web/send_base_mode.py b/cli/onionshare_cli/web/send_base_mode.py
index f9db28c6..9913996e 100644
--- a/cli/onionshare_cli/web/send_base_mode.py
+++ b/cli/onionshare_cli/web/send_base_mode.py
@@ -85,7 +85,7 @@ class SendBaseModeWeb:
# If it's a directory, add it recursively
elif os.path.isdir(filename):
- self.root_files[basename + "/"] = filename
+ self.root_files[basename] = filename
for root, _, nested_filenames in os.walk(filename):
# Normalize the root path. So if the directory name is "/home/user/Documents/some_folder",
@@ -96,7 +96,7 @@ class SendBaseModeWeb:
).rstrip("/")
# Add the dir itself
- self.files[normalized_root + "/"] = root
+ self.files[normalized_root] = root
# Add the files in this dir
for nested_filename in nested_filenames:
@@ -117,19 +117,21 @@ class SendBaseModeWeb:
)
breadcrumbs = [("☗", "/")]
- parts = path.split("/")[:-1]
+ parts = path.split("/")
+ if parts[-1] == "":
+ parts = parts[:-1]
for i in range(len(parts)):
- breadcrumbs.append((parts[i], f"/{'/'.join(parts[0 : i + 1])}/"))
+ breadcrumbs.append((parts[i], f"/{'/'.join(parts[0 : i + 1])}"))
breadcrumbs_leaf = breadcrumbs.pop()[0]
# If filesystem_path is None, this is the root directory listing
- files, dirs = self.build_directory_listing(filenames, filesystem_path)
+ files, dirs = self.build_directory_listing(path, filenames, filesystem_path)
r = self.directory_listing_template(
path, files, dirs, breadcrumbs, breadcrumbs_leaf
)
return self.web.add_security_headers(r)
- def build_directory_listing(self, filenames, filesystem_path):
+ def build_directory_listing(self, path, filenames, filesystem_path):
files = []
dirs = []
@@ -142,11 +144,20 @@ class SendBaseModeWeb:
is_dir = os.path.isdir(this_filesystem_path)
if is_dir:
- dirs.append({"basename": filename})
+ dirs.append(
+ {"link": os.path.join(f"/{path}", filename), "basename": filename}
+ )
else:
size = os.path.getsize(this_filesystem_path)
size_human = self.common.human_readable_filesize(size)
- files.append({"basename": filename, "size_human": size_human})
+ files.append(
+ {
+ "link": os.path.join(f"/{path}", filename),
+ "basename": filename,
+ "size_human": size_human,
+ }
+ )
+
return files, dirs
def stream_individual_file(self, filesystem_path):