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
87eed2e5
Commit
87eed2e5
authored
Dec 15, 2016
by
wangjun5
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add asset tool
parent
a737564a
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
74 additions
and
24 deletions
+74
-24
api.py
apps/assets/api.py
+9
-2
serializers.py
apps/assets/serializers.py
+13
-0
asset_detail.html
apps/assets/templates/assets/asset_detail.html
+0
-0
asset_group_list.html
apps/assets/templates/assets/asset_group_list.html
+10
-3
asset_list.html
apps/assets/templates/assets/asset_list.html
+11
-1
api_urls.py
apps/assets/urls/api_urls.py
+5
-0
user_detail.html
apps/users/templates/users/user_detail.html
+20
-15
user_list.html
apps/users/templates/users/user_list.html
+6
-3
No files found.
apps/assets/api.py
View file @
87eed2e5
...
@@ -38,6 +38,10 @@ class AssetGroupViewSet(viewsets.ModelViewSet):
...
@@ -38,6 +38,10 @@ class AssetGroupViewSet(viewsets.ModelViewSet):
queryset
=
AssetGroup
.
objects
.
all
()
queryset
=
AssetGroup
.
objects
.
all
()
serializer_class
=
serializers
.
AssetGroupSerializer
serializer_class
=
serializers
.
AssetGroupSerializer
class
AssetUpdateGroupApi
(
generics
.
RetrieveUpdateAPIView
):
queryset
=
Asset
.
objects
.
all
()
serializer_class
=
serializers
.
AssetUpdateGroupSerializer
permission_classes
=
(
IsSuperUser
,)
class
IDCViewSet
(
viewsets
.
ModelViewSet
):
class
IDCViewSet
(
viewsets
.
ModelViewSet
):
"""API endpoint that allows IDC to be viewed or edited."""
"""API endpoint that allows IDC to be viewed or edited."""
...
@@ -45,18 +49,21 @@ class IDCViewSet(viewsets.ModelViewSet):
...
@@ -45,18 +49,21 @@ class IDCViewSet(viewsets.ModelViewSet):
serializer_class
=
serializers
.
IDCSerializer
serializer_class
=
serializers
.
IDCSerializer
permission_classes
=
(
IsSuperUser
,)
permission_classes
=
(
IsSuperUser
,)
class
AdminUserViewSet
(
viewsets
.
ModelViewSet
):
class
AdminUserViewSet
(
viewsets
.
ModelViewSet
):
queryset
=
AdminUser
.
objects
.
all
()
queryset
=
AdminUser
.
objects
.
all
()
serializer_class
=
serializers
.
AdminUserSerializer
serializer_class
=
serializers
.
AdminUserSerializer
permission_classes
=
(
IsSuperUser
,)
permission_classes
=
(
IsSuperUser
,)
class
SystemUserViewSet
(
viewsets
.
ModelViewSet
):
class
SystemUserViewSet
(
viewsets
.
ModelViewSet
):
queryset
=
SystemUser
.
objects
.
all
()
queryset
=
SystemUser
.
objects
.
all
()
serializer_class
=
serializers
.
SystemUserSerializer
serializer_class
=
serializers
.
SystemUserSerializer
permission_classes
=
(
IsSuperUser
,)
permission_classes
=
(
IsSuperUser
,)
class
SystemUserUpdateApi
(
generics
.
RetrieveUpdateAPIView
):
queryset
=
Asset
.
objects
.
all
()
serializer_class
=
serializers
.
AssetUpdateSystemUserSerializer
permission_classes
=
(
IsSuperUser
,)
# class IDCAssetsApi(generics.ListAPIView):
# class IDCAssetsApi(generics.ListAPIView):
# model = IDC
# model = IDC
...
...
apps/assets/serializers.py
View file @
87eed2e5
...
@@ -17,6 +17,19 @@ class AssetGroupSerializer(serializers.ModelSerializer):
...
@@ -17,6 +17,19 @@ class AssetGroupSerializer(serializers.ModelSerializer):
def
get_assets_amount
(
obj
):
def
get_assets_amount
(
obj
):
return
obj
.
assets
.
count
()
return
obj
.
assets
.
count
()
class
AssetUpdateGroupSerializer
(
serializers
.
ModelSerializer
):
groups
=
serializers
.
PrimaryKeyRelatedField
(
many
=
True
,
queryset
=
AssetGroup
.
objects
.
all
())
class
Meta
:
model
=
Asset
fields
=
[
'id'
,
'groups'
]
class
AssetUpdateSystemUserSerializer
(
serializers
.
ModelSerializer
):
system_users
=
serializers
.
PrimaryKeyRelatedField
(
many
=
True
,
queryset
=
SystemUser
.
objects
.
all
())
class
Meta
:
model
=
Asset
fields
=
[
'id'
,
'system_users'
]
class
AdminUserSerializer
(
serializers
.
ModelSerializer
):
class
AdminUserSerializer
(
serializers
.
ModelSerializer
):
class
Meta
:
class
Meta
:
...
...
apps/assets/templates/assets/asset_detail.html
View file @
87eed2e5
This diff is collapsed.
Click to expand it.
apps/assets/templates/assets/asset_group_list.html
View file @
87eed2e5
...
@@ -6,7 +6,7 @@
...
@@ -6,7 +6,7 @@
<div
class=
"uc pull-left m-l-5 m-r-5"
>
<div
class=
"uc pull-left m-l-5 m-r-5"
>
<a
href=
"{% url "
assets:asset-group-create
"
%}"
class=
"btn btn-sm btn-primary"
>
{% trans "Create asset group" %}
</a>
<a
href=
"{% url "
assets:asset-group-create
"
%}"
class=
"btn btn-sm btn-primary"
>
{% trans "Create asset group" %}
</a>
</div>
</div>
<table
class=
"table table-striped table-bordered table-hover "
id=
"a
dmin_user
_list_table"
>
<table
class=
"table table-striped table-bordered table-hover "
id=
"a
sset_groups
_list_table"
>
<thead>
<thead>
<tr>
<tr>
<th
class=
"text-center"
>
<th
class=
"text-center"
>
...
@@ -27,7 +27,7 @@
...
@@ -27,7 +27,7 @@
<script>
<script>
$
(
document
).
ready
(
function
(){
$
(
document
).
ready
(
function
(){
var
options
=
{
var
options
=
{
ele
:
$
(
'#a
dmin_user
_list_table'
),
ele
:
$
(
'#a
sset_groups
_list_table'
),
columnDefs
:
[
columnDefs
:
[
{
targets
:
1
,
createdCell
:
function
(
td
,
cellData
,
rowData
)
{
{
targets
:
1
,
createdCell
:
function
(
td
,
cellData
,
rowData
)
{
var
detail_btn
=
'<a href="{% url "assets:asset-group-detail" pk=99991937 %}">'
+
cellData
+
'</a>'
;
var
detail_btn
=
'<a href="{% url "assets:asset-group-detail" pk=99991937 %}">'
+
cellData
+
'</a>'
;
...
@@ -46,7 +46,14 @@ $(document).ready(function(){
...
@@ -46,7 +46,14 @@ $(document).ready(function(){
columns
:
[{
data
:
"id"
},
{
data
:
"name"
},
{
data
:
"assets_amount"
},
{
data
:
"comment"
},
{
data
:
"id"
}]
columns
:
[{
data
:
"id"
},
{
data
:
"name"
},
{
data
:
"assets_amount"
},
{
data
:
"comment"
},
{
data
:
"id"
}]
};
};
jumpserver
.
initDataTable
(
options
);
jumpserver
.
initDataTable
(
options
);
});
})
.
on
(
'click'
,
'.btn_asset_group_delete'
,
function
()
{
var
$this
=
$
(
this
);
var
name
=
$
(
this
).
closest
(
"tr"
).
find
(
":nth-child(2)"
).
children
(
'a'
).
html
();
var
uid
=
$this
.
data
(
'uid'
);
var
the_url
=
'{% url "api-assets:asset-group-detail" pk=99991937 %}'
.
replace
(
'99991937'
,
uid
);
objectDelete
(
$this
,
name
,
the_url
);
});
</script>
</script>
{% endblock %}
{% endblock %}
apps/assets/templates/assets/asset_list.html
View file @
87eed2e5
...
@@ -127,8 +127,9 @@
...
@@ -127,8 +127,9 @@
}},
}},
{
targets
:
9
,
createdCell
:
function
(
td
,
cellData
,
rowData
)
{
{
targets
:
9
,
createdCell
:
function
(
td
,
cellData
,
rowData
)
{
var
update_btn
=
'<a href="{% url "assets:asset-update" pk=99991937 %}" class="btn btn-xs btn-info">{% trans "Update" %}</a>'
.
replace
(
'99991937'
,
cellData
);
var
update_btn
=
'<a href="{% url "assets:asset-update" pk=99991937 %}" class="btn btn-xs btn-info">{% trans "Update" %}</a>'
.
replace
(
'99991937'
,
cellData
);
var
del_btn
=
'<a class="btn btn-xs btn-danger m-l-xs btn_
user
_delete" data-uid="99991937">{% trans "Delete" %}</a>'
.
replace
(
'99991937'
,
cellData
);
var
del_btn
=
'<a class="btn btn-xs btn-danger m-l-xs btn_
asset
_delete" data-uid="99991937">{% trans "Delete" %}</a>'
.
replace
(
'99991937'
,
cellData
);
$
(
td
).
html
(
update_btn
+
del_btn
)
$
(
td
).
html
(
update_btn
+
del_btn
)
}}
}}
],
],
ajax_url
:
'{% url "api-assets:asset-list" %}'
,
ajax_url
:
'{% url "api-assets:asset-list" %}'
,
...
@@ -179,6 +180,14 @@
...
@@ -179,6 +180,14 @@
$form
.
ajaxSubmit
({
success
:
success
});
$form
.
ajaxSubmit
({
success
:
success
});
})
})
})
.
on
(
'click'
,
'.btn_asset_delete'
,
function
()
{
var
$this
=
$
(
this
);
var
name
=
$
(
this
).
closest
(
"tr"
).
find
(
":nth-child(2)"
).
children
(
'a'
).
html
();
var
uid
=
$this
.
data
(
'uid'
);
var
the_url
=
'{% url "api-assets:asset-detail" pk=99991937 %}'
.
replace
(
'99991937'
,
uid
);
objectDelete
(
$this
,
name
,
the_url
);
});
});
</script>
</script>
{% endblock %}
{% endblock %}
\ No newline at end of file
apps/assets/urls/api_urls.py
View file @
87eed2e5
...
@@ -17,6 +17,11 @@ urlpatterns = [
...
@@ -17,6 +17,11 @@ urlpatterns = [
url
(
r'^v1/assets_bulk/$'
,
api
.
AssetListUpdateApi
.
as_view
(),
name
=
'asset-bulk-update'
),
url
(
r'^v1/assets_bulk/$'
,
api
.
AssetListUpdateApi
.
as_view
(),
name
=
'asset-bulk-update'
),
# url(r'^v1/idc/(?P<pk>[0-9]+)/assets/$', api.IDCAssetsApi.as_view(), name='api-idc-assets'),
# url(r'^v1/idc/(?P<pk>[0-9]+)/assets/$', api.IDCAssetsApi.as_view(), name='api-idc-assets'),
url
(
r'^v1/system-user/auth/'
,
api
.
SystemUserAuthApi
.
as_view
(),
name
=
'system-user-auth'
),
url
(
r'^v1/system-user/auth/'
,
api
.
SystemUserAuthApi
.
as_view
(),
name
=
'system-user-auth'
),
url
(
r'^v1/assets/(?P<pk>\d+)/groups/$'
,
api
.
AssetUpdateGroupApi
.
as_view
(),
name
=
'asset-update-group'
),
url
(
r'^v1/assets/(?P<pk>\d+)/system-users/$'
,
api
.
SystemUserUpdateApi
.
as_view
(),
name
=
'asset-update-systemusers'
),
]
]
urlpatterns
+=
router
.
urls
urlpatterns
+=
router
.
urls
...
...
apps/users/templates/users/user_detail.html
View file @
87eed2e5
...
@@ -255,16 +255,19 @@ function updateUserGroups(groups) {
...
@@ -255,16 +255,19 @@ function updateUserGroups(groups) {
success
:
success
success
:
success
});
});
}
}
$
(
document
).
ready
(
function
()
{
$
(
document
).
ready
(
function
()
{
$
(
'.select2'
).
select2
()
$
(
'.select2'
).
select2
()
.
on
(
'select2:select'
,
function
(
evt
)
{
.
on
(
'select2:select'
,
function
(
evt
)
{
var
data
=
evt
.
params
.
data
;
var
data
=
evt
.
params
.
data
;
jumpserver
.
groups_selected
[
data
.
id
]
=
data
.
text
;
jumpserver
.
groups_selected
[
data
.
id
]
=
data
.
text
;
}).
on
(
'select2:unselect'
,
function
(
evt
)
{
})
.
on
(
'select2:unselect'
,
function
(
evt
)
{
var
data
=
evt
.
params
.
data
;
var
data
=
evt
.
params
.
data
;
delete
jumpserver
.
groups_selected
[
data
.
id
]
delete
jumpserver
.
groups_selected
[
data
.
id
]
})
})
}).
on
(
'click'
,
'#is_active'
,
function
()
{
})
.
on
(
'click'
,
'#is_active'
,
function
()
{
var
the_url
=
"{% url 'api-users:user-detail' pk=user.id %}"
;
var
the_url
=
"{% url 'api-users:user-detail' pk=user.id %}"
;
var
checked
=
$
(
this
).
prop
(
'checked'
);
var
checked
=
$
(
this
).
prop
(
'checked'
);
var
body
=
{
var
body
=
{
...
@@ -276,19 +279,21 @@ $(document).ready(function() {
...
@@ -276,19 +279,21 @@ $(document).ready(function() {
body
:
JSON
.
stringify
(
body
),
body
:
JSON
.
stringify
(
body
),
success_message
:
success
success_message
:
success
});
});
}).
on
(
'click'
,
'#enable_otp'
,
function
()
{
})
var
the_url
=
"{% url 'api-users:user-detail' pk=user.id %}"
;
.
on
(
'click'
,
'#enable_otp'
,
function
()
{
var
checked
=
$
(
this
).
prop
(
'checked'
);
var
the_url
=
"{% url 'api-users:user-detail' pk=user.id %}"
;
var
body
=
{
var
checked
=
$
(
this
).
prop
(
'checked'
);
'enable_otp'
:
checked
var
body
=
{
};
'enable_otp'
:
checked
var
success
=
'{% trans "Update Successfully!" %}'
;
};
APIUpdateAttr
({
var
success
=
'{% trans "Update Successfully!" %}'
;
url
:
the_url
,
APIUpdateAttr
({
body
:
JSON
.
stringify
(
body
),
url
:
the_url
,
success_message
:
success
body
:
JSON
.
stringify
(
body
),
});
success_message
:
success
}).
on
(
'click'
,
'#btn_join_group'
,
function
()
{
});
})
.
on
(
'click'
,
'#btn_join_group'
,
function
()
{
if
(
Object
.
keys
(
jumpserver
.
groups_selected
).
length
===
0
)
{
if
(
Object
.
keys
(
jumpserver
.
groups_selected
).
length
===
0
)
{
return
false
;
return
false
;
}
}
...
...
apps/users/templates/users/user_list.html
View file @
87eed2e5
...
@@ -132,7 +132,8 @@ $(document).ready(function(){
...
@@ -132,7 +132,8 @@ $(document).ready(function(){
$form
.
ajaxSubmit
({
success
:
success
});
$form
.
ajaxSubmit
({
success
:
success
});
})
})
}).
on
(
'click'
,
'#btn_bulk_update'
,
function
(){
})
.
on
(
'click'
,
'#btn_bulk_update'
,
function
(){
var
action
=
$
(
'#slct_bulk_update'
).
val
();
var
action
=
$
(
'#slct_bulk_update'
).
val
();
var
$data_table
=
$
(
'#user_list_table'
).
DataTable
();
var
$data_table
=
$
(
'#user_list_table'
).
DataTable
();
var
id_list
=
[];
var
id_list
=
[];
...
@@ -204,13 +205,15 @@ $(document).ready(function(){
...
@@ -204,13 +205,15 @@ $(document).ready(function(){
default
:
default
:
break
;
break
;
}
}
}).
on
(
'click'
,
'.btn_user_delete'
,
function
(){
})
.
on
(
'click'
,
'.btn_user_delete'
,
function
(){
var
$this
=
$
(
this
);
var
$this
=
$
(
this
);
var
name
=
$this
.
data
(
'name'
);
var
name
=
$this
.
data
(
'name'
);
var
uid
=
$this
.
data
(
'uid'
);
var
uid
=
$this
.
data
(
'uid'
);
var
the_url
=
'{% url "api-users:user-detail" pk=99991937 %}'
.
replace
(
'99991937'
,
uid
);
var
the_url
=
'{% url "api-users:user-detail" pk=99991937 %}'
.
replace
(
'99991937'
,
uid
);
objectDelete
(
$this
,
name
,
the_url
);
objectDelete
(
$this
,
name
,
the_url
);
}).
on
(
'click'
,
'#btn_user_bulk_update'
,
function
(){
})
.
on
(
'click'
,
'#btn_user_bulk_update'
,
function
(){
var
json_data
=
$
(
'#fm_user_bulk_update'
).
serializeObject
();
var
json_data
=
$
(
'#fm_user_bulk_update'
).
serializeObject
();
var
body
=
{};
var
body
=
{};
body
.
enable_otp
=
(
json_data
.
enable_otp
===
'on'
)?
true
:
false
;
body
.
enable_otp
=
(
json_data
.
enable_otp
===
'on'
)?
true
:
false
;
...
...
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