mirror of
https://github.com/OpenListTeam/OpenList.git
synced 2025-07-19 01:48:42 +08:00

* fix(crypt): bug caused by link cache * perf(crypt,mega,halalcloud,quark,uc): optimize concurrent response link * chore: 删除无用代码 * ftp * 修复bug;资源释放 * 添加SyncClosers * local,sftp,smb * 重构,优化,增强 * Update internal/stream/util.go Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: j2rong4cn <36783515+j2rong4cn@users.noreply.github.com> * chore * chore * 优化,修复bug * . --------- Signed-off-by: j2rong4cn <36783515+j2rong4cn@users.noreply.github.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
27 lines
863 B
Go
27 lines
863 B
Go
package driver
|
|
|
|
type Config struct {
|
|
Name string `json:"name"`
|
|
LocalSort bool `json:"local_sort"`
|
|
// if the driver returns Link with MFile, this should be set to true
|
|
OnlyLinkMFile bool `json:"only_local"`
|
|
OnlyProxy bool `json:"only_proxy"`
|
|
NoCache bool `json:"no_cache"`
|
|
NoUpload bool `json:"no_upload"`
|
|
// if need get message from user, such as validate code
|
|
NeedMs bool `json:"need_ms"`
|
|
DefaultRoot string `json:"default_root"`
|
|
CheckStatus bool `json:"-"`
|
|
//info,success,warning,danger
|
|
Alert string `json:"alert"`
|
|
// whether to support overwrite upload
|
|
NoOverwriteUpload bool `json:"-"`
|
|
ProxyRangeOption bool `json:"-"`
|
|
// if the driver returns Link without URL, this should be set to true
|
|
NoLinkURL bool `json:"-"`
|
|
}
|
|
|
|
func (c Config) MustProxy() bool {
|
|
return c.OnlyProxy || c.OnlyLinkMFile || c.NoLinkURL
|
|
}
|