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
f502a139
Unverified
Commit
f502a139
authored
Jul 19, 2019
by
老广
Committed by
GitHub
Jul 19, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #50 from jumpserver/dev
support whether show hidden file (#49)
parents
04b83c9f
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 @
f502a139
...
@@ -25,6 +25,7 @@ type Config struct {
...
@@ -25,6 +25,7 @@ type Config struct {
TelnetRegex
string
`json:"TERMINAL_TELNET_REGEX"`
TelnetRegex
string
`json:"TERMINAL_TELNET_REGEX"`
MaxIdleTime
time
.
Duration
`json:"SECURITY_MAX_IDLE_TIME"`
MaxIdleTime
time
.
Duration
`json:"SECURITY_MAX_IDLE_TIME"`
SftpRoot
string
`json:"TERMINAL_SFTP_ROOT" yaml:"SFTP_ROOT"`
SftpRoot
string
`json:"TERMINAL_SFTP_ROOT" yaml:"SFTP_ROOT"`
ShowHiddenFile
bool
`yaml:"SFTP_SHOW_HIDDEN_FILE"`
Name
string
`yaml:"NAME"`
Name
string
`yaml:"NAME"`
SecretKey
string
`yaml:"SECRET_KEY"`
SecretKey
string
`yaml:"SECRET_KEY"`
HostKeyFile
string
`yaml:"HOST_KEY_FILE"`
HostKeyFile
string
`yaml:"HOST_KEY_FILE"`
...
@@ -129,6 +130,7 @@ var Conf = &Config{
...
@@ -129,6 +130,7 @@ var Conf = &Config{
CommandStorage
:
map
[
string
]
interface
{}{
"TYPE"
:
"server"
},
CommandStorage
:
map
[
string
]
interface
{}{
"TYPE"
:
"server"
},
UploadFailedReplay
:
true
,
UploadFailedReplay
:
true
,
SftpRoot
:
"/tmp"
,
SftpRoot
:
"/tmp"
,
ShowHiddenFile
:
false
,
}
}
func
SetConf
(
conf
*
Config
)
{
func
SetConf
(
conf
*
Config
)
{
...
...
pkg/srvconn/sftpconn.go
View file @
f502a139
...
@@ -29,7 +29,9 @@ func NewUserSFTP(user *model.User, addr string, assets ...model.Asset) *UserSftp
...
@@ -29,7 +29,9 @@ func NewUserSFTP(user *model.User, addr string, assets ...model.Asset) *UserSftp
type
UserSftp
struct
{
type
UserSftp
struct
{
User
*
model
.
User
User
*
model
.
User
Addr
string
Addr
string
RootPath
string
RootPath
string
ShowHidden
bool
hosts
map
[
string
]
*
HostnameDir
// key hostname or hostname.orgName
hosts
map
[
string
]
*
HostnameDir
// key hostname or hostname.orgName
sftpClients
map
[
string
]
*
SftpConn
// key %s@%s suName hostName
sftpClients
map
[
string
]
*
SftpConn
// key %s@%s suName hostName
...
@@ -37,8 +39,9 @@ type UserSftp struct {
...
@@ -37,8 +39,9 @@ type UserSftp struct {
}
}
func
(
u
*
UserSftp
)
initial
(
assets
[]
model
.
Asset
)
{
func
(
u
*
UserSftp
)
initial
(
assets
[]
model
.
Asset
)
{
conf
:=
config
.
GetConf
()
u
.
RootPath
=
config
.
GetConf
()
.
SftpRoot
u
.
RootPath
=
conf
.
SftpRoot
u
.
ShowHidden
=
conf
.
ShowHiddenFile
u
.
hosts
=
make
(
map
[
string
]
*
HostnameDir
)
u
.
hosts
=
make
(
map
[
string
]
*
HostnameDir
)
u
.
sftpClients
=
make
(
map
[
string
]
*
SftpConn
)
u
.
sftpClients
=
make
(
map
[
string
]
*
SftpConn
)
u
.
LogChan
=
make
(
chan
*
model
.
FTPLog
,
10
)
u
.
LogChan
=
make
(
chan
*
model
.
FTPLog
,
10
)
...
@@ -85,8 +88,17 @@ func (u *UserSftp) ReadDir(path string) (res []os.FileInfo, err error) {
...
@@ -85,8 +88,17 @@ func (u *UserSftp) ReadDir(path string) (res []os.FileInfo, err error) {
if
conn
==
nil
{
if
conn
==
nil
{
return
res
,
sftp
.
ErrSshFxPermissionDenied
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
)
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
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