mirror of
https://github.com/OpenListTeam/OpenList.git
synced 2025-07-18 17:38:07 +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>
42 lines
1.3 KiB
Go
42 lines
1.3 KiB
Go
package quark_open
|
|
|
|
import (
|
|
"github.com/OpenListTeam/OpenList/v4/internal/driver"
|
|
"github.com/OpenListTeam/OpenList/v4/internal/op"
|
|
)
|
|
|
|
type Addition struct {
|
|
driver.RootID
|
|
OrderBy string `json:"order_by" type:"select" options:"none,file_type,file_name,updated_at,created_at" default:"none"`
|
|
OrderDirection string `json:"order_direction" type:"select" options:"asc,desc" default:"asc"`
|
|
UseOnlineAPI bool `json:"use_online_api" default:"true"`
|
|
APIAddress string `json:"api_url_address" default:"https://api.oplist.org/quarkyun/renewapi"`
|
|
AccessToken string `json:"access_token" required:"false" default:""`
|
|
RefreshToken string `json:"refresh_token" required:"true"`
|
|
AppID string `json:"app_id" required:"true" help:"Keep it empty if you don't have one"`
|
|
SignKey string `json:"sign_key" required:"true" help:"Keep it empty if you don't have one"`
|
|
}
|
|
|
|
type Conf struct {
|
|
ua string
|
|
api string
|
|
userId string
|
|
}
|
|
|
|
func init() {
|
|
op.RegisterDriver(func() driver.Driver {
|
|
return &QuarkOpen{
|
|
config: driver.Config{
|
|
Name: "QuarkOpen",
|
|
OnlyProxy: true,
|
|
DefaultRoot: "0",
|
|
NoOverwriteUpload: true,
|
|
},
|
|
conf: Conf{
|
|
ua: "go-resty/3.0.0-beta.1 (https://resty.dev)",
|
|
api: "https://open-api-drive.quark.cn",
|
|
},
|
|
}
|
|
})
|
|
}
|