c042a05ac3
Cinder XML API is not tested by Tempest about for one year. We don't know if it works or not. It was deprecated in Mitaka release. Implements blueprint: remove-xml-api APIImpact DocImpact UpgradeImpact Change-Id: If98db25f1f4032725444c3959acb9aad8f869802
154 lines
5.3 KiB
Python
154 lines
5.3 KiB
Python
# Copyright (C) 2012 - 2014 EMC Corporation.
|
|
# 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.
|
|
|
|
"""The cgsnapshots api."""
|
|
|
|
from oslo_log import log as logging
|
|
import webob
|
|
from webob import exc
|
|
|
|
from cinder.api import common
|
|
from cinder.api import extensions
|
|
from cinder.api.openstack import wsgi
|
|
from cinder.api.views import cgsnapshots as cgsnapshot_views
|
|
from cinder import consistencygroup as consistencygroupAPI
|
|
from cinder import exception
|
|
from cinder.i18n import _, _LI
|
|
|
|
LOG = logging.getLogger(__name__)
|
|
|
|
|
|
class CgsnapshotsController(wsgi.Controller):
|
|
"""The cgsnapshots API controller for the OpenStack API."""
|
|
|
|
_view_builder_class = cgsnapshot_views.ViewBuilder
|
|
|
|
def __init__(self):
|
|
self.cgsnapshot_api = consistencygroupAPI.API()
|
|
super(CgsnapshotsController, self).__init__()
|
|
|
|
def show(self, req, id):
|
|
"""Return data about the given cgsnapshot."""
|
|
LOG.debug('show called for member %s', id)
|
|
context = req.environ['cinder.context']
|
|
|
|
try:
|
|
cgsnapshot = self.cgsnapshot_api.get_cgsnapshot(
|
|
context,
|
|
cgsnapshot_id=id)
|
|
except exception.CgSnapshotNotFound as error:
|
|
raise exc.HTTPNotFound(explanation=error.msg)
|
|
|
|
return self._view_builder.detail(req, cgsnapshot)
|
|
|
|
def delete(self, req, id):
|
|
"""Delete a cgsnapshot."""
|
|
LOG.debug('delete called for member %s', id)
|
|
context = req.environ['cinder.context']
|
|
|
|
LOG.info(_LI('Delete cgsnapshot with id: %s'), id, context=context)
|
|
|
|
try:
|
|
cgsnapshot = self.cgsnapshot_api.get_cgsnapshot(
|
|
context,
|
|
cgsnapshot_id=id)
|
|
self.cgsnapshot_api.delete_cgsnapshot(context, cgsnapshot)
|
|
except exception.CgSnapshotNotFound as error:
|
|
raise exc.HTTPNotFound(explanation=error.msg)
|
|
except exception.InvalidCgSnapshot:
|
|
msg = _("Invalid cgsnapshot")
|
|
raise exc.HTTPBadRequest(explanation=msg)
|
|
except Exception:
|
|
msg = _("Failed cgsnapshot")
|
|
raise exc.HTTPBadRequest(explanation=msg)
|
|
|
|
return webob.Response(status_int=202)
|
|
|
|
def index(self, req):
|
|
"""Returns a summary list of cgsnapshots."""
|
|
return self._get_cgsnapshots(req, is_detail=False)
|
|
|
|
def detail(self, req):
|
|
"""Returns a detailed list of cgsnapshots."""
|
|
return self._get_cgsnapshots(req, is_detail=True)
|
|
|
|
def _get_cgsnapshots(self, req, is_detail):
|
|
"""Returns a list of cgsnapshots, transformed through view builder."""
|
|
context = req.environ['cinder.context']
|
|
cgsnapshots = self.cgsnapshot_api.get_all_cgsnapshots(context)
|
|
limited_list = common.limited(cgsnapshots, req)
|
|
|
|
if is_detail:
|
|
cgsnapshots = self._view_builder.detail_list(req, limited_list)
|
|
else:
|
|
cgsnapshots = self._view_builder.summary_list(req, limited_list)
|
|
return cgsnapshots
|
|
|
|
@wsgi.response(202)
|
|
def create(self, req, body):
|
|
"""Create a new cgsnapshot."""
|
|
LOG.debug('Creating new cgsnapshot %s', body)
|
|
self.assert_valid_body(body, 'cgsnapshot')
|
|
|
|
context = req.environ['cinder.context']
|
|
cgsnapshot = body['cgsnapshot']
|
|
self.validate_name_and_description(cgsnapshot)
|
|
|
|
try:
|
|
group_id = cgsnapshot['consistencygroup_id']
|
|
except KeyError:
|
|
msg = _("'consistencygroup_id' must be specified")
|
|
raise exc.HTTPBadRequest(explanation=msg)
|
|
|
|
try:
|
|
group = self.cgsnapshot_api.get(context, group_id)
|
|
except exception.ConsistencyGroupNotFound as error:
|
|
raise exc.HTTPNotFound(explanation=error.msg)
|
|
|
|
name = cgsnapshot.get('name', None)
|
|
description = cgsnapshot.get('description', None)
|
|
|
|
LOG.info(_LI("Creating cgsnapshot %(name)s."),
|
|
{'name': name},
|
|
context=context)
|
|
|
|
try:
|
|
new_cgsnapshot = self.cgsnapshot_api.create_cgsnapshot(
|
|
context, group, name, description)
|
|
except exception.InvalidCgSnapshot as error:
|
|
raise exc.HTTPBadRequest(explanation=error.msg)
|
|
except exception.CgSnapshotNotFound as error:
|
|
raise exc.HTTPNotFound(explanation=error.msg)
|
|
|
|
retval = self._view_builder.summary(req, new_cgsnapshot)
|
|
|
|
return retval
|
|
|
|
|
|
class Cgsnapshots(extensions.ExtensionDescriptor):
|
|
"""cgsnapshots support."""
|
|
|
|
name = 'Cgsnapshots'
|
|
alias = 'cgsnapshots'
|
|
updated = '2014-08-18T00:00:00+00:00'
|
|
|
|
def get_resources(self):
|
|
resources = []
|
|
res = extensions.ResourceExtension(
|
|
Cgsnapshots.alias, CgsnapshotsController(),
|
|
collection_actions={'detail': 'GET'})
|
|
resources.append(res)
|
|
return resources
|