mirror of
https://github.com/OpenListTeam/OpenList.git
synced 2025-11-25 19:37:41 +08:00
* feat(style): add driver icons and disk usage * feat(driver): add disk usage for 115_open, 123_open, aliyundrive_open and baidu_netdisk * feat(driver): add disk usage for crypt, sftp and smb * chore: clean unused variable * feat(driver): add disk usage for cloudreve_v4 Signed-off-by: MadDogOwner <xiaoran@xrgzs.top> * fix(local): disk label check when getting disk usage * feat(style): return details when accessing the manage page --------- Signed-off-by: MadDogOwner <xiaoran@xrgzs.top> Co-authored-by: MadDogOwner <xiaoran@xrgzs.top>
40 lines
1009 B
Go
40 lines
1009 B
Go
package fs
|
|
|
|
import (
|
|
"context"
|
|
stdpath "path"
|
|
"time"
|
|
|
|
"github.com/OpenListTeam/OpenList/v4/internal/model"
|
|
"github.com/OpenListTeam/OpenList/v4/internal/op"
|
|
"github.com/OpenListTeam/OpenList/v4/pkg/utils"
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
func get(ctx context.Context, path string, args *GetArgs) (model.Obj, error) {
|
|
path = utils.FixAndCleanPath(path)
|
|
// maybe a virtual file
|
|
if path != "/" {
|
|
virtualFiles := op.GetStorageVirtualFilesWithDetailsByPath(ctx, stdpath.Dir(path), !args.WithStorageDetails)
|
|
for _, f := range virtualFiles {
|
|
if f.GetName() == stdpath.Base(path) {
|
|
return f, nil
|
|
}
|
|
}
|
|
}
|
|
storage, actualPath, err := op.GetStorageAndActualPath(path)
|
|
if err != nil {
|
|
// if there are no storage prefix with path, maybe root folder
|
|
if path == "/" {
|
|
return &model.Object{
|
|
Name: "root",
|
|
Size: 0,
|
|
Modified: time.Time{},
|
|
IsFolder: true,
|
|
}, nil
|
|
}
|
|
return nil, errors.WithMessage(err, "failed get storage")
|
|
}
|
|
return op.Get(ctx, storage, actualPath)
|
|
}
|