2022-06-23 15:03:11 +00:00
|
|
|
package fs
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"github.com/alist-org/alist/v3/internal/model"
|
|
|
|
"github.com/alist-org/alist/v3/internal/operations"
|
2022-06-27 11:10:02 +00:00
|
|
|
"github.com/alist-org/alist/v3/pkg/utils"
|
2022-06-23 15:03:11 +00:00
|
|
|
"github.com/pkg/errors"
|
|
|
|
log "github.com/sirupsen/logrus"
|
|
|
|
)
|
|
|
|
|
|
|
|
// List files
|
|
|
|
func list(ctx context.Context, path string) ([]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-06-23 15:03:11 +00:00
|
|
|
account, actualPath, err := operations.GetAccountAndActualPath(path)
|
|
|
|
virtualFiles := operations.GetAccountVirtualFilesByPath(path)
|
|
|
|
if err != nil {
|
|
|
|
if len(virtualFiles) != 0 {
|
|
|
|
return virtualFiles, nil
|
|
|
|
}
|
|
|
|
return nil, errors.WithMessage(err, "failed get account")
|
|
|
|
}
|
2022-06-27 11:10:02 +00:00
|
|
|
objs, err := operations.List(ctx, account, actualPath)
|
2022-06-23 15:03:11 +00:00
|
|
|
if err != nil {
|
|
|
|
log.Errorf("%+v", err)
|
|
|
|
if len(virtualFiles) != 0 {
|
|
|
|
return virtualFiles, nil
|
|
|
|
}
|
2022-06-27 11:10:02 +00:00
|
|
|
return nil, errors.WithMessage(err, "failed get objs")
|
2022-06-23 15:03:11 +00:00
|
|
|
}
|
|
|
|
for _, accountFile := range virtualFiles {
|
2022-06-27 11:10:02 +00:00
|
|
|
if !containsByName(objs, accountFile) {
|
|
|
|
objs = append(objs, accountFile)
|
2022-06-23 15:03:11 +00:00
|
|
|
}
|
|
|
|
}
|
2022-06-27 11:10:02 +00:00
|
|
|
if whetherHide(user, meta, path) {
|
|
|
|
hide(objs, meta)
|
|
|
|
}
|
|
|
|
// sort objs
|
|
|
|
if account.Config().LocalSort {
|
|
|
|
model.SortFiles(objs, account.GetAccount().OrderBy, account.GetAccount().OrderDirection)
|
|
|
|
}
|
|
|
|
model.ExtractFolder(objs, account.GetAccount().ExtractFolder)
|
|
|
|
return objs, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func whetherHide(user *model.User, meta *model.Meta, path string) bool {
|
|
|
|
// if is admin, don't hide
|
|
|
|
if user.IsAdmin() {
|
|
|
|
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
|
|
|
|
if user.IsGuest() {
|
|
|
|
return true
|
|
|
|
}
|
2022-06-29 10:03:12 +00:00
|
|
|
return !user.CanSeeHides()
|
2022-06-27 11:10:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func hide(objs []model.Obj, meta *model.Meta) {
|
|
|
|
// TODO: hide
|
2022-06-23 15:03:11 +00:00
|
|
|
}
|