summaryrefslogtreecommitdiff
path: root/wsgitools/filters.py
diff options
context:
space:
mode:
Diffstat (limited to 'wsgitools/filters.py')
-rw-r--r--wsgitools/filters.py252
1 files changed, 119 insertions, 133 deletions
diff --git a/wsgitools/filters.py b/wsgitools/filters.py
index 7f8543d..eada536 100644
--- a/wsgitools/filters.py
+++ b/wsgitools/filters.py
@@ -11,27 +11,37 @@ import sys
import time
import gzip
import io
+import typing
-from wsgitools.internal import str2bytes
+from wsgitools.internal import (
+ Environ,
+ HeaderList,
+ OptExcInfo,
+ StartResponse,
+ str2bytes,
+ WriteCallback,
+ WsgiApp,
+)
__all__.append("CloseableIterator")
class CloseableIterator:
"""Concatenating iterator with close attribute."""
- def __init__(self, close_function, *iterators):
+ def __init__(
+ self,
+ close_function: typing.Optional[typing.Callable[[], None]],
+ *iterators: typing.Iterable[typing.Any]
+ ):
"""If close_function is not C{None}, it will be the C{close} attribute
of the created iterator object. Further parameters specify iterators
that are to be concatenated.
- @type close_function: a function or C{None}
"""
if close_function is not None:
self.close = close_function
self.iterators = list(map(iter, iterators))
- def __iter__(self):
- """iterator interface
- @rtype: gen()
- """
+ def __iter__(self) -> typing.Iterator[typing.Any]:
+ """iterator interface"""
return self
- def __next__(self):
+ def __next__(self) -> typing.Any:
"""iterator interface"""
if not self.iterators:
raise StopIteration
@@ -45,16 +55,17 @@ class CloseableIterator:
__all__.append("CloseableList")
class CloseableList(list):
"""A list with a close attribute."""
- def __init__(self, close_function, *args):
+ def __init__(
+ self, close_function: typing.Optional[typing.Callable[[], None]], *args
+ ):
"""If close_function is not C{None}, it will be the C{close} attribute
of the created list object. Other parameters are passed to the list
constructor.
- @type close_function: a function or C{None}
"""
if close_function is not None:
self.close = close_function
list.__init__(self, *args)
- def __iter__(self):
+ def __iter__(self) -> CloseableIterator:
"""iterator interface"""
return CloseableIterator(getattr(self, "close", None),
list.__iter__(self))
@@ -76,104 +87,101 @@ class BaseWSGIFilter:
L{BaseWSGIFilter} class to a L{WSGIFilterMiddleware} will result in not
modifying requests at all.
"""
- def __init__(self):
+ def __init__(self) -> None:
"""This constructor does nothing and can safely be overwritten. It is
only listed here to document that it must be callable without additional
parameters."""
- def filter_environ(self, environ):
+ def filter_environ(self, environ: Environ) -> Environ:
"""Receives a dict with the environment passed to the wsgi application
and a C{dict} must be returned. The default is to return the same dict.
- @type environ: {str: str}
- @rtype: {str: str}
"""
return environ
- def filter_exc_info(self, exc_info):
+ def filter_exc_info(self, exc_info: OptExcInfo) -> OptExcInfo:
"""Receives either C{None} or a tuple passed as third argument to
C{start_response} from the wrapped wsgi application. Either C{None} or
such a tuple must be returned."""
return exc_info
- def filter_status(self, status):
+ def filter_status(self, status: str) -> str:
"""Receives a status string passed as first argument to
C{start_response} from the wrapped wsgi application. A valid HTTP status
string must be returned.
- @type status: str
- @rtype: str
"""
return status
- def filter_header(self, headername, headervalue):
+ def filter_header(
+ self, headername: str, headervalue: str
+ ) -> typing.Optional[typing.Tuple[str, str]]:
"""This function is invoked for each C{(headername, headervalue)} tuple
in the second argument to the C{start_response} from the wrapped wsgi
application. Such a value or C{None} for discarding the header must be
returned.
- @type headername: str
- @type headervalue: str
- @rtype: (str, str)
"""
return (headername, headervalue)
- def filter_headers(self, headers):
+ def filter_headers(self, headers: HeaderList) -> HeaderList:
"""A list of headers passed as the second argument to the
C{start_response} from the wrapped wsgi application is passed to this
function and such a list must also be returned.
- @type headers: [(str, str)]
- @rtype: [(str, str)]
"""
return headers
- def filter_data(self, data):
+ def filter_data(self, data: bytes) -> bytes:
"""For each string that is either written by the C{write} callable or
returned from the wrapped wsgi application this method is invoked. It
must return a string.
- @type data: bytes
- @rtype: bytes
"""
return data
- def append_data(self):
+ def append_data(self) -> typing.Iterable[bytes]:
"""This function can be used to append data to the response. A list of
strings or some kind of iterable yielding strings has to be returned.
The default is to return an empty list.
- @rtype: gen([bytes])
"""
return []
- def handle_close(self):
+ def handle_close(self) -> None:
"""This method is invoked after the request has finished."""
__all__.append("WSGIFilterMiddleware")
class WSGIFilterMiddleware:
"""This wsgi middleware can be used with specialized L{BaseWSGIFilter}s to
modify wsgi requests and/or reponses."""
- def __init__(self, app, filterclass):
+ def __init__(
+ self, app: WsgiApp, filterclass: typing.Callable[[], BaseWSGIFilter]
+ ):
"""
@param app: is a wsgi application.
- @type filterclass: L{BaseWSGIFilter}s subclass
- @param filterclass: is a subclass of L{BaseWSGIFilter} or some class
- that implements the interface."""
+ @param filterclass: is factory creating L{BaseWSGIFilter} instances
+ """
self.app = app
self.filterclass = filterclass
- def __call__(self, environ, start_response):
- """wsgi interface
- @type environ: {str, str}
- @rtype: gen([bytes])
- """
+ def __call__(
+ self, environ: Environ, start_response: StartResponse
+ ) -> typing.Iterable[bytes]:
+ """wsgi interface"""
assert isinstance(environ, dict)
reqfilter = self.filterclass()
environ = reqfilter.filter_environ(environ)
- def modified_start_response(status, headers, exc_info=None):
+ def modified_start_response(
+ status: str, headers: HeaderList, exc_info: OptExcInfo = None
+ ) -> WriteCallback:
assert isinstance(status, str)
assert isinstance(headers, list)
exc_info = reqfilter.filter_exc_info(exc_info)
status = reqfilter.filter_status(status)
- headers = (reqfilter.filter_header(h, v) for h, v in headers)
- headers = [h for h in headers if h]
- headers = reqfilter.filter_headers(headers)
+ headers = reqfilter.filter_headers(
+ list(
+ filter(
+ None,
+ (reqfilter.filter_header(h, v) for h, v in headers)
+ )
+ )
+ )
write = start_response(status, headers, exc_info)
- def modified_write(data):
+ def modified_write(data: bytes) -> None:
write(reqfilter.filter_data(data))
return modified_write
ret = self.app(environ, modified_start_response)
assert hasattr(ret, "__iter__")
- def modified_close():
+ def modified_close() -> None:
reqfilter.handle_close()
getattr(ret, "close", lambda:0)()
@@ -182,7 +190,7 @@ class WSGIFilterMiddleware:
list(map(reqfilter.filter_data, ret))
+ list(reqfilter.append_data()))
ret = iter(ret)
- def late_append_data():
+ def late_append_data() -> typing.Iterator[bytes]:
"""Invoke C{reqfilter.append_data()} after C{filter_data()} has seen
all data."""
for data in reqfilter.append_data():
@@ -194,38 +202,42 @@ class WSGIFilterMiddleware:
# Using map and lambda here since pylint cannot handle list comprehension in
# default arguments. Also note that neither ' nor " are considered printable.
# For escape_string to be reversible \ is also not considered printable.
-def escape_string(string, replacer=list(map(
- lambda i: chr(i) if str2bytes(chr(i)).isalnum() or
- chr(i) in '!#$%&()*+,-./:;<=>?@[]^_`{|}~ ' else
- r"\x%2.2x" % i,
- range(256)))):
- """Encodes non-printable characters in a string using \\xXX escapes.
-
- @type string: str
- @rtype: str
- """
+def escape_string(
+ string: str,
+ replacer: typing.List[str] = list(
+ map(
+ lambda i: (
+ chr(i) if (
+ str2bytes(chr(i)).isalnum() or
+ chr(i) in '!#$%&()*+,-./:;<=>?@[]^_`{|}~ '
+ ) else r"\x%2.2x" % i
+ ),
+ range(256),
+ )
+ ),
+) -> str:
+ """Encodes non-printable characters in a string using \\xXX escapes."""
return "".join(replacer[ord(char)] for char in string)
__all__.append("RequestLogWSGIFilter")
class RequestLogWSGIFilter(BaseWSGIFilter):
"""This filter logs all requests in the apache log file format."""
+ proto: typing.Optional[str]
@classmethod
- def creator(cls, log, flush=True):
+ def creator(
+ cls, log: typing.TextIO, flush: bool = True
+ ) -> typing.Callable[[], "RequestLogWSGIFilter"]:
"""Returns a function creating L{RequestLogWSGIFilter}s on given log
file. log has to be a file-like object.
- @type log: file-like
@param log: elements of type str are written to the log. That means in
Py3.X the contents are decoded and in Py2.X the log is assumed
to be encoded in latin1. This follows the spirit of WSGI.
- @type flush: bool
@param flush: if True, invoke the flush method on log after each
write invocation
"""
return lambda:cls(log, flush)
- def __init__(self, log=sys.stdout, flush=True):
+ def __init__(self, log: typing.TextIO = sys.stdout, flush: bool = True):
"""
- @type log: file-like
- @type flush: bool
@param flush: if True, invoke the flush method on log after each
write invocation
"""
@@ -244,11 +256,8 @@ class RequestLogWSGIFilter(BaseWSGIFilter):
self.length = 0
self.referrer = None
self.useragent = None
- def filter_environ(self, environ):
- """BaseWSGIFilter interface
- @type environ: {str: str}
- @rtype: {str: str}
- """
+ def filter_environ(self, environ: Environ) -> Environ:
+ """BaseWSGIFilter interface"""
assert isinstance(environ, dict)
self.remote = environ.get("REMOTE_ADDR", self.remote)
self.user = environ.get("REMOTE_USER", self.user)
@@ -260,19 +269,16 @@ class RequestLogWSGIFilter(BaseWSGIFilter):
self.referrer = environ.get("HTTP_REFERER", self.referrer)
self.useragent = environ.get("HTTP_USER_AGENT", self.useragent)
return environ
- def filter_status(self, status):
- """BaseWSGIFilter interface
- @type status: str
- @rtype: str
- """
+ def filter_status(self, status: str) -> str:
+ """BaseWSGIFilter interface"""
assert isinstance(status, str)
self.status = status.split()[0]
return status
- def filter_data(self, data):
+ def filter_data(self, data: bytes) -> bytes:
assert isinstance(data, bytes)
self.length += len(data)
return data
- def handle_close(self):
+ def handle_close(self) -> None:
"""BaseWSGIFilter interface"""
line = '%s %s - [%s]' % (self.remote, self.user, self.time)
line = '%s "%s %s' % (line, escape_string(self.reqmethod),
@@ -301,25 +307,18 @@ class TimerWSGIFilter(BaseWSGIFilter):
something like C{["spam?GenTime", "?GenTime spam", "?GenTime"]} only the
last occurance get's replaced."""
@classmethod
- def creator(cls, pattern):
+ def creator(cls, pattern: bytes) -> typing.Callable[[], "TimerWSGIFilter"]:
"""Returns a function creating L{TimerWSGIFilter}s with a given pattern
beeing a string of exactly eight bytes.
- @type pattern: bytes
"""
return lambda:cls(pattern)
- def __init__(self, pattern=b"?GenTime"):
- """
- @type pattern: str
- """
+ def __init__(self, pattern: bytes = b"?GenTime"):
BaseWSGIFilter.__init__(self)
assert isinstance(pattern, bytes)
self.pattern = pattern
self.start = time.time()
- def filter_data(self, data):
- """BaseWSGIFilter interface
- @type data: bytes
- @rtype: bytes
- """
+ def filter_data(self, data: bytes) -> bytes:
+ """BaseWSGIFilter interface"""
if data == self.pattern:
return b"%8.3g" % (time.time() - self.start)
return data
@@ -331,30 +330,19 @@ class EncodeWSGIFilter(BaseWSGIFilter):
whereas wsgi mandates the use of bytes.
"""
@classmethod
- def creator(cls, charset):
+ def creator(cls, charset: str) -> typing.Callable[[], "EncodeWSGIFilter"]:
"""Returns a function creating L{EncodeWSGIFilter}s with a given
charset.
- @type charset: str
"""
return lambda:cls(charset)
- def __init__(self, charset="utf-8"):
- """
- @type charset: str
- """
+ def __init__(self, charset: str = "utf-8"):
BaseWSGIFilter.__init__(self)
self.charset = charset
- def filter_data(self, data):
- """BaseWSGIFilter interface
- @type data: str
- @rtype: bytes
- """
+ def filter_data(self, data: str) -> bytes:
+ """BaseWSGIFilter interface"""
return data.encode(self.charset)
- def filter_header(self, header, value):
- """BaseWSGIFilter interface
- @type header: str
- @type value: str
- @rtype: (str, str)
- """
+ def filter_header(self, header: str, value: str) -> typing.Tuple[str, str]:
+ """BaseWSGIFilter interface"""
if header.lower() != "content-type":
return (header, value)
return (header, "%s; charset=%s" % (value, self.charset))
@@ -362,17 +350,20 @@ class EncodeWSGIFilter(BaseWSGIFilter):
__all__.append("GzipWSGIFilter")
class GzipWSGIFilter(BaseWSGIFilter):
"""Compresses content using gzip."""
+ gzip: typing.Optional[gzip.GzipFile]
+ sio: typing.Optional[io.BytesIO]
+
@classmethod
- def creator(cls, flush=True):
+ def creator(
+ cls, flush: bool = True
+ ) -> typing.Callable[[], "GzipWSGIFilter"]:
"""
Returns a function creating L{GzipWSGIFilter}s.
- @type flush: bool
@param flush: whether or not the filter should always flush the buffer
"""
return lambda:cls(flush)
- def __init__(self, flush=True):
+ def __init__(self, flush: bool = True):
"""
- @type flush: bool
@param flush: whether or not the filter should always flush the buffer
"""
BaseWSGIFilter.__init__(self)
@@ -380,10 +371,8 @@ class GzipWSGIFilter(BaseWSGIFilter):
self.compress = False
self.sio = None
self.gzip = None
- def filter_environ(self, environ):
- """BaseWSGIFilter interface
- @type environ: {str: str}
- """
+ def filter_environ(self, environ: Environ) -> Environ:
+ """BaseWSGIFilter interface"""
assert isinstance(environ, dict)
if "HTTP_ACCEPT_ENCODING" in environ:
acceptenc = environ["HTTP_ACCEPT_ENCODING"].split(',')
@@ -392,28 +381,25 @@ class GzipWSGIFilter(BaseWSGIFilter):
self.sio = io.BytesIO()
self.gzip = gzip.GzipFile(fileobj=self.sio, mode="w")
return environ
- def filter_header(self, headername, headervalue):
- """ BaseWSGIFilter interface
- @type headername: str
- @type headervalue: str
- @rtype: (str, str) or None
- """
+ def filter_header(
+ self, headername: str, headervalue: str
+ ) -> typing.Optional[typing.Tuple[str, str]]:
+ """BaseWSGIFilter interface"""
if self.compress:
if headername.lower() == "content-length":
return None
return (headername, headervalue)
- def filter_headers(self, headers):
- """BaseWSGIFilter interface
- @type headers: [(str, str)]
- @rtype: [(str, str)]
- """
+ def filter_headers(self, headers: HeaderList) -> HeaderList:
+ """BaseWSGIFilter interface"""
assert isinstance(headers, list)
if self.compress:
headers.append(("Content-encoding", "gzip"))
return headers
- def filter_data(self, data):
+ def filter_data(self, data: bytes) -> bytes:
if not self.compress:
return data
+ assert self.gzip is not None
+ assert self.sio is not None
self.gzip.write(data)
if self.flush:
self.gzip.flush()
@@ -421,9 +407,11 @@ class GzipWSGIFilter(BaseWSGIFilter):
self.sio.truncate(0)
self.sio.seek(0)
return data
- def append_data(self):
+ def append_data(self) -> typing.List[bytes]:
if not self.compress:
return []
+ assert self.gzip is not None
+ assert self.sio is not None
self.gzip.close()
data = self.sio.getvalue()
return [data]
@@ -435,30 +423,28 @@ class ReusableWSGIInputFilter(BaseWSGIFilter):
C{BytesIO} instance which provides a C{seek} method.
"""
@classmethod
- def creator(cls, maxrequestsize):
+ def creator(
+ cls, maxrequestsize: int
+ ) -> typing.Callable[[], "ReusableWSGIInputFilter"]:
"""
Returns a function creating L{ReusableWSGIInputFilter}s with desired
maxrequestsize being set. If there is more data than maxrequestsize is
available in C{wsgi.input} the rest will be ignored. (It is up to the
adapter to eat this data.)
- @type maxrequestsize: int
@param maxrequestsize: is the maximum number of bytes to store in the
C{BytesIO}
"""
return lambda:cls(maxrequestsize)
- def __init__(self, maxrequestsize=65536):
+ def __init__(self, maxrequestsize: int = 65536):
"""ReusableWSGIInputFilters constructor.
- @type maxrequestsize: int
@param maxrequestsize: is the maximum number of bytes to store in the
C{BytesIO}, see L{creator}
"""
BaseWSGIFilter.__init__(self)
self.maxrequestsize = maxrequestsize
- def filter_environ(self, environ):
- """BaseWSGIFilter interface
- @type environ: {str: str}
- """
+ def filter_environ(self, environ: Environ) -> Environ:
+ """BaseWSGIFilter interface"""
if isinstance(environ["wsgi.input"], io.BytesIO):
return environ # nothing to be done