mirror of https://github.com/jumpserver/jumpserver
128 lines
3.4 KiB
Python
128 lines
3.4 KiB
Python
# ~*~ coding: utf-8 ~*~
|
|
|
|
from django.utils.translation import ugettext as _
|
|
from django.conf import settings
|
|
from django.views.generic import ListView, DetailView, TemplateView
|
|
|
|
from common.mixins import DatetimeSearchMixin
|
|
from common.permissions import PermissionsMixin, IsOrgAdmin
|
|
from orgs.utils import current_org
|
|
from ..models import Task, AdHoc, AdHocExecution
|
|
|
|
|
|
__all__ = [
|
|
'TaskListView', 'TaskDetailView', 'TaskExecutionView',
|
|
'TaskAdhocView', 'AdHocDetailView', 'AdHocExecutionDetailView',
|
|
'AdHocExecutionView'
|
|
]
|
|
|
|
|
|
class TaskListView(PermissionsMixin, TemplateView):
|
|
paginate_by = settings.DISPLAY_PER_PAGE
|
|
model = Task
|
|
ordering = ('-date_created',)
|
|
context_object_name = 'task_list'
|
|
template_name = 'ops/task_list.html'
|
|
keyword = ''
|
|
permission_classes = [IsOrgAdmin]
|
|
|
|
def get_context_data(self, **kwargs):
|
|
context = {
|
|
'app': _('Ops'),
|
|
'action': _('Task list'),
|
|
}
|
|
kwargs.update(context)
|
|
return super().get_context_data(**kwargs)
|
|
|
|
|
|
class TaskDetailView(PermissionsMixin, DetailView):
|
|
model = Task
|
|
template_name = 'ops/task_detail.html'
|
|
permission_classes = [IsOrgAdmin]
|
|
|
|
def get_queryset(self):
|
|
queryset = super().get_queryset()
|
|
return queryset
|
|
|
|
def get_context_data(self, **kwargs):
|
|
context = {
|
|
'app': _('Ops'),
|
|
'action': _('Task detail'),
|
|
}
|
|
kwargs.update(context)
|
|
return super().get_context_data(**kwargs)
|
|
|
|
|
|
class TaskAdhocView(PermissionsMixin, DetailView):
|
|
model = Task
|
|
template_name = 'ops/task_adhoc.html'
|
|
permission_classes = [IsOrgAdmin]
|
|
|
|
def get_context_data(self, **kwargs):
|
|
context = {
|
|
'app': _('Ops'),
|
|
'action': _('Task versions'),
|
|
}
|
|
kwargs.update(context)
|
|
return super().get_context_data(**kwargs)
|
|
|
|
|
|
class TaskExecutionView(PermissionsMixin, DetailView):
|
|
model = Task
|
|
template_name = 'ops/task_history.html'
|
|
permission_classes = [IsOrgAdmin]
|
|
|
|
def get_context_data(self, **kwargs):
|
|
context = {
|
|
'app': _('Ops'),
|
|
'action': _('Task execution list'),
|
|
}
|
|
kwargs.update(context)
|
|
return super().get_context_data(**kwargs)
|
|
|
|
|
|
class AdHocDetailView(PermissionsMixin, DetailView):
|
|
model = AdHoc
|
|
template_name = 'ops/adhoc_detail.html'
|
|
permission_classes = [IsOrgAdmin]
|
|
|
|
def get_context_data(self, **kwargs):
|
|
context = {
|
|
'app': _('Ops'),
|
|
'action': _('Task detail'),
|
|
}
|
|
kwargs.update(context)
|
|
return super().get_context_data(**kwargs)
|
|
|
|
|
|
class AdHocExecutionView(PermissionsMixin, DetailView):
|
|
model = AdHoc
|
|
template_name = 'ops/adhoc_history.html'
|
|
permission_classes = [IsOrgAdmin]
|
|
|
|
def get_context_data(self, **kwargs):
|
|
context = {
|
|
'app': _('Ops'),
|
|
'action': _('Version run execution'),
|
|
}
|
|
kwargs.update(context)
|
|
return super().get_context_data(**kwargs)
|
|
|
|
|
|
class AdHocExecutionDetailView(PermissionsMixin, DetailView):
|
|
model = AdHocExecution
|
|
template_name = 'ops/adhoc_history_detail.html'
|
|
permission_classes = [IsOrgAdmin]
|
|
|
|
def get_context_data(self, **kwargs):
|
|
context = {
|
|
'app': _('Ops'),
|
|
'action': _('Execution detail'),
|
|
}
|
|
kwargs.update(context)
|
|
return super().get_context_data(**kwargs)
|
|
|
|
|
|
|
|
|