2022-06-09 11:15:08 +00:00
|
|
|
// Copyright 2022 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2022-06-09 11:15:08 +00:00
|
|
|
|
|
|
|
package repo
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"code.gitea.io/gitea/modules/base"
|
|
|
|
"code.gitea.io/gitea/modules/git"
|
2024-02-27 07:12:22 +00:00
|
|
|
"code.gitea.io/gitea/services/context"
|
2022-06-09 11:15:08 +00:00
|
|
|
|
|
|
|
"github.com/go-enry/go-enry/v2"
|
|
|
|
)
|
|
|
|
|
|
|
|
// TreeList get all files' entries of a repository
|
|
|
|
func TreeList(ctx *context.Context) {
|
|
|
|
tree, err := ctx.Repo.Commit.SubTree("/")
|
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("Repo.Commit.SubTree", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-10-07 17:20:53 +00:00
|
|
|
entries, err := tree.ListEntriesRecursiveFast()
|
2022-06-09 11:15:08 +00:00
|
|
|
if err != nil {
|
2022-10-07 17:20:53 +00:00
|
|
|
ctx.ServerError("ListEntriesRecursiveFast", err)
|
2022-06-09 11:15:08 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
entries.CustomSort(base.NaturalSortLess)
|
|
|
|
|
|
|
|
files := make([]string, 0, len(entries))
|
|
|
|
for _, entry := range entries {
|
|
|
|
if !isExcludedEntry(entry) {
|
|
|
|
files = append(files, entry.Name())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ctx.JSON(http.StatusOK, files)
|
|
|
|
}
|
|
|
|
|
|
|
|
func isExcludedEntry(entry *git.TreeEntry) bool {
|
|
|
|
if entry.IsDir() {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
if entry.IsSubModule() {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
if enry.IsVendor(entry.Name()) {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|