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
04326cc4
Commit
04326cc4
authored
Jun 10, 2019
by
Eric
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[update] fix bugs when socketio disconnect
parent
b06106f4
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
35 additions
and
20 deletions
+35
-20
Gopkg.lock
Gopkg.lock
+8
-8
Gopkg.toml
Gopkg.toml
+2
-2
connection.go
pkg/httpd/connection.go
+8
-1
server.go
pkg/httpd/server.go
+7
-0
assets.go
pkg/model/assets.go
+10
-9
No files found.
Gopkg.lock
View file @
04326cc4
...
...
@@ -42,7 +42,7 @@
revision = "648efa622239a2f6ff949fed78ee37b48d499ba4"
[[projects]]
digest = "1:
7b072517183e1d319b9127c2c43798e1e48f2d30b88e5a7e4f261a13c6ce5bbc
"
digest = "1:
ad0d5fc85edfb4114a3495ceb664ffba6d96e7fd8b11d88f61e75c29095d8a7d
"
name = "github.com/aws/aws-sdk-go"
packages = [
"aws",
...
...
@@ -84,8 +84,8 @@
"service/sts",
]
pruneopts = "UT"
revision = "
742c1495174cefd893992396b014bd6b7c91a293
"
version = "v1.19.4
2
"
revision = "
36f1478b1b241bd8ba1e21424b85eeb1f74f2bb4
"
version = "v1.19.4
6
"
[[projects]]
digest = "1:2af3a6e1f12e54cef95c6051cd1cb1e154629a4b82c692ac8a92f00259f570eb"
...
...
@@ -134,16 +134,16 @@
source = "github.com/ibuler/go-engine.io"
[[projects]]
digest = "1:25fa43cb2f30c0ab54aaabf05167c56c7e385635b3651015c5726ecb737a905e"
branch = "master"
digest = "1:495ed4b3b7aae593eb48c863593c6623bb96a6faf8e2b9ec431f174b76b9db23"
name = "github.com/googollee/go-socket.io"
packages = [
".",
"parser",
]
pruneopts = "UT"
revision = "96da97a7c8f269421388fbb0dca12aa3c0699088"
source = "github.com/googollee/go-socket.io"
version = "v1.4.1"
revision = "e344e8b5a55ad73c9e335a40d49e7c0de2915a77"
source = "github.com/LeeEirc/go-socket.io"
[[projects]]
digest = "1:3af6be4fee7c08f81f13d36f04ffb63ad4b6b5aaba12cce96095c7c2863d4912"
...
...
@@ -293,7 +293,7 @@
"unix",
]
pruneopts = "UT"
revision = "
4c4f7f33c9ed00de01c4c741d2177abfcfe19307
"
revision = "
1e42afee0f762ed3d76e6dd942e4181855fd1849
"
[[projects]]
branch = "master"
...
...
Gopkg.toml
View file @
04326cc4
...
...
@@ -38,8 +38,8 @@ required = ["github.com/googollee/go-engine.io"]
[[constraint]]
name
=
"github.com/googollee/go-socket.io"
source
=
"github.com/
googollee
/go-socket.io"
version
=
"1.4.1
"
source
=
"github.com/
LeeEirc
/go-socket.io"
branch
=
"master
"
[[constraint]]
name
=
"github.com/gorilla/mux"
...
...
pkg/httpd/connection.go
View file @
04326cc4
package
httpd
import
(
"github.com/googollee/go-socket.io"
"sync"
"github.com/gliderlabs/ssh"
socketio
"github.com/googollee/go-socket.io"
"cocogo/pkg/model"
)
...
...
@@ -24,6 +24,13 @@ func (c *connections) GetWebConn(conID string) (conn *WebConn) {
}
func
(
c
*
connections
)
DeleteWebConn
(
conID
string
)
{
c
.
mu
.
RLock
()
webC
,
ok
:=
c
.
container
[
conID
]
c
.
mu
.
RUnlock
()
if
!
ok
{
return
}
webC
.
Close
()
c
.
mu
.
Lock
()
defer
c
.
mu
.
Unlock
()
delete
(
c
.
container
,
conID
)
...
...
pkg/httpd/server.go
View file @
04326cc4
...
...
@@ -33,6 +33,7 @@ func StartHTTPServer() {
server
.
OnConnect
(
"/elfinder"
,
OnELFinderConnect
)
server
.
OnDisconnect
(
"/elfinder"
,
OnELFinderDisconnect
)
server
.
OnDisconnect
(
""
,
SocketDisconnect
)
go
server
.
Serve
()
defer
server
.
Close
()
...
...
@@ -56,3 +57,9 @@ func StartHTTPServer() {
func
StopHTTPServer
()
{
_
=
httpServer
.
Close
()
}
func
SocketDisconnect
(
s
socketio
.
Conn
,
msg
string
)
{
removeUserVolume
(
s
.
ID
())
conns
.
DeleteWebConn
(
s
.
ID
())
logger
.
Debug
(
"clean disconnect"
)
}
pkg/model/assets.go
View file @
04326cc4
...
...
@@ -179,15 +179,16 @@ func SortAssetNodesByKey(assetNodes []Node) {
const
LoginModeManual
=
"manual"
type
SystemUser
struct
{
ID
string
`json:"id"`
Name
string
`json:"name"`
Username
string
`json:"username"`
Priority
int
`json:"priority"`
Protocol
string
`json:"protocol"`
Comment
string
`json:"comment"`
LoginMode
string
`json:"login_mode"`
Password
string
`json:"password"`
PrivateKey
string
`json:"private_key"`
ID
string
`json:"id"`
Name
string
`json:"name"`
Username
string
`json:"username"`
Priority
int
`json:"priority"`
Protocol
string
`json:"protocol"`
Comment
string
`json:"comment"`
LoginMode
string
`json:"login_mode"`
Password
string
`json:"password"`
PrivateKey
string
`json:"private_key"`
Actions
[]
string
`json:"actions"`
}
type
SystemUserAuthInfo
struct
{
...
...
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