mirror of https://github.com/jumpserver/jumpserver
77 lines
2.2 KiB
Python
77 lines
2.2 KiB
Python
# ~*~ coding: utf-8 ~*~
|
|
#
|
|
|
|
from django.views.generic import ListView, UpdateView, DeleteView, FormView
|
|
from django.views.generic.edit import BaseUpdateView
|
|
from django.utils.translation import ugettext as _
|
|
from django.urls import reverse_lazy
|
|
|
|
from .models import Terminal
|
|
from users.utils import AdminUserRequiredMixin
|
|
from common.mixins import JSONResponseMixin
|
|
from .forms import TerminalForm
|
|
|
|
|
|
class TerminalListView(ListView):
|
|
model = Terminal
|
|
template_name = 'applications/terminal_list.html'
|
|
form_class = TerminalForm
|
|
|
|
def get_context_data(self, **kwargs):
|
|
context = super(TerminalListView, self).get_context_data(**kwargs)
|
|
context.update({
|
|
'app': _('Terminal'),
|
|
'action': _('Terminal list'),
|
|
'form': self.form_class()
|
|
})
|
|
return context
|
|
|
|
|
|
class TerminalUpdateView(UpdateView):
|
|
model = Terminal
|
|
form_class = TerminalForm
|
|
template_name = 'applications/terminal_update.html'
|
|
success_url = reverse_lazy('applications:applications-list')
|
|
|
|
def get_context_data(self, **kwargs):
|
|
context = super(TerminalUpdateView, self).get_context_data(**kwargs)
|
|
context.update({'app': _('Terminal'), 'action': _('Update applications')})
|
|
return context
|
|
|
|
|
|
class TerminalDeleteView(DeleteView):
|
|
model = Terminal
|
|
template_name = 'assets/delete_confirm.html'
|
|
success_url = reverse_lazy('applications:applications-list')
|
|
|
|
|
|
class TerminalModelAccept(AdminUserRequiredMixin, JSONResponseMixin, UpdateView):
|
|
model = Terminal
|
|
form_class = TerminalForm
|
|
template_name = 'applications/terminal_modal_test.html'
|
|
|
|
def post(self, request, *args, **kwargs):
|
|
print(request.POST)
|
|
return super(TerminalModelAccept, self).post(request, *args, **kwargs)
|
|
|
|
def form_valid(self, form):
|
|
terminal = form.save()
|
|
terminal.is_accepted = True
|
|
terminal.is_active = True
|
|
terminal.save()
|
|
data = {
|
|
'success': True,
|
|
'msg': 'success'
|
|
}
|
|
return self.render_json_response(data)
|
|
|
|
def form_invalid(self, form):
|
|
print('form.data')
|
|
data = {
|
|
'success': False,
|
|
'msg': str(form.errors),
|
|
}
|
|
return self.render_json_response(data)
|
|
|
|
|