1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495
|
"""
Running a WSGI app
==================
.. currentmodule:: aiohttp_wsgi
:mod:`aiohttp_wsgi` allows you to run WSGI applications (e.g. `Django`_, `Flask`_) on :ref:`aiohttp <aiohttp-web>`.
This allows you to add async features like websockets and long-polling to an existing Python web app.
.. hint::
If you don't need to add :ref:`websockets <aiohttp-web-websockets>` or
:ref:`async request handlers <aiohttp-web-handler>` to your app, but still want to run your WSGI app on the
:mod:`asyncio` event loop, :mod:`aiohttp_wsgi` provides a simpler :doc:`command line interface <main>`.
Run a web server
----------------
In order to implement a WSGI server, first import your WSGI application and wrap it in a :class:`WSGIHandler`.
.. code:: python
from aiohttp import web
from aiohttp_wsgi import WSGIHandler
from your_project.wsgi import application
wsgi_handler = WSGIHandler(application)
Next, create an :class:`Application <aiohttp.web.Application>` instance and register the request handler with the
application's :class:`router <aiohttp.web.UrlDispatcher>` on a particular HTTP *method* and *path*:
.. code:: python
app = web.Application()
app.router.add_route("*", "/{path_info:.*}", wsgi_handler)
After that, run the application by :func:`run_app() <aiohttp.web.run_app>` call:
.. code:: python
web.run_app(app)
See the :ref:`aiohttp.web <aiohttp-web>` documentation for information on adding
:ref:`websockets <aiohttp-web-websockets>` and :ref:`async request handlers <aiohttp-web-handler>` to your app.
Serving simple WSGI apps
------------------------
If you don't need to add :ref:`websockets <aiohttp-web-websockets>` or
:ref:`async request handlers <aiohttp-web-handler>` to your app, but still want to run your WSGI app on the
:mod:`asyncio` event loop, :mod:`aiohttp_wsgi` provides a simple :func:`serve()` helper.
.. code:: python
from aiohttp_wsgi import serve
serve(application)
Extra environ keys
------------------
:mod:`aiohttp_wsgi` adds the following additional keys to the WSGI environ:
``asyncio.executor``
The :class:`Executor <concurrent.futures.Executor>` running the WSGI request.
``aiohttp.request``
The raw :class:`aiohttp.web.Request` that initiated the WSGI request. Use this to access additional
request :ref:`metadata <aiohttp-web-data-sharing>`.
API reference
-------------
.. autoclass:: WSGIHandler
:members:
.. autofunction:: serve
.. include:: /_include/links.rst
"""
import asyncio
from asyncio.base_events import Server
from functools import partial
from io import BytesIO
import logging
import os
import sys
from concurrent.futures import Executor, ThreadPoolExecutor
from contextlib import contextmanager
from tempfile import SpooledTemporaryFile
from typing import Any, Awaitable, IO, Callable, Dict, Generator, Iterable, List, Optional, Tuple
from wsgiref.util import is_hop_by_hop
from aiohttp.web import (
Application,
AppRunner,
BaseSite,
TCPSite,
UnixSite,
Request,
Response,
StreamResponse,
HTTPRequestEntityTooLarge,
middleware,
)
from aiohttp.web_response import CIMultiDict
from aiohttp_wsgi.utils import parse_sockname
WSGIEnviron = Dict[str, Any]
WSGIHeaders = List[Tuple[str, str]]
WSGIAppendResponse = Callable[[bytes], None]
WSGIStartResponse = Callable[[str, WSGIHeaders], Callable[[bytes], None]]
WSGIApplication = Callable[[WSGIEnviron, WSGIStartResponse], Iterable[bytes]]
logger = logging.getLogger(__name__)
def _run_application(application: WSGIApplication, environ: WSGIEnviron) -> Response:
# Response data.
response_status: Optional[int] = None
response_reason: Optional[str] = None
response_headers: Optional[WSGIHeaders] = None
response_body: List[bytes] = []
# Simple start_response callable.
def start_response(status: str, headers: WSGIHeaders, exc_info: Optional[Exception] = None) -> WSGIAppendResponse:
nonlocal response_status, response_reason, response_headers, response_body
status_code, reason = status.split(None, 1)
status_code = int(status_code)
# Check the headers.
if __debug__:
for header_name, header_value in headers:
assert not is_hop_by_hop(header_name), f"hop-by-hop headers are forbidden: {header_name}"
# Start the response.
response_status = status_code
response_reason = reason
response_headers = headers
del response_body[:]
return response_body.append
# Run the application.
body_iterable = application(environ, start_response)
try:
response_body.extend(body_iterable)
assert (
response_status is not None and response_reason is not None and response_headers is not None
), "application did not call start_response()"
return Response(
status=response_status,
reason=response_reason,
headers=CIMultiDict(response_headers),
body=b"".join(response_body),
)
finally:
# Close the body.
if hasattr(body_iterable, "close"):
body_iterable.close() # type: ignore
class WSGIHandler:
"""
An adapter for WSGI applications, allowing them to run on :ref:`aiohttp <aiohttp-web>`.
:param application: {application}
:param str url_scheme: {url_scheme}
:param io.BytesIO stderr: {stderr}
:param int inbuf_overflow: {inbuf_overflow}
:param int max_request_body_size: {max_request_body_size}
:param concurrent.futures.Executor executor: {executor}
"""
def __init__(
self,
application: WSGIApplication,
*,
# Handler config.
url_scheme: Optional[str] = None,
stderr: Optional[IO[bytes]] = None,
inbuf_overflow: int = 524288,
max_request_body_size: int = 1073741824,
# asyncio config.
executor: Optional[Executor] = None,
):
assert callable(application), "application should be callable"
self._application = application
# Handler config.
self._url_scheme = url_scheme
self._stderr = stderr or sys.stderr
assert isinstance(inbuf_overflow, int), "inbuf_overflow should be int"
assert inbuf_overflow >= 0, "inbuf_overflow should be >= 0"
assert isinstance(max_request_body_size, int), "max_request_body_size should be int"
assert max_request_body_size >= 0, "max_request_body_size should be >= 0"
if inbuf_overflow < max_request_body_size:
self._body_io: Callable[[], IO[bytes]] = partial(SpooledTemporaryFile, max_size=inbuf_overflow)
else:
# Use BytesIO as an optimization if we'll never overflow to disk.
self._body_io = BytesIO
self._max_request_body_size = max_request_body_size
# asyncio config.
self._executor = executor
def _get_environ(self, request: Request, body: IO[bytes], content_length: int) -> WSGIEnviron:
# Resolve the path info.
path_info = request.match_info["path_info"]
script_name = request.rel_url.path[:len(request.rel_url.path) - len(path_info)]
# Special case: If the app was mounted on the root, then the script name will
# currently be set to "/", which is illegal in the WSGI spec. The script name
# could also end with a slash if the WSGIHandler was mounted as a route
# manually with a trailing slash before the path_info. In either case, we
# correct this according to the WSGI spec by transferring the trailing slash
# from script_name to the start of path_info.
if script_name.endswith("/"):
script_name = script_name[:-1]
path_info = "/" + path_info
# Parse the connection info.
assert request.transport is not None
server_name, server_port = parse_sockname(request.transport.get_extra_info("sockname"))
remote_addr, remote_port = parse_sockname(request.transport.get_extra_info("peername"))
# Detect the URL scheme.
url_scheme = self._url_scheme
if url_scheme is None:
url_scheme = "http" if request.transport.get_extra_info("sslcontext") is None else "https"
# Create the environ.
environ = {
"REQUEST_METHOD": request.method,
"SCRIPT_NAME": script_name,
"PATH_INFO": path_info,
"RAW_URI": request.raw_path,
# RAW_URI: Gunicorn's non-standard field
"REQUEST_URI": request.raw_path,
# REQUEST_URI: uWSGI/Apache mod_wsgi's non-standard field
"QUERY_STRING": request.rel_url.raw_query_string,
"CONTENT_TYPE": request.headers.get("Content-Type", ""),
"CONTENT_LENGTH": str(content_length),
"SERVER_NAME": server_name,
"SERVER_PORT": server_port,
"REMOTE_ADDR": remote_addr,
"REMOTE_HOST": remote_addr,
"REMOTE_PORT": remote_port,
"SERVER_PROTOCOL": "HTTP/{}.{}".format(*request.version),
"wsgi.version": (1, 0),
"wsgi.url_scheme": url_scheme,
"wsgi.input": body,
"wsgi.errors": self._stderr,
"wsgi.multithread": True,
"wsgi.multiprocess": False,
"wsgi.run_once": False,
"asyncio.executor": self._executor,
"aiohttp.request": request,
}
# Add in additional HTTP headers.
for header_name in request.headers:
header_name = header_name.upper()
if not(is_hop_by_hop(header_name)) and header_name not in ("CONTENT-LENGTH", "CONTENT-TYPE"):
header_value = ",".join(request.headers.getall(header_name))
environ["HTTP_" + header_name.replace("-", "_")] = header_value
# All done!
return environ
async def handle_request(self, request: Request) -> Response:
# Check for body size overflow.
if request.content_length is not None and request.content_length > self._max_request_body_size:
raise HTTPRequestEntityTooLarge(
max_size=self._max_request_body_size,
actual_size=request.content_length,
)
# Buffer the body.
content_length = 0
with self._body_io() as body:
while True:
block = await request.content.readany()
if not block:
break
content_length += len(block)
if content_length > self._max_request_body_size:
raise HTTPRequestEntityTooLarge(
max_size=self._max_request_body_size,
actual_size=content_length,
)
body.write(block)
body.seek(0)
# Get the environ.
environ = self._get_environ(request, body, content_length)
loop = asyncio.get_event_loop()
return await loop.run_in_executor(
self._executor,
_run_application,
self._application,
environ,
)
__call__ = handle_request
def format_path(path: str) -> str:
assert not path.endswith("/"), f"{path!r} name should not end with /"
if path == "":
path = "/"
assert path.startswith("/"), f"{path!r} name should start with /"
return path
Handler = Callable[[Request], Awaitable[StreamResponse]]
Middleware = Callable[[Request, Handler], Awaitable[StreamResponse]]
def static_cors_middleware(*, static: Iterable[Tuple[str, str]], static_cors: str) -> Middleware:
@middleware
async def do_static_cors_middleware(request: Request, handler: Handler) -> StreamResponse:
response = await handler(request)
for path, _ in static:
if request.path.startswith(path):
response.headers["Access-Control-Allow-Origin"] = static_cors
break
return response
return do_static_cors_middleware
@contextmanager
def run_server(
application: WSGIApplication,
*,
# asyncio config.
threads: int = 4,
# Server config.
host: Optional[str] = None,
port: int = 8080,
# Unix server config.
unix_socket: Optional[str] = None,
unix_socket_perms: int = 0o600,
# Shared server config.
backlog: int = 1024,
# aiohttp config.
static: Iterable[Tuple[str, str]] = (),
static_cors: Optional[str] = None,
script_name: str = "",
shutdown_timeout: float = 60.0,
**kwargs: Any,
) -> Generator[Tuple[asyncio.AbstractEventLoop, BaseSite], None, None]:
# Set up async context.
loop = asyncio.new_event_loop()
asyncio.set_event_loop(loop)
assert threads >= 1, "threads should be >= 1"
executor = ThreadPoolExecutor(threads)
# Create aiohttp app.
app = Application()
# Add static routes.
static = [(format_path(path), dirname) for path, dirname in static]
for path, dirname in static:
app.router.add_static(path, dirname)
# Add the wsgi application. This has to be last.
app.router.add_route(
"*",
f"{format_path(script_name)}{{path_info:.*}}",
WSGIHandler(
application,
executor=executor,
**kwargs
).handle_request,
)
# Configure middleware.
if static_cors:
app.middlewares.append(static_cors_middleware(
static=static,
static_cors=static_cors,
))
# Start the app runner.
runner = AppRunner(app)
loop.run_until_complete(runner.setup())
# Set up the server.
if unix_socket is not None:
site: BaseSite = UnixSite(runner, path=unix_socket, backlog=backlog, shutdown_timeout=shutdown_timeout)
else:
site = TCPSite(runner, host=host, port=port, backlog=backlog, shutdown_timeout=shutdown_timeout)
loop.run_until_complete(site.start())
# Set socket permissions.
if unix_socket is not None:
os.chmod(unix_socket, unix_socket_perms)
# Report.
assert site._server is not None
assert isinstance(site._server, Server)
assert site._server.sockets is not None
server_uri = " ".join(
"http://{}:{}".format(*parse_sockname(socket.getsockname()))
for socket
in site._server.sockets
)
logger.info("Serving on %s", server_uri)
try:
yield loop, site
finally:
# Clean up unix sockets.
for socket in site._server.sockets:
sock_host, sock_port = parse_sockname(socket.getsockname())
if sock_host == "unix":
os.unlink(sock_port)
# Close the server.
logger.debug("Shutting down server on %s", server_uri)
loop.run_until_complete(site.stop())
# Shut down app.
logger.debug("Shutting down app on %s", server_uri)
loop.run_until_complete(runner.cleanup())
# Shut down executor.
logger.debug("Shutting down executor on %s", server_uri)
executor.shutdown()
# Shut down loop.
logger.debug("Shutting down loop on %s", server_uri)
loop.close()
asyncio.set_event_loop(None)
# All done!
logger.info("Stopped serving on %s", server_uri)
def serve(application: WSGIApplication, **kwargs: Any) -> None: # pragma: no cover
"""
Runs the WSGI application on :ref:`aiohttp <aiohttp-web>`, serving it until keyboard interrupt.
:param application: {application}
:param str url_scheme: {url_scheme}
:param io.BytesIO stderr: {stderr}
:param int inbuf_overflow: {inbuf_overflow}
:param int max_request_body_size: {max_request_body_size}
:param int threads: {threads}
:param str host: {host}
:param int port: {port}
:param str unix_socket: {unix_socket}
:param int unix_socket_perms: {unix_socket_perms}
:param int backlog: {backlog}
:param list static: {static}
:param list static_cors: {static_cors}
:param str script_name: {script_name}
:param int shutdown_timeout: {shutdown_timeout}
"""
with run_server(application, **kwargs) as (loop, site):
try:
loop.run_forever()
except KeyboardInterrupt:
pass
DEFAULTS = {}
DEFAULTS.update(WSGIHandler.__init__.__kwdefaults__) # type: ignore
DEFAULTS.update(run_server.__wrapped__.__kwdefaults__) # type: ignore
HELP = {
"application": "A WSGI application callable.",
"url_scheme": (
"A hint about the URL scheme used to access the application. Corresponds to ``environ['wsgi.url_scheme']``. "
"Default is auto-detected to ``'http'`` or ``'https'``."
),
"stderr": (
"A file-like value for WSGI error logging. Corresponds to ``environ['wsgi.errors']``. "
"Defaults to ``sys.stderr``."
),
"inbuf_overflow": (
"A tempfile will be created if the request body is larger than this value, which is measured in bytes. "
"Defaults to ``{inbuf_overflow!r}``."
).format_map(DEFAULTS),
"max_request_body_size": (
"Maximum number of bytes in request body. Defaults to ``{max_request_body_size!r}``. "
"Larger requests will receive a HTTP 413 (Request Entity Too Large) response."
).format_map(DEFAULTS),
"executor": "An Executor instance used to run WSGI requests. Defaults to the :mod:`asyncio` base executor.",
"host": "Host interfaces to bind. Defaults to ``'0.0.0.0'`` and ``'::'``.",
"port": "Port to bind. Defaults to ``{port!r}``.".format_map(DEFAULTS),
"unix_socket": "Path to a unix socket to bind, cannot be used with ``host``.",
"unix_socket_perms": (
"Filesystem permissions to apply to the unix socket. Defaults to ``{unix_socket_perms!r}``."
).format_map(DEFAULTS),
"backlog": "Socket connection backlog. Defaults to {backlog!r}.".format_map(DEFAULTS),
"static": "Static root mappings in the form (path, directory). Defaults to {static!r}".format_map(DEFAULTS),
"static_cors": (
"Set to '*' to enable CORS on static files for all origins, or a string to enable CORS for a specific origin. "
"Defaults to {static_cors!r}"
).format_map(DEFAULTS),
"script_name": (
"URL prefix for the WSGI application, should start with a slash, but not end with a slash. "
"Defaults to ``{script_name!r}``."
).format_map(DEFAULTS),
"threads": "Number of threads used to process application logic. Defaults to ``{threads!r}``.".format_map(DEFAULTS),
"shutdown_timeout": (
"Timeout when closing client connections on server shutdown. Defaults to ``{shutdown_timeout!r}``."
).format_map(DEFAULTS),
}
if __debug__:
assert WSGIHandler.__doc__ is not None
WSGIHandler.__doc__ = WSGIHandler.__doc__.format_map(HELP)
assert serve.__doc__ is not None
serve.__doc__ = serve.__doc__.format_map(HELP)
|