Bases: object
Maps method name to local methods through action name.
Find and call local method.
Bases: object
Default controller.
Decorator for versioning api methods.
Add the decorator to any method which takes a request object as the first parameter and belongs to a class which inherits from wsgi.Controller.
@min_ver: string representing minimum version @max_ver: optional string representing maximum version
Bases: type
Controller metaclass.
This metaclass automates the task of assembling a dictionary mapping action keys to method names.
Bases: webob.exc.HTTPException
Wrap webob.exc.HTTPException to provide API friendly response.
Bases: nova.api.openstack.wsgi.ActionDispatcher
Bases: nova.api.openstack.wsgi.ActionDispatcher
Default JSON request body serialization.
Bases: webob.exc.HTTPException
Rate-limited request response.
Bases: nova.wsgi.Request
Add some OpenStack API-specific logic to the base webob.Request.
Determine the requested response content-type.
Determine the best available language for the request.
Returns: | the best language match or None if the ‘Accept-Language’ header was not available in the request. |
---|
Allow API methods to store objects from a DB query to be used by API extensions within the same API request.
An instance of this class only lives for the lifetime of a single API request, so there’s no need to implement full cache management.
Determine content type of the request body.
Does not do any body introspection, only checks header
Allow an API extension to get a previously stored object within the same API request.
Note that the object data will be slightly stale.
Allow an API extension to get previously stored objects within the same API request.
Note that the object data will be slightly stale.
Set API version request based on the request header information.
Bases: nova.wsgi.Application
WSGI app that handles (de)serialization and controller dispatch.
WSGI app that reads routing information supplied by RoutesMiddleware and calls the requested action method upon its controller. All controller action methods must accept a ‘req’ argument, which is the incoming wsgi.Request. If the operation is a PUT or POST, the controller method must also accept a ‘body’ argument (the deserialized request body). They may raise a webob.exc exception or return a dict, which will be serialized by requested content type.
Exceptions derived from webob.exc.HTTPException will be automatically wrapped in Fault() to provide API friendly error responses.
Dispatch a call to the action-specific method.
Parse dictionary created by routes library.
Registers controller actions with this resource.
Registers controller extensions with this resource.
Bases: object
Context manager to handle Resource exceptions.
Used when processing exceptions generated by API implementation methods (or their extensions). Converts most exceptions to Fault exceptions, with the appropriate logging.
Bases: nova.api.openstack.wsgi.Resource
Bases: object
Bundles a response object
Object that app methods may return in order to allow its response to be modified by extensions in the code. Its use is optional (and should only be used if you really know what you are doing).
Retrieve the response status.
Retrieve the headers.
Serializes the wrapped object.
Utility method for serializing the wrapped object. Returns a webob.Response object.
Mark a function as an action.
The given name will be taken as the action key in the body.
This is also overloaded to allow extensions to provide non-extending definitions of create and delete operations.
Determine action to invoke.
This looks inside the json body and fetches out the action method name.
Indicate a function extends an operation.
Can be used as either:
@extends
def index(...):
pass
or as:
@extends(action='resize')
def _action_resize(...):
pass
Attaches response code to a method.
This decorator associates a response code with a method. Note that the function attributes are directly manipulated; the method is not wrapped.