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
aa428b02
Commit
aa428b02
authored
Nov 13, 2019
by
ibuler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Update] 修改测试网关提示,不能包含特殊字符
parent
f40d51c8
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
3 deletions
+6
-3
domain.py
apps/assets/api/domain.py
+1
-1
domain.py
apps/assets/models/domain.py
+4
-1
domain_gateway_list.html
apps/assets/templates/assets/domain_gateway_list.html
+1
-1
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/assets/api/domain.py
View file @
aa428b02
...
...
@@ -44,4 +44,4 @@ class GatewayTestConnectionApi(SingleObjectMixin, APIView):
if
ok
:
return
Response
(
"ok"
)
else
:
return
Response
({
"
failed"
:
e
},
status
=
404
)
return
Response
({
"
error"
:
e
},
status
=
400
)
apps/assets/models/domain.py
View file @
aa428b02
...
...
@@ -3,9 +3,9 @@
import
uuid
import
random
import
re
import
paramiko
from
django.db
import
models
from
django.utils.translation
import
ugettext_lazy
as
_
...
...
@@ -63,6 +63,9 @@ class Gateway(AssetUser):
def
test_connective
(
self
,
local_port
=
None
):
if
local_port
is
None
:
local_port
=
self
.
port
if
not
re
.
match
(
r'\w+$'
,
self
.
password
):
return
False
,
_
(
"Password should not contain special characters"
)
client
=
paramiko
.
SSHClient
()
client
.
set_missing_host_key_policy
(
paramiko
.
AutoAddPolicy
())
proxy
=
paramiko
.
SSHClient
()
...
...
apps/assets/templates/assets/domain_gateway_list.html
View file @
aa428b02
...
...
@@ -139,7 +139,7 @@ $(document).ready(function(){
method
:
"POST"
,
body
:
JSON
.
stringify
({
'port'
:
parseInt
(
data
.
port
)}),
success_message
:
"{% trans 'Can be connected' %}"
,
fail_message
:
"{% trans 'The connection fails' %}"
{
#
fail_message
:
"{% trans 'The connection fails' %}"
#
}
})
});
</script>
...
...
apps/locale/zh/LC_MESSAGES/django.mo
View file @
aa428b02
No preview for this file type
apps/locale/zh/LC_MESSAGES/django.po
View file @
aa428b02
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