--- /dev/null
+# Copyright (c) 2015 Hitachi Data Systems, Inc.
+# 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.
+
+from oslo_log import log as logging
+
+from cinder.api import extensions
+from cinder.api.openstack import wsgi
+from cinder.api.views import capabilities as capabilities_view
+from cinder.volume import rpcapi
+
+
+LOG = logging.getLogger(__name__)
+
+
+def authorize(context, action_name):
+ extensions.extension_authorizer('volume', action_name)(context)
+
+
+class CapabilitiesController(wsgi.Controller):
+ """The Capabilities controller for the OpenStack API."""
+
+ _view_builder_class = capabilities_view.ViewBuilder
+
+ def __init__(self):
+ self.volume_api = rpcapi.VolumeAPI()
+ super(CapabilitiesController, self).__init__()
+
+ def show(self, req, id):
+ """Return capabilities list of given backend."""
+ context = req.environ['cinder.context']
+ authorize(context, 'capabilities')
+ capabilities = self.volume_api.get_capabilities(context, id, False)
+ return self._view_builder.summary(req, capabilities, id)
+
+
+class Capabilities(extensions.ExtensionDescriptor):
+ """Capabilities support."""
+
+ name = "Capabilities"
+ alias = "capabilities"
+ namespace = "http://docs.openstack.org/volume/ext/capabilities/api/v2"
+ updated = "2015-08-31T00:00:00+00:00"
+
+ def get_resources(self):
+ resources = []
+ res = extensions.ResourceExtension(
+ Capabilities.alias,
+ CapabilitiesController())
+
+ resources.append(res)
+ return resources
--- /dev/null
+# Copyright (c) 2015 Hitachi Data Systems, Inc.
+# 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.
+
+from cinder.api import common
+
+
+class ViewBuilder(common.ViewBuilder):
+ """Model capabilities API responses as a python dictionary."""
+
+ _collection_name = "capabilities"
+
+ def __init__(self):
+ """Initialize view builder."""
+ super(ViewBuilder, self).__init__()
+
+ def summary(self, request, capabilities, id):
+ """Summary view of a backend capabilities."""
+ return {
+ 'namespace': 'OS::Storage::Capabilities::%s' % id,
+ 'vendor_name': capabilities.get('vendor_name'),
+ 'volume_backend_name': capabilities.get('volume_backend_name'),
+ 'pool_name': capabilities.get('pool_name'),
+ 'driver_version': capabilities.get('driver_version'),
+ 'storage_protocol': capabilities.get('storage_protocol'),
+ 'display_name': capabilities.get('display_name'),
+ 'description': capabilities.get('description'),
+ 'visibility': capabilities.get('visibility'),
+ 'properties': capabilities.get('properties'),
+ }
--- /dev/null
+# Copyright (c) 2015 Hitachi Data Systems, Inc.
+# 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.
+
+import mock
+
+from cinder.api.contrib import capabilities
+from cinder import context
+from cinder import test
+from cinder.tests.unit.api import fakes
+
+
+def rpcapi_get_capabilities(self, context, host, discover):
+ capabilities = dict(
+ vendor_name='OpenStack',
+ volume_backend_name='lvm',
+ pool_name='pool',
+ driver_version='2.0.0',
+ storage_protocol='iSCSI',
+ display_name='Capabilities of Cinder LVM driver',
+ description='These are volume type options provided by '
+ 'Cinder LVM driver, blah, blah.',
+ visibility='public',
+ properties = dict(
+ compression = dict(
+ title='Compression',
+ description='Enables compression.',
+ type='boolean'),
+ qos = dict(
+ title='QoS',
+ description='Enables QoS.',
+ type='boolean'),
+ replication = dict(
+ title='Replication',
+ description='Enables replication.',
+ type='boolean'),
+ thin_provisioning = dict(
+ title='Thin Provisioning',
+ description='Sets thin provisioning.',
+ type='boolean'),
+ )
+ )
+ return capabilities
+
+
+@mock.patch('cinder.volume.rpcapi.VolumeAPI.get_capabilities',
+ rpcapi_get_capabilities)
+class CapabilitiesAPITest(test.TestCase):
+ def setUp(self):
+ super(CapabilitiesAPITest, self).setUp()
+ self.flags(host='fake')
+ self.controller = capabilities.CapabilitiesController()
+ self.ctxt = context.RequestContext('admin', 'fake', True)
+
+ def test_capabilities_summary(self):
+ req = fakes.HTTPRequest.blank('/fake/capabilities/fake')
+ req.environ['cinder.context'] = self.ctxt
+ res = self.controller.show(req, 'fake')
+
+ expected = {
+ 'namespace': 'OS::Storage::Capabilities::fake',
+ 'vendor_name': 'OpenStack',
+ 'volume_backend_name': 'lvm',
+ 'pool_name': 'pool',
+ 'driver_version': '2.0.0',
+ 'storage_protocol': 'iSCSI',
+ 'display_name': 'Capabilities of Cinder LVM driver',
+ 'description': 'These are volume type options provided by '
+ 'Cinder LVM driver, blah, blah.',
+ 'visibility': 'public',
+ 'properties': {
+ 'compression': {
+ 'title': 'Compression',
+ 'description': 'Enables compression.',
+ 'type': 'boolean'},
+ 'qos': {
+ 'title': 'QoS',
+ 'description': 'Enables QoS.',
+ 'type': 'boolean'},
+ 'replication': {
+ 'title': 'Replication',
+ 'description': 'Enables replication.',
+ 'type': 'boolean'},
+ 'thin_provisioning': {
+ 'title': 'Thin Provisioning',
+ 'description': 'Sets thin provisioning.',
+ 'type': 'boolean'},
+ }
+ }
+
+ self.assertDictMatch(expected, res)
"volume_extension:services:update" : "rule:admin_api",
"volume_extension:volume_manage": "rule:admin_api",
"volume_extension:volume_unmanage": "rule:admin_api",
+ "volume_extension:capabilities": "rule:admin_api",
"limits_extension:used_limits": "",
"volume_extension:volume_manage": "rule:admin_api",
"volume_extension:volume_unmanage": "rule:admin_api",
+ "volume_extension:capabilities": "rule:admin_api",
+
"volume:create_transfer": "",
"volume:accept_transfer": "",
"volume:delete_transfer": "",