056de22edb
* Feat: retrieve nodes from data table * Feat: master node ping slave node in REST API * Feat: master send scheduled ping request * Feat: inactive nodes recover loop * Modify: remove database operations from aria2 RPC caller implementation * Feat: init aria2 client in master node * Feat: Round Robin load balancer * Feat: create and monitor aria2 task in master node * Feat: salve receive and handle heartbeat * Fix: Node ID will be 0 in download record generated in older version * Feat: sign request headers with all `X-` prefix * Feat: API call to slave node will carry meta data in headers * Feat: call slave aria2 rpc method from master * Feat: get slave aria2 task status Feat: encode slave response data using gob * Feat: aria2 callback to master node / cancel or select task to slave node * Fix: use dummy aria2 client when caller initialize failed in master node * Feat: slave aria2 status event callback / salve RPC auth * Feat: prototype for slave driven filesystem * Feat: retry for init aria2 client in master node * Feat: init request client with global options * Feat: slave receive async task from master * Fix: competition write in request header * Refactor: dependency initialize order * Feat: generic message queue implementation * Feat: message queue implementation * Feat: master waiting slave transfer result * Feat: slave transfer file in stateless policy * Feat: slave transfer file in slave policy * Feat: slave transfer file in local policy * Feat: slave transfer file in OneDrive policy * Fix: failed to initialize update checker http client * Feat: list slave nodes for dashboard * Feat: test aria2 rpc connection in slave * Feat: add and save node * Feat: add and delete node in node pool * Fix: temp file cannot be removed when aria2 task fails * Fix: delete node in admin panel * Feat: edit node and get node info * Modify: delete unused settings
72 lines
1.8 KiB
Go
72 lines
1.8 KiB
Go
package onedrive
|
|
|
|
import (
|
|
"errors"
|
|
|
|
model "github.com/cloudreve/Cloudreve/v3/models"
|
|
"github.com/cloudreve/Cloudreve/v3/pkg/request"
|
|
)
|
|
|
|
var (
|
|
// ErrAuthEndpoint 无法解析授权端点地址
|
|
ErrAuthEndpoint = errors.New("无法解析授权端点地址")
|
|
// ErrInvalidRefreshToken 上传策略无有效的RefreshToken
|
|
ErrInvalidRefreshToken = errors.New("上传策略无有效的RefreshToken")
|
|
// ErrDeleteFile 无法删除文件
|
|
ErrDeleteFile = errors.New("无法删除文件")
|
|
// ErrClientCanceled 客户端取消操作
|
|
ErrClientCanceled = errors.New("客户端取消操作")
|
|
)
|
|
|
|
// Client OneDrive客户端
|
|
type Client struct {
|
|
Endpoints *Endpoints
|
|
Policy *model.Policy
|
|
Credential *Credential
|
|
|
|
ClientID string
|
|
ClientSecret string
|
|
Redirect string
|
|
|
|
Request request.Client
|
|
}
|
|
|
|
// Endpoints OneDrive客户端相关设置
|
|
type Endpoints struct {
|
|
OAuthURL string // OAuth认证的基URL
|
|
OAuthEndpoints *oauthEndpoint
|
|
EndpointURL string // 接口请求的基URL
|
|
isInChina bool // 是否为世纪互联
|
|
DriverResource string // 要使用的驱动器
|
|
}
|
|
|
|
// NewClient 根据存储策略获取新的client
|
|
func NewClient(policy *model.Policy) (*Client, error) {
|
|
client := &Client{
|
|
Endpoints: &Endpoints{
|
|
OAuthURL: policy.BaseURL,
|
|
EndpointURL: policy.Server,
|
|
DriverResource: policy.OptionsSerialized.OdDriver,
|
|
},
|
|
Credential: &Credential{
|
|
RefreshToken: policy.AccessKey,
|
|
},
|
|
Policy: policy,
|
|
ClientID: policy.BucketName,
|
|
ClientSecret: policy.SecretKey,
|
|
Redirect: policy.OptionsSerialized.OdRedirect,
|
|
Request: request.NewClient(),
|
|
}
|
|
|
|
if client.Endpoints.DriverResource == "" {
|
|
client.Endpoints.DriverResource = "me/drive"
|
|
}
|
|
|
|
oauthBase := client.getOAuthEndpoint()
|
|
if oauthBase == nil {
|
|
return nil, ErrAuthEndpoint
|
|
}
|
|
client.Endpoints.OAuthEndpoints = oauthBase
|
|
|
|
return client, nil
|
|
}
|