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
b3723fde
Commit
b3723fde
authored
Dec 10, 2019
by
Eric
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Bugfix] web sftp path bugs
parent
2a1db5d2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
sftpfile.go
pkg/srvconn/sftpfile.go
+6
-4
No files found.
pkg/srvconn/sftpfile.go
View file @
b3723fde
...
...
@@ -331,6 +331,7 @@ func (ad *AssetDir) ReadDir(path string) (res []os.FileInfo, err error) {
return
}
folderName
=
pathData
[
0
]
pathData
=
pathData
[
1
:
]
}
su
,
ok
:=
ad
.
suMaps
[
folderName
]
if
!
ok
{
...
...
@@ -340,7 +341,7 @@ func (ad *AssetDir) ReadDir(path string) (res []os.FileInfo, err error) {
return
res
,
sftp
.
ErrSshFxPermissionDenied
}
con
,
realPath
:=
ad
.
GetSFTPAndRealPath
(
su
,
strings
.
Join
(
pathData
[
1
:
]
,
"/"
))
con
,
realPath
:=
ad
.
GetSFTPAndRealPath
(
su
,
strings
.
Join
(
pathData
,
"/"
))
if
con
==
nil
{
return
nil
,
sftp
.
ErrSshFxConnectionLost
}
...
...
@@ -365,6 +366,7 @@ func (ad *AssetDir) ReadLink(path string) (res string, err error) {
folderName
,
ok
:=
ad
.
IsUniqueSu
()
if
!
ok
{
folderName
=
pathData
[
0
]
pathData
=
pathData
[
1
:
]
}
su
,
ok
:=
ad
.
suMaps
[
folderName
]
if
!
ok
{
...
...
@@ -374,7 +376,7 @@ func (ad *AssetDir) ReadLink(path string) (res string, err error) {
return
res
,
sftp
.
ErrSshFxPermissionDenied
}
con
,
realPath
:=
ad
.
GetSFTPAndRealPath
(
su
,
strings
.
Join
(
pathData
[
1
:
]
,
"/"
))
con
,
realPath
:=
ad
.
GetSFTPAndRealPath
(
su
,
strings
.
Join
(
pathData
,
"/"
))
if
con
==
nil
{
return
""
,
sftp
.
ErrSshFxConnectionLost
}
...
...
@@ -490,8 +492,8 @@ func (ad *AssetDir) Stat(path string) (res os.FileInfo, err error) {
folderName
,
ok
:=
ad
.
IsUniqueSu
()
if
!
ok
{
folderName
=
pathData
[
0
]
pathData
=
pathData
[
1
:
]
}
su
,
ok
:=
ad
.
suMaps
[
folderName
]
if
!
ok
{
return
nil
,
sftp
.
ErrSshFxNoSuchFile
...
...
@@ -499,7 +501,7 @@ func (ad *AssetDir) Stat(path string) (res os.FileInfo, err error) {
if
!
ad
.
validatePermission
(
su
,
model
.
ConnectAction
)
{
return
res
,
sftp
.
ErrSshFxPermissionDenied
}
con
,
realPath
:=
ad
.
GetSFTPAndRealPath
(
su
,
strings
.
Join
(
pathData
[
1
:
]
,
"/"
))
con
,
realPath
:=
ad
.
GetSFTPAndRealPath
(
su
,
strings
.
Join
(
pathData
,
"/"
))
if
con
==
nil
{
return
nil
,
sftp
.
ErrSshFxConnectionLost
}
...
...
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