glance.common.wsgi module¶
Utility methods for working with WSGI applications
- class glance.common.wsgi.APIMapper(controller_scan=<function controller_scan>, directory=None, always_scan=False, register=True, explicit=True)[source]¶
Bases:
MapperHandle route matching when url is ‘’ because routes.Mapper returns an error in this case.
- class glance.common.wsgi.Debug(application)[source]¶
Bases:
MiddlewareHelper class that can be inserted into any WSGI application chain to get information about the request and response.
- class glance.common.wsgi.JSONRequestDeserializer[source]¶
Bases:
object- has_body(request)[source]¶
Returns whether a Webob.Request object will possess an entity body.
- Parameters:
request – Webob.Request object
- httpverb_may_have_body = frozenset({'PATCH', 'POST', 'PUT'})¶
- valid_transfer_encoding = frozenset({'chunked', 'compress', 'deflate', 'gzip', 'identity'})¶
- class glance.common.wsgi.Middleware(application)[source]¶
Bases:
objectBase 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.
- class glance.common.wsgi.Request(environ, *args, **kwargs)[source]¶
Bases:
RequestAdd some OpenStack API-specific logic to the base webob.Request.
- best_match_language()[source]¶
Determines best available locale from the Accept-Language header.
- Returns:
the best language match or None if the ‘Accept-Language’ header was not available in the request.
- property body_file¶
Input stream of the request (wsgi.input). Setting this property resets the content_length and seekable flag (unlike setting req.body_file_raw).
- class glance.common.wsgi.Resource(controller, deserializer=None, serializer=None)[source]¶
Bases:
objectWSGI app that handles (de)serialization and controller dispatch.
Reads routing information supplied by RoutesMiddleware and calls the requested action method upon its deserializer, controller, and serializer. Those three objects may implement any of the basic controller action methods (create, update, show, index, delete) along with any that may be specified in the api router. A ‘default’ method may also be implemented to be used in place of any non-implemented actions. Deserializer methods must accept a request argument and return a dictionary. Controller methods must accept a request argument. Additionally, they must also accept keyword arguments that represent the keys returned by the Deserializer. They may raise a webob.exc exception or return a dict, which will be serialized by requested content type.