summaryrefslogtreecommitdiff
path: root/onionshare
diff options
context:
space:
mode:
authorhiro <hiro@torproject.org>2019-06-14 18:21:12 +0200
committerhiro <hiro@torproject.org>2019-06-14 18:21:12 +0200
commit2604ef52b51424c42c2a06212ab745242de0fa58 (patch)
tree9e444336cc93007ddc4b03d8a651be0d68ebcd50 /onionshare
parent35b524439ff0a1bf185dc22c01e92a1a937ac563 (diff)
downloadonionshare-2604ef52b51424c42c2a06212ab745242de0fa58.tar.gz
onionshare-2604ef52b51424c42c2a06212ab745242de0fa58.zip
Clean up rendering logic between share and website mode
Diffstat (limited to 'onionshare')
-rw-r--r--onionshare/web/base_mode.py149
-rw-r--r--onionshare/web/share_mode.py9
-rw-r--r--onionshare/web/website_mode.py114
3 files changed, 141 insertions, 131 deletions
diff --git a/onionshare/web/base_mode.py b/onionshare/web/base_mode.py
index ff7e11be..905414f6 100644
--- a/onionshare/web/base_mode.py
+++ b/onionshare/web/base_mode.py
@@ -2,7 +2,7 @@ import os
import sys
import tempfile
import mimetypes
-from flask import Response, request, render_template, make_response
+from flask import Response, request, render_template, make_response, send_from_directory
from .. import strings
@@ -26,6 +26,8 @@ class BaseModeWeb(object):
# Dictionary mapping file paths to filenames on disk
self.files = {}
+ # This is only the root files and dirs, as opposed to all of them
+ self.root_files = {}
self.cleanup_filenames = []
self.file_info = {'files': [], 'dirs': []}
@@ -46,15 +48,15 @@ class BaseModeWeb(object):
pass
- def directory_listing(self, path='', filenames=[], filesystem_path=None):
+ def directory_listing(self, filenames, path='', filesystem_path=None):
# If filesystem_path is None, this is the root directory listing
files = []
dirs = []
r = ''
- if self.web.mode == 'website':
- files, dirs = build_directory_listing(filenames)
+ files, dirs = self.build_directory_listing(filenames, filesystem_path)
+ if self.web.mode == 'website':
r = make_response(render_template('listing.html',
path=path,
files=files,
@@ -65,6 +67,8 @@ class BaseModeWeb(object):
r = make_response(render_template(
'send.html',
file_info=self.file_info,
+ files=files,
+ dirs=dirs,
filename=os.path.basename(self.download_filename),
filesize=self.filesize,
filesize_human=self.common.human_readable_filesize(self.download_filesize),
@@ -74,26 +78,141 @@ class BaseModeWeb(object):
return self.web.add_security_headers(r)
+ def build_directory_listing(self, filenames, filesystem_path):
+ files = []
+ dirs = []
+
+ for filename in filenames:
+ if filesystem_path:
+ this_filesystem_path = os.path.join(filesystem_path, filename)
+ else:
+ this_filesystem_path = self.files[filename]
+
+ is_dir = os.path.isdir(this_filesystem_path)
+
+ if is_dir:
+ dirs.append({
+ '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
+ })
+ return files, dirs
+
+
def set_file_info(self, filenames, processed_size_callback=None):
"""
Build a data structure that describes the list of files
"""
- if self.web.mode == 'website':
- self.common.log("WebsiteModeWeb", "set_file_info")
- self.web.cancel_compression = True
- # This is only the root files and dirs, as opposed to all of them
- self.root_files = {}
+ # If there's just one folder, replace filenames with a list of files inside that folder
+ if len(filenames) == 1 and os.path.isdir(filenames[0]):
+ filenames = [os.path.join(filenames[0], x) for x in os.listdir(filenames[0])]
- # If there's just one folder, replace filenames with a list of files inside that folder
- if len(filenames) == 1 and os.path.isdir(filenames[0]):
- filenames = [os.path.join(filenames[0], x) for x in os.listdir(filenames[0])]
+ self.build_file_list(filenames)
- self.build_file_list(filenames)
-
- elif self.web.mode == 'share':
+ if self.web.mode == 'share':
self.common.log("ShareModeWeb", "set_file_info")
self.web.cancel_compression = False
self.build_zipfile_list(filenames, processed_size_callback)
+ elif self.web.mode == 'website':
+ self.common.log("WebsiteModeWeb", "set_file_info")
+ self.web.cancel_compression = True
+
+ return True
+
+
+ def build_file_list(self, filenames):
+ """
+ Build a data structure that describes the list of files that make up
+ the static website.
+ """
+ self.common.log("BaseModeWeb", "build_file_list")
+
+ # Loop through the files
+ for filename in filenames:
+ basename = os.path.basename(filename.rstrip('/'))
+
+ # If it's a filename, add it
+ if os.path.isfile(filename):
+ self.files[basename] = filename
+ self.root_files[basename] = filename
+
+ # If it's a directory, add it recursively
+ elif os.path.isdir(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",
+ # and it has a nested folder foobar, the root is "/home/user/Documents/some_folder/foobar".
+ # The normalized_root should be "some_folder/foobar"
+ normalized_root = os.path.join(basename, root[len(filename):].lstrip('/')).rstrip('/')
+
+ # Add the dir itself
+ self.files[normalized_root + '/'] = root
+
+ # Add the files in this dir
+ for nested_filename in nested_filenames:
+ self.files[os.path.join(normalized_root, nested_filename)] = os.path.join(root, nested_filename)
+
return True
+
+ def render_logic(self, path=''):
+ if path in self.files:
+ filesystem_path = self.files[path]
+
+ # If it's a directory
+ if os.path.isdir(filesystem_path):
+ # Is there an index.html?
+ index_path = os.path.join(path, 'index.html')
+ if self.web.mode == 'website' and index_path in self.files:
+ # Render it
+ dirname = os.path.dirname(self.files[index_path])
+ basename = os.path.basename(self.files[index_path])
+
+ return send_from_directory(dirname, basename)
+
+ else:
+ # Otherwise, render directory listing
+ filenames = []
+ for filename in os.listdir(filesystem_path):
+ if os.path.isdir(os.path.join(filesystem_path, filename)):
+ filenames.append(filename + '/')
+ else:
+ filenames.append(filename)
+ filenames.sort()
+ return self.directory_listing(filenames, path, filesystem_path)
+
+ # If it's a file
+ elif os.path.isfile(filesystem_path):
+ dirname = os.path.dirname(filesystem_path)
+ basename = os.path.basename(filesystem_path)
+ return send_from_directory(dirname, basename)
+
+ # If it's not a directory or file, throw a 404
+ else:
+ return self.web.error404()
+ else:
+ # Special case loading /
+
+ if path == '':
+ index_path = 'index.html'
+ if self.web.mode == 'website' and index_path in self.files:
+ # Render it
+ dirname = os.path.dirname(self.files[index_path])
+ basename = os.path.basename(self.files[index_path])
+ return send_from_directory(dirname, basename)
+ else:
+ # Root directory listing
+ filenames = list(self.root_files)
+ filenames.sort()
+ return self.directory_listing(filenames, path)
+
+ else:
+ # If the path isn't found, throw a 404
+ return self.web.error404()
diff --git a/onionshare/web/share_mode.py b/onionshare/web/share_mode.py
index cb3bba50..afcbdcd9 100644
--- a/onionshare/web/share_mode.py
+++ b/onionshare/web/share_mode.py
@@ -23,8 +23,9 @@ class ShareModeWeb(BaseModeWeb):
"""
The web app routes for sharing files
"""
- @self.web.app.route("/")
- def index():
+ @self.web.app.route('/', defaults={'path': ''})
+ @self.web.app.route('/<path:path>')
+ def index(path):
"""
Render the template for the onionshare landing page.
"""
@@ -44,7 +45,7 @@ class ShareModeWeb(BaseModeWeb):
else:
self.filesize = self.download_filesize
- return self.directory_listing()
+ return self.render_logic(path)
@self.web.app.route("/download")
@@ -171,7 +172,7 @@ class ShareModeWeb(BaseModeWeb):
return r
def build_zipfile_list(self, filenames, processed_size_callback=None):
- self.common.log("ShareModeWeb", "build_file_list")
+ self.common.log("ShareModeWeb", "build_zipfile_list")
for filename in filenames:
info = {
'filename': filename,
diff --git a/onionshare/web/website_mode.py b/onionshare/web/website_mode.py
index 5183bebc..b8e4dfdf 100644
--- a/onionshare/web/website_mode.py
+++ b/onionshare/web/website_mode.py
@@ -2,7 +2,7 @@ import os
import sys
import tempfile
import mimetypes
-from flask import Response, request, render_template, make_response, send_from_directory
+from flask import Response, request, render_template, make_response
from .base_mode import BaseModeWeb
from .. import strings
@@ -42,114 +42,4 @@ class WebsiteModeWeb(BaseModeWeb):
'action': 'visit'
})
- if path in self.files:
- filesystem_path = self.files[path]
-
- # If it's a directory
- if os.path.isdir(filesystem_path):
- # Is there an index.html?
- index_path = os.path.join(path, 'index.html')
- if index_path in self.files:
- # Render it
- dirname = os.path.dirname(self.files[index_path])
- basename = os.path.basename(self.files[index_path])
-
- return send_from_directory(dirname, basename)
-
- else:
- # Otherwise, render directory listing
- filenames = []
- for filename in os.listdir(filesystem_path):
- if os.path.isdir(os.path.join(filesystem_path, filename)):
- filenames.append(filename + '/')
- else:
- filenames.append(filename)
- filenames.sort()
- return self.directory_listing(path, filenames, filesystem_path)
-
- # If it's a file
- elif os.path.isfile(filesystem_path):
- dirname = os.path.dirname(filesystem_path)
- basename = os.path.basename(filesystem_path)
- return send_from_directory(dirname, basename)
-
- # If it's not a directory or file, throw a 404
- else:
- return self.web.error404()
- else:
- # Special case loading /
-
- if path == '':
- index_path = 'index.html'
- if index_path in self.files:
- # Render it
- dirname = os.path.dirname(self.files[index_path])
- basename = os.path.basename(self.files[index_path])
- return send_from_directory(dirname, basename)
- else:
- # Root directory listing
- filenames = list(self.root_files)
- filenames.sort()
- return self.directory_listing(path, filenames)
-
- else:
- # If the path isn't found, throw a 404
- return self.web.error404()
-
- def build_directory_listing(self, filenames):
- for filename in filenames:
- if filesystem_path:
- this_filesystem_path = os.path.join(filesystem_path, filename)
- else:
- this_filesystem_path = self.files[filename]
-
- is_dir = os.path.isdir(this_filesystem_path)
-
- if is_dir:
- dirs.append({
- '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
- })
- return files, dirs
-
-
- def build_file_list(self, filenames):
- """
- Build a data structure that describes the list of files that make up
- the static website.
- """
- self.common.log("WebsiteModeWeb", "build_file_list")
-
- # Loop through the files
- for filename in filenames:
- basename = os.path.basename(filename.rstrip('/'))
-
- # If it's a filename, add it
- if os.path.isfile(filename):
- self.files[basename] = filename
- self.root_files[basename] = filename
-
- # If it's a directory, add it recursively
- elif os.path.isdir(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",
- # and it has a nested folder foobar, the root is "/home/user/Documents/some_folder/foobar".
- # The normalized_root should be "some_folder/foobar"
- normalized_root = os.path.join(basename, root[len(filename):].lstrip('/')).rstrip('/')
-
- # Add the dir itself
- self.files[normalized_root + '/'] = root
-
- # Add the files in this dir
- for nested_filename in nested_filenames:
- self.files[os.path.join(normalized_root, nested_filename)] = os.path.join(root, nested_filename)
-
- return True
+ return self.render_logic(path)