
H302 check was enabled in Horizon recently which allows importing modules only. This patch fixes all import statements except for gettext where it makes more sense to use _. In those cases the warnings are discarded by adding the # noqa comment to the end of the line. Fixes: bug #1218882 Change-Id: I745471bd372fac3724aa04cc08c512fb823cfbd0
67 lines
2.4 KiB
Python
67 lines
2.4 KiB
Python
# vim: tabstop=4 shiftwidth=4 softtabstop=4
|
|
#
|
|
# 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 django.core import urlresolvers
|
|
from django.utils.translation import ugettext_lazy as _ # noqa
|
|
|
|
from horizon import exceptions
|
|
from horizon import forms
|
|
from horizon import messages
|
|
|
|
from tuskar_ui import api as tuskar
|
|
|
|
import logging
|
|
|
|
LOG = logging.getLogger(__name__)
|
|
|
|
|
|
class DeleteForm(forms.SelfHandlingForm):
|
|
def __init__(self, request, *args, **kwargs):
|
|
super(DeleteForm, self).__init__(request, *args, **kwargs)
|
|
|
|
resource_class = self.initial.get('resource_class', None)
|
|
self.command = DeleteCommand(request, resource_class)
|
|
|
|
def handle(self, request, data):
|
|
try:
|
|
self.command.execute()
|
|
|
|
messages.success(request, self.command.msg)
|
|
return True
|
|
except Exception:
|
|
exceptions.handle(request, _("Unable to delete Resource Class."))
|
|
|
|
|
|
# TODO(this command will be reused in table, so code is not duplicated)
|
|
class DeleteCommand(object):
|
|
def __init__(self, request, resource_class):
|
|
self.resource_class = resource_class
|
|
self.request = request
|
|
self.header = (_("Deleting resource class '%s.'")
|
|
% self.resource_class.name)
|
|
self.msg = ""
|
|
|
|
def execute(self):
|
|
try:
|
|
tuskar.ResourceClass.delete(self.request,
|
|
self.resource_class.id)
|
|
self.msg = (_('Successfully deleted Class "%s".')
|
|
% self.resource_class.name)
|
|
except Exception:
|
|
self.msg = _('Failed to delete Class %s') % self.resource_class.id
|
|
LOG.info(self.msg)
|
|
redirect = urlresolvers.reverse(
|
|
'horizon:infrastructure:resource_management:index')
|
|
exceptions.handle(self.request, self.msg, redirect=redirect)
|