
These codes are not useful. Change-Id: Id2ce428fef37794dba4772aedaed6a53ac10b934 Closes-bug: #1529541
173 lines
5.2 KiB
Python
173 lines
5.2 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.http import Http404 # noqa
|
|
from django.template.loader import render_to_string
|
|
from django.utils.translation import ugettext_lazy as _
|
|
from django.utils.translation import ungettext_lazy
|
|
|
|
from horizon import messages
|
|
from horizon import tables
|
|
from horizon.tables import base as tables_base
|
|
|
|
from sahara_dashboard.api import sahara as saharaclient
|
|
|
|
from saharaclient.api import base as api_base
|
|
|
|
|
|
class ClustersFilterAction(tables.FilterAction):
|
|
filter_type = "server"
|
|
filter_choices = (('name', _("Name"), True),
|
|
('status', _("Status"), True))
|
|
|
|
|
|
class ClusterGuide(tables.LinkAction):
|
|
name = "cluster_guide"
|
|
verbose_name = _("Cluster Creation Guide")
|
|
url = "horizon:project:data_processing.wizard:cluster_guide"
|
|
|
|
|
|
class CreateCluster(tables.LinkAction):
|
|
name = "create"
|
|
verbose_name = _("Launch Cluster")
|
|
url = "horizon:project:data_processing.clusters:create-cluster"
|
|
classes = ("ajax-modal",)
|
|
icon = "plus"
|
|
|
|
|
|
class ScaleCluster(tables.LinkAction):
|
|
name = "scale"
|
|
verbose_name = _("Scale Cluster")
|
|
url = "horizon:project:data_processing.clusters:scale"
|
|
classes = ("ajax-modal", "btn-edit")
|
|
|
|
def allowed(self, request, cluster=None):
|
|
return cluster.status == "Active"
|
|
|
|
|
|
class DeleteCluster(tables.DeleteAction):
|
|
@staticmethod
|
|
def action_present(count):
|
|
return ungettext_lazy(
|
|
u"Delete Cluster",
|
|
u"Delete Clusters",
|
|
count
|
|
)
|
|
|
|
@staticmethod
|
|
def action_past(count):
|
|
return ungettext_lazy(
|
|
u"Deleted Cluster",
|
|
u"Deleted Clusters",
|
|
count
|
|
)
|
|
|
|
def delete(self, request, obj_id):
|
|
saharaclient.cluster_delete(request, obj_id)
|
|
|
|
|
|
class UpdateRow(tables.Row):
|
|
ajax = True
|
|
|
|
def get_data(self, request, instance_id):
|
|
try:
|
|
return saharaclient.cluster_get(request, instance_id)
|
|
except api_base.APIException as e:
|
|
if e.error_code == 404:
|
|
raise Http404
|
|
else:
|
|
messages.error(request,
|
|
_("Unable to update row"))
|
|
|
|
|
|
def get_instances_count(cluster):
|
|
return sum([len(ng["instances"])
|
|
for ng in cluster.node_groups])
|
|
|
|
|
|
class RichErrorCell(tables_base.Cell):
|
|
@property
|
|
def status(self):
|
|
# The error cell values becomes quite complex and cannot be handled
|
|
# correctly with STATUS_CHOICES. Handling that explicitly.
|
|
status = self.datum.status.lower()
|
|
if status == "error":
|
|
return False
|
|
elif status == "active":
|
|
return True
|
|
|
|
return None
|
|
|
|
|
|
def get_rich_status_info(cluster):
|
|
return {
|
|
"status": cluster.status,
|
|
"status_description": cluster.status_description
|
|
}
|
|
|
|
|
|
def rich_status_filter(status_dict):
|
|
# Render the status "as is" if no description is provided.
|
|
if not status_dict["status_description"]:
|
|
return status_dict["status"]
|
|
|
|
# Error is rendered with a template containing an error description.
|
|
return render_to_string(
|
|
"project/data_processing.clusters/_rich_status.html", status_dict)
|
|
|
|
|
|
class ConfigureCluster(tables.LinkAction):
|
|
name = "configure"
|
|
verbose_name = _("Configure Cluster")
|
|
url = "horizon:project:data_processing.clusters:configure-cluster"
|
|
classes = ("ajax-modal", "configure-cluster-btn")
|
|
icon = "plus"
|
|
attrs = {"style": "display: none"}
|
|
|
|
|
|
class ClustersTable(tables.DataTable):
|
|
|
|
name = tables.Column("name",
|
|
verbose_name=_("Name"),
|
|
link=("horizon:project:data_processing."
|
|
"clusters:details"))
|
|
|
|
plugin = tables.Column("plugin_name",
|
|
verbose_name=_("Plugin"))
|
|
|
|
version = tables.Column("hadoop_version",
|
|
verbose_name=_("Version"))
|
|
|
|
# Status field need the whole cluster object to build the rich status.
|
|
status = tables.Column(get_rich_status_info,
|
|
verbose_name=_("Status"),
|
|
status=True,
|
|
filters=(rich_status_filter,))
|
|
|
|
instances_count = tables.Column(get_instances_count,
|
|
verbose_name=_("Instances Count"))
|
|
|
|
class Meta(object):
|
|
name = "clusters"
|
|
verbose_name = _("Clusters")
|
|
row_class = UpdateRow
|
|
cell_class = RichErrorCell
|
|
status_columns = ["status"]
|
|
table_actions = (ClusterGuide,
|
|
CreateCluster,
|
|
ConfigureCluster,
|
|
DeleteCluster,
|
|
ClustersFilterAction)
|
|
row_actions = (ScaleCluster,
|
|
DeleteCluster,)
|