mirror of
https://github.com/webrecorder/pywb.git
synced 2025-03-20 10:49:11 +01:00
* misc fixes: - ensure SCRIPT_NAME is never empty, fixes #466 - static: if ending in '/' look for '/index.html' - tests: use local httpbin instead of iana.org tests - docker: switch to $VOLUME_DIR before initing collection - ensure static_prefix is set correctly after host prefix - bump version to 2.3.2.dev0 * rules update: fix fuzzy matching, rewriting rules for soundcloud
69 lines
1.9 KiB
Python
69 lines
1.9 KiB
Python
import mimetypes
|
|
import os
|
|
|
|
from pywb.utils.loaders import LocalFileLoader
|
|
|
|
from pywb.apps.wbrequestresponse import WbResponse
|
|
from pywb.utils.wbexception import NotFoundException
|
|
|
|
|
|
#=================================================================
|
|
# Static Content Handler
|
|
#=================================================================
|
|
class StaticHandler(object):
|
|
def __init__(self, static_path):
|
|
mimetypes.init()
|
|
|
|
self.static_path = static_path
|
|
self.block_loader = LocalFileLoader()
|
|
|
|
def __call__(self, environ, url_str):
|
|
url = url_str.split('?')[0]
|
|
|
|
if url.endswith('/'):
|
|
url += 'index.html'
|
|
|
|
full_path = environ.get('pywb.static_dir')
|
|
if full_path:
|
|
full_path = os.path.join(full_path, url)
|
|
if not os.path.isfile(full_path):
|
|
full_path = None
|
|
|
|
if not full_path:
|
|
full_path = os.path.join(self.static_path, url)
|
|
|
|
try:
|
|
data = self.block_loader.load(full_path)
|
|
|
|
data.seek(0, 2)
|
|
size = data.tell()
|
|
data.seek(0)
|
|
headers = [('Content-Length', str(size))]
|
|
|
|
reader = None
|
|
|
|
if 'wsgi.file_wrapper' in environ:
|
|
try:
|
|
reader = environ['wsgi.file_wrapper'](data)
|
|
except:
|
|
pass
|
|
|
|
if not reader:
|
|
reader = iter(lambda: data.read(), b'')
|
|
|
|
content_type = 'application/octet-stream'
|
|
|
|
guessed = mimetypes.guess_type(full_path)
|
|
if guessed[0]:
|
|
content_type = guessed[0]
|
|
|
|
return WbResponse.bin_stream(reader,
|
|
content_type=content_type,
|
|
headers=headers)
|
|
|
|
except IOError:
|
|
raise NotFoundException('Static File Not Found: ' +
|
|
url_str)
|
|
|
|
|