show folder first on file list page
This commit is contained in:
parent
f174633b36
commit
218cafed1d
|
@ -8,7 +8,7 @@ import (
|
||||||
"path"
|
"path"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
git "github.com/speedata/gogit"
|
git "github.com/gogits/git"
|
||||||
)
|
)
|
||||||
|
|
||||||
type RepoFile struct {
|
type RepoFile struct {
|
||||||
|
@ -46,9 +46,12 @@ func GetReposFiles(userName, reposName, branchName, rpath string) ([]*RepoFile,
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var repodirs []*RepoFile
|
||||||
var repofiles []*RepoFile
|
var repofiles []*RepoFile
|
||||||
lastCommit.Tree.Walk(func(dirname string, entry *git.TreeEntry) int {
|
lastCommit.Tree.Walk(func(dirname string, entry *git.TreeEntry) int {
|
||||||
if dirname == rpath {
|
if dirname == rpath {
|
||||||
|
switch entry.Filemode {
|
||||||
|
case git.FileModeBlob, git.FileModeBlobExec:
|
||||||
repofiles = append(repofiles, &RepoFile{
|
repofiles = append(repofiles, &RepoFile{
|
||||||
entry.Id,
|
entry.Id,
|
||||||
entry.Filemode,
|
entry.Filemode,
|
||||||
|
@ -57,9 +60,19 @@ func GetReposFiles(userName, reposName, branchName, rpath string) ([]*RepoFile,
|
||||||
lastCommit.Message(),
|
lastCommit.Message(),
|
||||||
lastCommit.Committer.When,
|
lastCommit.Committer.When,
|
||||||
})
|
})
|
||||||
|
case git.FileModeTree:
|
||||||
|
repodirs = append(repodirs, &RepoFile{
|
||||||
|
entry.Id,
|
||||||
|
entry.Filemode,
|
||||||
|
entry.Name,
|
||||||
|
path.Join(dirname, entry.Name),
|
||||||
|
lastCommit.Message(),
|
||||||
|
lastCommit.Committer.When,
|
||||||
|
})
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return 0
|
return 0
|
||||||
})
|
})
|
||||||
|
|
||||||
return repofiles, nil
|
return append(repodirs, repofiles...), nil
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue