2015-12-14 13:29:43 -06:00
|
|
|
# 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 abc
|
2016-06-16 20:01:15 +08:00
|
|
|
import logging
|
2016-06-08 14:17:14 -05:00
|
|
|
|
2016-11-10 16:19:01 +01:00
|
|
|
import openstack.exceptions
|
2016-05-13 17:27:12 -05:00
|
|
|
from osc_lib.command import command
|
2016-06-08 14:17:14 -05:00
|
|
|
from osc_lib import exceptions
|
2015-12-14 13:29:43 -06:00
|
|
|
import six
|
|
|
|
|
2016-05-31 20:31:28 +08:00
|
|
|
from openstackclient.i18n import _
|
2015-12-14 13:29:43 -06:00
|
|
|
|
|
|
|
|
2016-06-16 20:01:15 +08:00
|
|
|
LOG = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
2015-12-14 13:29:43 -06:00
|
|
|
@six.add_metaclass(abc.ABCMeta)
|
|
|
|
class NetworkAndComputeCommand(command.Command):
|
2016-02-05 09:02:27 -06:00
|
|
|
"""Network and Compute Command
|
|
|
|
|
|
|
|
Command class for commands that support implementation via
|
|
|
|
the network or compute endpoint. Such commands have different
|
|
|
|
implementations for take_action() and may even have different
|
|
|
|
arguments.
|
|
|
|
"""
|
2015-12-14 13:29:43 -06:00
|
|
|
|
|
|
|
def take_action(self, parsed_args):
|
|
|
|
if self.app.client_manager.is_network_endpoint_enabled():
|
|
|
|
return self.take_action_network(self.app.client_manager.network,
|
|
|
|
parsed_args)
|
|
|
|
else:
|
|
|
|
return self.take_action_compute(self.app.client_manager.compute,
|
|
|
|
parsed_args)
|
|
|
|
|
|
|
|
def get_parser(self, prog_name):
|
2016-06-16 20:01:15 +08:00
|
|
|
LOG.debug('get_parser(%s)', prog_name)
|
2015-12-14 13:29:43 -06:00
|
|
|
parser = super(NetworkAndComputeCommand, self).get_parser(prog_name)
|
|
|
|
parser = self.update_parser_common(parser)
|
2016-06-16 20:01:15 +08:00
|
|
|
LOG.debug('common parser: %s', parser)
|
2018-03-05 14:18:41 -06:00
|
|
|
if (
|
|
|
|
self.app is None or
|
|
|
|
self.app.client_manager.is_network_endpoint_enabled()
|
|
|
|
):
|
2015-12-14 13:29:43 -06:00
|
|
|
return self.update_parser_network(parser)
|
|
|
|
else:
|
|
|
|
return self.update_parser_compute(parser)
|
|
|
|
|
|
|
|
def update_parser_common(self, parser):
|
|
|
|
"""Default is no updates to parser."""
|
|
|
|
return parser
|
|
|
|
|
|
|
|
def update_parser_network(self, parser):
|
|
|
|
"""Default is no updates to parser."""
|
|
|
|
return parser
|
|
|
|
|
|
|
|
def update_parser_compute(self, parser):
|
|
|
|
"""Default is no updates to parser."""
|
|
|
|
return parser
|
|
|
|
|
|
|
|
@abc.abstractmethod
|
|
|
|
def take_action_network(self, client, parsed_args):
|
|
|
|
"""Override to do something useful."""
|
|
|
|
pass
|
|
|
|
|
|
|
|
@abc.abstractmethod
|
|
|
|
def take_action_compute(self, client, parsed_args):
|
|
|
|
"""Override to do something useful."""
|
|
|
|
pass
|
2016-02-05 13:39:40 -06:00
|
|
|
|
|
|
|
|
2016-03-14 14:03:04 +08:00
|
|
|
@six.add_metaclass(abc.ABCMeta)
|
|
|
|
class NetworkAndComputeDelete(NetworkAndComputeCommand):
|
|
|
|
"""Network and Compute Delete
|
|
|
|
|
|
|
|
Delete class for commands that support implementation via
|
|
|
|
the network or compute endpoint. Such commands have different
|
|
|
|
implementations for take_action() and may even have different
|
|
|
|
arguments. This class supports bulk deletion, and error handling
|
|
|
|
following the rules in doc/source/command-errors.rst.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def take_action(self, parsed_args):
|
|
|
|
ret = 0
|
|
|
|
resources = getattr(parsed_args, self.resource, [])
|
|
|
|
|
|
|
|
for r in resources:
|
|
|
|
self.r = r
|
|
|
|
try:
|
|
|
|
if self.app.client_manager.is_network_endpoint_enabled():
|
|
|
|
self.take_action_network(self.app.client_manager.network,
|
|
|
|
parsed_args)
|
|
|
|
else:
|
|
|
|
self.take_action_compute(self.app.client_manager.compute,
|
|
|
|
parsed_args)
|
|
|
|
except Exception as e:
|
2016-05-31 20:31:28 +08:00
|
|
|
msg = _("Failed to delete %(resource)s with name or ID "
|
|
|
|
"'%(name_or_id)s': %(e)s") % {
|
|
|
|
"resource": self.resource,
|
|
|
|
"name_or_id": r,
|
|
|
|
"e": e,
|
|
|
|
}
|
2016-06-16 20:01:15 +08:00
|
|
|
LOG.error(msg)
|
2016-03-14 14:03:04 +08:00
|
|
|
ret += 1
|
|
|
|
|
|
|
|
if ret:
|
|
|
|
total = len(resources)
|
2016-07-14 18:34:19 +08:00
|
|
|
msg = _("%(num)s of %(total)s %(resource)ss failed to delete.") % {
|
2016-05-31 20:31:28 +08:00
|
|
|
"num": ret,
|
|
|
|
"total": total,
|
|
|
|
"resource": self.resource,
|
|
|
|
}
|
2016-03-14 14:03:04 +08:00
|
|
|
raise exceptions.CommandError(msg)
|
|
|
|
|
|
|
|
|
2016-02-05 13:39:40 -06:00
|
|
|
@six.add_metaclass(abc.ABCMeta)
|
|
|
|
class NetworkAndComputeLister(command.Lister):
|
|
|
|
"""Network and Compute Lister
|
|
|
|
|
|
|
|
Lister class for commands that support implementation via
|
|
|
|
the network or compute endpoint. Such commands have different
|
|
|
|
implementations for take_action() and may even have different
|
|
|
|
arguments.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def take_action(self, parsed_args):
|
|
|
|
if self.app.client_manager.is_network_endpoint_enabled():
|
|
|
|
return self.take_action_network(self.app.client_manager.network,
|
|
|
|
parsed_args)
|
|
|
|
else:
|
|
|
|
return self.take_action_compute(self.app.client_manager.compute,
|
|
|
|
parsed_args)
|
|
|
|
|
|
|
|
def get_parser(self, prog_name):
|
2016-06-16 20:01:15 +08:00
|
|
|
LOG.debug('get_parser(%s)', prog_name)
|
2016-02-05 13:39:40 -06:00
|
|
|
parser = super(NetworkAndComputeLister, self).get_parser(prog_name)
|
|
|
|
parser = self.update_parser_common(parser)
|
2016-06-16 20:01:15 +08:00
|
|
|
LOG.debug('common parser: %s', parser)
|
2016-02-05 13:39:40 -06:00
|
|
|
if self.app.client_manager.is_network_endpoint_enabled():
|
|
|
|
return self.update_parser_network(parser)
|
|
|
|
else:
|
|
|
|
return self.update_parser_compute(parser)
|
|
|
|
|
|
|
|
def update_parser_common(self, parser):
|
|
|
|
"""Default is no updates to parser."""
|
|
|
|
return parser
|
|
|
|
|
|
|
|
def update_parser_network(self, parser):
|
|
|
|
"""Default is no updates to parser."""
|
|
|
|
return parser
|
|
|
|
|
|
|
|
def update_parser_compute(self, parser):
|
|
|
|
"""Default is no updates to parser."""
|
|
|
|
return parser
|
|
|
|
|
|
|
|
@abc.abstractmethod
|
|
|
|
def take_action_network(self, client, parsed_args):
|
|
|
|
"""Override to do something useful."""
|
|
|
|
pass
|
|
|
|
|
|
|
|
@abc.abstractmethod
|
|
|
|
def take_action_compute(self, client, parsed_args):
|
|
|
|
"""Override to do something useful."""
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
@six.add_metaclass(abc.ABCMeta)
|
|
|
|
class NetworkAndComputeShowOne(command.ShowOne):
|
|
|
|
"""Network and Compute ShowOne
|
|
|
|
|
|
|
|
ShowOne class for commands that support implementation via
|
|
|
|
the network or compute endpoint. Such commands have different
|
|
|
|
implementations for take_action() and may even have different
|
|
|
|
arguments.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def take_action(self, parsed_args):
|
2016-11-10 16:19:01 +01:00
|
|
|
try:
|
|
|
|
if self.app.client_manager.is_network_endpoint_enabled():
|
|
|
|
return self.take_action_network(
|
|
|
|
self.app.client_manager.network, parsed_args)
|
|
|
|
else:
|
|
|
|
return self.take_action_compute(
|
|
|
|
self.app.client_manager.compute, parsed_args)
|
|
|
|
except openstack.exceptions.HttpException as exc:
|
|
|
|
msg = _("Error while executing command: %s") % exc.message
|
2017-11-14 23:24:55 +00:00
|
|
|
if exc.details:
|
|
|
|
msg += ", " + six.text_type(exc.details)
|
2016-11-10 16:19:01 +01:00
|
|
|
raise exceptions.CommandError(msg)
|
2016-02-05 13:39:40 -06:00
|
|
|
|
|
|
|
def get_parser(self, prog_name):
|
2016-06-16 20:01:15 +08:00
|
|
|
LOG.debug('get_parser(%s)', prog_name)
|
2016-02-05 13:39:40 -06:00
|
|
|
parser = super(NetworkAndComputeShowOne, self).get_parser(prog_name)
|
|
|
|
parser = self.update_parser_common(parser)
|
2016-06-16 20:01:15 +08:00
|
|
|
LOG.debug('common parser: %s', parser)
|
2016-02-05 13:39:40 -06:00
|
|
|
if self.app.client_manager.is_network_endpoint_enabled():
|
|
|
|
return self.update_parser_network(parser)
|
|
|
|
else:
|
|
|
|
return self.update_parser_compute(parser)
|
|
|
|
|
|
|
|
def update_parser_common(self, parser):
|
|
|
|
"""Default is no updates to parser."""
|
|
|
|
return parser
|
|
|
|
|
|
|
|
def update_parser_network(self, parser):
|
|
|
|
"""Default is no updates to parser."""
|
|
|
|
return parser
|
|
|
|
|
|
|
|
def update_parser_compute(self, parser):
|
|
|
|
"""Default is no updates to parser."""
|
|
|
|
return parser
|
|
|
|
|
|
|
|
@abc.abstractmethod
|
|
|
|
def take_action_network(self, client, parsed_args):
|
|
|
|
"""Override to do something useful."""
|
|
|
|
pass
|
|
|
|
|
|
|
|
@abc.abstractmethod
|
|
|
|
def take_action_compute(self, client, parsed_args):
|
|
|
|
"""Override to do something useful."""
|
|
|
|
pass
|