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
dcfdb3d7
Commit
dcfdb3d7
authored
Dec 10, 2019
by
Eric
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Update] fix web sftp
parent
f6fae8e0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
6 deletions
+9
-6
nodetree.go
pkg/model/nodetree.go
+6
-6
sftpconn.go
pkg/srvconn/sftpconn.go
+3
-0
No files found.
pkg/model/nodetree.go
View file @
dcfdb3d7
...
@@ -2,15 +2,15 @@ package model
...
@@ -2,15 +2,15 @@ package model
import
"encoding/json"
import
"encoding/json"
type
NodeTreeList
[]
NodeTreeAsset
type
NodeTreeList
[]
NodeTreeAsset
type
NodeTreeAsset
struct
{
type
NodeTreeAsset
struct
{
ID
string
`json:"id"`
ID
string
`json:"id"`
Name
string
`json:"name"`
Name
string
`json:"name"`
Title
string
`json:"title"`
Title
string
`json:"title"`
Meta
map
[
string
]
interface
{}
`json:"meta"`
Pid
string
`json:"pId"`
IsParent
bool
`json:"isParent"`
Meta
map
[
string
]
interface
{}
`json:"meta"`
}
}
func
ConvertMetaToNode
(
body
[]
byte
)
(
node
Node
,
err
error
)
{
func
ConvertMetaToNode
(
body
[]
byte
)
(
node
Node
,
err
error
)
{
...
...
pkg/srvconn/sftpconn.go
View file @
dcfdb3d7
...
@@ -252,6 +252,9 @@ func (u *UserSftpConn) initial() {
...
@@ -252,6 +252,9 @@ func (u *UserSftpConn) initial() {
u
.
Dirs
=
map
[
string
]
os
.
FileInfo
{}
u
.
Dirs
=
map
[
string
]
os
.
FileInfo
{}
}
}
for
_
,
item
:=
range
nodeTrees
{
for
_
,
item
:=
range
nodeTrees
{
if
item
.
Pid
!=
""
{
continue
}
typeName
,
ok
:=
item
.
Meta
[
"type"
]
.
(
string
)
typeName
,
ok
:=
item
.
Meta
[
"type"
]
.
(
string
)
if
!
ok
{
if
!
ok
{
continue
continue
...
...
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