mirror of
https://github.com/onionshare/onionshare.git
synced 2025-01-27 23:07:14 -05:00
Clean up rendering logic between share and website mode
This commit is contained in:
parent
35b524439f
commit
2604ef52b5
@ -2,7 +2,7 @@ import os
|
|||||||
import sys
|
import sys
|
||||||
import tempfile
|
import tempfile
|
||||||
import mimetypes
|
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
|
from .. import strings
|
||||||
|
|
||||||
@ -26,6 +26,8 @@ class BaseModeWeb(object):
|
|||||||
|
|
||||||
# Dictionary mapping file paths to filenames on disk
|
# Dictionary mapping file paths to filenames on disk
|
||||||
self.files = {}
|
self.files = {}
|
||||||
|
# This is only the root files and dirs, as opposed to all of them
|
||||||
|
self.root_files = {}
|
||||||
self.cleanup_filenames = []
|
self.cleanup_filenames = []
|
||||||
self.file_info = {'files': [], 'dirs': []}
|
self.file_info = {'files': [], 'dirs': []}
|
||||||
|
|
||||||
@ -46,15 +48,15 @@ class BaseModeWeb(object):
|
|||||||
pass
|
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
|
# If filesystem_path is None, this is the root directory listing
|
||||||
files = []
|
files = []
|
||||||
dirs = []
|
dirs = []
|
||||||
r = ''
|
r = ''
|
||||||
|
|
||||||
if self.web.mode == 'website':
|
files, dirs = self.build_directory_listing(filenames, filesystem_path)
|
||||||
files, dirs = build_directory_listing(filenames)
|
|
||||||
|
|
||||||
|
if self.web.mode == 'website':
|
||||||
r = make_response(render_template('listing.html',
|
r = make_response(render_template('listing.html',
|
||||||
path=path,
|
path=path,
|
||||||
files=files,
|
files=files,
|
||||||
@ -65,6 +67,8 @@ class BaseModeWeb(object):
|
|||||||
r = make_response(render_template(
|
r = make_response(render_template(
|
||||||
'send.html',
|
'send.html',
|
||||||
file_info=self.file_info,
|
file_info=self.file_info,
|
||||||
|
files=files,
|
||||||
|
dirs=dirs,
|
||||||
filename=os.path.basename(self.download_filename),
|
filename=os.path.basename(self.download_filename),
|
||||||
filesize=self.filesize,
|
filesize=self.filesize,
|
||||||
filesize_human=self.common.human_readable_filesize(self.download_filesize),
|
filesize_human=self.common.human_readable_filesize(self.download_filesize),
|
||||||
@ -74,16 +78,36 @@ class BaseModeWeb(object):
|
|||||||
return self.web.add_security_headers(r)
|
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):
|
def set_file_info(self, filenames, processed_size_callback=None):
|
||||||
"""
|
"""
|
||||||
Build a data structure that describes the list of files
|
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 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]):
|
if len(filenames) == 1 and os.path.isdir(filenames[0]):
|
||||||
@ -91,9 +115,104 @@ class BaseModeWeb(object):
|
|||||||
|
|
||||||
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.common.log("ShareModeWeb", "set_file_info")
|
||||||
self.web.cancel_compression = False
|
self.web.cancel_compression = False
|
||||||
self.build_zipfile_list(filenames, processed_size_callback)
|
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
|
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()
|
||||||
|
@ -23,8 +23,9 @@ class ShareModeWeb(BaseModeWeb):
|
|||||||
"""
|
"""
|
||||||
The web app routes for sharing files
|
The web app routes for sharing files
|
||||||
"""
|
"""
|
||||||
@self.web.app.route("/")
|
@self.web.app.route('/', defaults={'path': ''})
|
||||||
def index():
|
@self.web.app.route('/<path:path>')
|
||||||
|
def index(path):
|
||||||
"""
|
"""
|
||||||
Render the template for the onionshare landing page.
|
Render the template for the onionshare landing page.
|
||||||
"""
|
"""
|
||||||
@ -44,7 +45,7 @@ class ShareModeWeb(BaseModeWeb):
|
|||||||
else:
|
else:
|
||||||
self.filesize = self.download_filesize
|
self.filesize = self.download_filesize
|
||||||
|
|
||||||
return self.directory_listing()
|
return self.render_logic(path)
|
||||||
|
|
||||||
|
|
||||||
@self.web.app.route("/download")
|
@self.web.app.route("/download")
|
||||||
@ -171,7 +172,7 @@ class ShareModeWeb(BaseModeWeb):
|
|||||||
return r
|
return r
|
||||||
|
|
||||||
def build_zipfile_list(self, filenames, processed_size_callback=None):
|
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:
|
for filename in filenames:
|
||||||
info = {
|
info = {
|
||||||
'filename': filename,
|
'filename': filename,
|
||||||
|
@ -2,7 +2,7 @@ import os
|
|||||||
import sys
|
import sys
|
||||||
import tempfile
|
import tempfile
|
||||||
import mimetypes
|
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 .base_mode import BaseModeWeb
|
||||||
from .. import strings
|
from .. import strings
|
||||||
@ -42,114 +42,4 @@ class WebsiteModeWeb(BaseModeWeb):
|
|||||||
'action': 'visit'
|
'action': 'visit'
|
||||||
})
|
})
|
||||||
|
|
||||||
if path in self.files:
|
return self.render_logic(path)
|
||||||
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
|
|
||||||
|
@ -28,24 +28,27 @@
|
|||||||
<th id="size-header">Size</th>
|
<th id="size-header">Size</th>
|
||||||
<th></th>
|
<th></th>
|
||||||
</tr>
|
</tr>
|
||||||
{% for info in file_info.dirs %}
|
{% for info in dirs %}
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
<img width="30" height="30" title="" alt="" src="{{ static_url_path }}/img/web_folder.png" />
|
<img width="30" height="30" title="" alt="" src="{{ static_url_path }}/img/web_folder.png" />
|
||||||
|
<a href="{{ info.basename }}">
|
||||||
{{ info.basename }}
|
{{ info.basename }}
|
||||||
|
</a>
|
||||||
</td>
|
</td>
|
||||||
<td>{{ info.size_human }}</td>
|
<td>—</td>
|
||||||
<td></td>
|
|
||||||
</tr>
|
</tr>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% for info in file_info.files %}
|
|
||||||
|
{% for info in files %}
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
<img width="30" height="30" title="" alt="" src="{{ static_url_path }}/img/web_file.png" />
|
<img width="30" height="30" title="" alt="" src="{{ static_url_path }}/img/web_file.png" />
|
||||||
|
<a href="{{ info.basename }}">
|
||||||
{{ info.basename }}
|
{{ info.basename }}
|
||||||
|
</a>
|
||||||
</td>
|
</td>
|
||||||
<td>{{ info.size_human }}</td>
|
<td>{{ info.size_human }}</td>
|
||||||
<td></td>
|
|
||||||
</tr>
|
</tr>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</table>
|
</table>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user