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
0a931bbf
Commit
0a931bbf
authored
Jan 22, 2018
by
ibuler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Feature] es support
parent
17181db8
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
147 additions
and
106 deletions
+147
-106
api.py
apps/common/api.py
+0
-5
fields.py
apps/common/fields.py
+0
-1
forms.py
apps/common/forms.py
+2
-2
models.py
apps/common/models.py
+7
-3
views.py
apps/common/views.py
+0
-1
settings.py
apps/jumpserver/settings.py
+0
-4
django.mo
apps/locale/zh/LC_MESSAGES/django.mo
+0
-0
django.po
apps/locale/zh/LC_MESSAGES/django.po
+138
-89
forms.py
apps/users/forms.py
+0
-1
No files found.
apps/common/api.py
View file @
0a931bbf
...
@@ -63,8 +63,6 @@ class LDAPTestingAPI(APIView):
...
@@ -63,8 +63,6 @@ class LDAPTestingAPI(APIView):
search_filter
=
serializer
.
validated_data
[
"AUTH_LDAP_SEARCH_FILTER"
]
search_filter
=
serializer
.
validated_data
[
"AUTH_LDAP_SEARCH_FILTER"
]
attr_map
=
serializer
.
validated_data
[
"AUTH_LDAP_USER_ATTR_MAP"
]
attr_map
=
serializer
.
validated_data
[
"AUTH_LDAP_USER_ATTR_MAP"
]
print
(
serializer
.
validated_data
)
try
:
try
:
attr_map
=
json
.
loads
(
attr_map
)
attr_map
=
json
.
loads
(
attr_map
)
except
json
.
JSONDecodeError
:
except
json
.
JSONDecodeError
:
...
@@ -77,9 +75,6 @@ class LDAPTestingAPI(APIView):
...
@@ -77,9 +75,6 @@ class LDAPTestingAPI(APIView):
except
Exception
as
e
:
except
Exception
as
e
:
return
Response
({
"error"
:
str
(
e
)},
status
=
401
)
return
Response
({
"error"
:
str
(
e
)},
status
=
401
)
print
(
search_ou
)
print
(
search_filter
%
({
"user"
:
"*"
}))
print
(
attr_map
.
values
())
ok
=
conn
.
search
(
search_ou
,
search_filter
%
({
"user"
:
"*"
}),
ok
=
conn
.
search
(
search_ou
,
search_filter
%
({
"user"
:
"*"
}),
attributes
=
list
(
attr_map
.
values
()))
attributes
=
list
(
attr_map
.
values
()))
if
not
ok
:
if
not
ok
:
...
...
apps/common/fields.py
View file @
0a931bbf
...
@@ -18,7 +18,6 @@ class DictField(forms.Field):
...
@@ -18,7 +18,6 @@ class DictField(forms.Field):
# we don't need to handle that explicitly.
# we don't need to handle that explicitly.
if
isinstance
(
value
,
six
.
string_types
):
if
isinstance
(
value
,
six
.
string_types
):
try
:
try
:
print
(
value
)
value
=
json
.
loads
(
value
)
value
=
json
.
loads
(
value
)
return
value
return
value
except
json
.
JSONDecodeError
:
except
json
.
JSONDecodeError
:
...
...
apps/common/forms.py
View file @
0a931bbf
...
@@ -36,9 +36,9 @@ class BaseForm(forms.Form):
...
@@ -36,9 +36,9 @@ class BaseForm(forms.Form):
for
name
,
field
in
self
.
fields
.
items
():
for
name
,
field
in
self
.
fields
.
items
():
db_value
=
getattr
(
db_settings
,
name
)
.
value
db_value
=
getattr
(
db_settings
,
name
)
.
value
django_value
=
getattr
(
settings
,
name
)
if
hasattr
(
settings
,
name
)
else
None
django_value
=
getattr
(
settings
,
name
)
if
hasattr
(
settings
,
name
)
else
None
if
db_value
is
not
Non
e
:
if
db_value
is
False
or
db_valu
e
:
field
.
initial
=
to_form_value
(
db_value
)
field
.
initial
=
to_form_value
(
db_value
)
elif
django_value
is
not
Non
e
:
elif
django_value
is
False
or
django_valu
e
:
field
.
initial
=
django_value
field
.
initial
=
django_value
def
save
(
self
,
category
=
"default"
):
def
save
(
self
,
category
=
"default"
):
...
...
apps/common/models.py
View file @
0a931bbf
...
@@ -2,6 +2,7 @@ import json
...
@@ -2,6 +2,7 @@ import json
import
ldap
import
ldap
from
django.db
import
models
from
django.db
import
models
from
django.db.utils
import
ProgrammingError
,
OperationalError
from
django.utils.translation
import
ugettext_lazy
as
_
from
django.utils.translation
import
ugettext_lazy
as
_
from
django.conf
import
settings
from
django.conf
import
settings
from
django_auth_ldap.config
import
LDAPSearch
from
django_auth_ldap.config
import
LDAPSearch
...
@@ -50,9 +51,12 @@ class Setting(models.Model):
...
@@ -50,9 +51,12 @@ class Setting(models.Model):
@classmethod
@classmethod
def
refresh_all_settings
(
cls
):
def
refresh_all_settings
(
cls
):
settings_list
=
cls
.
objects
.
all
()
try
:
for
setting
in
settings_list
:
settings_list
=
cls
.
objects
.
all
()
setting
.
refresh_setting
()
for
setting
in
settings_list
:
setting
.
refresh_setting
()
except
(
ProgrammingError
,
OperationalError
):
pass
def
refresh_setting
(
self
):
def
refresh_setting
(
self
):
try
:
try
:
...
...
apps/common/views.py
View file @
0a931bbf
...
@@ -107,7 +107,6 @@ class TerminalSettingView(AdminUserRequiredMixin, TemplateView):
...
@@ -107,7 +107,6 @@ class TerminalSettingView(AdminUserRequiredMixin, TemplateView):
return
super
()
.
get_context_data
(
**
kwargs
)
return
super
()
.
get_context_data
(
**
kwargs
)
def
post
(
self
,
request
):
def
post
(
self
,
request
):
print
(
request
.
POST
)
form
=
self
.
form_class
(
request
.
POST
)
form
=
self
.
form_class
(
request
.
POST
)
if
form
.
is_valid
():
if
form
.
is_valid
():
form
.
save
()
form
.
save
()
...
...
apps/jumpserver/settings.py
View file @
0a931bbf
...
@@ -385,10 +385,6 @@ TERMINAL_COMMAND_STORAGE = {
...
@@ -385,10 +385,6 @@ TERMINAL_COMMAND_STORAGE = {
# 'TYPE': 'elasticsearch',
# 'TYPE': 'elasticsearch',
# 'HOSTS': ['http://elastic:changeme@localhost:9200'],
# 'HOSTS': ['http://elastic:changeme@localhost:9200'],
# },
# },
# 'ali-hz-es': {
# 'TYPE': 'elasticsearch',
# 'HOSTS': ['http://elastic:changeme@localhost:9200'],
# }
}
}
...
...
apps/locale/zh/LC_MESSAGES/django.mo
View file @
0a931bbf
No preview for this file type
apps/locale/zh/LC_MESSAGES/django.po
View file @
0a931bbf
...
@@ -8,7 +8,7 @@ msgid ""
...
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
msgstr ""
"Project-Id-Version: Jumpserver 0.3.3\n"
"Project-Id-Version: Jumpserver 0.3.3\n"
"Report-Msgid-Bugs-To: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-01-
17 17:26
+0800\n"
"POT-Creation-Date: 2018-01-
22 11:04
+0800\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: ibuler <ibuler@qq.com>\n"
"Last-Translator: ibuler <ibuler@qq.com>\n"
"Language-Team: Jumpserver team<ibuler@qq.com>\n"
"Language-Team: Jumpserver team<ibuler@qq.com>\n"
...
@@ -18,7 +18,7 @@ msgstr ""
...
@@ -18,7 +18,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Content-Transfer-Encoding: 8bit\n"
#: assets/forms.py:23 assets/forms.py:53 assets/forms.py:99 perms/forms.py:37
#: assets/forms.py:23 assets/forms.py:53 assets/forms.py:99 perms/forms.py:37
#: perms/templates/perms/asset_permission_asset.html:116 users/forms.py:24
6
#: perms/templates/perms/asset_permission_asset.html:116 users/forms.py:24
5
msgid "Select asset groups"
msgid "Select asset groups"
msgstr "选择资产组"
msgstr "选择资产组"
...
@@ -44,7 +44,7 @@ msgstr "默认使用管理用户"
...
@@ -44,7 +44,7 @@ msgstr "默认使用管理用户"
#: assets/forms.py:76 assets/forms.py:81 assets/forms.py:127
#: assets/forms.py:76 assets/forms.py:81 assets/forms.py:127
#: assets/templates/assets/asset_group_detail.html:75 perms/forms.py:34
#: assets/templates/assets/asset_group_detail.html:75 perms/forms.py:34
#: perms/templates/perms/asset_permission_asset.html:88 users/forms.py:24
3
#: perms/templates/perms/asset_permission_asset.html:88 users/forms.py:24
2
msgid "Select assets"
msgid "Select assets"
msgstr "选择资产"
msgstr "选择资产"
...
@@ -66,7 +66,7 @@ msgstr "端口"
...
@@ -66,7 +66,7 @@ msgstr "端口"
#: assets/templates/assets/system_user_list.html:26 perms/models.py:17
#: assets/templates/assets/system_user_list.html:26 perms/models.py:17
#: perms/templates/perms/asset_permission_create_update.html:40
#: perms/templates/perms/asset_permission_create_update.html:40
#: perms/templates/perms/asset_permission_list.html:28 templates/_nav.html:22
#: perms/templates/perms/asset_permission_list.html:28 templates/_nav.html:22
#: terminal/backends/command/models.py:11 terminal/models.py:
93
#: terminal/backends/command/models.py:11 terminal/models.py:
124
#: terminal/templates/terminal/command_list.html:40
#: terminal/templates/terminal/command_list.html:40
#: terminal/templates/terminal/command_list.html:73
#: terminal/templates/terminal/command_list.html:73
#: terminal/templates/terminal/session_list.html:41
#: terminal/templates/terminal/session_list.html:41
...
@@ -77,7 +77,7 @@ msgid "Asset"
...
@@ -77,7 +77,7 @@ msgid "Asset"
msgstr "资产"
msgstr "资产"
#: assets/forms.py:161 perms/forms.py:40
#: assets/forms.py:161 perms/forms.py:40
#: perms/templates/perms/asset_permission_detail.html:144 users/forms.py:24
9
#: perms/templates/perms/asset_permission_detail.html:144 users/forms.py:24
8
msgid "Select system users"
msgid "Select system users"
msgstr "选择系统用户"
msgstr "选择系统用户"
...
@@ -99,14 +99,15 @@ msgstr "选择的系统用户将会在该集群资产上创建"
...
@@ -99,14 +99,15 @@ msgstr "选择的系统用户将会在该集群资产上创建"
#: assets/templates/assets/cluster_detail.html:57
#: assets/templates/assets/cluster_detail.html:57
#: assets/templates/assets/cluster_list.html:19
#: assets/templates/assets/cluster_list.html:19
#: assets/templates/assets/system_user_detail.html:58
#: assets/templates/assets/system_user_detail.html:58
#: assets/templates/assets/system_user_list.html:24 common/models.py:25
#: assets/templates/assets/system_user_list.html:24 common/models.py:26
#: ops/models.py:31 ops/templates/ops/task_detail.html:56
#: common/templates/common/terminal_setting.html:62 ops/models.py:31
#: ops/templates/ops/task_list.html:34 perms/models.py:14
#: ops/templates/ops/task_detail.html:56 ops/templates/ops/task_list.html:34
#: perms/models.py:14
#: perms/templates/perms/asset_permission_create_update.html:33
#: perms/templates/perms/asset_permission_create_update.html:33
#: perms/templates/perms/asset_permission_detail.html:62
#: perms/templates/perms/asset_permission_detail.html:62
#: perms/templates/perms/asset_permission_list.html:25
#: perms/templates/perms/asset_permission_list.html:25
#: perms/templates/perms/asset_permission_user.html:54 terminal/models.py:
14
#: perms/templates/perms/asset_permission_user.html:54 terminal/models.py:
23
#: terminal/models.py:1
18
terminal/templates/terminal/terminal_detail.html:43
#: terminal/models.py:1
49
terminal/templates/terminal/terminal_detail.html:43
#: terminal/templates/terminal/terminal_list.html:29 users/models/group.py:14
#: terminal/templates/terminal/terminal_list.html:29 users/models/group.py:14
#: users/models/user.py:35 users/templates/users/_select_user_modal.html:13
#: users/models/user.py:35 users/templates/users/_select_user_modal.html:13
#: users/templates/users/user_detail.html:62
#: users/templates/users/user_detail.html:62
...
@@ -126,10 +127,10 @@ msgstr "集群级别管理用户"
...
@@ -126,10 +127,10 @@ msgstr "集群级别管理用户"
#: assets/forms.py:200
#: assets/forms.py:200
msgid "Password or private key password"
msgid "Password or private key password"
msgstr "密码或秘钥
不合法
"
msgstr "密码或秘钥
密码
"
#: assets/forms.py:201 assets/forms.py:262 assets/models/user.py:30
#: assets/forms.py:201 assets/forms.py:262 assets/models/user.py:30
#: common/forms.py:1
07
users/forms.py:16 users/forms.py:24
#: common/forms.py:1
13
users/forms.py:16 users/forms.py:24
#: users/templates/users/login.html:56
#: users/templates/users/login.html:56
#: users/templates/users/reset_password.html:52
#: users/templates/users/reset_password.html:52
#: users/templates/users/user_create.html:11
#: users/templates/users/user_create.html:11
...
@@ -239,7 +240,7 @@ msgstr "测试环境"
...
@@ -239,7 +240,7 @@ msgstr "测试环境"
#: assets/templates/assets/asset_list.html:31
#: assets/templates/assets/asset_list.html:31
#: assets/templates/assets/cluster_assets.html:52
#: assets/templates/assets/cluster_assets.html:52
#: assets/templates/assets/system_user_asset.html:53
#: assets/templates/assets/system_user_asset.html:53
#: assets/templates/assets/user_asset_list.html:20
#: assets/templates/assets/user_asset_list.html:20
common/forms.py:140
#: perms/templates/perms/asset_permission_asset.html:55
#: perms/templates/perms/asset_permission_asset.html:55
#: users/templates/users/login_log_list.html:52
#: users/templates/users/login_log_list.html:52
#: users/templates/users/user_granted_asset.html:49
#: users/templates/users/user_granted_asset.html:49
...
@@ -253,7 +254,7 @@ msgstr "IP"
...
@@ -253,7 +254,7 @@ msgstr "IP"
#: assets/templates/assets/asset_list.html:30
#: assets/templates/assets/asset_list.html:30
#: assets/templates/assets/cluster_assets.html:51
#: assets/templates/assets/cluster_assets.html:51
#: assets/templates/assets/system_user_asset.html:52
#: assets/templates/assets/system_user_asset.html:52
#: assets/templates/assets/user_asset_list.html:19
#: assets/templates/assets/user_asset_list.html:19
common/forms.py:139
#: perms/templates/perms/asset_permission_asset.html:54
#: perms/templates/perms/asset_permission_asset.html:54
#: users/templates/users/user_granted_asset.html:48
#: users/templates/users/user_granted_asset.html:48
#: users/templates/users/user_group_granted_asset.html:49
#: users/templates/users/user_group_granted_asset.html:49
...
@@ -400,9 +401,9 @@ msgstr "创建日期"
...
@@ -400,9 +401,9 @@ msgstr "创建日期"
#: assets/templates/assets/asset_group_list.html:17
#: assets/templates/assets/asset_group_list.html:17
#: assets/templates/assets/cluster_detail.html:97
#: assets/templates/assets/cluster_detail.html:97
#: assets/templates/assets/system_user_detail.html:100
#: assets/templates/assets/system_user_detail.html:100
#: assets/templates/assets/system_user_list.html:30 common/models.py:
28
#: assets/templates/assets/system_user_list.html:30 common/models.py:
30
#: ops/models.py:37 perms/models.py:24
#: ops/models.py:37 perms/models.py:24
#: perms/templates/perms/asset_permission_detail.html:98 terminal/models.py:
22
#: perms/templates/perms/asset_permission_detail.html:98 terminal/models.py:
33
#: terminal/templates/terminal/terminal_detail.html:63 users/models/group.py:15
#: terminal/templates/terminal/terminal_detail.html:63 users/models/group.py:15
#: users/models/user.py:47 users/templates/users/user_detail.html:110
#: users/models/user.py:47 users/templates/users/user_detail.html:110
#: users/templates/users/user_group_detail.html:67
#: users/templates/users/user_group_detail.html:67
...
@@ -494,7 +495,7 @@ msgstr "Shell"
...
@@ -494,7 +495,7 @@ msgstr "Shell"
#: assets/models/user.py:269 perms/models.py:19
#: assets/models/user.py:269 perms/models.py:19
#: perms/templates/perms/asset_permission_detail.html:136
#: perms/templates/perms/asset_permission_detail.html:136
#: perms/templates/perms/asset_permission_list.html:30 templates/_nav.html:26
#: perms/templates/perms/asset_permission_list.html:30 templates/_nav.html:26
#: terminal/backends/command/models.py:12 terminal/models.py:
94
#: terminal/backends/command/models.py:12 terminal/models.py:
125
#: terminal/templates/terminal/command_list.html:48
#: terminal/templates/terminal/command_list.html:48
#: terminal/templates/terminal/command_list.html:74
#: terminal/templates/terminal/command_list.html:74
#: terminal/templates/terminal/session_list.html:49
#: terminal/templates/terminal/session_list.html:49
...
@@ -576,9 +577,9 @@ msgstr "仅修改你需要更新的字段"
...
@@ -576,9 +577,9 @@ msgstr "仅修改你需要更新的字段"
#: assets/views/admin_user.py:106 assets/views/asset.py:48
#: assets/views/admin_user.py:106 assets/views/asset.py:48
#: assets/views/asset.py:61 assets/views/asset.py:84 assets/views/asset.py:144
#: assets/views/asset.py:61 assets/views/asset.py:84 assets/views/asset.py:144
#: assets/views/asset.py:161 assets/views/asset.py:185
#: assets/views/asset.py:161 assets/views/asset.py:185
#: assets/views/cluster.py:26 assets/views/cluster.py:8
5
#: assets/views/cluster.py:26 assets/views/cluster.py:8
0
#: assets/views/cluster.py:
102 assets/views/group.py:34
#: assets/views/cluster.py:
97 assets/views/group.py:34 assets/views/group.py:52
#: assets/views/group.py:
52 assets/views/group.py:
69 assets/views/group.py:87
#: assets/views/group.py:69 assets/views/group.py:87
#: assets/views/system_user.py:28 assets/views/system_user.py:44
#: assets/views/system_user.py:28 assets/views/system_user.py:44
#: assets/views/system_user.py:60 assets/views/system_user.py:75
#: assets/views/system_user.py:60 assets/views/system_user.py:75
#: templates/_nav.html:19
#: templates/_nav.html:19
...
@@ -602,20 +603,24 @@ msgid "Import asset"
...
@@ -602,20 +603,24 @@ msgid "Import asset"
msgstr "导入资产"
msgstr "导入资产"
#: assets/templates/assets/_asset_import_modal.html:9
#: assets/templates/assets/_asset_import_modal.html:9
#: common/templates/common/_add_terminal_command_storage_modal.html:9
#: users/templates/users/_user_import_modal.html:10
#: users/templates/users/_user_import_modal.html:10
msgid "Template"
msgid "Template"
msgstr "模板"
msgstr "模板"
#: assets/templates/assets/_asset_import_modal.html:10
#: assets/templates/assets/_asset_import_modal.html:10
#: common/templates/common/_add_terminal_command_storage_modal.html:10
#: users/templates/users/_user_import_modal.html:11
#: users/templates/users/_user_import_modal.html:11
msgid "Download"
msgid "Download"
msgstr "下载"
msgstr "下载"
#: assets/templates/assets/_asset_import_modal.html:13
#: assets/templates/assets/_asset_import_modal.html:13
#: common/templates/common/_add_terminal_command_storage_modal.html:13
msgid "Asset csv file"
msgid "Asset csv file"
msgstr "资产csv文件"
msgstr "资产csv文件"
#: assets/templates/assets/_asset_import_modal.html:16
#: assets/templates/assets/_asset_import_modal.html:16
#: common/templates/common/_add_terminal_command_storage_modal.html:16
msgid "If set id, will use this id update asset existed"
msgid "If set id, will use this id update asset existed"
msgstr "如果设置了id,则会使用该行信息更新该id的资产"
msgstr "如果设置了id,则会使用该行信息更新该id的资产"
...
@@ -650,7 +655,7 @@ msgstr "自动生成秘钥"
...
@@ -650,7 +655,7 @@ msgstr "自动生成秘钥"
#: assets/templates/assets/asset_update.html:47
#: assets/templates/assets/asset_update.html:47
#: assets/templates/assets/cluster_create_update.html:46
#: assets/templates/assets/cluster_create_update.html:46
#: perms/templates/perms/asset_permission_create_update.html:45
#: perms/templates/perms/asset_permission_create_update.html:45
#: terminal/templates/terminal/terminal_update.html:4
0
#: terminal/templates/terminal/terminal_update.html:4
1
msgid "Other"
msgid "Other"
msgstr "其它"
msgstr "其它"
...
@@ -661,11 +666,12 @@ msgstr "其它"
...
@@ -661,11 +666,12 @@ msgstr "其它"
#: assets/templates/assets/asset_group_create.html:16
#: assets/templates/assets/asset_group_create.html:16
#: assets/templates/assets/asset_update.html:55
#: assets/templates/assets/asset_update.html:55
#: assets/templates/assets/cluster_create_update.html:54
#: assets/templates/assets/cluster_create_update.html:54
#: common/templates/common/basic_setting.html:55
#: common/templates/common/basic_setting.html:58
#: common/templates/common/email_setting.html:56
#: common/templates/common/email_setting.html:59
#: common/templates/common/ldap_setting.html:56
#: common/templates/common/ldap_setting.html:59
#: common/templates/common/terminal_setting.html:82
#: perms/templates/perms/asset_permission_create_update.html:67
#: perms/templates/perms/asset_permission_create_update.html:67
#: terminal/templates/terminal/terminal_update.html:4
5
#: terminal/templates/terminal/terminal_update.html:4
6
#: users/templates/users/_user.html:49
#: users/templates/users/_user.html:49
#: users/templates/users/user_bulk_update.html:23
#: users/templates/users/user_bulk_update.html:23
#: users/templates/users/user_password_update.html:58
#: users/templates/users/user_password_update.html:58
...
@@ -684,11 +690,12 @@ msgstr "重置"
...
@@ -684,11 +690,12 @@ msgstr "重置"
#: assets/templates/assets/asset_list.html:53
#: assets/templates/assets/asset_list.html:53
#: assets/templates/assets/asset_update.html:56
#: assets/templates/assets/asset_update.html:56
#: assets/templates/assets/cluster_create_update.html:55
#: assets/templates/assets/cluster_create_update.html:55
#: common/templates/common/basic_setting.html:56
#: common/templates/common/basic_setting.html:59
#: common/templates/common/email_setting.html:57
#: common/templates/common/email_setting.html:60
#: common/templates/common/ldap_setting.html:57
#: common/templates/common/ldap_setting.html:60
#: common/templates/common/terminal_setting.html:83
#: perms/templates/perms/asset_permission_create_update.html:68
#: perms/templates/perms/asset_permission_create_update.html:68
#: terminal/templates/terminal/terminal_update.html:4
6
#: terminal/templates/terminal/terminal_update.html:4
7
#: users/templates/users/_user.html:50
#: users/templates/users/_user.html:50
#: users/templates/users/first_login.html:62
#: users/templates/users/first_login.html:62
#: users/templates/users/forgot_password.html:44
#: users/templates/users/forgot_password.html:44
...
@@ -778,6 +785,7 @@ msgstr "资产列表"
...
@@ -778,6 +785,7 @@ msgstr "资产列表"
#: assets/templates/assets/asset_group_detail.html:53
#: assets/templates/assets/asset_group_detail.html:53
#: assets/templates/assets/cluster_assets.html:54
#: assets/templates/assets/cluster_assets.html:54
#: assets/templates/assets/user_asset_list.html:22
#: assets/templates/assets/user_asset_list.html:22
#: common/templates/common/terminal_setting.html:63
#: users/templates/users/login_log_list.html:50
#: users/templates/users/login_log_list.html:50
msgid "Type"
msgid "Type"
msgstr "类型"
msgstr "类型"
...
@@ -878,7 +886,7 @@ msgid "Group"
...
@@ -878,7 +886,7 @@ msgid "Group"
msgstr "组"
msgstr "组"
#: assets/templates/assets/asset_detail.html:20 assets/views/asset.py:186
#: assets/templates/assets/asset_detail.html:20 assets/views/asset.py:186
#: assets/views/cluster.py:
103
#: assets/views/cluster.py:
98
msgid "Asset detail"
msgid "Asset detail"
msgstr "资产详情"
msgstr "资产详情"
...
@@ -1236,16 +1244,16 @@ msgstr "已经存在"
...
@@ -1236,16 +1244,16 @@ msgstr "已经存在"
msgid "Cluster list"
msgid "Cluster list"
msgstr "集群列表"
msgstr "集群列表"
#: assets/views/cluster.py:42 assets/views/cluster.py:
70
#: assets/views/cluster.py:42 assets/views/cluster.py:
65
#: assets/views/system_user.py:96
#: assets/views/system_user.py:96
msgid "assets"
msgid "assets"
msgstr "资产管理"
msgstr "资产管理"
#: assets/views/cluster.py:
71
#: assets/views/cluster.py:
66
msgid "Update Cluster"
msgid "Update Cluster"
msgstr "更新Cluster"
msgstr "更新Cluster"
#: assets/views/cluster.py:8
6
#: assets/views/cluster.py:8
1
msgid "Cluster detail"
msgid "Cluster detail"
msgstr "集群详情"
msgstr "集群详情"
...
@@ -1291,85 +1299,108 @@ msgstr "<b>%(name)s</b> 创建成功"
...
@@ -1291,85 +1299,108 @@ msgstr "<b>%(name)s</b> 创建成功"
msgid "<b>%(name)s</b> was updated successfully"
msgid "<b>%(name)s</b> was updated successfully"
msgstr "<b>%(name)s</b> 更新成功"
msgstr "<b>%(name)s</b> 更新成功"
#: common/forms.py:
64
#: common/forms.py:
70
msgid "Current SITE URL"
msgid "Current SITE URL"
msgstr "当前站点URL"
msgstr "当前站点URL"
#: common/forms.py:
68
#: common/forms.py:
74
msgid "User Guide URL"
msgid "User Guide URL"
msgstr "用户向导URL"
msgstr "用户向导URL"
#: common/forms.py:
69
#: common/forms.py:
75
msgid "User first login update profile done redirect to it"
msgid "User first login update profile done redirect to it"
msgstr "用户第一次登录,修改profile后重定向到地址"
msgstr "用户第一次登录,修改profile后重定向到地址"
#: common/forms.py:7
2
#: common/forms.py:7
8
msgid "Email Subject Prefix"
msgid "Email Subject Prefix"
msgstr "Email主题前缀"
msgstr "Email主题前缀"
#: common/forms.py:76
#: common/forms.py:85
msgid "Enable LDAP Auth"
msgstr "LDAP认证"
#: common/forms.py:82
msgid "SMTP host"
msgid "SMTP host"
msgstr "SMTP主机"
msgstr "SMTP主机"
#: common/forms.py:8
1
#: common/forms.py:8
7
msgid "SMTP port"
msgid "SMTP port"
msgstr "SMTP端口"
msgstr "SMTP端口"
#: common/forms.py:8
3
#: common/forms.py:8
9
msgid "SMTP user"
msgid "SMTP user"
msgstr "SMTP账号"
msgstr "SMTP账号"
#: common/forms.py:
86
#: common/forms.py:
92
msgid "SMTP password"
msgid "SMTP password"
msgstr "SMTP密码"
msgstr "SMTP密码"
#: common/forms.py:
87
#: common/forms.py:
93
msgid "Some provider use token except password"
msgid "Some provider use token except password"
msgstr "一些邮件提供商需要输入的是Token"
msgstr "一些邮件提供商需要输入的是Token"
#: common/forms.py:9
0 common/forms.py:127
#: common/forms.py:9
6 common/forms.py:133
msgid "Use SSL"
msgid "Use SSL"
msgstr "使用SSL"
msgstr "使用SSL"
#: common/forms.py:9
1
#: common/forms.py:9
7
msgid "If SMTP port is 465, may be select"
msgid "If SMTP port is 465, may be select"
msgstr "如果SMTP端口是465,通常需要启用SSL"
msgstr "如果SMTP端口是465,通常需要启用SSL"
#: common/forms.py:
94
#: common/forms.py:
100
msgid "Use TLS"
msgid "Use TLS"
msgstr "使用TLS"
msgstr "使用TLS"
#: common/forms.py:
95
#: common/forms.py:
101
msgid "If SMTP port is 587, may be select"
msgid "If SMTP port is 587, may be select"
msgstr "如果SMTP端口是587,通常需要启用TLS"
msgstr "如果SMTP端口是587,通常需要启用TLS"
#: common/forms.py:10
1
#: common/forms.py:10
7
msgid "LDAP server"
msgid "LDAP server"
msgstr "LDAP地址"
msgstr "LDAP地址"
#: common/forms.py:1
04
#: common/forms.py:1
10
msgid "Bind DN"
msgid "Bind DN"
msgstr "绑定DN"
msgstr "绑定DN"
#: common/forms.py:11
1
#: common/forms.py:11
7
msgid "User OU"
msgid "User OU"
msgstr "用户OU"
msgstr "用户OU"
#: common/forms.py:1
14
#: common/forms.py:1
20
msgid "User search filter"
msgid "User search filter"
msgstr "用户过滤器"
msgstr "用户过滤器"
#: common/forms.py:1
17
#: common/forms.py:1
23
msgid "User attr map"
msgid "User attr map"
msgstr "LDAP属性映射"
msgstr "LDAP属性映射"
#: common/forms.py:130
#: common/forms.py:143
msgid "Enable LDAP Auth"
msgid "List sort by"
msgstr "开启LDAP认证"
msgstr "资产列表排序"
#: common/forms.py:146
msgid "Heartbeat interval"
msgstr "心跳间隔"
#: common/forms.py:146 ops/models.py:32
msgid "Units: seconds"
msgstr "单位: 秒"
#: common/forms.py:149
msgid "Password auth"
msgstr "密码认证"
#: common/forms.py:152
msgid "Public key auth"
msgstr "秘钥认证"
#: common/forms.py:155 common/templates/common/terminal_setting.html:58
#: terminal/models.py:27
msgid "Command storage"
msgstr "命令存储"
#: common/forms.py:156
msgid ""
"Set terminal storage setting, `default` is the using as default,You can set "
"other storage and some terminal using"
msgstr "设置终端命令存储,default是默认用的存储方式"
#: common/mixins.py:29
#: common/mixins.py:29
msgid "is discard"
msgid "is discard"
...
@@ -1379,43 +1410,62 @@ msgstr ""
...
@@ -1379,43 +1410,62 @@ msgstr ""
msgid "discard time"
msgid "discard time"
msgstr ""
msgstr ""
#: common/models.py:2
6
#: common/models.py:2
7
msgid "Value"
msgid "Value"
msgstr "值"
msgstr "值"
#: common/models.py:2
7
#: common/models.py:2
9
msgid "Enabled"
msgid "Enabled"
msgstr "启用"
msgstr "启用"
#: common/templates/common/_add_terminal_command_storage_modal.html:4
msgid "Add command storage"
msgstr "添加命令存储"
#: common/templates/common/basic_setting.html:15
#: common/templates/common/basic_setting.html:15
#: common/templates/common/email_setting.html:15
#: common/templates/common/email_setting.html:15
#: common/templates/common/ldap_setting.html:15 common/views.py:18
#: common/templates/common/ldap_setting.html:15
#: common/templates/common/terminal_setting.html:15
#: common/templates/common/terminal_setting.html:38 common/views.py:21
msgid "Basic setting"
msgid "Basic setting"
msgstr "基本设置"
msgstr "基本设置"
#: common/templates/common/basic_setting.html:18
#: common/templates/common/basic_setting.html:18
#: common/templates/common/email_setting.html:18
#: common/templates/common/email_setting.html:18
#: common/templates/common/ldap_setting.html:18 common/views.py:44
#: common/templates/common/ldap_setting.html:18
#: common/templates/common/terminal_setting.html:18 common/views.py:47
msgid "Email setting"
msgid "Email setting"
msgstr "邮件设置"
msgstr "邮件设置"
#: common/templates/common/basic_setting.html:21
#: common/templates/common/basic_setting.html:21
#: common/templates/common/email_setting.html:21
#: common/templates/common/email_setting.html:21
#: common/templates/common/ldap_setting.html:21 common/views.py:70
#: common/templates/common/ldap_setting.html:21
#: common/templates/common/terminal_setting.html:21 common/views.py:73
msgid "LDAP setting"
msgid "LDAP setting"
msgstr "LDAP设置"
msgstr "LDAP设置"
#: common/templates/common/email_setting.html:55
#: common/templates/common/basic_setting.html:24
#: common/templates/common/ldap_setting.html:55
#: common/templates/common/email_setting.html:24
#: common/templates/common/ldap_setting.html:24
#: common/templates/common/terminal_setting.html:24 common/views.py:102
msgid "Terminal setting"
msgstr "终端设置"
#: common/templates/common/email_setting.html:58
#: common/templates/common/ldap_setting.html:58
msgid "Test connection"
msgid "Test connection"
msgstr "测试连接"
msgstr "测试连接"
#: common/views.py:17 common/views.py:43 common/views.py:69
#: common/templates/common/terminal_setting.html:77 terminal/models.py:28
msgid "Replay storage"
msgstr "录像存储"
#: common/views.py:20 common/views.py:46 common/views.py:72 common/views.py:101
#: templates/_nav.html:69
#: templates/_nav.html:69
msgid "Settings"
msgid "Settings"
msgstr "系统设置"
msgstr "系统设置"
#: common/views.py:
28 common/views.py:54 common/views.py:82
#: common/views.py:
31 common/views.py:57 common/views.py:85 common/views.py:113
msgid "Update setting successfully, please restart program"
msgid "Update setting successfully, please restart program"
msgstr "更新设置成功, 请手动重启程序"
msgstr "更新设置成功, 请手动重启程序"
...
@@ -1423,10 +1473,6 @@ msgstr "更新设置成功, 请手动重启程序"
...
@@ -1423,10 +1473,6 @@ msgstr "更新设置成功, 请手动重启程序"
msgid "Interval"
msgid "Interval"
msgstr "间隔"
msgstr "间隔"
#: ops/models.py:32
msgid "Units: seconds"
msgstr "单位: 秒"
#: ops/models.py:33
#: ops/models.py:33
msgid "Crontab"
msgid "Crontab"
msgstr "Crontab"
msgstr "Crontab"
...
@@ -1570,7 +1616,7 @@ msgstr "执行历史"
...
@@ -1570,7 +1616,7 @@ msgstr "执行历史"
#: ops/templates/ops/adhoc_history.html:52
#: ops/templates/ops/adhoc_history.html:52
#: ops/templates/ops/adhoc_history_detail.html:58
#: ops/templates/ops/adhoc_history_detail.html:58
#: ops/templates/ops/task_history.html:55 terminal/models.py:1
01
#: ops/templates/ops/task_history.html:55 terminal/models.py:1
32
#: terminal/templates/terminal/session_list.html:77
#: terminal/templates/terminal/session_list.html:77
msgid "Date start"
msgid "Date start"
msgstr "开始日期"
msgstr "开始日期"
...
@@ -1687,18 +1733,18 @@ msgid "Task run history"
...
@@ -1687,18 +1733,18 @@ msgid "Task run history"
msgstr "执行历史"
msgstr "执行历史"
#: perms/forms.py:16 users/forms.py:147 users/forms.py:152 users/forms.py:164
#: perms/forms.py:16 users/forms.py:147 users/forms.py:152 users/forms.py:164
#: users/forms.py:19
5
#: users/forms.py:19
4
msgid "Select users"
msgid "Select users"
msgstr "选择用户"
msgstr "选择用户"
#: perms/forms.py:18 perms/models.py:15
#: perms/forms.py:18 perms/models.py:15
#: perms/templates/perms/asset_permission_create_update.html:36
#: perms/templates/perms/asset_permission_create_update.html:36
#: perms/templates/perms/asset_permission_list.html:26 templates/_nav.html:12
#: perms/templates/perms/asset_permission_list.html:26 templates/_nav.html:12
#: terminal/backends/command/models.py:10 terminal/models.py:
92
#: terminal/backends/command/models.py:10 terminal/models.py:
123
#: terminal/templates/terminal/command_list.html:32
#: terminal/templates/terminal/command_list.html:32
#: terminal/templates/terminal/command_list.html:72
#: terminal/templates/terminal/command_list.html:72
#: terminal/templates/terminal/session_list.html:33
#: terminal/templates/terminal/session_list.html:33
#: terminal/templates/terminal/session_list.html:71 users/forms.py:19
1
#: terminal/templates/terminal/session_list.html:71 users/forms.py:19
0
#: users/models/user.py:30 users/templates/users/user_group_detail.html:78
#: users/models/user.py:30 users/templates/users/user_group_detail.html:78
#: users/views/user.py:337
#: users/views/user.py:337
msgid "User"
msgid "User"
...
@@ -1953,7 +1999,7 @@ msgstr "在线会话"
...
@@ -1953,7 +1999,7 @@ msgstr "在线会话"
msgid "Session offline"
msgid "Session offline"
msgstr "离线会话"
msgstr "离线会话"
#: templates/_nav.html:53 terminal/models.py:
99
#: templates/_nav.html:53 terminal/models.py:
130
#: terminal/templates/terminal/command_list.html:55
#: terminal/templates/terminal/command_list.html:55
#: terminal/templates/terminal/command_list.html:71
#: terminal/templates/terminal/command_list.html:71
#: terminal/templates/terminal/session_detail.html:48
#: terminal/templates/terminal/session_detail.html:48
...
@@ -2002,56 +2048,56 @@ msgstr "SSH 监听端口"
...
@@ -2002,56 +2048,56 @@ msgstr "SSH 监听端口"
msgid "Coco http/ws listen port"
msgid "Coco http/ws listen port"
msgstr "Http/Websocket 监听端口"
msgstr "Http/Websocket 监听端口"
#: terminal/models.py:
15
#: terminal/models.py:
24
msgid "Remote Address"
msgid "Remote Address"
msgstr "远端地址"
msgstr "远端地址"
#: terminal/models.py:
16
#: terminal/models.py:
25
msgid "SSH Port"
msgid "SSH Port"
msgstr "SSH端口"
msgstr "SSH端口"
#: terminal/models.py:
17
#: terminal/models.py:
26
msgid "HTTP Port"
msgid "HTTP Port"
msgstr "HTTP端口"
msgstr "HTTP端口"
#: terminal/models.py:
68
#: terminal/models.py:
99
msgid "Session Online"
msgid "Session Online"
msgstr "在线会话"
msgstr "在线会话"
#: terminal/models.py:
69
#: terminal/models.py:
100
msgid "CPU Usage"
msgid "CPU Usage"
msgstr "CPU使用"
msgstr "CPU使用"
#: terminal/models.py:
70
#: terminal/models.py:
101
msgid "Memory Used"
msgid "Memory Used"
msgstr "内存使用"
msgstr "内存使用"
#: terminal/models.py:
71
#: terminal/models.py:
102
msgid "Connections"
msgid "Connections"
msgstr "连接数"
msgstr "连接数"
#: terminal/models.py:
72
#: terminal/models.py:
103
msgid "Threads"
msgid "Threads"
msgstr "线程数"
msgstr "线程数"
#: terminal/models.py:
73
#: terminal/models.py:
104
msgid "Boot Time"
msgid "Boot Time"
msgstr "运行时间"
msgstr "运行时间"
#: terminal/models.py:
96
terminal/templates/terminal/session_list.html:74
#: terminal/models.py:
127
terminal/templates/terminal/session_list.html:74
#: terminal/templates/terminal/terminal_detail.html:47
#: terminal/templates/terminal/terminal_detail.html:47
msgid "Remote addr"
msgid "Remote addr"
msgstr "远端地址"
msgstr "远端地址"
#: terminal/models.py:
98
terminal/templates/terminal/session_list.html:100
#: terminal/models.py:
129
terminal/templates/terminal/session_list.html:100
msgid "Replay"
msgid "Replay"
msgstr "回放"
msgstr "回放"
#: terminal/models.py:1
02
#: terminal/models.py:1
33
msgid "Date end"
msgid "Date end"
msgstr "结束日期"
msgstr "结束日期"
#: terminal/models.py:1
19
#: terminal/models.py:1
50
msgid "Args"
msgid "Args"
msgstr "参数"
msgstr "参数"
...
@@ -2814,5 +2860,8 @@ msgstr "密码更新"
...
@@ -2814,5 +2860,8 @@ msgstr "密码更新"
msgid "Public key update"
msgid "Public key update"
msgstr "秘钥更新"
msgstr "秘钥更新"
#~ msgid "Enable LDAP Auth"
#~ msgstr "LDAP认证"
#~ msgid "Connect"
#~ msgid "Connect"
#~ msgstr "连接"
#~ msgstr "连接"
apps/users/forms.py
View file @
0a931bbf
...
@@ -172,7 +172,6 @@ class UserBulkUpdateForm(forms.ModelForm):
...
@@ -172,7 +172,6 @@ class UserBulkUpdateForm(forms.ModelForm):
if
self
.
data
.
get
(
field
)
is
not
None
:
if
self
.
data
.
get
(
field
)
is
not
None
:
changed_fields
.
append
(
field
)
changed_fields
.
append
(
field
)
print
(
changed_fields
)
cleaned_data
=
{
k
:
v
for
k
,
v
in
self
.
cleaned_data
.
items
()
cleaned_data
=
{
k
:
v
for
k
,
v
in
self
.
cleaned_data
.
items
()
if
k
in
changed_fields
}
if
k
in
changed_fields
}
users
=
cleaned_data
.
pop
(
'users'
,
''
)
users
=
cleaned_data
.
pop
(
'users'
,
''
)
...
...
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