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
bba9f607
Commit
bba9f607
authored
Jun 06, 2019
by
Eric
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[update] add sftp volume support
parent
11ef7697
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
62 additions
and
10 deletions
+62
-10
Gopkg.lock
Gopkg.lock
+1
-0
elfhandler.go
pkg/httpd/elfhandler.go
+26
-10
sftpvolume.go
pkg/httpd/sftpvolume.go
+0
-0
volumemanager.go
pkg/httpd/volumemanager.go
+35
-0
No files found.
Gopkg.lock
View file @
bba9f607
...
@@ -329,6 +329,7 @@
...
@@ -329,6 +329,7 @@
"github.com/aws/aws-sdk-go/aws",
"github.com/aws/aws-sdk-go/aws",
"github.com/aws/aws-sdk-go/aws/credentials",
"github.com/aws/aws-sdk-go/aws/credentials",
"github.com/aws/aws-sdk-go/aws/session",
"github.com/aws/aws-sdk-go/aws/session",
"github.com/aws/aws-sdk-go/service/s3",
"github.com/aws/aws-sdk-go/service/s3/s3manager",
"github.com/aws/aws-sdk-go/service/s3/s3manager",
"github.com/elastic/go-elasticsearch",
"github.com/elastic/go-elasticsearch",
"github.com/gliderlabs/ssh",
"github.com/gliderlabs/ssh",
...
...
pkg/httpd/elfhandler.go
View file @
bba9f607
...
@@ -4,7 +4,6 @@ import (
...
@@ -4,7 +4,6 @@ import (
"context"
"context"
"fmt"
"fmt"
"html/template"
"html/template"
"log"
"net/http"
"net/http"
"strings"
"strings"
...
@@ -51,18 +50,15 @@ func AuthDecorator(handler http.HandlerFunc) http.HandlerFunc {
...
@@ -51,18 +50,15 @@ func AuthDecorator(handler http.HandlerFunc) http.HandlerFunc {
}
}
func
OnELFinderConnect
(
s
socketio
.
Conn
)
error
{
func
OnELFinderConnect
(
s
socketio
.
Conn
)
error
{
u
:=
s
.
URL
()
data
:=
EmitSidMsg
{
Sid
:
s
.
ID
()}
sid
:=
u
.
Query
()
.
Get
(
"sid"
)
data
:=
EmitSidMsg
{
Sid
:
sid
}
s
.
Emit
(
"data"
,
data
)
s
.
Emit
(
"data"
,
data
)
return
nil
return
nil
}
}
func
OnELFinderDisconnect
(
s
socketio
.
Conn
,
msg
string
)
{
func
OnELFinderDisconnect
(
s
socketio
.
Conn
,
msg
string
)
{
u
:=
s
.
URL
()
logger
.
Debug
(
"disconnect: "
,
s
.
ID
())
sid
:=
u
.
Query
()
.
Get
(
"sid"
)
logger
.
Debug
(
"disconnect msg "
,
msg
)
log
.
Println
(
"disconnect: "
,
sid
)
removeUserVolume
(
s
.
ID
())
log
.
Println
(
"disconnect msg "
,
msg
)
}
}
func
sftpHostFinder
(
wr
http
.
ResponseWriter
,
req
*
http
.
Request
)
{
func
sftpHostFinder
(
wr
http
.
ResponseWriter
,
req
*
http
.
Request
)
{
...
@@ -80,7 +76,27 @@ func sftpFinder(wr http.ResponseWriter, req *http.Request) {
...
@@ -80,7 +76,27 @@ func sftpFinder(wr http.ResponseWriter, req *http.Request) {
func
sftpHostConnectorView
(
wr
http
.
ResponseWriter
,
req
*
http
.
Request
)
{
func
sftpHostConnectorView
(
wr
http
.
ResponseWriter
,
req
*
http
.
Request
)
{
user
:=
req
.
Context
()
.
Value
(
cctx
.
ContextKeyUser
)
.
(
*
model
.
User
)
user
:=
req
.
Context
()
.
Value
(
cctx
.
ContextKeyUser
)
.
(
*
model
.
User
)
remoteIP
:=
req
.
Context
()
.
Value
(
cctx
.
ContextKeyRemoteAddr
)
.
(
string
)
remoteIP
:=
req
.
Context
()
.
Value
(
cctx
.
ContextKeyRemoteAddr
)
.
(
string
)
logger
.
Debugf
(
"user: %s; remote ip: %s; create connector"
,
user
.
Name
,
remoteIP
)
switch
req
.
Method
{
con
:=
elfinder
.
NewElFinderConnector
([]
elfinder
.
Volume
{
&
elfinder
.
DefaultVolume
})
case
"GET"
:
if
err
:=
req
.
ParseForm
();
err
!=
nil
{
http
.
Error
(
wr
,
err
.
Error
(),
http
.
StatusBadRequest
)
return
}
case
"POST"
:
err
:=
req
.
ParseMultipartForm
(
32
<<
20
)
if
err
!=
nil
{
http
.
Error
(
wr
,
err
.
Error
(),
http
.
StatusBadRequest
)
return
}
}
sid
:=
req
.
Form
.
Get
(
"sid"
)
userV
,
ok
:=
GetUserVolume
(
sid
)
if
!
ok
{
userV
=
NewUserVolume
(
user
,
remoteIP
)
addUserVolume
(
sid
,
userV
)
}
logger
.
Debugf
(
"sid: %s"
,
sid
)
logger
.
Debug
(
userVolumes
)
con
:=
elfinder
.
NewElFinderConnector
([]
elfinder
.
Volume
{
userV
})
con
.
ServeHTTP
(
wr
,
req
)
con
.
ServeHTTP
(
wr
,
req
)
}
}
pkg/httpd/sftpvolume.go
0 → 100644
View file @
bba9f607
This diff is collapsed.
Click to expand it.
pkg/httpd/volumemanager.go
0 → 100644
View file @
bba9f607
package
httpd
import
(
"sync"
)
var
userVolumes
=
make
(
map
[
string
]
*
UserVolume
)
var
volumeLock
=
new
(
sync
.
RWMutex
)
func
addUserVolume
(
sid
string
,
v
*
UserVolume
)
{
volumeLock
.
Lock
()
defer
volumeLock
.
Unlock
()
userVolumes
[
sid
]
=
v
}
func
removeUserVolume
(
sid
string
)
{
volumeLock
.
RLock
()
v
,
ok
:=
userVolumes
[
sid
]
volumeLock
.
RUnlock
()
if
!
ok
{
return
}
v
.
Close
()
volumeLock
.
Lock
()
delete
(
userVolumes
,
sid
)
volumeLock
.
Unlock
()
}
func
GetUserVolume
(
sid
string
)
(
*
UserVolume
,
bool
)
{
volumeLock
.
RLock
()
defer
volumeLock
.
RUnlock
()
v
,
ok
:=
userVolumes
[
sid
]
return
v
,
ok
}
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