Ejemplo n.º 1
0
    def _setup_ext_routes(self, mapper, ext_mgr):
        for resource in ext_mgr.get_resources():
            LOG.debug('Extended resource: %s',
                      resource.collection)

            wsgi_resource = wsgi.Resource(resource.controller)
            self.resources[resource.collection] = wsgi_resource
            kargs = dict(
                controller=wsgi_resource,
                collection=resource.collection_actions,
                member=resource.member_actions)

            if resource.parent:
                kargs['parent_resource'] = resource.parent

            mapper.resource(resource.collection, resource.collection, **kargs)

            if resource.custom_routes_fn:
                resource.custom_routes_fn(mapper, wsgi_resource)
Ejemplo n.º 2
0
def create_resource():
    return wsgi.Resource(Controller())
Ejemplo n.º 3
0
def create_resource(ext_mgr):
    return wsgi.Resource(VolumeController(ext_mgr))
Ejemplo n.º 4
0
def create_resource():
    return wsgi.Resource(VolumeTypesController())
Ejemplo n.º 5
0
def create_resource(ext_mgr):
    return wsgi.Resource(SnapshotsController(ext_mgr))
Ejemplo n.º 6
0
def create_resource():
    return wsgi.Resource(VersionsController())