|
package fs |
|
|
|
import ( |
|
"context" |
|
|
|
"github.com/alist-org/alist/v3/internal/model" |
|
"github.com/alist-org/alist/v3/internal/op" |
|
"github.com/alist-org/alist/v3/pkg/utils" |
|
"github.com/pkg/errors" |
|
log "github.com/sirupsen/logrus" |
|
) |
|
|
|
|
|
func list(ctx context.Context, path string, args *ListArgs) ([]model.Obj, error) { |
|
meta, _ := ctx.Value("meta").(*model.Meta) |
|
user, _ := ctx.Value("user").(*model.User) |
|
virtualFiles := op.GetStorageVirtualFilesByPath(path) |
|
storage, actualPath, err := op.GetStorageAndActualPath(path) |
|
if err != nil && len(virtualFiles) == 0 { |
|
return nil, errors.WithMessage(err, "failed get storage") |
|
} |
|
|
|
var _objs []model.Obj |
|
if storage != nil { |
|
_objs, err = op.List(ctx, storage, actualPath, model.ListArgs{ |
|
ReqPath: path, |
|
}, args.Refresh) |
|
if err != nil { |
|
if !args.NoLog { |
|
log.Errorf("fs/list: %+v", err) |
|
} |
|
if len(virtualFiles) == 0 { |
|
return nil, errors.WithMessage(err, "failed get objs") |
|
} |
|
} |
|
} |
|
|
|
om := model.NewObjMerge() |
|
if whetherHide(user, meta, path) { |
|
om.InitHideReg(meta.Hide) |
|
} |
|
objs := om.Merge(_objs, virtualFiles...) |
|
return objs, nil |
|
} |
|
|
|
func whetherHide(user *model.User, meta *model.Meta, path string) bool { |
|
|
|
if user == nil || user.CanSeeHides() { |
|
return false |
|
} |
|
|
|
if meta == nil { |
|
return false |
|
} |
|
|
|
if meta.Hide == "" { |
|
return false |
|
} |
|
|
|
if !utils.PathEqual(meta.Path, path) && !meta.HSub { |
|
return false |
|
} |
|
|
|
return true |
|
} |
|
|