mirror of https://github.com/jumpserver/jumpserver
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
943 B
31 lines
943 B
from django.shortcuts import get_object_or_404 |
|
from rest_framework.generics import ListAPIView, get_object_or_404 |
|
|
|
from common.utils import get_logger, lazyproperty |
|
from perms import serializers |
|
from perms.hands import Asset |
|
from perms.utils import PermAssetDetailUtil |
|
from .mixin import SelfOrPKUserMixin |
|
from ...models import AssetPermission |
|
|
|
logger = get_logger(__name__) |
|
|
|
__all__ = [ |
|
'UserPermedAssetAccountsApi', |
|
] |
|
|
|
|
|
class UserPermedAssetAccountsApi(SelfOrPKUserMixin, ListAPIView): |
|
serializer_class = serializers.AccountsPermedSerializer |
|
perm_model = AssetPermission |
|
|
|
@lazyproperty |
|
def asset(self): |
|
asset_id = self.kwargs.get('asset_id') |
|
kwargs = {'id': asset_id, 'is_active': True} |
|
asset = get_object_or_404(Asset, **kwargs) |
|
return asset |
|
|
|
def get_queryset(self): |
|
accounts = PermAssetDetailUtil(self.user, self.asset).get_permed_accounts_for_user() |
|
return accounts
|
|
|