* 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
42 lines
1.3 KiB
Go
42 lines
1.3 KiB
Go
package storage
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
storenum "github.com/krau/SaveAny-Bot/pkg/enums/storage"
|
|
)
|
|
|
|
type MinioStorageConfig struct {
|
|
BaseConfig
|
|
Endpoint string `toml:"endpoint" mapstructure:"endpoint" json:"endpoint"`
|
|
AccessKeyID string `toml:"access_key_id" mapstructure:"access_key_id" json:"access_key_id"`
|
|
SecretAccessKey string `toml:"secret_access_key" mapstructure:"secret_access_key" json:"secret_access_key"`
|
|
BucketName string `toml:"bucket_name" mapstructure:"bucket_name" json:"bucket_name"`
|
|
UseSSL bool `toml:"use_ssl" mapstructure:"use_ssl" json:"use_ssl"`
|
|
BasePath string `toml:"base_path" mapstructure:"base_path" json:"base_path"`
|
|
}
|
|
|
|
func (m *MinioStorageConfig) Validate() error {
|
|
if m.Endpoint == "" {
|
|
return fmt.Errorf("endpoint is required for minio storage")
|
|
}
|
|
if m.AccessKeyID == "" || m.SecretAccessKey == "" {
|
|
return fmt.Errorf("access_key_id and secret_access_key are required for minio storage")
|
|
}
|
|
if m.BucketName == "" {
|
|
return fmt.Errorf("bucket_name is required for minio storage")
|
|
}
|
|
if m.BasePath == "" {
|
|
return fmt.Errorf("base_path is required for minio storage")
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *MinioStorageConfig) GetType() storenum.StorageType {
|
|
return storenum.Minio
|
|
}
|
|
|
|
func (m *MinioStorageConfig) GetName() string {
|
|
return m.Name
|
|
}
|