2018-11-26 21:08:18 +00:00
|
|
|
"""passbook Application administration"""
|
2019-02-26 08:46:44 +00:00
|
|
|
from django.contrib import messages
|
2019-10-10 11:01:49 +00:00
|
|
|
from django.contrib.auth.mixins import LoginRequiredMixin
|
2019-12-31 11:51:16 +00:00
|
|
|
from django.contrib.auth.mixins import (
|
|
|
|
PermissionRequiredMixin as DjangoPermissionRequiredMixin,
|
|
|
|
)
|
2018-11-26 21:08:18 +00:00
|
|
|
from django.contrib.messages.views import SuccessMessageMixin
|
|
|
|
from django.urls import reverse_lazy
|
|
|
|
from django.utils.translation import ugettext as _
|
2019-10-10 11:01:49 +00:00
|
|
|
from django.views.generic import DeleteView, ListView, UpdateView
|
|
|
|
from guardian.mixins import PermissionListMixin, PermissionRequiredMixin
|
2018-11-11 12:41:48 +00:00
|
|
|
|
2018-11-26 21:08:18 +00:00
|
|
|
from passbook.core.forms.applications import ApplicationForm
|
2018-11-11 12:41:48 +00:00
|
|
|
from passbook.core.models import Application
|
2019-10-10 11:01:49 +00:00
|
|
|
from passbook.lib.views import CreateAssignPermView
|
2018-11-11 12:41:48 +00:00
|
|
|
|
|
|
|
|
2019-10-10 11:01:49 +00:00
|
|
|
class ApplicationListView(LoginRequiredMixin, PermissionListMixin, ListView):
|
2018-11-26 21:08:18 +00:00
|
|
|
"""Show list of all applications"""
|
2018-11-16 12:08:37 +00:00
|
|
|
|
2018-11-11 12:41:48 +00:00
|
|
|
model = Application
|
2019-12-31 11:51:16 +00:00
|
|
|
permission_required = "passbook_core.view_application"
|
|
|
|
ordering = "name"
|
2019-10-14 11:15:42 +00:00
|
|
|
paginate_by = 40
|
2019-12-31 11:51:16 +00:00
|
|
|
template_name = "administration/application/list.html"
|
2018-11-11 12:41:48 +00:00
|
|
|
|
2018-11-26 21:08:18 +00:00
|
|
|
def get_queryset(self):
|
|
|
|
return super().get_queryset().select_subclasses()
|
|
|
|
|
|
|
|
|
2019-12-31 11:51:16 +00:00
|
|
|
class ApplicationCreateView(
|
|
|
|
SuccessMessageMixin,
|
|
|
|
LoginRequiredMixin,
|
|
|
|
DjangoPermissionRequiredMixin,
|
|
|
|
CreateAssignPermView,
|
|
|
|
):
|
2018-11-26 21:08:18 +00:00
|
|
|
"""Create new Application"""
|
|
|
|
|
2019-10-10 11:01:49 +00:00
|
|
|
model = Application
|
2018-11-26 21:08:18 +00:00
|
|
|
form_class = ApplicationForm
|
2019-12-31 11:51:16 +00:00
|
|
|
permission_required = "passbook_core.add_application"
|
2018-11-26 21:08:18 +00:00
|
|
|
|
2019-12-31 11:51:16 +00:00
|
|
|
template_name = "generic/create.html"
|
|
|
|
success_url = reverse_lazy("passbook_admin:applications")
|
|
|
|
success_message = _("Successfully created Application")
|
2018-11-26 21:08:18 +00:00
|
|
|
|
2019-02-27 14:48:33 +00:00
|
|
|
def get_context_data(self, **kwargs):
|
2019-12-31 11:51:16 +00:00
|
|
|
kwargs["type"] = "Application"
|
2019-02-27 14:48:33 +00:00
|
|
|
return super().get_context_data(**kwargs)
|
|
|
|
|
2018-11-16 08:10:35 +00:00
|
|
|
|
2019-12-31 11:51:16 +00:00
|
|
|
class ApplicationUpdateView(
|
|
|
|
SuccessMessageMixin, LoginRequiredMixin, PermissionRequiredMixin, UpdateView
|
|
|
|
):
|
2018-11-26 21:08:18 +00:00
|
|
|
"""Update application"""
|
2018-11-11 12:41:48 +00:00
|
|
|
|
|
|
|
model = Application
|
2018-11-26 21:08:18 +00:00
|
|
|
form_class = ApplicationForm
|
2019-12-31 11:51:16 +00:00
|
|
|
permission_required = "passbook_core.change_application"
|
2018-11-26 21:08:18 +00:00
|
|
|
|
2019-12-31 11:51:16 +00:00
|
|
|
template_name = "generic/update.html"
|
|
|
|
success_url = reverse_lazy("passbook_admin:applications")
|
|
|
|
success_message = _("Successfully updated Application")
|
2018-11-26 21:08:18 +00:00
|
|
|
|
|
|
|
|
2019-12-31 11:51:16 +00:00
|
|
|
class ApplicationDeleteView(
|
|
|
|
SuccessMessageMixin, LoginRequiredMixin, PermissionRequiredMixin, DeleteView
|
|
|
|
):
|
2018-11-26 21:08:18 +00:00
|
|
|
"""Delete application"""
|
|
|
|
|
|
|
|
model = Application
|
2019-12-31 11:51:16 +00:00
|
|
|
permission_required = "passbook_core.delete_application"
|
2018-11-26 21:08:18 +00:00
|
|
|
|
2019-12-31 11:51:16 +00:00
|
|
|
template_name = "generic/delete.html"
|
|
|
|
success_url = reverse_lazy("passbook_admin:applications")
|
|
|
|
success_message = _("Successfully deleted Application")
|
2019-02-26 08:46:44 +00:00
|
|
|
|
|
|
|
def delete(self, request, *args, **kwargs):
|
|
|
|
messages.success(self.request, self.success_message)
|
|
|
|
return super().delete(request, *args, **kwargs)
|