1e80c3f3f9
Since murano didn't have mark_image and remove_mark_image policy, So add it for dashboard policy, let the images panel can use the rbac policy. Change-Id: I7a32ba004833e24e0d359ea94ddfc638124552ec Closes-Bug: #1621054 Implements: blueprint murano-dashboard-rbac
80 lines
2.6 KiB
Python
80 lines
2.6 KiB
Python
# Copyright (c) 2013 Mirantis, Inc.
|
|
#
|
|
# 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 django.utils.translation import ungettext_lazy
|
|
from horizon import exceptions
|
|
from horizon import tables
|
|
from openstack_dashboard.api import glance
|
|
from openstack_dashboard import policy
|
|
|
|
from muranodashboard.common import utils as md_utils
|
|
|
|
|
|
class MarkImage(tables.LinkAction):
|
|
name = "mark_image"
|
|
verbose_name = _("Mark Image")
|
|
url = "horizon:app-catalog:images:mark_image"
|
|
classes = ("ajax-modal",)
|
|
icon = "plus"
|
|
policy_rules = (("murano", "mark_image"),)
|
|
|
|
|
|
class RemoveImageMetadata(policy.PolicyTargetMixin, tables.DeleteAction):
|
|
policy_rules = (("murano", "remove_image_metadata"),)
|
|
|
|
@staticmethod
|
|
def action_present(count):
|
|
return ungettext_lazy(
|
|
u"Delete Metadata",
|
|
u"Delete Metadata",
|
|
count
|
|
)
|
|
|
|
@staticmethod
|
|
def action_past(count):
|
|
return ungettext_lazy(
|
|
u"Deleted Metadata",
|
|
u"Deleted Metadata",
|
|
count
|
|
)
|
|
|
|
def delete(self, request, obj_id):
|
|
try:
|
|
remove_props = ['murano_image_info']
|
|
glance.image_update_properties(request, obj_id, remove_props)
|
|
except Exception:
|
|
exceptions.handle(request, _('Unable to remove metadata'),
|
|
redirect=reverse(
|
|
'horizon:app-catalog:images:index'))
|
|
|
|
|
|
class MarkedImagesTable(tables.DataTable):
|
|
image = tables.Column(
|
|
'name',
|
|
link='horizon:project:images:images:detail',
|
|
verbose_name=_('Image')
|
|
)
|
|
type = tables.Column(lambda obj: getattr(obj, 'type', None),
|
|
verbose_name=_('Type'))
|
|
title = md_utils.Column(lambda obj: getattr(obj, 'title', None),
|
|
verbose_name=_('Title'))
|
|
|
|
class Meta(object):
|
|
name = 'marked_images'
|
|
verbose_name = _('Marked Images')
|
|
table_actions = (MarkImage, RemoveImageMetadata)
|
|
row_actions = (RemoveImageMetadata,)
|