2020-10-21 11:32:27 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
#
|
2020-12-11 07:29:02 +00:00
|
|
|
from applications.models import Application
|
2020-10-22 10:13:14 +00:00
|
|
|
from perms.models import ApplicationPermission
|
|
|
|
from perms import serializers
|
2020-12-11 07:29:02 +00:00
|
|
|
from ..base import BasePermissionViewSet
|
2020-10-21 11:32:27 +00:00
|
|
|
|
|
|
|
|
2020-12-11 07:29:02 +00:00
|
|
|
class ApplicationPermissionViewSet(BasePermissionViewSet):
|
2020-10-21 11:32:27 +00:00
|
|
|
"""
|
|
|
|
应用授权列表的增删改查API
|
|
|
|
"""
|
|
|
|
model = ApplicationPermission
|
|
|
|
serializer_class = serializers.ApplicationPermissionSerializer
|
2020-10-28 04:44:19 +00:00
|
|
|
filter_fields = ['name', 'category', 'type']
|
|
|
|
search_fields = filter_fields
|
2020-10-21 11:32:27 +00:00
|
|
|
|
|
|
|
def get_queryset(self):
|
|
|
|
queryset = super().get_queryset().prefetch_related(
|
|
|
|
"applications", "users", "user_groups", "system_users"
|
|
|
|
)
|
|
|
|
return queryset
|
|
|
|
|
2020-12-11 07:29:02 +00:00
|
|
|
def filter_application(self, queryset):
|
|
|
|
application_id = self.request.query_params.get('application_id')
|
|
|
|
application_name = self.request.query_params.get('application')
|
|
|
|
if application_id:
|
|
|
|
applications = Application.objects.filter(pk=application_id)
|
|
|
|
elif application_name:
|
|
|
|
applications = Application.objects.filter(name=application_name)
|
|
|
|
else:
|
|
|
|
return queryset
|
|
|
|
if not applications:
|
|
|
|
return queryset.none()
|
|
|
|
queryset = queryset.filter(applications=applications)
|
|
|
|
return queryset
|
|
|
|
|
|
|
|
def filter_queryset(self, queryset):
|
|
|
|
queryset = super().filter_queryset(queryset)
|
|
|
|
queryset = self.filter_application(queryset)
|
|
|
|
return queryset
|
|
|
|
|