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.
71 lines
2.1 KiB
71 lines
2.1 KiB
#!/usr/bin/python
|
|
#
|
|
|
|
import os
|
|
import sys
|
|
from collections import Counter
|
|
import django
|
|
from django.db.models import Count
|
|
|
|
|
|
if os.path.exists('../apps'):
|
|
sys.path.insert(0, '../apps')
|
|
elif os.path.exists('./apps'):
|
|
sys.path.insert(0, './apps')
|
|
|
|
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "jumpserver.settings")
|
|
django.setup()
|
|
|
|
from users.models import UserGroup
|
|
|
|
|
|
def clean_group(interactive=True):
|
|
groups = UserGroup.objects.all()
|
|
groups_name_list = groups.values_list('name', flat=True)
|
|
groups_with_info = groups.annotate(Count('users'))\
|
|
.annotate(Count('asset_permissions'))
|
|
|
|
counter = Counter(groups_name_list)
|
|
for name, count in counter.items():
|
|
if count == 0:
|
|
continue
|
|
groups_duplicate = groups_with_info.filter(name=name)
|
|
need_clean_count = groups_duplicate.count()
|
|
|
|
for group in groups_duplicate:
|
|
need_clean = True
|
|
if group.users__count > 0:
|
|
need_clean = False
|
|
elif group.asset_permissions__count > 0:
|
|
need_clean = False
|
|
elif need_clean_count == 1:
|
|
need_clean = False
|
|
|
|
if need_clean:
|
|
confirm = True
|
|
if interactive:
|
|
confirm = False
|
|
while True:
|
|
confirm = input(
|
|
"Delete user group <{}>, create at {}? ([y]/n)".format(
|
|
name, group.date_created)
|
|
)
|
|
if confirm.lower() == "y":
|
|
confirm = True
|
|
break
|
|
elif confirm.lower() == "n":
|
|
confirm = False
|
|
break
|
|
else:
|
|
print("No valid input")
|
|
continue
|
|
if confirm:
|
|
group.delete()
|
|
print("Delete success: {}".format(name))
|
|
need_clean_count -= 1
|
|
else:
|
|
continue
|
|
|
|
if __name__ == '__main__':
|
|
clean_group()
|