-
-
Notifications
You must be signed in to change notification settings - Fork 5.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
134 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
package virtual | ||
|
||
import ( | ||
"context" | ||
"github.com/alist-org/alist/v3/internal/driver" | ||
"github.com/alist-org/alist/v3/internal/errs" | ||
"github.com/alist-org/alist/v3/internal/model" | ||
"github.com/alist-org/alist/v3/pkg/utils" | ||
"github.com/alist-org/alist/v3/pkg/utils/random" | ||
"github.com/pkg/errors" | ||
"io" | ||
"time" | ||
) | ||
|
||
type Virtual struct { | ||
model.Storage | ||
Addition | ||
} | ||
|
||
func (d *Virtual) Config() driver.Config { | ||
return config | ||
} | ||
|
||
func (d *Virtual) Init(ctx context.Context, storage model.Storage) error { | ||
d.Storage = storage | ||
err := utils.Json.UnmarshalFromString(storage.Addition, &d.Addition) | ||
if err != nil { | ||
return errors.Wrap(err, "error while unmarshal addition") | ||
} | ||
return nil | ||
} | ||
|
||
func (d *Virtual) Drop(ctx context.Context) error { | ||
return nil | ||
} | ||
|
||
func (d *Virtual) GetStorage() model.Storage { | ||
return d.Storage | ||
} | ||
|
||
func (d *Virtual) GetAddition() driver.Additional { | ||
return d.Addition | ||
} | ||
|
||
func (d *Virtual) List(ctx context.Context, dir model.Obj) ([]model.Obj, error) { | ||
var res []model.Obj | ||
for i := 0; i < d.NumFile; i++ { | ||
res = append(res, model.Object{ | ||
Name: random.String(10), | ||
Size: random.RangeInt64(d.MinFileSize, d.MaxFileSize), | ||
IsFolder: false, | ||
Modified: time.Now(), | ||
}) | ||
} | ||
for i := 0; i < d.NumFolder; i++ { | ||
res = append(res, model.Object{ | ||
Name: random.String(10), | ||
Size: 0, | ||
IsFolder: true, | ||
Modified: time.Now(), | ||
}) | ||
} | ||
return res, nil | ||
} | ||
|
||
func (d *Virtual) Link(ctx context.Context, file model.Obj, args model.LinkArgs) (*model.Link, error) { | ||
return &model.Link{ | ||
Data: io.NopCloser(io.LimitReader(random.Rand, file.GetSize())), | ||
}, nil | ||
} | ||
|
||
func (d *Virtual) MakeDir(ctx context.Context, parentDir model.Obj, dirName string) error { | ||
return nil | ||
} | ||
|
||
func (d *Virtual) Move(ctx context.Context, srcObj, dstDir model.Obj) error { | ||
return nil | ||
} | ||
|
||
func (d *Virtual) Rename(ctx context.Context, srcObj model.Obj, newName string) error { | ||
return nil | ||
} | ||
|
||
func (d *Virtual) Copy(ctx context.Context, srcObj, dstDir model.Obj) error { | ||
return nil | ||
} | ||
|
||
func (d *Virtual) Remove(ctx context.Context, obj model.Obj) error { | ||
return nil | ||
} | ||
|
||
func (d *Virtual) Put(ctx context.Context, dstDir model.Obj, stream model.FileStreamer, up driver.UpdateProgress) error { | ||
return nil | ||
} | ||
|
||
func (d *Virtual) Other(ctx context.Context, data interface{}) (interface{}, error) { | ||
return nil, errs.NotSupport | ||
} | ||
|
||
var _ driver.Driver = (*Virtual)(nil) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
package virtual | ||
|
||
import ( | ||
"github.com/alist-org/alist/v3/internal/driver" | ||
"github.com/alist-org/alist/v3/internal/operations" | ||
) | ||
|
||
type Addition struct { | ||
driver.RootFolderPath | ||
NumFile int `json:"num_file" type:"number" default:"30" required:"true"` | ||
NumFolder int `json:"num_folder" type:"number" default:"30" required:"true"` | ||
MaxFileSize int64 `json:"max_file_size" type:"number" default:"1073741824" required:"true"` | ||
MinFileSize int64 `json:"min_file_size" type:"number" default:"1048576" required:"true"` | ||
} | ||
|
||
var config = driver.Config{ | ||
Name: "Virtual", | ||
OnlyLocal: true, | ||
LocalSort: true, | ||
//NoCache: true, | ||
} | ||
|
||
func New() driver.Driver { | ||
return &Virtual{} | ||
} | ||
|
||
func init() { | ||
operations.RegisterDriver(config, New) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters