mirror of https://github.com/jumpserver/jumpserver
54 lines
1.9 KiB
Python
54 lines
1.9 KiB
Python
from collections import defaultdict
|
|
|
|
from django.db.models import Q
|
|
|
|
from common.utils import get_logger
|
|
from perms.models import AssetPermission
|
|
from perms.hands import Asset, User, UserGroup, SystemUser
|
|
from perms.utils.asset.user_permission import get_user_all_asset_perm_ids
|
|
|
|
logger = get_logger(__file__)
|
|
|
|
|
|
def get_asset_system_user_ids_with_actions(asset_perm_ids, asset: Asset):
|
|
nodes = asset.get_nodes()
|
|
node_keys = set()
|
|
for node in nodes:
|
|
ancestor_keys = node.get_ancestor_keys(with_self=True)
|
|
node_keys.update(ancestor_keys)
|
|
|
|
queryset = AssetPermission.objects.filter(id__in=asset_perm_ids)\
|
|
.filter(Q(assets=asset) | Q(nodes__key__in=node_keys))
|
|
|
|
asset_protocols = asset.protocols_as_dict.keys()
|
|
values = queryset.filter(
|
|
system_users__protocol__in=asset_protocols
|
|
).distinct().values_list('system_users', 'actions')
|
|
system_users_actions = defaultdict(int)
|
|
|
|
for system_user_id, actions in values:
|
|
if None in (system_user_id, actions):
|
|
continue
|
|
system_users_actions[system_user_id] |= actions
|
|
return system_users_actions
|
|
|
|
|
|
def get_asset_system_user_ids_with_actions_by_user(user: User, asset: Asset):
|
|
asset_perm_ids = get_user_all_asset_perm_ids(user)
|
|
return get_asset_system_user_ids_with_actions(asset_perm_ids, asset)
|
|
|
|
|
|
def has_asset_system_permission(user: User, asset: Asset, system_user: SystemUser):
|
|
systemuser_actions_mapper = get_asset_system_user_ids_with_actions_by_user(user, asset)
|
|
actions = systemuser_actions_mapper.get(system_user.id, [])
|
|
if actions:
|
|
return True
|
|
return False
|
|
|
|
|
|
def get_asset_system_user_ids_with_actions_by_group(group: UserGroup, asset: Asset):
|
|
asset_perm_ids = AssetPermission.objects.filter(
|
|
user_groups=group
|
|
).valid().values_list('id', flat=True).distinct()
|
|
return get_asset_system_user_ids_with_actions(asset_perm_ids, asset)
|