Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
J
jumpserver
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ops
jumpserver
Commits
46520287
Commit
46520287
authored
May 17, 2018
by
ibuler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Update] 添加清理重复用户组脚本
parent
4b7af145
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
70 additions
and
0 deletions
+70
-0
clean_duplicate_user_groups.py
utils/clean_duplicate_user_groups.py
+70
-0
No files found.
utils/clean_duplicate_user_groups.py
0 → 100644
View file @
46520287
#!/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
()
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment