Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
K
koko
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
koko
Commits
443d96e6
Commit
443d96e6
authored
Jul 18, 2019
by
ibuler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Update] 修改支持心跳
parent
096757c8
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
26 additions
and
7 deletions
+26
-7
file_manager.html
cmd/templates/elfinder/file_manager.html
+7
-1
server.go
pkg/httpd/server.go
+7
-3
websshws.go
pkg/httpd/websshws.go
+12
-3
No files found.
cmd/templates/elfinder/file_manager.html
View file @
443d96e6
...
@@ -11,10 +11,16 @@
...
@@ -11,10 +11,16 @@
var
scheme
=
document
.
location
.
protocol
==
"https:"
?
"wss"
:
"ws"
;
var
scheme
=
document
.
location
.
protocol
==
"https:"
?
"wss"
:
"ws"
;
var
port
=
document
.
location
.
port
?
":"
+
document
.
location
.
port
:
""
;
var
port
=
document
.
location
.
port
?
":"
+
document
.
location
.
port
:
""
;
var
wsURL
=
scheme
+
"://"
+
document
.
location
.
hostname
+
port
+
"/socket.io/"
;
var
wsURL
=
scheme
+
"://"
+
document
.
location
.
hostname
+
port
+
"/socket.io/"
;
let
interval
;
dial
(
wsURL
,
{
dial
(
wsURL
,
{
"elfinder"
:
{
"elfinder"
:
{
_OnNamespaceConnected
:
function
(
nsConn
,
msg
)
{
_OnNamespaceConnected
:
function
(
nsConn
,
msg
)
{
console
.
log
(
"Connect websocket done"
)
interval
=
setInterval
(()
=>
nsConn
.
emit
(
'ping'
,
''
),
10000
);
},
_OnNamespaceDisconnect
:
function
(
ns
,
msg
)
{
if
(
interval
)
{
clearInterval
(
interval
);
}
},
},
data
:
function
(
nsConn
,
msg
)
{
data
:
function
(
nsConn
,
msg
)
{
var
data
=
msg
.
unmarshal
();
var
data
=
msg
.
unmarshal
();
...
...
pkg/httpd/server.go
View file @
443d96e6
...
@@ -16,11 +16,12 @@ import (
...
@@ -16,11 +16,12 @@ import (
var
(
var
(
httpServer
*
http
.
Server
httpServer
*
http
.
Server
Timeout
=
time
.
Duration
(
60
)
)
)
var
wsEvents
=
neffos
.
WithTimeout
{
var
wsEvents
=
neffos
.
WithTimeout
{
ReadTimeout
:
24
*
time
.
Hour
,
ReadTimeout
:
Timeout
*
time
.
Second
,
WriteTimeout
:
24
*
time
.
Hour
,
WriteTimeout
:
Timeout
*
time
.
Second
,
Namespaces
:
neffos
.
Namespaces
{
Namespaces
:
neffos
.
Namespaces
{
"ssh"
:
neffos
.
Events
{
"ssh"
:
neffos
.
Events
{
neffos
.
OnNamespaceConnected
:
OnNamespaceConnected
,
neffos
.
OnNamespaceConnected
:
OnNamespaceConnected
,
...
@@ -37,10 +38,12 @@ var wsEvents = neffos.WithTimeout{
...
@@ -37,10 +38,12 @@ var wsEvents = neffos.WithTimeout{
"host"
:
OnHostHandler
,
"host"
:
OnHostHandler
,
"logout"
:
OnLogoutHandler
,
"logout"
:
OnLogoutHandler
,
"token"
:
OnTokenHandler
,
"token"
:
OnTokenHandler
,
"ping"
:
OnPingHandler
,
},
},
"elfinder"
:
neffos
.
Events
{
"elfinder"
:
neffos
.
Events
{
neffos
.
OnNamespaceConnected
:
OnELFinderConnect
,
neffos
.
OnNamespaceConnected
:
OnELFinderConnect
,
neffos
.
OnNamespaceDisconnect
:
OnELFinderDisconnect
,
neffos
.
OnNamespaceDisconnect
:
OnELFinderDisconnect
,
"ping"
:
OnPingHandler
,
},
},
},
},
}
}
...
@@ -55,10 +58,11 @@ func StartHTTPServer() {
...
@@ -55,10 +58,11 @@ func StartHTTPServer() {
}
}
sshWs
.
OnConnect
=
func
(
c
*
neffos
.
Conn
)
error
{
sshWs
.
OnConnect
=
func
(
c
*
neffos
.
Conn
)
error
{
if
c
.
WasReconnected
()
{
if
c
.
WasReconnected
()
{
logger
.
Debugf
(
"Connection reconnected, with tries: %d"
,
c
.
ID
(),
c
.
ReconnectTries
)
logger
.
Debugf
(
"Connection
%s
reconnected, with tries: %d"
,
c
.
ID
(),
c
.
ReconnectTries
)
}
else
{
}
else
{
logger
.
Debug
(
"A new ws connection arrive"
)
logger
.
Debug
(
"A new ws connection arrive"
)
}
}
return
nil
return
nil
}
}
sshWs
.
OnDisconnect
=
func
(
c
*
neffos
.
Conn
)
{
sshWs
.
OnDisconnect
=
func
(
c
*
neffos
.
Conn
)
{
...
...
pkg/httpd/websshws.go
View file @
443d96e6
...
@@ -9,6 +9,7 @@ import (
...
@@ -9,6 +9,7 @@ import (
"net"
"net"
"strings"
"strings"
"sync"
"sync"
"time"
"github.com/gliderlabs/ssh"
"github.com/gliderlabs/ssh"
"github.com/kataras/neffos"
"github.com/kataras/neffos"
...
@@ -20,14 +21,16 @@ import (
...
@@ -20,14 +21,16 @@ import (
"github.com/jumpserver/koko/pkg/service"
"github.com/jumpserver/koko/pkg/service"
)
)
func
OnPingHandler
(
c
*
neffos
.
NSConn
,
msg
neffos
.
Message
)
error
{
c
.
Emit
(
"pong"
,
[]
byte
(
""
))
return
nil
}
// OnConnectHandler 当websocket连接后触发
// OnConnectHandler 当websocket连接后触发
func
OnNamespaceConnected
(
c
*
neffos
.
NSConn
,
msg
neffos
.
Message
)
error
{
func
OnNamespaceConnected
(
c
*
neffos
.
NSConn
,
msg
neffos
.
Message
)
error
{
// 首次连接 1.获取当前用户的信息
// 首次连接 1.获取当前用户的信息
cc
:=
c
.
Conn
cc
:=
c
.
Conn
logger
.
Debug
(
"Web terminal on connect event trigger"
)
logger
.
Debug
(
"Web terminal on connect event trigger"
)
if
cc
.
WasReconnected
()
{
}
else
{
}
request
:=
cc
.
Socket
()
.
Request
()
request
:=
cc
.
Socket
()
.
Request
()
header
:=
request
.
Header
header
:=
request
.
Header
cookies
:=
strings
.
Split
(
header
.
Get
(
"Cookie"
),
";"
)
cookies
:=
strings
.
Split
(
header
.
Get
(
"Cookie"
),
";"
)
...
@@ -53,6 +56,12 @@ func OnNamespaceConnected(c *neffos.NSConn, msg neffos.Message) error {
...
@@ -53,6 +56,12 @@ func OnNamespaceConnected(c *neffos.NSConn, msg neffos.Message) error {
}
}
remoteIP
=
strings
.
Split
(
remoteAddr
,
","
)[
0
]
remoteIP
=
strings
.
Split
(
remoteAddr
,
","
)[
0
]
logger
.
Infof
(
"Accepted %s connect websocket from %s"
,
user
.
Username
,
remoteIP
)
logger
.
Infof
(
"Accepted %s connect websocket from %s"
,
user
.
Username
,
remoteIP
)
go
func
()
{
for
{
<-
time
.
After
(
30
*
time
.
Second
)
c
.
Emit
(
"ping"
,
[]
byte
(
""
))
}
}()
return
nil
return
nil
}
}
...
...
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