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
629f8793
Commit
629f8793
authored
Jul 19, 2019
by
ibuler
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev' of github.com:jumpserver/koko into dev
parents
1d0f55fa
2eb2a9bf
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
3 deletions
+17
-3
config.go
pkg/config/config.go
+2
-0
sftpconn.go
pkg/srvconn/sftpconn.go
+15
-3
No files found.
pkg/config/config.go
View file @
629f8793
...
...
@@ -25,6 +25,7 @@ type Config struct {
TelnetRegex
string
`json:"TERMINAL_TELNET_REGEX"`
MaxIdleTime
time
.
Duration
`json:"SECURITY_MAX_IDLE_TIME"`
SftpRoot
string
`json:"TERMINAL_SFTP_ROOT" yaml:"SFTP_ROOT"`
ShowHiddenFile
bool
`yaml:"SFTP_SHOW_HIDDEN_FILE"`
Name
string
`yaml:"NAME"`
SecretKey
string
`yaml:"SECRET_KEY"`
HostKeyFile
string
`yaml:"HOST_KEY_FILE"`
...
...
@@ -129,6 +130,7 @@ var Conf = &Config{
CommandStorage
:
map
[
string
]
interface
{}{
"TYPE"
:
"server"
},
UploadFailedReplay
:
true
,
SftpRoot
:
"/tmp"
,
ShowHiddenFile
:
false
,
}
func
SetConf
(
conf
*
Config
)
{
...
...
pkg/srvconn/sftpconn.go
View file @
629f8793
...
...
@@ -29,7 +29,9 @@ func NewUserSFTP(user *model.User, addr string, assets ...model.Asset) *UserSftp
type
UserSftp
struct
{
User
*
model
.
User
Addr
string
RootPath
string
ShowHidden
bool
hosts
map
[
string
]
*
HostnameDir
// key hostname or hostname.orgName
sftpClients
map
[
string
]
*
SftpConn
// key %s@%s suName hostName
...
...
@@ -37,8 +39,9 @@ type UserSftp struct {
}
func
(
u
*
UserSftp
)
initial
(
assets
[]
model
.
Asset
)
{
u
.
RootPath
=
config
.
GetConf
()
.
SftpRoot
conf
:=
config
.
GetConf
()
u
.
RootPath
=
conf
.
SftpRoot
u
.
ShowHidden
=
conf
.
ShowHiddenFile
u
.
hosts
=
make
(
map
[
string
]
*
HostnameDir
)
u
.
sftpClients
=
make
(
map
[
string
]
*
SftpConn
)
u
.
LogChan
=
make
(
chan
*
model
.
FTPLog
,
10
)
...
...
@@ -85,8 +88,17 @@ func (u *UserSftp) ReadDir(path string) (res []os.FileInfo, err error) {
if
conn
==
nil
{
return
res
,
sftp
.
ErrSshFxPermissionDenied
}
logger
.
Debug
(
"intersftp read dir real path: "
,
realPath
)
logger
.
Debug
(
"inter
sftp read dir real path: "
,
realPath
)
res
,
err
=
conn
.
client
.
ReadDir
(
realPath
)
if
!
u
.
ShowHidden
{
noHiddenFiles
:=
make
([]
os
.
FileInfo
,
0
,
len
(
res
))
for
i
:=
0
;
i
<
len
(
res
);
i
++
{
if
!
strings
.
HasPrefix
(
res
[
i
]
.
Name
(),
"."
)
{
noHiddenFiles
=
append
(
noHiddenFiles
,
res
[
i
])
}
}
return
noHiddenFiles
,
err
}
return
res
,
err
}
...
...
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