mirror of
https://github.com/rclone/rclone.git
synced 2024-11-22 06:06:27 +08:00
3b3625037c
Some checks are pending
Docker beta build / Build image job (push) Waiting to run
This commit adds support for pixeldrain's experimental filesystem API.
568 lines
17 KiB
Go
568 lines
17 KiB
Go
// Package pixeldrain provides an interface to the Pixeldrain object storage
|
|
// system.
|
|
package pixeldrain
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
"io"
|
|
"path"
|
|
"strconv"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/rclone/rclone/fs"
|
|
"github.com/rclone/rclone/fs/config/configmap"
|
|
"github.com/rclone/rclone/fs/config/configstruct"
|
|
"github.com/rclone/rclone/fs/fshttp"
|
|
"github.com/rclone/rclone/fs/hash"
|
|
"github.com/rclone/rclone/lib/pacer"
|
|
"github.com/rclone/rclone/lib/rest"
|
|
)
|
|
|
|
const (
|
|
timeFormat = time.RFC3339Nano
|
|
minSleep = pacer.MinSleep(10 * time.Millisecond)
|
|
maxSleep = pacer.MaxSleep(1 * time.Second)
|
|
decayConstant = pacer.DecayConstant(2) // bigger for slower decay, exponential
|
|
)
|
|
|
|
// Register with Fs
|
|
func init() {
|
|
fs.Register(&fs.RegInfo{
|
|
Name: "pixeldrain",
|
|
Description: "Pixeldrain Filesystem",
|
|
NewFs: NewFs,
|
|
Config: nil,
|
|
Options: []fs.Option{{
|
|
Name: "api_key",
|
|
Help: "API key for your pixeldrain account.\n" +
|
|
"Found on https://pixeldrain.com/user/api_keys.",
|
|
Sensitive: true,
|
|
}, {
|
|
Name: "root_folder_id",
|
|
Help: "Root of the filesystem to use.\n\n" +
|
|
"Set to 'me' to use your personal filesystem. " +
|
|
"Set to a shared directory ID to use a shared directory.",
|
|
Default: "me",
|
|
}, {
|
|
Name: "api_url",
|
|
Help: "The API endpoint to connect to. In the vast majority of cases it's fine to leave\n" +
|
|
"this at default. It is only intended to be changed for testing purposes.",
|
|
Default: "https://pixeldrain.com/api",
|
|
Advanced: true,
|
|
Required: true,
|
|
}},
|
|
MetadataInfo: &fs.MetadataInfo{
|
|
System: map[string]fs.MetadataHelp{
|
|
"mode": {
|
|
Help: "File mode",
|
|
Type: "octal, unix style",
|
|
Example: "755",
|
|
},
|
|
"mtime": {
|
|
Help: "Time of last modification",
|
|
Type: "RFC 3339",
|
|
Example: timeFormat,
|
|
},
|
|
"btime": {
|
|
Help: "Time of file birth (creation)",
|
|
Type: "RFC 3339",
|
|
Example: timeFormat,
|
|
},
|
|
},
|
|
Help: "Pixeldrain supports file modes and creation times.",
|
|
},
|
|
})
|
|
}
|
|
|
|
// Options defines the configuration for this backend
|
|
type Options struct {
|
|
APIKey string `config:"api_key"`
|
|
RootFolderID string `config:"root_folder_id"`
|
|
APIURL string `config:"api_url"`
|
|
}
|
|
|
|
// Fs represents a remote box
|
|
type Fs struct {
|
|
name string // name of this remote, as given to NewFS
|
|
root string // the path we are working on, as given to NewFS
|
|
opt Options // parsed options
|
|
features *fs.Features // optional features
|
|
srv *rest.Client // the connection to the server
|
|
pacer *fs.Pacer
|
|
loggedIn bool // if the user is authenticated
|
|
|
|
// Pathprefix is the directory we're working in. The pathPrefix is stripped
|
|
// from every API response containing a path. The pathPrefix always begins
|
|
// and ends with a slash for concatenation convenience
|
|
pathPrefix string
|
|
}
|
|
|
|
// Object describes a pixeldrain file
|
|
type Object struct {
|
|
fs *Fs // what this object is part of
|
|
base FilesystemNode // the node this object references
|
|
}
|
|
|
|
// NewFs constructs an Fs from the path, container:path
|
|
func NewFs(ctx context.Context, name, root string, m configmap.Mapper) (fs.Fs, error) {
|
|
// Parse config into Options struct
|
|
opt := new(Options)
|
|
err := configstruct.Set(m, opt)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
f := &Fs{
|
|
name: name,
|
|
root: root,
|
|
opt: *opt,
|
|
srv: rest.NewClient(fshttp.NewClient(ctx)).SetErrorHandler(apiErrorHandler),
|
|
pacer: fs.NewPacer(ctx, pacer.NewDefault(minSleep, maxSleep, decayConstant)),
|
|
}
|
|
f.features = (&fs.Features{
|
|
ReadMimeType: true,
|
|
CanHaveEmptyDirectories: true,
|
|
ReadMetadata: true,
|
|
WriteMetadata: true,
|
|
}).Fill(ctx, f)
|
|
|
|
// Set the path prefix. This is the path to the root directory on the
|
|
// server. We add it to each request and strip it from each response because
|
|
// rclone does not want to see it
|
|
f.pathPrefix = "/" + path.Join(opt.RootFolderID, f.root) + "/"
|
|
|
|
// The root URL equates to https://pixeldrain.com/api/filesystem during
|
|
// normal operation. API handlers need to manually add the pathPrefix to
|
|
// each request
|
|
f.srv.SetRoot(opt.APIURL + "/filesystem")
|
|
|
|
// If using an APIKey, set the Authorization header
|
|
if len(opt.APIKey) > 0 {
|
|
f.srv.SetUserPass("", opt.APIKey)
|
|
|
|
// Check if credentials are correct
|
|
user, err := f.userInfo(ctx)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("failed to get user data: %w", err)
|
|
}
|
|
|
|
f.loggedIn = true
|
|
|
|
fs.Infof(f,
|
|
"Logged in as '%s', subscription '%s', storage limit %d",
|
|
user.Username, user.Subscription.Name, user.Subscription.StorageSpace,
|
|
)
|
|
}
|
|
|
|
if !f.loggedIn && opt.RootFolderID == "me" {
|
|
return nil, errors.New("authentication required: the 'me' directory can only be accessed while logged in")
|
|
}
|
|
|
|
// Satisfy TestFsIsFile. This test expects that we throw an error if the
|
|
// filesystem root is a file
|
|
fsp, err := f.stat(ctx, "")
|
|
if err != errNotFound && err != nil {
|
|
// It doesn't matter if the root directory does not exist, as long as it
|
|
// is not a file. This is what the test dictates
|
|
return f, err
|
|
} else if err == nil && fsp.Base().Type == "file" {
|
|
// The filesystem root is a file, rclone wants us to set the root to the
|
|
// parent directory
|
|
f.root = path.Dir(f.root)
|
|
f.pathPrefix = "/" + path.Join(opt.RootFolderID, f.root) + "/"
|
|
return f, fs.ErrorIsFile
|
|
}
|
|
|
|
return f, nil
|
|
}
|
|
|
|
// List the objects and directories in dir into entries. The
|
|
// entries can be returned in any order but should be for a
|
|
// complete directory.
|
|
//
|
|
// dir should be "" to list the root, and should not have
|
|
// trailing slashes.
|
|
//
|
|
// This should return ErrDirNotFound if the directory isn't
|
|
// found.
|
|
func (f *Fs) List(ctx context.Context, dir string) (entries fs.DirEntries, err error) {
|
|
fsp, err := f.stat(ctx, dir)
|
|
if err == errNotFound {
|
|
return nil, fs.ErrorDirNotFound
|
|
} else if err != nil {
|
|
return nil, err
|
|
} else if fsp.Base().Type == "file" {
|
|
return nil, fs.ErrorIsFile
|
|
}
|
|
|
|
entries = make(fs.DirEntries, len(fsp.Children))
|
|
for i := range fsp.Children {
|
|
if fsp.Children[i].Type == "dir" {
|
|
entries[i] = f.nodeToDirectory(fsp.Children[i])
|
|
} else {
|
|
entries[i] = f.nodeToObject(fsp.Children[i])
|
|
}
|
|
}
|
|
|
|
return entries, nil
|
|
}
|
|
|
|
// NewObject finds the Object at remote. If it can't be found
|
|
// it returns the error fs.ErrorObjectNotFound.
|
|
func (f *Fs) NewObject(ctx context.Context, remote string) (fs.Object, error) {
|
|
fsp, err := f.stat(ctx, remote)
|
|
if err == errNotFound {
|
|
return nil, fs.ErrorObjectNotFound
|
|
} else if err != nil {
|
|
return nil, err
|
|
} else if fsp.Base().Type == "dir" {
|
|
return nil, fs.ErrorIsDir
|
|
}
|
|
return f.nodeToObject(fsp.Base()), nil
|
|
}
|
|
|
|
// Put the object
|
|
//
|
|
// Copy the reader in to the new object which is returned.
|
|
//
|
|
// The new object may have been created if an error is returned
|
|
func (f *Fs) Put(ctx context.Context, in io.Reader, src fs.ObjectInfo, options ...fs.OpenOption) (fs.Object, error) {
|
|
meta, err := fs.GetMetadataOptions(ctx, f, src, options)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("failed to get object metadata")
|
|
}
|
|
|
|
// Overwrite the mtime if it was not already set in the metadata
|
|
if _, ok := meta["mtime"]; !ok {
|
|
if meta == nil {
|
|
meta = make(fs.Metadata)
|
|
}
|
|
meta["mtime"] = src.ModTime(ctx).Format(timeFormat)
|
|
}
|
|
|
|
node, err := f.put(ctx, src.Remote(), in, meta, options)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("failed to put object: %w", err)
|
|
}
|
|
|
|
return f.nodeToObject(node), nil
|
|
}
|
|
|
|
// Mkdir creates the container if it doesn't exist
|
|
func (f *Fs) Mkdir(ctx context.Context, dir string) (err error) {
|
|
err = f.mkdir(ctx, dir)
|
|
if err == errNotFound {
|
|
return fs.ErrorDirNotFound
|
|
} else if err == errExists {
|
|
// Spec says we do not return an error if the directory already exists
|
|
return nil
|
|
}
|
|
return err
|
|
}
|
|
|
|
// Rmdir deletes the root folder
|
|
//
|
|
// Returns an error if it isn't empty
|
|
func (f *Fs) Rmdir(ctx context.Context, dir string) (err error) {
|
|
err = f.delete(ctx, dir, false)
|
|
if err == errNotFound {
|
|
return fs.ErrorDirNotFound
|
|
}
|
|
return err
|
|
}
|
|
|
|
// Name of the remote (as passed into NewFs)
|
|
func (f *Fs) Name() string { return f.name }
|
|
|
|
// Root of the remote (as passed into NewFs)
|
|
func (f *Fs) Root() string { return f.root }
|
|
|
|
// String converts this Fs to a string
|
|
func (f *Fs) String() string { return fmt.Sprintf("pixeldrain root '%s'", f.root) }
|
|
|
|
// Precision return the precision of this Fs
|
|
func (f *Fs) Precision() time.Duration { return time.Millisecond }
|
|
|
|
// Hashes returns the supported hash sets.
|
|
func (f *Fs) Hashes() hash.Set { return hash.Set(hash.SHA256) }
|
|
|
|
// Features returns the optional features of this Fs
|
|
func (f *Fs) Features() *fs.Features { return f.features }
|
|
|
|
// Purge all files in the directory specified
|
|
//
|
|
// Implement this if you have a way of deleting all the files
|
|
// quicker than just running Remove() on the result of List()
|
|
//
|
|
// Return an error if it doesn't exist
|
|
func (f *Fs) Purge(ctx context.Context, dir string) (err error) {
|
|
err = f.delete(ctx, dir, true)
|
|
if err == errNotFound {
|
|
return fs.ErrorDirNotFound
|
|
}
|
|
return err
|
|
}
|
|
|
|
// Move src to this remote using server-side move operations.
|
|
//
|
|
// This is stored with the remote path given.
|
|
//
|
|
// It returns the destination Object and a possible error.
|
|
//
|
|
// Will only be called if src.Fs().Name() == f.Name()
|
|
//
|
|
// If it isn't possible then return fs.ErrorCantMove
|
|
func (f *Fs) Move(ctx context.Context, src fs.Object, remote string) (fs.Object, error) {
|
|
srcObj, ok := src.(*Object)
|
|
if !ok {
|
|
// This is not a pixeldrain object. Can't move
|
|
return nil, fs.ErrorCantMove
|
|
}
|
|
|
|
node, err := f.rename(ctx, srcObj.fs, srcObj.base.Path, remote, fs.GetConfig(ctx).MetadataSet)
|
|
if err == errIncompatibleSourceFS {
|
|
return nil, fs.ErrorCantMove
|
|
} else if err == errNotFound {
|
|
return nil, fs.ErrorObjectNotFound
|
|
}
|
|
|
|
return f.nodeToObject(node), nil
|
|
}
|
|
|
|
// DirMove moves src, srcRemote to this remote at dstRemote
|
|
// using server-side move operations.
|
|
//
|
|
// Will only be called if src.Fs().Name() == f.Name()
|
|
//
|
|
// If it isn't possible then return fs.ErrorCantDirMove
|
|
//
|
|
// If destination exists then return fs.ErrorDirExists
|
|
func (f *Fs) DirMove(ctx context.Context, src fs.Fs, srcRemote, dstRemote string) (err error) {
|
|
_, err = f.rename(ctx, src, srcRemote, dstRemote, nil)
|
|
if err == errIncompatibleSourceFS {
|
|
return fs.ErrorCantDirMove
|
|
} else if err == errNotFound {
|
|
return fs.ErrorDirNotFound
|
|
} else if err == errExists {
|
|
return fs.ErrorDirExists
|
|
}
|
|
return err
|
|
}
|
|
|
|
// ChangeNotify calls the passed function with a path
|
|
// that has had changes. If the implementation
|
|
// uses polling, it should adhere to the given interval.
|
|
// At least one value will be written to the channel,
|
|
// specifying the initial value and updated values might
|
|
// follow. A 0 Duration should pause the polling.
|
|
// The ChangeNotify implementation must empty the channel
|
|
// regularly. When the channel gets closed, the implementation
|
|
// should stop polling and release resources.
|
|
func (f *Fs) ChangeNotify(ctx context.Context, notify func(string, fs.EntryType), newInterval <-chan time.Duration) {
|
|
// If the bucket ID is not /me we need to explicitly enable change logging
|
|
// for this directory or file
|
|
if f.pathPrefix != "/me/" {
|
|
_, err := f.update(ctx, "", fs.Metadata{"logging_enabled": "true"})
|
|
if err != nil {
|
|
fs.Errorf(f, "Failed to set up change logging for path '%s': %s", f.pathPrefix, err)
|
|
}
|
|
}
|
|
|
|
go f.changeNotify(ctx, notify, newInterval)
|
|
}
|
|
func (f *Fs) changeNotify(ctx context.Context, notify func(string, fs.EntryType), newInterval <-chan time.Duration) {
|
|
var ticker = time.NewTicker(<-newInterval)
|
|
var lastPoll = time.Now()
|
|
|
|
for {
|
|
select {
|
|
case dur, ok := <-newInterval:
|
|
if !ok {
|
|
ticker.Stop()
|
|
return
|
|
}
|
|
|
|
fs.Debugf(f, "Polling changes at an interval of %s", dur)
|
|
ticker.Reset(dur)
|
|
|
|
case t := <-ticker.C:
|
|
clog, err := f.changeLog(ctx, lastPoll, t)
|
|
if err != nil {
|
|
fs.Errorf(f, "Failed to get change log for path '%s': %s", f.pathPrefix, err)
|
|
continue
|
|
}
|
|
|
|
for i := range clog {
|
|
fs.Debugf(f, "Path '%s' (%s) changed (%s) in directory '%s'",
|
|
clog[i].Path, clog[i].Type, clog[i].Action, f.pathPrefix)
|
|
|
|
if clog[i].Type == "dir" {
|
|
notify(strings.TrimPrefix(clog[i].Path, "/"), fs.EntryDirectory)
|
|
} else if clog[i].Type == "file" {
|
|
notify(strings.TrimPrefix(clog[i].Path, "/"), fs.EntryObject)
|
|
}
|
|
}
|
|
|
|
lastPoll = t
|
|
}
|
|
}
|
|
}
|
|
|
|
// PutStream uploads to the remote path with the modTime given of indeterminate size
|
|
//
|
|
// May create the object even if it returns an error - if so
|
|
// will return the object and the error, otherwise will return
|
|
// nil and the error
|
|
func (f *Fs) PutStream(ctx context.Context, in io.Reader, src fs.ObjectInfo, options ...fs.OpenOption) (fs.Object, error) {
|
|
// Put already supports streaming so we just use that
|
|
return f.Put(ctx, in, src, options...)
|
|
}
|
|
|
|
// DirSetModTime sets the mtime metadata on a directory
|
|
func (f *Fs) DirSetModTime(ctx context.Context, dir string, modTime time.Time) (err error) {
|
|
_, err = f.update(ctx, dir, fs.Metadata{"mtime": modTime.Format(timeFormat)})
|
|
return err
|
|
}
|
|
|
|
// PublicLink generates a public link to the remote path (usually readable by anyone)
|
|
func (f *Fs) PublicLink(ctx context.Context, remote string, expire fs.Duration, unlink bool) (string, error) {
|
|
fsn, err := f.update(ctx, remote, fs.Metadata{"shared": strconv.FormatBool(!unlink)})
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
if fsn.ID != "" {
|
|
return strings.Replace(f.opt.APIURL, "/api", "/d/", 1) + fsn.ID, nil
|
|
}
|
|
return "", nil
|
|
}
|
|
|
|
// About gets quota information
|
|
func (f *Fs) About(ctx context.Context) (usage *fs.Usage, err error) {
|
|
user, err := f.userInfo(ctx)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("failed to read user info: %w", err)
|
|
}
|
|
|
|
usage = &fs.Usage{Used: fs.NewUsageValue(user.StorageSpaceUsed)}
|
|
|
|
if user.Subscription.StorageSpace > -1 {
|
|
usage.Total = fs.NewUsageValue(user.Subscription.StorageSpace)
|
|
}
|
|
|
|
return usage, nil
|
|
}
|
|
|
|
// SetModTime sets the modification time of the local fs object
|
|
func (o *Object) SetModTime(ctx context.Context, modTime time.Time) (err error) {
|
|
_, err = o.fs.update(ctx, o.base.Path, fs.Metadata{"mtime": modTime.Format(timeFormat)})
|
|
if err == nil {
|
|
o.base.Modified = modTime
|
|
}
|
|
return err
|
|
}
|
|
|
|
// Open an object for read
|
|
func (o *Object) Open(ctx context.Context, options ...fs.OpenOption) (in io.ReadCloser, err error) {
|
|
return o.fs.read(ctx, o.base.Path, options)
|
|
}
|
|
|
|
// Update the object with the contents of the io.Reader, modTime and size
|
|
//
|
|
// If existing is set then it updates the object rather than creating a new one.
|
|
//
|
|
// The new object may have been created if an error is returned.
|
|
func (o *Object) Update(ctx context.Context, in io.Reader, src fs.ObjectInfo, options ...fs.OpenOption) (err error) {
|
|
// Copy the parameters and update the object
|
|
o.base.Modified = src.ModTime(ctx)
|
|
o.base.FileSize = src.Size()
|
|
o.base.SHA256Sum, _ = src.Hash(ctx, hash.SHA256)
|
|
_, err = o.fs.Put(ctx, in, o, options...)
|
|
return err
|
|
}
|
|
|
|
// Remove an object
|
|
func (o *Object) Remove(ctx context.Context) error {
|
|
return o.fs.delete(ctx, o.base.Path, false)
|
|
}
|
|
|
|
// Fs returns the parent Fs
|
|
func (o *Object) Fs() fs.Info {
|
|
return o.fs
|
|
}
|
|
|
|
// Hash returns the SHA-256 of an object returning a lowercase hex string
|
|
func (o *Object) Hash(ctx context.Context, t hash.Type) (string, error) {
|
|
if t != hash.SHA256 {
|
|
return "", hash.ErrUnsupported
|
|
}
|
|
return o.base.SHA256Sum, nil
|
|
}
|
|
|
|
// Storable returns a boolean showing whether this object storable
|
|
func (o *Object) Storable() bool {
|
|
return true
|
|
}
|
|
|
|
// Return a string version
|
|
func (o *Object) String() string {
|
|
if o == nil {
|
|
return "<nil>"
|
|
}
|
|
return o.base.Path
|
|
}
|
|
|
|
// Remote returns the remote path
|
|
func (o *Object) Remote() string {
|
|
return o.base.Path
|
|
}
|
|
|
|
// ModTime returns the modification time of the object
|
|
//
|
|
// It attempts to read the objects mtime and if that isn't present the
|
|
// LastModified returned in the http headers
|
|
func (o *Object) ModTime(ctx context.Context) time.Time {
|
|
return o.base.Modified
|
|
}
|
|
|
|
// Size returns the size of an object in bytes
|
|
func (o *Object) Size() int64 {
|
|
return o.base.FileSize
|
|
}
|
|
|
|
// MimeType returns the content type of the Object if known, or "" if not
|
|
func (o *Object) MimeType(ctx context.Context) string {
|
|
return o.base.FileType
|
|
}
|
|
|
|
// Metadata returns metadata for an object
|
|
//
|
|
// It should return nil if there is no Metadata
|
|
func (o *Object) Metadata(ctx context.Context) (fs.Metadata, error) {
|
|
return fs.Metadata{
|
|
"mode": o.base.ModeOctal,
|
|
"mtime": o.base.Modified.Format(timeFormat),
|
|
"btime": o.base.Created.Format(timeFormat),
|
|
}, nil
|
|
}
|
|
|
|
// Verify that all the interfaces are implemented correctly
|
|
var (
|
|
_ fs.Fs = (*Fs)(nil)
|
|
_ fs.Info = (*Fs)(nil)
|
|
_ fs.Purger = (*Fs)(nil)
|
|
_ fs.Mover = (*Fs)(nil)
|
|
_ fs.DirMover = (*Fs)(nil)
|
|
_ fs.ChangeNotifier = (*Fs)(nil)
|
|
_ fs.PutStreamer = (*Fs)(nil)
|
|
_ fs.DirSetModTimer = (*Fs)(nil)
|
|
_ fs.PublicLinker = (*Fs)(nil)
|
|
_ fs.Abouter = (*Fs)(nil)
|
|
_ fs.Object = (*Object)(nil)
|
|
_ fs.DirEntry = (*Object)(nil)
|
|
_ fs.MimeTyper = (*Object)(nil)
|
|
_ fs.Metadataer = (*Object)(nil)
|
|
)
|