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
37daa828
Unverified
Commit
37daa828
authored
Jul 24, 2019
by
老广
Committed by
GitHub
Jul 24, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #64 from jumpserver/dev
Dev
parents
c7faba63
9fa50096
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
43 additions
and
24 deletions
+43
-24
Dockerfile
Dockerfile
+1
-0
entrypoint.sh
entrypoint.sh
+6
-0
server.go
pkg/httpd/server.go
+5
-0
sftpvolume.go
pkg/httpd/sftpvolume.go
+30
-23
koko.go
pkg/koko/koko.go
+1
-1
No files found.
Dockerfile
View file @
37daa828
...
@@ -20,6 +20,7 @@ COPY cmd/config_example.yml .
...
@@ -20,6 +20,7 @@ COPY cmd/config_example.yml .
COPY
entrypoint.sh .
COPY
entrypoint.sh .
RUN
chmod
755 ./entrypoint.sh
\
RUN
chmod
755 ./entrypoint.sh
\
&&
apk add
-U
tzdata
\
&&
apk add
-U
tzdata
\
&&
apk add curl
\
&&
cp
/usr/share/zoneinfo/Asia/Shanghai /etc/localtime
\
&&
cp
/usr/share/zoneinfo/Asia/Shanghai /etc/localtime
\
&&
echo
"Asia/Shanghai"
>
/etc/timezone
\
&&
echo
"Asia/Shanghai"
>
/etc/timezone
\
&&
apk del tzdata
\
&&
apk del tzdata
\
...
...
entrypoint.sh
View file @
37daa828
#!/bin/sh
#!/bin/sh
#
#
while
[
"
$(
curl
-I
-m
10
-o
/dev/null
-s
-w
%
{
http_code
}
$CORE_HOST
)
"
!=
"302"
]
do
echo
"wait for jms_core ready"
sleep
2
done
if
[
!
-f
"/opt/coco/config.yml"
]
;
then
if
[
!
-f
"/opt/coco/config.yml"
]
;
then
cp
/opt/coco/config_example.yml /opt/coco/config.yml
cp
/opt/coco/config_example.yml /opt/coco/config.yml
sed
-i
'5d'
/opt/coco/config.yml
sed
-i
'5d'
/opt/coco/config.yml
...
...
pkg/httpd/server.go
View file @
37daa828
package
httpd
package
httpd
import
(
import
(
"context"
"net"
"net"
"net/http"
"net/http"
"path/filepath"
"path/filepath"
...
@@ -69,6 +70,10 @@ func StartHTTPServer() {
...
@@ -69,6 +70,10 @@ func StartHTTPServer() {
}
}
sshWs
.
OnConnect
=
func
(
c
*
neffos
.
Conn
)
error
{
sshWs
.
OnConnect
=
func
(
c
*
neffos
.
Conn
)
error
{
if
c
.
WasReconnected
()
{
if
c
.
WasReconnected
()
{
namespace
:=
c
.
Socket
()
.
Request
()
.
Header
.
Get
(
"X-Namespace"
)
if
namespace
!=
""
{
_
,
_
=
c
.
Connect
(
context
.
TODO
(),
"ssh"
)
}
logger
.
Debugf
(
"Connection %s 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"
)
...
...
pkg/httpd/sftpvolume.go
View file @
37daa828
...
@@ -5,6 +5,7 @@ import (
...
@@ -5,6 +5,7 @@ import (
"io"
"io"
"os"
"os"
"path/filepath"
"path/filepath"
"strings"
"sync"
"sync"
"github.com/LeeEirc/elfinder"
"github.com/LeeEirc/elfinder"
...
@@ -61,7 +62,7 @@ func (u *UserVolume) ID() string {
...
@@ -61,7 +62,7 @@ func (u *UserVolume) ID() string {
}
}
func
(
u
*
UserVolume
)
Info
(
path
string
)
(
elfinder
.
FileDir
,
error
)
{
func
(
u
*
UserVolume
)
Info
(
path
string
)
(
elfinder
.
FileDir
,
error
)
{
logger
.
Debug
(
"
v
olume Info: "
,
path
)
logger
.
Debug
(
"
V
olume Info: "
,
path
)
var
rest
elfinder
.
FileDir
var
rest
elfinder
.
FileDir
if
path
==
"/"
{
if
path
==
"/"
{
return
u
.
RootFileDir
(),
nil
return
u
.
RootFileDir
(),
nil
...
@@ -75,7 +76,7 @@ func (u *UserVolume) Info(path string) (elfinder.FileDir, error) {
...
@@ -75,7 +76,7 @@ func (u *UserVolume) Info(path string) (elfinder.FileDir, error) {
rest
.
Read
,
rest
.
Write
=
elfinder
.
ReadWritePem
(
originFileInfo
.
Mode
())
rest
.
Read
,
rest
.
Write
=
elfinder
.
ReadWritePem
(
originFileInfo
.
Mode
())
if
filename
!=
originFileInfo
.
Name
()
{
if
filename
!=
originFileInfo
.
Name
()
{
rest
.
Read
,
rest
.
Write
=
1
,
1
rest
.
Read
,
rest
.
Write
=
1
,
1
logger
.
Debug
(
"
i
nfo filename no eque "
)
logger
.
Debug
(
"
I
nfo filename no eque "
)
}
}
if
filename
==
"."
{
if
filename
==
"."
{
filename
=
originFileInfo
.
Name
()
filename
=
originFileInfo
.
Name
()
...
@@ -100,7 +101,7 @@ func (u *UserVolume) Info(path string) (elfinder.FileDir, error) {
...
@@ -100,7 +101,7 @@ func (u *UserVolume) Info(path string) (elfinder.FileDir, error) {
func
(
u
*
UserVolume
)
List
(
path
string
)
[]
elfinder
.
FileDir
{
func
(
u
*
UserVolume
)
List
(
path
string
)
[]
elfinder
.
FileDir
{
dirs
:=
make
([]
elfinder
.
FileDir
,
0
)
dirs
:=
make
([]
elfinder
.
FileDir
,
0
)
logger
.
Debug
(
"
v
olume List: "
,
path
)
logger
.
Debug
(
"
V
olume List: "
,
path
)
originFileInfolist
,
err
:=
u
.
UserSftp
.
ReadDir
(
filepath
.
Join
(
u
.
basePath
,
path
))
originFileInfolist
,
err
:=
u
.
UserSftp
.
ReadDir
(
filepath
.
Join
(
u
.
basePath
,
path
))
if
err
!=
nil
{
if
err
!=
nil
{
return
dirs
return
dirs
...
@@ -135,19 +136,19 @@ func (u *UserVolume) Parents(path string, dep int) []elfinder.FileDir {
...
@@ -135,19 +136,19 @@ func (u *UserVolume) Parents(path string, dep int) []elfinder.FileDir {
func
(
u
*
UserVolume
)
GetFile
(
path
string
)
(
reader
io
.
ReadCloser
,
err
error
)
{
func
(
u
*
UserVolume
)
GetFile
(
path
string
)
(
reader
io
.
ReadCloser
,
err
error
)
{
logger
.
Debug
(
"GetFile path: "
,
path
)
logger
.
Debug
(
"GetFile path: "
,
path
)
return
u
.
UserSftp
.
Open
(
filepath
.
Join
(
u
.
basePath
,
path
))
return
u
.
UserSftp
.
Open
(
filepath
.
Join
(
u
.
basePath
,
TrimPrefix
(
path
)
))
}
}
func
(
u
*
UserVolume
)
UploadFile
(
dirPath
,
uploadPath
,
filename
string
,
reader
io
.
Reader
)
(
elfinder
.
FileDir
,
error
)
{
func
(
u
*
UserVolume
)
UploadFile
(
dirPath
,
uploadPath
,
filename
string
,
reader
io
.
Reader
)
(
elfinder
.
FileDir
,
error
)
{
var
path
string
var
path
string
switch
uploadPath
{
switch
{
case
""
:
case
strings
.
Contains
(
uploadPath
,
filename
)
:
path
=
filepath
.
Join
(
dirPath
,
filename
)
path
=
filepath
.
Join
(
dirPath
,
TrimPrefix
(
uploadPath
)
)
default
:
default
:
path
=
filepath
.
Join
(
dirPath
,
uploadPath
)
path
=
filepath
.
Join
(
dirPath
,
filename
)
}
}
logger
.
Debug
(
"Volume upload file path: "
,
path
)
logger
.
Debug
(
"Volume upload file path: "
,
path
,
" "
,
filename
,
" "
,
uploadPath
)
var
rest
elfinder
.
FileDir
var
rest
elfinder
.
FileDir
fd
,
err
:=
u
.
UserSftp
.
Create
(
filepath
.
Join
(
u
.
basePath
,
path
))
fd
,
err
:=
u
.
UserSftp
.
Create
(
filepath
.
Join
(
u
.
basePath
,
path
))
if
err
!=
nil
{
if
err
!=
nil
{
...
@@ -169,11 +170,11 @@ func (u *UserVolume) UploadChunk(cid int, dirPath, uploadPath, filename string,
...
@@ -169,11 +170,11 @@ func (u *UserVolume) UploadChunk(cid int, dirPath, uploadPath, filename string,
fd
,
ok
:=
u
.
chunkFilesMap
[
cid
]
fd
,
ok
:=
u
.
chunkFilesMap
[
cid
]
u
.
lock
.
Unlock
()
u
.
lock
.
Unlock
()
if
!
ok
{
if
!
ok
{
switch
uploadPath
{
switch
{
case
""
:
case
strings
.
Contains
(
uploadPath
,
filename
)
:
path
=
filepath
.
Join
(
dirPath
,
filename
)
path
=
filepath
.
Join
(
dirPath
,
TrimPrefix
(
uploadPath
)
)
default
:
default
:
path
=
filepath
.
Join
(
dirPath
,
uploadPath
)
path
=
filepath
.
Join
(
dirPath
,
filename
)
}
}
fd
,
err
=
u
.
UserSftp
.
Create
(
filepath
.
Join
(
u
.
basePath
,
path
))
fd
,
err
=
u
.
UserSftp
.
Create
(
filepath
.
Join
(
u
.
basePath
,
path
))
...
@@ -200,13 +201,14 @@ func (u *UserVolume) UploadChunk(cid int, dirPath, uploadPath, filename string,
...
@@ -200,13 +201,14 @@ func (u *UserVolume) UploadChunk(cid int, dirPath, uploadPath, filename string,
func
(
u
*
UserVolume
)
MergeChunk
(
cid
,
total
int
,
dirPath
,
uploadPath
,
filename
string
)
(
elfinder
.
FileDir
,
error
)
{
func
(
u
*
UserVolume
)
MergeChunk
(
cid
,
total
int
,
dirPath
,
uploadPath
,
filename
string
)
(
elfinder
.
FileDir
,
error
)
{
var
path
string
var
path
string
switch
uploadPath
{
switch
{
case
""
:
case
strings
.
Contains
(
uploadPath
,
filename
)
:
path
=
filepath
.
Join
(
dirPath
,
filename
)
path
=
filepath
.
Join
(
dirPath
,
TrimPrefix
(
uploadPath
)
)
default
:
default
:
path
=
filepath
.
Join
(
dirPath
,
uploadPath
)
path
=
filepath
.
Join
(
dirPath
,
filename
)
}
}
logger
.
Debug
(
"
m
erge chunk path: "
,
path
)
logger
.
Debug
(
"
M
erge chunk path: "
,
path
)
u
.
lock
.
Lock
()
u
.
lock
.
Lock
()
if
fd
,
ok
:=
u
.
chunkFilesMap
[
cid
];
ok
{
if
fd
,
ok
:=
u
.
chunkFilesMap
[
cid
];
ok
{
_
=
fd
.
Close
()
_
=
fd
.
Close
()
...
@@ -217,8 +219,8 @@ func (u *UserVolume) MergeChunk(cid, total int, dirPath, uploadPath, filename st
...
@@ -217,8 +219,8 @@ func (u *UserVolume) MergeChunk(cid, total int, dirPath, uploadPath, filename st
}
}
func
(
u
*
UserVolume
)
MakeDir
(
dir
,
newDirname
string
)
(
elfinder
.
FileDir
,
error
)
{
func
(
u
*
UserVolume
)
MakeDir
(
dir
,
newDirname
string
)
(
elfinder
.
FileDir
,
error
)
{
logger
.
Debug
(
"
v
olume Make Dir: "
,
newDirname
)
logger
.
Debug
(
"
V
olume Make Dir: "
,
newDirname
)
path
:=
filepath
.
Join
(
dir
,
newDirname
)
path
:=
filepath
.
Join
(
dir
,
TrimPrefix
(
newDirname
)
)
var
rest
elfinder
.
FileDir
var
rest
elfinder
.
FileDir
err
:=
u
.
UserSftp
.
MkdirAll
(
filepath
.
Join
(
u
.
basePath
,
path
))
err
:=
u
.
UserSftp
.
MkdirAll
(
filepath
.
Join
(
u
.
basePath
,
path
))
if
err
!=
nil
{
if
err
!=
nil
{
...
@@ -228,7 +230,7 @@ func (u *UserVolume) MakeDir(dir, newDirname string) (elfinder.FileDir, error) {
...
@@ -228,7 +230,7 @@ func (u *UserVolume) MakeDir(dir, newDirname string) (elfinder.FileDir, error) {
}
}
func
(
u
*
UserVolume
)
MakeFile
(
dir
,
newFilename
string
)
(
elfinder
.
FileDir
,
error
)
{
func
(
u
*
UserVolume
)
MakeFile
(
dir
,
newFilename
string
)
(
elfinder
.
FileDir
,
error
)
{
logger
.
Debug
(
"
v
olume MakeFile"
)
logger
.
Debug
(
"
V
olume MakeFile"
)
path
:=
filepath
.
Join
(
dir
,
newFilename
)
path
:=
filepath
.
Join
(
dir
,
newFilename
)
var
rest
elfinder
.
FileDir
var
rest
elfinder
.
FileDir
...
@@ -244,7 +246,7 @@ func (u *UserVolume) MakeFile(dir, newFilename string) (elfinder.FileDir, error)
...
@@ -244,7 +246,7 @@ func (u *UserVolume) MakeFile(dir, newFilename string) (elfinder.FileDir, error)
func
(
u
*
UserVolume
)
Rename
(
oldNamePath
,
newName
string
)
(
elfinder
.
FileDir
,
error
)
{
func
(
u
*
UserVolume
)
Rename
(
oldNamePath
,
newName
string
)
(
elfinder
.
FileDir
,
error
)
{
logger
.
Debug
(
"
v
olume Rename"
)
logger
.
Debug
(
"
V
olume Rename"
)
var
rest
elfinder
.
FileDir
var
rest
elfinder
.
FileDir
newNamePath
:=
filepath
.
Join
(
filepath
.
Dir
(
oldNamePath
),
newName
)
newNamePath
:=
filepath
.
Join
(
filepath
.
Dir
(
oldNamePath
),
newName
)
err
:=
u
.
UserSftp
.
Rename
(
filepath
.
Join
(
u
.
basePath
,
oldNamePath
),
filepath
.
Join
(
u
.
basePath
,
newNamePath
))
err
:=
u
.
UserSftp
.
Rename
(
filepath
.
Join
(
u
.
basePath
,
oldNamePath
),
filepath
.
Join
(
u
.
basePath
,
newNamePath
))
...
@@ -256,7 +258,7 @@ func (u *UserVolume) Rename(oldNamePath, newName string) (elfinder.FileDir, erro
...
@@ -256,7 +258,7 @@ func (u *UserVolume) Rename(oldNamePath, newName string) (elfinder.FileDir, erro
func
(
u
*
UserVolume
)
Remove
(
path
string
)
error
{
func
(
u
*
UserVolume
)
Remove
(
path
string
)
error
{
logger
.
Debug
(
"
v
olume remove"
,
path
)
logger
.
Debug
(
"
V
olume remove"
,
path
)
var
res
os
.
FileInfo
var
res
os
.
FileInfo
var
err
error
var
err
error
res
,
err
=
u
.
UserSftp
.
Stat
(
filepath
.
Join
(
u
.
basePath
,
path
))
res
,
err
=
u
.
UserSftp
.
Stat
(
filepath
.
Join
(
u
.
basePath
,
path
))
...
@@ -333,3 +335,7 @@ func NewElfinderFileInfo(id, dirPath string, originFileInfo os.FileInfo) elfinde
...
@@ -333,3 +335,7 @@ func NewElfinderFileInfo(id, dirPath string, originFileInfo os.FileInfo) elfinde
func
hashPath
(
id
,
path
string
)
string
{
func
hashPath
(
id
,
path
string
)
string
{
return
elfinder
.
CreateHash
(
id
,
path
)
return
elfinder
.
CreateHash
(
id
,
path
)
}
}
func
TrimPrefix
(
path
string
)
string
{
return
strings
.
TrimPrefix
(
path
,
"/"
)
}
\ No newline at end of file
pkg/koko/koko.go
View file @
37daa828
...
@@ -14,7 +14,7 @@ import (
...
@@ -14,7 +14,7 @@ import (
"github.com/jumpserver/koko/pkg/sshd"
"github.com/jumpserver/koko/pkg/sshd"
)
)
const
version
=
"1.5.
0
"
const
version
=
"1.5.
2
"
type
Coco
struct
{
type
Coco
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