mirror of
https://github.com/rclone/rclone.git
synced 2024-12-02 05:14:55 +01:00
301 lines
7.5 KiB
Go
301 lines
7.5 KiB
Go
package koofrclient
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
"net/http"
|
|
"net/url"
|
|
"path"
|
|
|
|
"github.com/koofr/go-httpclient"
|
|
)
|
|
|
|
var ErrCannotOverwrite = fmt.Errorf("Can not overwrite (filter constraint fails)")
|
|
var ErrCannotRemove = fmt.Errorf("Can not remove (filter constraint fails)")
|
|
|
|
func (c *KoofrClient) FilesInfo(mountId string, path string) (info FileInfo, err error) {
|
|
params := url.Values{}
|
|
params.Set("path", path)
|
|
|
|
request := httpclient.RequestData{
|
|
Method: "GET",
|
|
Path: "/api/v2/mounts/" + mountId + "/files/info",
|
|
Params: params,
|
|
ExpectedStatus: []int{http.StatusOK},
|
|
RespEncoding: httpclient.EncodingJSON,
|
|
RespValue: &info,
|
|
}
|
|
|
|
_, err = c.Request(&request)
|
|
|
|
return
|
|
}
|
|
|
|
func (c *KoofrClient) FilesList(mountId string, basePath string) (files []FileInfo, err error) {
|
|
f := &struct {
|
|
Files *[]FileInfo
|
|
}{&files}
|
|
|
|
params := url.Values{}
|
|
params.Set("path", basePath)
|
|
|
|
request := httpclient.RequestData{
|
|
Method: "GET",
|
|
Path: "/api/v2/mounts/" + mountId + "/files/list",
|
|
Params: params,
|
|
ExpectedStatus: []int{http.StatusOK},
|
|
RespEncoding: httpclient.EncodingJSON,
|
|
RespValue: &f,
|
|
}
|
|
|
|
_, err = c.Request(&request)
|
|
|
|
if err != nil {
|
|
return
|
|
}
|
|
|
|
for i := range files {
|
|
files[i].Path = path.Join(basePath, files[i].Name)
|
|
}
|
|
|
|
return
|
|
}
|
|
|
|
func (c *KoofrClient) FilesTree(mountId string, path string) (tree FileTree, err error) {
|
|
params := url.Values{}
|
|
params.Set("path", path)
|
|
|
|
request := httpclient.RequestData{
|
|
Method: "GET",
|
|
Path: "/api/v2/mounts/" + mountId + "/files/tree",
|
|
Params: params,
|
|
ExpectedStatus: []int{http.StatusOK},
|
|
RespEncoding: httpclient.EncodingJSON,
|
|
RespValue: &tree,
|
|
}
|
|
|
|
_, err = c.Request(&request)
|
|
|
|
return
|
|
}
|
|
|
|
func (c *KoofrClient) FilesDelete(mountId string, path string) (err error) {
|
|
return c.filesDelete(mountId, path, nil)
|
|
}
|
|
|
|
func (c *KoofrClient) FilesDeleteWithOptions(mountId string, path string, deleteOptions *DeleteOptions) (err error) {
|
|
return c.filesDelete(mountId, path, deleteOptions)
|
|
}
|
|
|
|
func (c *KoofrClient) filesDelete(mountId string, path string, deleteOptions *DeleteOptions) (err error) {
|
|
params := url.Values{}
|
|
params.Set("path", path)
|
|
|
|
if deleteOptions != nil {
|
|
if deleteOptions.RemoveIfSize != nil {
|
|
params.Set("removeIfSize", fmt.Sprintf("%d", *deleteOptions.RemoveIfSize))
|
|
}
|
|
if deleteOptions.RemoveIfModified != nil {
|
|
params.Set("removeIfModified", fmt.Sprintf("%d", *deleteOptions.RemoveIfModified))
|
|
}
|
|
if deleteOptions.RemoveIfHash != nil {
|
|
params.Set("removeIfHash", fmt.Sprintf("%s", *deleteOptions.RemoveIfHash))
|
|
}
|
|
if deleteOptions.RemoveIfEmpty {
|
|
params.Set("removeIfEmpty", "")
|
|
}
|
|
}
|
|
|
|
request := httpclient.RequestData{
|
|
Method: "DELETE",
|
|
Path: "/api/v2/mounts/" + mountId + "/files/remove",
|
|
Params: params,
|
|
ExpectedStatus: []int{http.StatusOK},
|
|
RespConsume: true,
|
|
}
|
|
|
|
_, err = c.Request(&request)
|
|
|
|
if err != nil {
|
|
switch err := err.(type) {
|
|
case httpclient.InvalidStatusError:
|
|
if err.Got == http.StatusConflict {
|
|
return ErrCannotRemove
|
|
}
|
|
default:
|
|
return err
|
|
}
|
|
|
|
}
|
|
|
|
return
|
|
}
|
|
|
|
func (c *KoofrClient) FilesNewFolder(mountId string, path string, name string) (err error) {
|
|
reqData := FolderCreate{name}
|
|
|
|
params := url.Values{}
|
|
params.Set("path", path)
|
|
|
|
request := httpclient.RequestData{
|
|
Method: "POST",
|
|
Path: "/api/v2/mounts/" + mountId + "/files/folder",
|
|
Params: params,
|
|
ExpectedStatus: []int{http.StatusOK, http.StatusCreated},
|
|
ReqEncoding: httpclient.EncodingJSON,
|
|
ReqValue: reqData,
|
|
RespConsume: true,
|
|
}
|
|
|
|
_, err = c.Request(&request)
|
|
|
|
return
|
|
}
|
|
|
|
func (c *KoofrClient) FilesCopy(mountId string, path string, toMountId string, toPath string, options CopyOptions) (err error) {
|
|
reqData := FileCopy{toMountId, toPath, options.SetModified}
|
|
|
|
params := url.Values{}
|
|
params.Set("path", path)
|
|
|
|
request := httpclient.RequestData{
|
|
Method: "PUT",
|
|
Path: "/api/v2/mounts/" + mountId + "/files/copy",
|
|
Params: params,
|
|
ExpectedStatus: []int{http.StatusOK},
|
|
ReqEncoding: httpclient.EncodingJSON,
|
|
ReqValue: reqData,
|
|
RespConsume: true,
|
|
}
|
|
|
|
_, err = c.Request(&request)
|
|
|
|
return
|
|
}
|
|
|
|
func (c *KoofrClient) FilesMove(mountId string, path string, toMountId string, toPath string) (err error) {
|
|
reqData := FileMove{toMountId, toPath}
|
|
|
|
params := url.Values{}
|
|
params.Set("path", path)
|
|
|
|
request := httpclient.RequestData{
|
|
Method: "PUT",
|
|
Path: "/api/v2/mounts/" + mountId + "/files/move",
|
|
Params: params,
|
|
ExpectedStatus: []int{http.StatusOK},
|
|
ReqEncoding: httpclient.EncodingJSON,
|
|
ReqValue: reqData,
|
|
RespConsume: true,
|
|
}
|
|
|
|
_, err = c.Request(&request)
|
|
|
|
return
|
|
}
|
|
|
|
func (c *KoofrClient) FilesGetRange(mountId string, path string, span *FileSpan) (reader io.ReadCloser, err error) {
|
|
params := url.Values{}
|
|
params.Set("path", path)
|
|
|
|
request := httpclient.RequestData{
|
|
Method: "GET",
|
|
Path: "/content/api/v2/mounts/" + mountId + "/files/get",
|
|
Params: params,
|
|
Headers: make(http.Header),
|
|
ExpectedStatus: []int{http.StatusOK, http.StatusPartialContent},
|
|
}
|
|
|
|
if span != nil {
|
|
if span.End == -1 {
|
|
request.Headers.Set("Range", fmt.Sprintf("bytes=%d-", span.Start))
|
|
} else {
|
|
request.Headers.Set("Range", fmt.Sprintf("bytes=%d-%d", span.Start, span.End))
|
|
}
|
|
}
|
|
|
|
res, err := c.Request(&request)
|
|
|
|
if err != nil {
|
|
return
|
|
}
|
|
|
|
reader = res.Body
|
|
|
|
return
|
|
}
|
|
|
|
func (c *KoofrClient) FilesGet(mountId string, path string) (reader io.ReadCloser, err error) {
|
|
return c.FilesGetRange(mountId, path, nil)
|
|
}
|
|
|
|
func (c *KoofrClient) FilesPut(mountId string, path string, name string, reader io.Reader) (newName string, err error) {
|
|
info, err := c.FilesPutWithOptions(mountId, path, name, reader, nil)
|
|
return info.Name, err
|
|
}
|
|
|
|
func (c *KoofrClient) FilesPutWithOptions(mountId string, path string, name string, reader io.Reader, putOptions *PutOptions) (fileInfo *FileInfo, err error) {
|
|
params := url.Values{}
|
|
params.Set("path", path)
|
|
params.Set("filename", name)
|
|
params.Set("info", "true")
|
|
|
|
if putOptions != nil {
|
|
if putOptions.OverwriteIfSize != nil {
|
|
params.Set("overwriteIfSize", fmt.Sprintf("%d", *putOptions.OverwriteIfSize))
|
|
}
|
|
if putOptions.OverwriteIfModified != nil {
|
|
params.Set("overwriteIfModified", fmt.Sprintf("%d", *putOptions.OverwriteIfModified))
|
|
}
|
|
if putOptions.OverwriteIfHash != nil {
|
|
params.Set("overwriteIfHash", fmt.Sprintf("%s", *putOptions.OverwriteIfHash))
|
|
}
|
|
if putOptions.OverwriteIfHash != nil {
|
|
params.Set("overwriteIfHash", fmt.Sprintf("%s", *putOptions.OverwriteIfHash))
|
|
}
|
|
if putOptions.OverwriteIgnoreNonExisting {
|
|
params.Set("overwriteIgnoreNonexisting", "")
|
|
}
|
|
if putOptions.NoRename {
|
|
params.Set("autorename", "false")
|
|
}
|
|
if putOptions.ForceOverwrite {
|
|
params.Set("overwrite", "true")
|
|
}
|
|
if putOptions.SetModified != nil {
|
|
params.Set("modified", fmt.Sprintf("%d", *putOptions.SetModified))
|
|
}
|
|
}
|
|
|
|
request := httpclient.RequestData{
|
|
Method: "POST",
|
|
Path: "/content/api/v2/mounts/" + mountId + "/files/put",
|
|
Params: params,
|
|
ExpectedStatus: []int{http.StatusOK},
|
|
RespEncoding: httpclient.EncodingJSON,
|
|
RespValue: &fileInfo,
|
|
}
|
|
|
|
err = request.UploadFile("file", "dummy", reader)
|
|
|
|
if err != nil {
|
|
return
|
|
}
|
|
|
|
_, err = c.Request(&request)
|
|
|
|
if err != nil {
|
|
|
|
switch err := err.(type) {
|
|
case httpclient.InvalidStatusError:
|
|
if err.Got == http.StatusConflict {
|
|
return nil, ErrCannotOverwrite
|
|
}
|
|
default:
|
|
return nil, err
|
|
}
|
|
}
|
|
|
|
return
|
|
}
|