
This patch adds policy in code support for volume and volume type resources. Change-Id: I47d11a2f6423a76ca053abf075791ed70ee84b07 Partial-Implements: blueprint policy-in-code
71 lines
2.5 KiB
Python
71 lines
2.5 KiB
Python
# Copyright 2014 IBM Corp.
|
|
#
|
|
# 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.
|
|
|
|
from oslo_log import log as logging
|
|
from six.moves import http_client
|
|
import webob
|
|
|
|
from cinder.api import extensions
|
|
from cinder.api.openstack import wsgi
|
|
from cinder.policies import manageable_volumes as policy
|
|
from cinder import volume
|
|
|
|
LOG = logging.getLogger(__name__)
|
|
|
|
|
|
class VolumeUnmanageController(wsgi.Controller):
|
|
def __init__(self, *args, **kwargs):
|
|
super(VolumeUnmanageController, self).__init__(*args, **kwargs)
|
|
self.volume_api = volume.API()
|
|
|
|
@wsgi.response(http_client.ACCEPTED)
|
|
@wsgi.action('os-unmanage')
|
|
def unmanage(self, req, id, body):
|
|
"""Stop managing a volume.
|
|
|
|
This action is very much like a delete, except that a different
|
|
method (unmanage) is called on the Cinder driver. This has the effect
|
|
of removing the volume from Cinder management without actually
|
|
removing the backend storage object associated with it.
|
|
|
|
There are no required parameters.
|
|
|
|
A Not Found error is returned if the specified volume does not exist.
|
|
|
|
A Bad Request error is returned if the specified volume is still
|
|
attached to an instance.
|
|
"""
|
|
context = req.environ['cinder.context']
|
|
context.authorize(policy.UNMANAGE_POLICY)
|
|
|
|
LOG.info("Unmanage volume with id: %s", id)
|
|
|
|
# Not found exception will be handled at the wsgi level
|
|
vol = self.volume_api.get(context, id)
|
|
self.volume_api.delete(context, vol, unmanage_only=True)
|
|
return webob.Response(status_int=http_client.ACCEPTED)
|
|
|
|
|
|
class Volume_unmanage(extensions.ExtensionDescriptor):
|
|
"""Enable volume unmanage operation."""
|
|
|
|
name = "VolumeUnmanage"
|
|
alias = "os-volume-unmanage"
|
|
updated = "2012-05-31T00:00:00+00:00"
|
|
|
|
def get_controller_extensions(self):
|
|
controller = VolumeUnmanageController()
|
|
extension = extensions.ControllerExtension(self, 'volumes', controller)
|
|
return [extension]
|