alist/internal/fs/list.go

104 lines
2.3 KiB
Go
Raw Normal View History

package fs
import (
"context"
2022-08-03 06:26:59 +00:00
"regexp"
"strings"
"github.com/alist-org/alist/v3/internal/model"
"github.com/alist-org/alist/v3/internal/op"
2022-06-27 11:10:02 +00:00
"github.com/alist-org/alist/v3/pkg/utils"
"github.com/pkg/errors"
log "github.com/sirupsen/logrus"
)
// List files
2022-08-29 11:15:52 +00:00
func list(ctx context.Context, path string, refresh ...bool) ([]model.Obj, error) {
2022-06-27 11:51:23 +00:00
meta := ctx.Value("meta").(*model.Meta)
2022-06-27 11:10:02 +00:00
user := ctx.Value("user").(*model.User)
2022-09-17 07:31:30 +00:00
var objs []model.Obj
storage, actualPath, err := op.GetStorageAndActualPath(path)
virtualFiles := op.GetStorageVirtualFilesByPath(path)
if err != nil {
2022-09-17 07:31:30 +00:00
if len(virtualFiles) == 0 {
return nil, errors.WithMessage(err, "failed get storage")
}
2022-09-17 07:31:30 +00:00
} else {
_objs, err := op.List(ctx, storage, actualPath, model.ListArgs{
2022-09-17 07:31:30 +00:00
ReqPath: path,
}, refresh...)
if err != nil {
log.Errorf("%+v", err)
if len(virtualFiles) == 0 {
return nil, errors.WithMessage(err, "failed get objs")
}
}
objs = make([]model.Obj, len(_objs))
copy(objs, _objs)
}
2022-09-17 07:31:30 +00:00
if objs == nil {
objs = virtualFiles
} else {
for _, storageFile := range virtualFiles {
if !containsByName(objs, storageFile) {
objs = append(objs, storageFile)
}
}
}
2022-06-27 11:10:02 +00:00
if whetherHide(user, meta, path) {
2022-06-30 08:09:06 +00:00
objs = hide(objs, meta)
2022-06-27 11:10:02 +00:00
}
// sort objs
2022-09-17 07:31:30 +00:00
if storage != nil {
if storage.Config().LocalSort {
model.SortFiles(objs, storage.GetStorage().OrderBy, storage.GetStorage().OrderDirection)
}
model.ExtractFolder(objs, storage.GetStorage().ExtractFolder)
2022-06-27 11:10:02 +00:00
}
return objs, nil
}
func whetherHide(user *model.User, meta *model.Meta, path string) bool {
// if is admin, don't hide
2022-06-30 08:09:06 +00:00
if user.CanSeeHides() {
2022-06-27 11:10:02 +00:00
return false
}
// if meta is nil, don't hide
if meta == nil {
return false
}
// if meta.Hide is empty, don't hide
if meta.Hide == "" {
return false
}
// if meta doesn't apply to sub_folder, don't hide
2022-06-30 07:41:58 +00:00
if !utils.PathEqual(meta.Path, path) && !meta.HSub {
2022-06-27 11:10:02 +00:00
return false
}
// if is guest, hide
2022-06-30 08:09:06 +00:00
return true
2022-06-27 11:10:02 +00:00
}
2022-06-30 08:09:06 +00:00
func hide(objs []model.Obj, meta *model.Meta) []model.Obj {
var res []model.Obj
deleted := make([]bool, len(objs))
rs := strings.Split(meta.Hide, "\n")
for _, r := range rs {
re := regexp.MustCompile(r)
2022-06-30 08:09:06 +00:00
for i, obj := range objs {
if deleted[i] {
continue
}
if re.MatchString(obj.GetName()) {
deleted[i] = true
}
}
}
for i, obj := range objs {
if !deleted[i] {
res = append(res, obj)
}
}
return res
}