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
|
# Copyright 2011 OpenStack Foundation.
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
"""Base class(es) for WSGI Middleware."""
from __future__ import annotations
from inspect import getfullargspec
import typing as ty
from oslo_config import cfg
import webob.dec
import webob.request
import webob.response
if ty.TYPE_CHECKING:
from _typeshed.wsgi import WSGIApplication
MiddlewareType = ty.TypeVar('MiddlewareType', bound='ConfigurableMiddleware')
class NoContentTypeResponse(webob.response.Response):
default_content_type = '' # prevents webob assigning content type
class NoContentTypeRequest(webob.request.Request):
ResponseClass = NoContentTypeResponse
class ConfigurableMiddleware:
"""Base WSGI middleware wrapper.
These classes require an application to be initialized that will be called
next. By default the middleware will simply call its wrapped app, or you
can override __call__ to customize its behavior.
"""
@classmethod
def factory(
cls: type[MiddlewareType],
global_conf: dict[str, ty.Any] | None,
**local_conf: ty.Any,
) -> ty.Callable[[WSGIApplication], MiddlewareType]:
"""Factory method for paste.deploy.
:param global_conf: dict of options for all middlewares (usually the
``[DEFAULT]`` section of the paste deploy configuration file)
:param local_conf: options dedicated to this middleware (usually the
option defined in the middleware's section of the paste deploy
configuration file)
"""
conf = global_conf.copy() if global_conf else {}
conf.update(local_conf)
def _factory(
app: WSGIApplication,
) -> MiddlewareType:
return cls(app, conf)
return _factory
def __init__(
self,
application: WSGIApplication | None,
conf: dict[str, ty.Any] | cfg.ConfigOpts | None = None,
) -> None:
"""Base middleware constructor
:param conf: a dict of options or a cfg.ConfigOpts object
"""
self.application = application
self.conf: dict[str, ty.Any]
self.oslo_conf: cfg.ConfigOpts
# NOTE(sileht): If the configuration come from oslo.config
# just use it.
if isinstance(conf, cfg.ConfigOpts):
self.conf = {}
self.oslo_conf = conf
else:
self.conf = conf or {}
if "oslo_config_project" in self.conf:
if 'oslo_config_file' in self.conf:
default_config_files = [self.conf['oslo_config_file']]
else:
default_config_files = None
if 'oslo_config_program' in self.conf:
program = self.conf['oslo_config_program']
else:
program = None
self.oslo_conf = cfg.ConfigOpts()
self.oslo_conf(
[],
project=self.conf['oslo_config_project'],
prog=program,
default_config_files=default_config_files,
validate_default_values=True,
)
else:
# Fallback to global object
self.oslo_conf = cfg.CONF
def _conf_get(self, key: str, group: str = "oslo_middleware") -> ty.Any:
if key in self.conf:
# Validate value type
self.oslo_conf.set_override(key, self.conf[key], group=group)
return getattr(getattr(self.oslo_conf, group), key)
def process_request(
self,
req: webob.request.Request,
) -> webob.response.Response | None:
"""Called on each request.
If this returns None, the next application down the stack will be
executed. If it returns a response then that response will be returned
and execution will stop here.
"""
return None
def process_response(
self,
response: webob.response.Response,
request: webob.request.Request | None = None,
) -> webob.response.Response:
"""Do whatever you'd like to the response."""
return response
@webob.dec.wsgify(RequestClass=NoContentTypeRequest) # type: ignore
def __call__(
self,
req: webob.request.Request,
) -> webob.response.Response | None:
response = self.process_request(req)
if response:
return response
response = req.get_response(self.application)
args = getfullargspec(self.process_response)[0]
if 'request' in args:
return self.process_response(response, request=req)
return self.process_response(response)
class Middleware(ConfigurableMiddleware):
"""Legacy base WSGI middleware wrapper.
Legacy interface that doesn't pass configuration options
to the middleware when it's loaded via paste.deploy.
"""
@classmethod
def factory(
cls: type[MiddlewareType],
global_conf: dict[str, ty.Any] | None,
**local_conf: ty.Any,
) -> ty.Callable[[WSGIApplication], MiddlewareType]:
"""Factory method for paste.deploy."""
def _factory(
app: WSGIApplication,
) -> MiddlewareType:
return cls(app)
return _factory
|