mistral-dashboard/mistraldashboard/workflows/tables.py

145 lines
3.7 KiB
Python

# Copyright 2014 - StackStorm, 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.template.defaultfilters import title
from django.utils.translation import gettext_lazy as _
from django.utils.translation import ngettext_lazy
from horizon import tables
from horizon.utils import filters
from mistraldashboard import api
class CreateWorkflow(tables.LinkAction):
name = "create"
verbose_name = _("Create Workflow")
url = "horizon:mistral:workflows:select_definition"
classes = ("ajax-modal",)
icon = "plus"
class UpdateWorkflow(tables.LinkAction):
name = "update"
verbose_name = _("Update Workflow")
url = "horizon:mistral:workflows:change_definition"
classes = ("ajax-modal",)
icon = "pencil"
class DeleteWorkflow(tables.DeleteAction):
@staticmethod
def action_present(count):
return ngettext_lazy(
u"Delete Workflow",
u"Delete Workflows",
count
)
@staticmethod
def action_past(count):
return ngettext_lazy(
u"Deleted Workflow",
u"Deleted Workflows",
count
)
def delete(self, request, workflow_name):
api.workflow_delete(request, workflow_name)
class ExecuteWorkflow(tables.LinkAction):
name = "execute"
verbose_name = _("Execute")
url = "horizon:mistral:workflows:execute"
classes = ("ajax-modal", "btn-edit")
def tags_to_string(workflow):
return ', '.join(workflow.tags) if workflow.tags else None
def cut(workflow, length=50):
inputs = workflow.input
if inputs and len(inputs) > length:
return "%s..." % inputs[:length]
else:
return inputs
class WorkflowsTable(tables.DataTable):
name = tables.Column(
"name",
verbose_name=_("Name"),
link="horizon:mistral:workflows:detail"
)
id = tables.Column(
"id",
verbose_name=_("ID"),
)
scope = tables.Column(
"scope",
verbose_name=_("Scope"),
filters=[title],
)
definition = tables.Column(
"",
verbose_name=_("Definition"),
empty_value=_("View"),
link="horizon:mistral:workflows:definition",
link_classes=("ajax-modal",)
)
tags = tables.Column(
tags_to_string,
verbose_name=_("Tags")
)
inputs = tables.Column(
cut,
verbose_name=_("Input"),
link="horizon:mistral:workflows:input",
link_classes=("ajax-modal",)
)
created = tables.Column(
"created_at",
verbose_name=_("Created"),
filters=(
filters.parse_isotime,
filters.timesince_or_never
)
)
updated = tables.Column(
"updated_at",
verbose_name=_("Updated"),
filters=(
filters.parse_isotime,
filters.timesince_or_never
)
)
def get_object_id(self, datum):
return datum.name
class Meta(object):
name = "workflows"
verbose_name = _("Workflows")
table_actions = (
CreateWorkflow,
UpdateWorkflow,
DeleteWorkflow,
tables.FilterAction
)
row_actions = (ExecuteWorkflow, DeleteWorkflow)