horizon/openstack_dashboard/dashboards/admin/volumes/volume_types/qos_specs/tables.py

72 lines
2.4 KiB
Python

# 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.urlresolvers import reverse
from django.utils.translation import ugettext_lazy as _
from horizon import tables
from openstack_dashboard import api
class SpecCreateKeyValuePair(tables.LinkAction):
# this is to create a spec key-value pair for an existing QOS Spec
name = "create"
verbose_name = _("Create")
url = "horizon:admin:volumes:volume_types:qos_specs:create"
classes = ("ajax-modal",)
icon = "plus"
def get_link_url(self, qos_spec=None):
qos_spec_id = self.table.kwargs['qos_spec_id']
return reverse(self.url, args=[qos_spec_id])
class SpecDeleteKeyValuePair(tables.DeleteAction):
data_type_singular = _("Spec")
data_type_plural = _("Specs")
def delete(self, request, obj_ids):
qos_spec_id = self.table.kwargs['qos_spec_id']
# use "unset" api to remove this key-value pair from QOS Spec
api.cinder.qos_spec_unset_keys(request,
qos_spec_id,
[obj_ids])
class SpecEditKeyValuePair(tables.LinkAction):
name = "edit"
verbose_name = _("Edit")
url = "horizon:admin:volumes:volume_types:qos_specs:edit"
classes = ("ajax-modal",)
icon = "pencil"
def get_link_url(self, qos_spec):
return reverse(self.url, args=[qos_spec.id, qos_spec.key])
class SpecsTable(tables.DataTable):
key = tables.Column('key', verbose_name=_('Key'))
value = tables.Column('value', verbose_name=_('Value'))
class Meta(object):
name = "specs"
verbose_name = _("Key-Value Pairs")
table_actions = (SpecCreateKeyValuePair, SpecDeleteKeyValuePair)
row_actions = (SpecEditKeyValuePair, SpecDeleteKeyValuePair)
def get_object_id(self, datum):
return datum.key
def get_object_display(self, datum):
return datum.key