mirror of
https://github.com/AlistGo/alist.git
synced 2025-06-16 09:06:19 +08:00

Some checks failed
auto_lang / auto generate lang.json (1.21, ubuntu-latest) (push) Has been cancelled
build / Build (ubuntu-latest, android-arm64) (push) Has been cancelled
beta release / Beta Release Changelog (1.21, ubuntu-latest) (push) Has been cancelled
build / Build (ubuntu-latest, darwin-amd64) (push) Has been cancelled
build / Build (ubuntu-latest, darwin-arm64) (push) Has been cancelled
build / Build (ubuntu-latest, linux-amd64-musl) (push) Has been cancelled
build / Build (ubuntu-latest, linux-arm64-musl) (push) Has been cancelled
build / Build (ubuntu-latest, windows-amd64) (push) Has been cancelled
build / Build (ubuntu-latest, windows-arm64) (push) Has been cancelled
release_docker / Build Binaries for Docker Release (push) Has been cancelled
beta release / Beta Release (md5, !(*musl*|*windows-arm64*|*android*|*freebsd*)) (push) Has been cancelled
beta release / Beta Release (md5-android, android-*) (push) Has been cancelled
beta release / Beta Release (md5-freebsd, freebsd-*) (push) Has been cancelled
beta release / Beta Release (md5-linux-musl, linux-!(arm*)-musl*) (push) Has been cancelled
beta release / Beta Release (md5-linux-musl-arm, linux-arm*-musl*) (push) Has been cancelled
beta release / Beta Release (md5-windows-arm64, windows-arm64) (push) Has been cancelled
beta release / Beta Release Desktop (push) Has been cancelled
release_docker / Release Docker image (INSTALL_FFMPEG=true
INSTALL_ARIA2=true
, aio, suffix=-aio,onlatest=true) (push) Has been cancelled
release_docker / Release Docker image (, latest, ) (push) Has been cancelled
release_docker / Release Docker image (INSTALL_ARIA2=true, aria2, suffix=-aria2,onlatest=true) (push) Has been cancelled
release_docker / Release Docker image (INSTALL_FFMPEG=true, ffmpeg, suffix=-ffmpeg,onlatest=true) (push) Has been cancelled
Close need info / close-need-info (push) Has been cancelled
Close inactive / close-inactive (push) Has been cancelled
* feat(cloudreve_v4): add Cloudreve V4 driver implementation * fix(cloudreve_v4): update request handling to prevent token refresh loop * feat(onedrive): implement retry logic for upload failures * feat(cloudreve): implement retry logic for upload failures * feat(cloudreve_v4): support cloud sorting * fix(cloudreve_v4): improve token handling in Init method * feat(cloudreve_v4): support share * feat(cloudreve): support reference * feat(cloudreve_v4): support version upload * fix(cloudreve_v4): add SetBody in upLocal * fix(cloudreve_v4): update URL structure in Link and FileUrlResp
208 lines
5.9 KiB
Go
208 lines
5.9 KiB
Go
package onedrive_app
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
"io"
|
|
"net/http"
|
|
stdpath "path"
|
|
"time"
|
|
|
|
"github.com/alist-org/alist/v3/drivers/base"
|
|
"github.com/alist-org/alist/v3/internal/driver"
|
|
"github.com/alist-org/alist/v3/internal/errs"
|
|
"github.com/alist-org/alist/v3/internal/model"
|
|
"github.com/alist-org/alist/v3/internal/op"
|
|
"github.com/alist-org/alist/v3/pkg/utils"
|
|
"github.com/go-resty/resty/v2"
|
|
jsoniter "github.com/json-iterator/go"
|
|
)
|
|
|
|
var onedriveHostMap = map[string]Host{
|
|
"global": {
|
|
Oauth: "https://login.microsoftonline.com",
|
|
Api: "https://graph.microsoft.com",
|
|
},
|
|
"cn": {
|
|
Oauth: "https://login.chinacloudapi.cn",
|
|
Api: "https://microsoftgraph.chinacloudapi.cn",
|
|
},
|
|
"us": {
|
|
Oauth: "https://login.microsoftonline.us",
|
|
Api: "https://graph.microsoft.us",
|
|
},
|
|
"de": {
|
|
Oauth: "https://login.microsoftonline.de",
|
|
Api: "https://graph.microsoft.de",
|
|
},
|
|
}
|
|
|
|
func (d *OnedriveAPP) GetMetaUrl(auth bool, path string) string {
|
|
host, _ := onedriveHostMap[d.Region]
|
|
path = utils.EncodePath(path, true)
|
|
if auth {
|
|
return host.Oauth
|
|
}
|
|
if path == "/" || path == "\\" {
|
|
return fmt.Sprintf("%s/v1.0/users/%s/drive/root", host.Api, d.Email)
|
|
}
|
|
return fmt.Sprintf("%s/v1.0/users/%s/drive/root:%s:", host.Api, d.Email, path)
|
|
}
|
|
|
|
func (d *OnedriveAPP) accessToken() error {
|
|
var err error
|
|
for i := 0; i < 3; i++ {
|
|
err = d._accessToken()
|
|
if err == nil {
|
|
break
|
|
}
|
|
}
|
|
return err
|
|
}
|
|
|
|
func (d *OnedriveAPP) _accessToken() error {
|
|
url := d.GetMetaUrl(true, "") + "/" + d.TenantID + "/oauth2/token"
|
|
var resp base.TokenResp
|
|
var e TokenErr
|
|
_, err := base.RestyClient.R().SetResult(&resp).SetError(&e).SetFormData(map[string]string{
|
|
"grant_type": "client_credentials",
|
|
"client_id": d.ClientID,
|
|
"client_secret": d.ClientSecret,
|
|
"resource": onedriveHostMap[d.Region].Api + "/",
|
|
"scope": onedriveHostMap[d.Region].Api + "/.default",
|
|
}).Post(url)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if e.Error != "" {
|
|
return fmt.Errorf("%s", e.ErrorDescription)
|
|
}
|
|
if resp.AccessToken == "" {
|
|
return errs.EmptyToken
|
|
}
|
|
d.AccessToken = resp.AccessToken
|
|
op.MustSaveDriverStorage(d)
|
|
return nil
|
|
}
|
|
|
|
func (d *OnedriveAPP) Request(url string, method string, callback base.ReqCallback, resp interface{}) ([]byte, error) {
|
|
req := base.RestyClient.R()
|
|
req.SetHeader("Authorization", "Bearer "+d.AccessToken)
|
|
if callback != nil {
|
|
callback(req)
|
|
}
|
|
if resp != nil {
|
|
req.SetResult(resp)
|
|
}
|
|
var e RespErr
|
|
req.SetError(&e)
|
|
res, err := req.Execute(method, url)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if e.Error.Code != "" {
|
|
if e.Error.Code == "InvalidAuthenticationToken" {
|
|
err = d.accessToken()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return d.Request(url, method, callback, resp)
|
|
}
|
|
return nil, errors.New(e.Error.Message)
|
|
}
|
|
return res.Body(), nil
|
|
}
|
|
|
|
func (d *OnedriveAPP) getFiles(path string) ([]File, error) {
|
|
var res []File
|
|
nextLink := d.GetMetaUrl(false, path) + "/children?$top=1000&$expand=thumbnails($select=medium)&$select=id,name,size,lastModifiedDateTime,content.downloadUrl,file,parentReference"
|
|
for nextLink != "" {
|
|
var files Files
|
|
_, err := d.Request(nextLink, http.MethodGet, nil, &files)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
res = append(res, files.Value...)
|
|
nextLink = files.NextLink
|
|
}
|
|
return res, nil
|
|
}
|
|
|
|
func (d *OnedriveAPP) GetFile(path string) (*File, error) {
|
|
var file File
|
|
u := d.GetMetaUrl(false, path)
|
|
_, err := d.Request(u, http.MethodGet, nil, &file)
|
|
return &file, err
|
|
}
|
|
|
|
func (d *OnedriveAPP) upSmall(ctx context.Context, dstDir model.Obj, stream model.FileStreamer) error {
|
|
url := d.GetMetaUrl(false, stdpath.Join(dstDir.GetPath(), stream.GetName())) + "/content"
|
|
_, err := d.Request(url, http.MethodPut, func(req *resty.Request) {
|
|
req.SetBody(driver.NewLimitedUploadStream(ctx, stream)).SetContext(ctx)
|
|
}, nil)
|
|
return err
|
|
}
|
|
|
|
func (d *OnedriveAPP) upBig(ctx context.Context, dstDir model.Obj, stream model.FileStreamer, up driver.UpdateProgress) error {
|
|
url := d.GetMetaUrl(false, stdpath.Join(dstDir.GetPath(), stream.GetName())) + "/createUploadSession"
|
|
res, err := d.Request(url, http.MethodPost, nil, nil)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
uploadUrl := jsoniter.Get(res, "uploadUrl").ToString()
|
|
var finish int64 = 0
|
|
DEFAULT := d.ChunkSize * 1024 * 1024
|
|
retryCount := 0
|
|
maxRetries := 3
|
|
for finish < stream.GetSize() {
|
|
if utils.IsCanceled(ctx) {
|
|
return ctx.Err()
|
|
}
|
|
left := stream.GetSize() - finish
|
|
byteSize := min(left, DEFAULT)
|
|
utils.Log.Debugf("[OnedriveAPP] upload range: %d-%d/%d", finish, finish+byteSize-1, stream.GetSize())
|
|
byteData := make([]byte, byteSize)
|
|
n, err := io.ReadFull(stream, byteData)
|
|
utils.Log.Debug(err, n)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
req, err := http.NewRequest("PUT", uploadUrl, driver.NewLimitedUploadStream(ctx, bytes.NewReader(byteData)))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
req = req.WithContext(ctx)
|
|
req.ContentLength = byteSize
|
|
// req.Header.Set("Content-Length", strconv.Itoa(int(byteSize)))
|
|
req.Header.Set("Content-Range", fmt.Sprintf("bytes %d-%d/%d", finish, finish+byteSize-1, stream.GetSize()))
|
|
res, err := base.HttpClient.Do(req)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
// https://learn.microsoft.com/zh-cn/onedrive/developer/rest-api/api/driveitem_createuploadsession
|
|
switch {
|
|
case res.StatusCode >= 500 && res.StatusCode <= 504:
|
|
retryCount++
|
|
if retryCount > maxRetries {
|
|
res.Body.Close()
|
|
return fmt.Errorf("upload failed after %d retries due to server errors, error %d", maxRetries, res.StatusCode)
|
|
}
|
|
backoff := time.Duration(1<<retryCount) * time.Second
|
|
utils.Log.Warnf("[OnedriveAPP] server errors %d while uploading, retrying after %v...", res.StatusCode, backoff)
|
|
time.Sleep(backoff)
|
|
case res.StatusCode != 201 && res.StatusCode != 202 && res.StatusCode != 200:
|
|
data, _ := io.ReadAll(res.Body)
|
|
res.Body.Close()
|
|
return errors.New(string(data))
|
|
default:
|
|
res.Body.Close()
|
|
retryCount = 0
|
|
finish += byteSize
|
|
up(float64(finish) * 100 / float64(stream.GetSize()))
|
|
}
|
|
}
|
|
return nil
|
|
}
|