You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
78 lines
2.1 KiB
78 lines
2.1 KiB
package onedrive
|
|
|
|
import (
|
|
"errors"
|
|
"github.com/cloudreve/Cloudreve/v3/pkg/cluster"
|
|
|
|
model "github.com/cloudreve/Cloudreve/v3/models"
|
|
"github.com/cloudreve/Cloudreve/v3/pkg/request"
|
|
)
|
|
|
|
var (
|
|
// ErrAuthEndpoint 无法解析授权端点地址
|
|
ErrAuthEndpoint = errors.New("failed to parse endpoint url")
|
|
// ErrInvalidRefreshToken 上传策略无有效的RefreshToken
|
|
ErrInvalidRefreshToken = errors.New("no valid refresh token in this policy")
|
|
// ErrDeleteFile 无法删除文件
|
|
ErrDeleteFile = errors.New("cannot delete file")
|
|
// ErrClientCanceled 客户端取消操作
|
|
ErrClientCanceled = errors.New("client canceled")
|
|
// Desired thumb size not available
|
|
ErrThumbSizeNotFound = errors.New("thumb size not found")
|
|
)
|
|
|
|
// Client OneDrive客户端
|
|
type Client struct {
|
|
Endpoints *Endpoints
|
|
Policy *model.Policy
|
|
Credential *Credential
|
|
|
|
ClientID string
|
|
ClientSecret string
|
|
Redirect string
|
|
|
|
Request request.Client
|
|
ClusterController cluster.Controller
|
|
}
|
|
|
|
// 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.OauthRedirect,
|
|
Request: request.NewClient(),
|
|
ClusterController: cluster.DefaultController,
|
|
}
|
|
|
|
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
|
|
}
|