* refactor: a big refactor. wip * refactor: port handle file * refactor: place all handlers * fix: task info nil pointer * feat: enhance task progress tracking and context management * feat: cancel task * feat: stream mode * feat: silent mode * feat: dir cmd * refactor: remove unused old file * feat: rule cmd * feat: handle silent mode * feat: batch task * fix: batch task progress and temp file cleanup * refactor: update file creation and cleanup methods for better resource management * feat: add save command with silent mode handling * feat: message link * feat: update message prompts to include file count in storage selection * feat: slient save links * refactor: reduce dup code * feat: rule type * feat: chose dir * feat: refactor file handling and storage rules, improve error handling and logging * feat: rule mode * feat: telegraph pics * fix: tphpics nil pointer and inaccurate dirpath * feat: silent save telegraph * feat: add suffix to avoid file overwrite * feat: new storage telegram * chore: tidy go mod
56 lines
1.6 KiB
Go
56 lines
1.6 KiB
Go
package storage
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"io"
|
|
|
|
storcfg "github.com/krau/SaveAny-Bot/config/storage"
|
|
storenum "github.com/krau/SaveAny-Bot/pkg/enums/storage"
|
|
"github.com/krau/SaveAny-Bot/storage/alist"
|
|
"github.com/krau/SaveAny-Bot/storage/local"
|
|
"github.com/krau/SaveAny-Bot/storage/minio"
|
|
"github.com/krau/SaveAny-Bot/storage/telegram"
|
|
"github.com/krau/SaveAny-Bot/storage/webdav"
|
|
)
|
|
|
|
type Storage interface {
|
|
Init(ctx context.Context, cfg storcfg.StorageConfig) error
|
|
Type() storenum.StorageType
|
|
Name() string
|
|
JoinStoragePath(p string) string
|
|
Save(ctx context.Context, reader io.Reader, storagePath string) error
|
|
Exists(ctx context.Context, storagePath string) bool
|
|
}
|
|
|
|
type StorageCannotStream interface {
|
|
Storage
|
|
CannotStream() string
|
|
}
|
|
|
|
var Storages = make(map[string]Storage)
|
|
|
|
type StorageConstructor func() Storage
|
|
|
|
var storageConstructors = map[storenum.StorageType]StorageConstructor{
|
|
storenum.Alist: func() Storage { return new(alist.Alist) },
|
|
storenum.Local: func() Storage { return new(local.Local) },
|
|
storenum.Webdav: func() Storage { return new(webdav.Webdav) },
|
|
storenum.Minio: func() Storage { return new(minio.Minio) },
|
|
storenum.Telegram: func() Storage { return new(telegram.Telegram) },
|
|
}
|
|
|
|
func NewStorage(ctx context.Context, cfg storcfg.StorageConfig) (Storage, error) {
|
|
constructor, ok := storageConstructors[cfg.GetType()]
|
|
if !ok {
|
|
return nil, fmt.Errorf("不支持的存储类型: %s", cfg.GetType())
|
|
}
|
|
|
|
storage := constructor()
|
|
if err := storage.Init(ctx, cfg); err != nil {
|
|
return nil, fmt.Errorf("初始化 %s 存储失败: %w", cfg.GetName(), err)
|
|
}
|
|
|
|
return storage, nil
|
|
}
|