trove-dashboard/trove_dashboard/content/database_configurations/tabs.py
Matt Van Dijk 949522f875 Add support for Trove configuration groups
Added attach/detach configuration group actions to the instances table.

Added tab to launch dialog to select a configuration group to
associate with the instance.

Added "Configuration Groups" panel which displays existing
configuration groups and allows the user to create new or delete
existing configuration groups.

Added a details screen with three tabs (Values, Instances, Details).
* The Values tab displays the list of all name/value parameters
associated with a configuration group along with actions to add new
parameters, delete existing parameters, discard changes and
apply changes.  Values can be modified in the table directly.
* The Instances tab displays the instances that the configuration
group is associated with along with actions to detach the
configuration group from the instance.
* The Details tab displays additional information on the
configuration group.

Added a configuration defaults tab to the database instance details.
Use a cache for storing changes to the configuration group.

Change-Id: Idbd6775342968c1659ca1e9b02dcb697750530b6
Co-Authored-By: Andrew Bramley <andrew@tesora.com>
Co-Authored-By: Duk Loi <duk@tesora.com>
Implements: blueprint trove-configuration-group-support
2016-09-09 12:05:22 -04:00

74 lines
2.4 KiB
Python

# Copyright 2015 Tesora 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.utils.translation import ugettext_lazy as _
from horizon import exceptions
from horizon import tabs
from trove_dashboard import api
from trove_dashboard.content.database_configurations \
import config_param_manager
from trove_dashboard.content.database_configurations \
import tables
class DetailsTab(tabs.Tab):
name = _("Details")
slug = "details_tab"
template_name = "project/database_configurations/_detail_overview.html"
def get_context_data(self, request):
return {"configuration": self.tab_group.kwargs['configuration']}
class ValuesTab(tabs.TableTab):
table_classes = [tables.ValuesTable]
name = _("Values")
slug = "values_tab"
template_name = "project/database_configurations/detail_param.html"
def get_values_data(self):
values_data = []
manager = config_param_manager.get(
self.request, self.tab_group.kwargs['configuration_id'])
for k, v in manager.get_configuration().values.items():
manager.add_param(k, v)
values_data.append(manager.create_config_value(k, v))
return values_data
class InstancesTab(tabs.TableTab):
table_classes = [tables.InstancesTable]
name = _("Instances")
slug = "instances_tab"
template_name = "horizon/common/_detail_table.html"
def get_instances_data(self):
configuration = self.tab_group.kwargs['configuration']
try:
data = api.trove.configuration_instances(self.request,
configuration.id)
except Exception:
msg = _('Unable to get configuration data.')
exceptions.handle(self.request, msg)
data = []
return data
class ConfigurationDetailTabs(tabs.TabGroup):
slug = "configuration_details"
tabs = (ValuesTab, InstancesTab, DetailsTab)
sticky = True