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
e9705889
Commit
e9705889
authored
Jul 29, 2019
by
ibuler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Update] 支持生成api key
parent
367ebebf
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
69 additions
and
7 deletions
+69
-7
access_key.py
apps/authentication/api/access_key.py
+1
-0
_access_key_modal.html
...ntication/templates/authentication/_access_key_modal.html
+68
-7
django.mo
apps/locale/zh/LC_MESSAGES/django.mo
+0
-0
django.po
apps/locale/zh/LC_MESSAGES/django.po
+0
-0
No files found.
apps/authentication/api/access_key.py
View file @
e9705889
...
...
@@ -12,6 +12,7 @@ class AccessKeyViewSet(ModelViewSet):
permission_classes
=
(
IsValidUser
,)
serializer_class
=
serializers
.
AccessKeySerializer
pagination_class
=
LimitOffsetPagination
search_fields
=
[
'^id'
,
'^secret'
]
def
get_queryset
(
self
):
return
self
.
request
.
user
.
access_keys
.
all
()
...
...
apps/authentication/templates/authentication/_access_key_modal.html
View file @
e9705889
...
...
@@ -2,6 +2,7 @@
{% load i18n %}
{% load static %}
{% block modal_id %}access_key_modal{% endblock %}
{% block modal_class %}modal-lg{% endblock %}
{% block modal_title%}{% trans "API key list" %}{% endblock %}
{% block modal_body %}
<style>
...
...
@@ -21,6 +22,7 @@
</th>
<th
class=
"text-center"
>
{% trans 'ID' %}
</th>
<th
class=
"text-center"
>
{% trans 'Secret' %}
</th>
<th
class=
"text-center"
>
{% trans 'Active' %}
</th>
<th
class=
"text-center"
>
{% trans 'Date' %}
</th>
<th
class=
"text-center"
>
{% trans 'Action' %}
</th>
</tr>
...
...
@@ -39,11 +41,36 @@ function initTable() {
var
options
=
{
ele
:
$
(
'#access_key_list_table'
),
columnDefs
:
[
{
targets
:
2
,
createdCell
:
function
(
td
,
cellData
,
rowData
)
{
$
(
td
).
html
(
detail_btn
.
replace
(
'{{ DEFAULT_PK }}'
,
cellData
.
id
));
{
targets
:
2
,
createdCell
:
function
(
td
,
cellData
)
{
var
btn
=
'<button class="btn btn-primary btn-xs btn-secret" data-secret="SECRET">{% trans '
Show
' %}</button>'
;
btn
=
btn
.
replace
(
"SECRET"
,
cellData
);
$
(
td
).
html
(
btn
)
}},
{
targets
:
4
,
createdCell
:
function
(
td
,
cellData
,
rowData
)
{
$
(
td
).
html
(
update_btn
+
del_btn
)
{
targets
:
3
,
createdCell
:
function
(
td
,
cellData
)
{
if
(
cellData
)
{
$
(
td
).
html
(
'<i class="fa fa-check text-navy"></i>'
)
}
else
{
$
(
td
).
html
(
'<i class="fa fa-times text-danger"></i>'
)
}
}},
{
targets
:
4
,
createdCell
:
function
(
td
,
cellData
)
{
var
date
=
toSafeLocalDateStr
(
cellData
);
$
(
td
).
html
(
date
)
}},
{
targets
:
5
,
createdCell
:
function
(
td
,
cellData
,
rowData
)
{
var
btn
=
''
;
var
btn_del
=
'<a class="btn btn-xs btn-danger m-l-xs btn-del" data-id="ID">{% trans "Delete" %}</a>'
;
var
btn_inactive
=
'<a class="btn btn-xs btn-info m-l-xs btn-inactive" data-id="ID">{% trans "Disable" %}</a>'
;
var
btn_active
=
'<a class="btn btn-xs btn-primary m-l-xs btn-active" data-id="ID">{% trans "Enable" %}</a>'
;
btn
+=
btn_del
;
if
(
rowData
.
is_active
)
{
btn
+=
btn_inactive
}
else
{
btn
+=
btn_active
}
btn
=
btn
.
replaceAll
(
"ID"
,
cellData
);
$
(
td
).
html
(
btn
);
}}
],
ajax_url
:
'{% url "api-auth:access-key-list" %}'
,
...
...
@@ -51,6 +78,7 @@ function initTable() {
{
data
:
"id"
},
{
data
:
"id"
},
{
data
:
"secret"
},
{
data
:
"is_active"
},
{
data
:
"date_created"
},
{
data
:
"id"
,
orderable
:
false
}
],
...
...
@@ -61,17 +89,50 @@ function initTable() {
$
(
document
).
ready
(
function
()
{
}).
on
(
"show.bs.modal"
,
"#access_key_modal"
,
function
()
{
initTable
()
if
(
!
table
)
{
initTable
()
}
}).
on
(
"click"
,
"#create-btn"
,
function
()
{
var
url
=
"{% url "
api
-
auth
:
access
-
key
-
list
" %}"
;
var
body
=
{
var
data
=
{
url
:
url
,
method
:
'POST'
,
success
:
function
()
{
table
.
ajax
.
reload
();
}
};
requestApi
(
body
)
requestApi
(
data
)
}).
on
(
"click"
,
".btn-secret"
,
function
()
{
var
$this
=
$
(
this
);
$this
.
parent
().
html
(
$this
.
data
(
"secret"
))
}).
on
(
"click"
,
".btn-del"
,
function
()
{
var
url
=
"{% url "
api
-
auth
:
access
-
key
-
detail
" pk=DEFAULT_PK %}"
;
url
=
url
.
replace
(
"{{ DEFAULT_PK }}"
,
$
(
this
).
data
(
"id"
))
;
objectDelete
(
$
(
this
),
$
(
this
).
data
(
"id"
),
url
);
}).
on
(
"click"
,
".btn-active"
,
function
()
{
var
url
=
"{% url "
api
-
auth
:
access
-
key
-
detail
" pk=DEFAULT_PK %}"
;
url
=
url
.
replace
(
"{{ DEFAULT_PK }}"
,
$
(
this
).
data
(
"id"
))
;
var
data
=
{
url
:
url
,
body
:
JSON
.
stringify
({
"is_active"
:
true
}),
method
:
"PATCH"
,
success
:
function
()
{
table
.
ajax
.
reload
();
}
};
requestApi
(
data
)
}).
on
(
"click"
,
".btn-inactive"
,
function
()
{
var
url
=
"{% url "
api
-
auth
:
access
-
key
-
detail
" pk=DEFAULT_PK %}"
;
url
=
url
.
replace
(
"{{ DEFAULT_PK }}"
,
$
(
this
).
data
(
"id"
))
;
var
data
=
{
url
:
url
,
body
:
JSON
.
stringify
({
"is_active"
:
false
}),
method
:
"PATCH"
,
success
:
function
()
{
table
.
ajax
.
reload
();
}
};
requestApi
(
data
)
})
</script>
{% endblock %}
...
...
apps/locale/zh/LC_MESSAGES/django.mo
View file @
e9705889
No preview for this file type
apps/locale/zh/LC_MESSAGES/django.po
View file @
e9705889
This diff is collapsed.
Click to expand it.
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