mirror of https://github.com/Xhofe/alist
241 lines
6.1 KiB
Go
241 lines
6.1 KiB
Go
package dropbox
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"io"
|
|
"math"
|
|
"net/http"
|
|
"time"
|
|
|
|
"github.com/alist-org/alist/v3/drivers/base"
|
|
"github.com/alist-org/alist/v3/internal/driver"
|
|
"github.com/alist-org/alist/v3/internal/model"
|
|
"github.com/alist-org/alist/v3/pkg/utils"
|
|
"github.com/go-resty/resty/v2"
|
|
log "github.com/sirupsen/logrus"
|
|
)
|
|
|
|
type Dropbox struct {
|
|
model.Storage
|
|
Addition
|
|
base string
|
|
contentBase string
|
|
}
|
|
|
|
func (d *Dropbox) Config() driver.Config {
|
|
return config
|
|
}
|
|
|
|
func (d *Dropbox) GetAddition() driver.Additional {
|
|
return &d.Addition
|
|
}
|
|
|
|
func (d *Dropbox) Init(ctx context.Context) error {
|
|
query := "foo"
|
|
res, err := d.request("/2/check/user", http.MethodPost, func(req *resty.Request) {
|
|
req.SetBody(base.Json{
|
|
"query": query,
|
|
})
|
|
})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
result := utils.Json.Get(res, "result").ToString()
|
|
if result != query {
|
|
return fmt.Errorf("failed to check user: %s", string(res))
|
|
}
|
|
d.RootNamespaceId, err = d.GetRootNamespaceId(ctx)
|
|
|
|
return err
|
|
}
|
|
|
|
func (d *Dropbox) GetRootNamespaceId(ctx context.Context) (string, error) {
|
|
res, err := d.request("/2/users/get_current_account", http.MethodPost, func(req *resty.Request) {
|
|
req.SetBody(nil)
|
|
})
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
var currentAccountResp CurrentAccountResp
|
|
err = utils.Json.Unmarshal(res, ¤tAccountResp)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
rootNamespaceId := currentAccountResp.RootInfo.RootNamespaceId
|
|
return rootNamespaceId, nil
|
|
}
|
|
|
|
func (d *Dropbox) Drop(ctx context.Context) error {
|
|
return nil
|
|
}
|
|
|
|
func (d *Dropbox) List(ctx context.Context, dir model.Obj, args model.ListArgs) ([]model.Obj, error) {
|
|
files, err := d.getFiles(ctx, dir.GetPath())
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return utils.SliceConvert(files, func(src File) (model.Obj, error) {
|
|
return fileToObj(src), nil
|
|
})
|
|
}
|
|
|
|
func (d *Dropbox) Link(ctx context.Context, file model.Obj, args model.LinkArgs) (*model.Link, error) {
|
|
res, err := d.request("/2/files/get_temporary_link", http.MethodPost, func(req *resty.Request) {
|
|
req.SetContext(ctx).SetBody(base.Json{
|
|
"path": file.GetPath(),
|
|
})
|
|
})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
url := utils.Json.Get(res, "link").ToString()
|
|
exp := time.Hour
|
|
return &model.Link{
|
|
URL: url,
|
|
Expiration: &exp,
|
|
}, nil
|
|
}
|
|
|
|
func (d *Dropbox) MakeDir(ctx context.Context, parentDir model.Obj, dirName string) error {
|
|
_, err := d.request("/2/files/create_folder_v2", http.MethodPost, func(req *resty.Request) {
|
|
req.SetContext(ctx).SetBody(base.Json{
|
|
"autorename": false,
|
|
"path": parentDir.GetPath() + "/" + dirName,
|
|
})
|
|
})
|
|
return err
|
|
}
|
|
|
|
func (d *Dropbox) Move(ctx context.Context, srcObj, dstDir model.Obj) error {
|
|
toPath := dstDir.GetPath() + "/" + srcObj.GetName()
|
|
|
|
_, err := d.request("/2/files/move_v2", http.MethodPost, func(req *resty.Request) {
|
|
req.SetContext(ctx).SetBody(base.Json{
|
|
"allow_ownership_transfer": false,
|
|
"allow_shared_folder": false,
|
|
"autorename": false,
|
|
"from_path": srcObj.GetID(),
|
|
"to_path": toPath,
|
|
})
|
|
})
|
|
return err
|
|
}
|
|
|
|
func (d *Dropbox) Rename(ctx context.Context, srcObj model.Obj, newName string) error {
|
|
path := srcObj.GetPath()
|
|
fileName := srcObj.GetName()
|
|
toPath := path[:len(path)-len(fileName)] + newName
|
|
|
|
_, err := d.request("/2/files/move_v2", http.MethodPost, func(req *resty.Request) {
|
|
req.SetContext(ctx).SetBody(base.Json{
|
|
"allow_ownership_transfer": false,
|
|
"allow_shared_folder": false,
|
|
"autorename": false,
|
|
"from_path": srcObj.GetID(),
|
|
"to_path": toPath,
|
|
})
|
|
})
|
|
return err
|
|
}
|
|
|
|
func (d *Dropbox) Copy(ctx context.Context, srcObj, dstDir model.Obj) error {
|
|
toPath := dstDir.GetPath() + "/" + srcObj.GetName()
|
|
_, err := d.request("/2/files/copy_v2", http.MethodPost, func(req *resty.Request) {
|
|
req.SetContext(ctx).SetBody(base.Json{
|
|
"allow_ownership_transfer": false,
|
|
"allow_shared_folder": false,
|
|
"autorename": false,
|
|
"from_path": srcObj.GetID(),
|
|
"to_path": toPath,
|
|
})
|
|
})
|
|
return err
|
|
}
|
|
|
|
func (d *Dropbox) Remove(ctx context.Context, obj model.Obj) error {
|
|
uri := "/2/files/delete_v2"
|
|
_, err := d.request(uri, http.MethodPost, func(req *resty.Request) {
|
|
req.SetContext(ctx).SetBody(base.Json{
|
|
"path": obj.GetID(),
|
|
})
|
|
})
|
|
return err
|
|
}
|
|
|
|
func (d *Dropbox) Put(ctx context.Context, dstDir model.Obj, stream model.FileStreamer, up driver.UpdateProgress) error {
|
|
// 1. start
|
|
sessionId, err := d.startUploadSession(ctx)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// 2.append
|
|
// A single request should not upload more than 150 MB, and each call must be multiple of 4MB (except for last call)
|
|
const PartSize = 20971520
|
|
count := 1
|
|
if stream.GetSize() > PartSize {
|
|
count = int(math.Ceil(float64(stream.GetSize()) / float64(PartSize)))
|
|
}
|
|
offset := int64(0)
|
|
|
|
for i := 0; i < count; i++ {
|
|
if utils.IsCanceled(ctx) {
|
|
return ctx.Err()
|
|
}
|
|
|
|
start := i * PartSize
|
|
byteSize := stream.GetSize() - int64(start)
|
|
if byteSize > PartSize {
|
|
byteSize = PartSize
|
|
}
|
|
|
|
url := d.contentBase + "/2/files/upload_session/append_v2"
|
|
reader := io.LimitReader(stream, PartSize)
|
|
req, err := http.NewRequest(http.MethodPost, url, reader)
|
|
if err != nil {
|
|
log.Errorf("failed to update file when append to upload session, err: %+v", err)
|
|
return err
|
|
}
|
|
req = req.WithContext(ctx)
|
|
req.Header.Set("Content-Type", "application/octet-stream")
|
|
req.Header.Set("Authorization", "Bearer "+d.AccessToken)
|
|
|
|
args := UploadAppendArgs{
|
|
Close: false,
|
|
Cursor: UploadCursor{
|
|
Offset: offset,
|
|
SessionID: sessionId,
|
|
},
|
|
}
|
|
argsJson, err := utils.Json.MarshalToString(args)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
req.Header.Set("Dropbox-API-Arg", argsJson)
|
|
|
|
res, err := base.HttpClient.Do(req)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
_ = res.Body.Close()
|
|
|
|
if count > 0 {
|
|
up(float64(i+1) * 100 / float64(count))
|
|
}
|
|
|
|
offset += byteSize
|
|
|
|
}
|
|
// 3.finish
|
|
toPath := dstDir.GetPath() + "/" + stream.GetName()
|
|
err2 := d.finishUploadSession(ctx, toPath, offset, sessionId)
|
|
if err2 != nil {
|
|
return err2
|
|
}
|
|
|
|
return err
|
|
}
|
|
|
|
var _ driver.Driver = (*Dropbox)(nil)
|