2015-09-22 19:47:16 +02:00
// Package amazonclouddrive provides an interface to the Amazon Cloud
// Drive object storage system.
2015-09-03 00:37:42 +02:00
package amazonclouddrive
/ *
FIXME make searching for directory in id and file in id more efficient
- use the name : search parameter - remember the escaping rules
- use Folder GetNode and GetFile
FIXME make the default for no files and no dirs be ( FILE & FOLDER ) so
we ignore assets completely !
* /
import (
2019-06-17 10:34:30 +02:00
"context"
2016-11-07 21:38:57 +01:00
"encoding/json"
2015-09-03 00:37:42 +02:00
"fmt"
"io"
"log"
2015-09-10 00:23:37 +02:00
"net/http"
2016-11-25 22:52:43 +01:00
"path"
2015-09-03 00:37:42 +02:00
"strings"
"time"
2018-12-04 11:11:57 +01:00
acd "github.com/ncw/go-acd"
2016-06-12 16:06:02 +02:00
"github.com/pkg/errors"
2019-07-28 19:47:38 +02:00
"github.com/rclone/rclone/fs"
"github.com/rclone/rclone/fs/config"
"github.com/rclone/rclone/fs/config/configmap"
"github.com/rclone/rclone/fs/config/configstruct"
"github.com/rclone/rclone/fs/fserrors"
"github.com/rclone/rclone/fs/fshttp"
"github.com/rclone/rclone/fs/hash"
"github.com/rclone/rclone/lib/dircache"
2020-01-14 18:33:35 +01:00
"github.com/rclone/rclone/lib/encoder"
2019-07-28 19:47:38 +02:00
"github.com/rclone/rclone/lib/oauthutil"
"github.com/rclone/rclone/lib/pacer"
2015-09-03 00:37:42 +02:00
"golang.org/x/oauth2"
)
const (
2018-05-14 19:06:57 +02:00
folderKind = "FOLDER"
fileKind = "FILE"
statusAvailable = "AVAILABLE"
timeFormat = time . RFC3339 // 2014-03-07T22:31:12.173Z
minSleep = 20 * time . Millisecond
warnFileSize = 50000 << 20 // Display warning for files larger than this size
defaultTempLinkThreshold = fs . SizeSuffix ( 9 << 30 ) // Download files bigger than this via the tempLink
2015-09-03 00:37:42 +02:00
)
// Globals
var (
// Description of how to auth for this app
acdConfig = & oauth2 . Config {
Scopes : [ ] string { "clouddrive:read_all" , "clouddrive:write" } ,
Endpoint : oauth2 . Endpoint {
AuthURL : "https://www.amazon.com/ap/oa" ,
TokenURL : "https://api.amazon.com/auth/o2/token" ,
} ,
2017-06-10 13:02:34 +02:00
ClientID : "" ,
ClientSecret : "" ,
2015-09-12 15:17:39 +02:00
RedirectURL : oauthutil . RedirectURL ,
2015-09-03 00:37:42 +02:00
}
)
// Register with Fs
func init ( ) {
2016-02-18 12:35:25 +01:00
fs . Register ( & fs . RegInfo {
2016-02-15 19:11:53 +01:00
Name : "amazon cloud drive" ,
2018-05-14 19:06:57 +02:00
Prefix : "acd" ,
2016-07-11 13:42:44 +02:00
Description : "Amazon Drive" ,
2016-02-15 19:11:53 +01:00
NewFs : NewFs ,
2018-05-14 19:06:57 +02:00
Config : func ( name string , m configmap . Mapper ) {
err := oauthutil . Config ( "amazon cloud drive" , name , m , acdConfig )
2015-09-03 00:37:42 +02:00
if err != nil {
log . Fatalf ( "Failed to configure token: %v" , err )
}
} ,
Options : [ ] fs . Option { {
2018-05-14 19:06:57 +02:00
Name : config . ConfigClientID ,
Help : "Amazon Application Client ID." ,
Required : true ,
2015-09-03 00:37:42 +02:00
} , {
2018-05-14 19:06:57 +02:00
Name : config . ConfigClientSecret ,
Help : "Amazon Application Client Secret." ,
Required : true ,
2017-06-10 13:02:34 +02:00
} , {
2018-05-14 19:06:57 +02:00
Name : config . ConfigAuthURL ,
Help : "Auth server URL.\nLeave blank to use Amazon's." ,
Advanced : true ,
2017-06-10 13:02:34 +02:00
} , {
2018-05-14 19:06:57 +02:00
Name : config . ConfigTokenURL ,
Help : "Token server url.\nleave blank to use Amazon's." ,
Advanced : true ,
} , {
Name : "checkpoint" ,
Help : "Checkpoint for internal polling (debug)." ,
Hide : fs . OptionHideBoth ,
Advanced : true ,
} , {
2018-10-01 19:36:15 +02:00
Name : "upload_wait_per_gb" ,
Help : ` Additional time per GB to wait after a failed complete upload to see if it appears .
Sometimes Amazon Drive gives an error when a file has been fully
uploaded but the file appears anyway after a little while . This
happens sometimes for files over 1 GB in size and nearly every time for
files bigger than 10 GB . This parameter controls the time rclone waits
for the file to appear .
The default value for this parameter is 3 minutes per GB , so by
default it will wait 3 minutes for every GB uploaded to see if the
file appears .
You can disable this feature by setting it to 0. This may cause
conflict errors as rclone retries the failed upload but the file will
most likely appear correctly eventually .
These values were determined empirically by observing lots of uploads
of big files for a range of file sizes .
Upload with the "-v" flag to see more info about what rclone is doing
in this situation . ` ,
2018-05-14 19:06:57 +02:00
Default : fs . Duration ( 180 * time . Second ) ,
Advanced : true ,
} , {
2018-10-01 19:36:15 +02:00
Name : "templink_threshold" ,
Help : ` Files >= this size will be downloaded via their tempLink .
Files this size or more will be downloaded via their "tempLink" . This
is to work around a problem with Amazon Drive which blocks downloads
of files bigger than about 10 GB . The default for this is 9 GB which
shouldn ' t need to be changed .
To download files above this threshold , rclone requests a "tempLink"
which downloads the file through a temporary URL directly from the
underlying S3 storage . ` ,
2018-05-14 19:06:57 +02:00
Default : defaultTempLinkThreshold ,
Advanced : true ,
2020-01-14 18:33:35 +01:00
} , {
Name : config . ConfigEncoding ,
Help : config . ConfigEncodingHelp ,
Advanced : true ,
2020-01-14 22:51:49 +01:00
// Encode invalid UTF-8 bytes as json doesn't handle them properly.
Default : ( encoder . Base |
encoder . EncodeInvalidUtf8 ) ,
2015-09-03 00:37:42 +02:00
} } ,
} )
2018-05-14 19:06:57 +02:00
}
// Options defines the configuration for this backend
type Options struct {
2020-01-14 18:33:35 +01:00
Checkpoint string ` config:"checkpoint" `
UploadWaitPerGB fs . Duration ` config:"upload_wait_per_gb" `
TempLinkThreshold fs . SizeSuffix ` config:"templink_threshold" `
Enc encoder . MultiEncoder ` config:"encoding" `
2015-09-03 00:37:42 +02:00
}
2015-11-07 12:14:46 +01:00
// Fs represents a remote acd server
type Fs struct {
2017-02-11 18:49:59 +01:00
name string // name of this remote
features * fs . Features // optional features
2018-05-14 19:06:57 +02:00
opt Options // options for this Fs
2017-02-11 18:49:59 +01:00
c * acd . Client // the connection to the acd server
noAuthClient * http . Client // unauthenticated http client
root string // the path we are working on
dirCache * dircache . DirCache // Map of directory path to directory id
2019-02-09 21:52:15 +01:00
pacer * fs . Pacer // pacer for API calls
2017-02-11 18:49:59 +01:00
trueRootID string // ID of true root directory
tokenRenewer * oauthutil . Renew // renew the token on expiry
2015-09-03 00:37:42 +02:00
}
2020-05-20 12:39:20 +02:00
// Object describes an acd object
2015-09-03 00:37:42 +02:00
//
// Will definitely have info but maybe not meta
2015-11-07 12:14:46 +01:00
type Object struct {
fs * Fs // what this object is part of
2015-09-03 00:37:42 +02:00
remote string // The remote path
info * acd . Node // Info from the acd object if known
}
// ------------------------------------------------------------
2015-09-22 19:47:16 +02:00
// Name of the remote (as passed into NewFs)
2015-11-07 12:14:46 +01:00
func ( f * Fs ) Name ( ) string {
2015-09-03 00:37:42 +02:00
return f . name
}
2015-09-22 19:47:16 +02:00
// Root of the remote (as passed into NewFs)
2015-11-07 12:14:46 +01:00
func ( f * Fs ) Root ( ) string {
2015-09-03 00:37:42 +02:00
return f . root
}
2015-11-07 12:14:46 +01:00
// String converts this Fs to a string
func ( f * Fs ) String ( ) string {
2016-07-11 13:42:44 +02:00
return fmt . Sprintf ( "amazon drive root '%s'" , f . root )
2015-09-03 00:37:42 +02:00
}
2017-01-13 18:21:47 +01:00
// Features returns the optional features of this Fs
func ( f * Fs ) Features ( ) * fs . Features {
return f . features
}
2015-09-03 00:37:42 +02:00
// parsePath parses an acd 'url'
func parsePath ( path string ) ( root string ) {
root = strings . Trim ( path , "/" )
return
}
2015-09-14 22:00:44 +02:00
// retryErrorCodes is a slice of error codes that we will retry
var retryErrorCodes = [ ] int {
2016-02-16 15:45:22 +01:00
400 , // Bad request (seen in "Next token is expired")
401 , // Unauthorized (seen in "Token has expired")
408 , // Request Timeout
2015-09-14 22:00:44 +02:00
429 , // Rate exceeded.
500 , // Get occasional 500 Internal Server Error
2016-11-03 19:56:21 +01:00
502 , // Bad Gateway when doing big listings
2015-09-17 19:12:37 +02:00
503 , // Service Unavailable
2016-02-16 15:45:22 +01:00
504 , // Gateway Time-out
2015-09-14 22:00:44 +02:00
}
2015-09-11 20:18:41 +02:00
// shouldRetry returns a boolean as to whether this resp and err
// deserve to be retried. It returns the err as a convenience
2016-05-23 19:03:22 +02:00
func ( f * Fs ) shouldRetry ( resp * http . Response , err error ) ( bool , error ) {
2016-05-28 16:45:39 +02:00
if resp != nil {
if resp . StatusCode == 401 {
2017-02-11 18:49:59 +01:00
f . tokenRenewer . Invalidate ( )
2017-02-09 12:01:20 +01:00
fs . Debugf ( f , "401 error received - invalidating token" )
2016-05-28 16:45:39 +02:00
return true , err
}
// Work around receiving this error sporadically on authentication
//
2020-05-20 12:39:20 +02:00
// HTTP code 403: "403 Forbidden", response body: {"message":"Authorization header requires 'Credential' parameter. Authorization header requires 'Signature' parameter. Authorization header requires 'SignedHeaders' parameter. Authorization header requires existence of either a 'X-Amz-Date' or a 'Date' header. Authorization=Bearer"}
2016-05-28 16:45:39 +02:00
if resp . StatusCode == 403 && strings . Contains ( err . Error ( ) , "Authorization header requires" ) {
2017-02-09 18:08:51 +01:00
fs . Debugf ( f , "403 \"Authorization header requires...\" error received - retry" )
2016-05-28 16:45:39 +02:00
return true , err
}
2016-05-23 19:03:22 +02:00
}
2018-01-12 17:30:54 +01:00
return fserrors . ShouldRetry ( err ) || fserrors . ShouldRetryHTTP ( resp , retryErrorCodes ) , err
2015-09-11 20:18:41 +02:00
}
2017-11-24 10:08:35 +01:00
// If query parameters contain X-Amz-Algorithm remove Authorization header
//
// This happens when ACD redirects to S3 for the download. The oauth
// transport puts an Authorization header in which we need to remove
// otherwise we get this message from AWS
//
// Only one auth mechanism allowed; only the X-Amz-Algorithm query
// parameter, Signature query string parameter or the Authorization
// header should be specified
func filterRequest ( req * http . Request ) {
if req . URL . Query ( ) . Get ( "X-Amz-Algorithm" ) != "" {
fs . Debugf ( nil , "Removing Authorization: header after redirect to S3" )
req . Header . Del ( "Authorization" )
}
}
2015-11-07 12:14:46 +01:00
// NewFs constructs an Fs from the path, container:path
2018-05-14 19:06:57 +02:00
func NewFs ( name , root string , m configmap . Mapper ) ( fs . Fs , error ) {
2019-06-17 10:34:30 +02:00
ctx := context . Background ( )
2018-05-14 19:06:57 +02:00
// Parse config into Options struct
opt := new ( Options )
err := configstruct . Set ( m , opt )
if err != nil {
return nil , err
}
2015-09-03 00:37:42 +02:00
root = parsePath ( root )
2018-01-12 17:30:54 +01:00
baseClient := fshttp . NewClient ( fs . Config )
2017-11-24 10:08:35 +01:00
if do , ok := baseClient . Transport . ( interface {
SetRequestFilter ( f func ( req * http . Request ) )
} ) ; ok {
do . SetRequestFilter ( filterRequest )
} else {
fs . Debugf ( name + ":" , "Couldn't add request filter - large file downloads will fail" )
}
2018-05-14 19:06:57 +02:00
oAuthClient , ts , err := oauthutil . NewClientWithBaseClient ( name , m , acdConfig , baseClient )
2015-09-03 00:37:42 +02:00
if err != nil {
2018-11-11 11:40:13 +01:00
return nil , errors . Wrap ( err , "failed to configure Amazon Drive" )
2015-09-03 00:37:42 +02:00
}
c := acd . NewClient ( oAuthClient )
2015-11-07 12:14:46 +01:00
f := & Fs {
2016-01-30 19:08:44 +01:00
name : name ,
root : root ,
2018-05-14 19:06:57 +02:00
opt : * opt ,
2016-01-30 19:08:44 +01:00
c : c ,
2019-02-09 21:52:15 +01:00
pacer : fs . NewPacer ( pacer . NewAmazonCloudDrive ( pacer . MinSleep ( minSleep ) ) ) ,
2018-01-12 17:30:54 +01:00
noAuthClient : fshttp . NewClient ( fs . Config ) ,
2015-09-03 00:37:42 +02:00
}
2017-08-09 16:27:43 +02:00
f . features = ( & fs . Features {
CaseInsensitive : true ,
ReadMimeType : true ,
CanHaveEmptyDirectories : true ,
} ) . Fill ( f )
2015-09-03 00:37:42 +02:00
2017-06-27 12:34:32 +02:00
// Renew the token in the background
f . tokenRenewer = oauthutil . NewRenew ( f . String ( ) , ts , func ( ) error {
_ , err := f . getRootInfo ( )
return err
} )
2015-09-03 00:37:42 +02:00
// Update endpoints
2015-09-11 20:18:41 +02:00
var resp * http . Response
err = f . pacer . Call ( func ( ) ( bool , error ) {
_ , resp , err = f . c . Account . GetEndpoints ( )
2016-05-23 19:03:22 +02:00
return f . shouldRetry ( resp , err )
2015-09-11 20:18:41 +02:00
} )
2015-09-03 00:37:42 +02:00
if err != nil {
2016-06-12 16:06:02 +02:00
return nil , errors . Wrap ( err , "failed to get endpoints" )
2015-09-03 00:37:42 +02:00
}
// Get rootID
2016-08-08 20:05:06 +02:00
rootInfo , err := f . getRootInfo ( )
2015-09-03 00:37:42 +02:00
if err != nil || rootInfo . Id == nil {
2016-06-12 16:06:02 +02:00
return nil , errors . Wrap ( err , "failed to get root" )
2015-09-03 00:37:42 +02:00
}
2016-12-09 17:56:07 +01:00
f . trueRootID = * rootInfo . Id
2015-09-03 00:37:42 +02:00
2016-12-09 17:56:07 +01:00
f . dirCache = dircache . New ( root , f . trueRootID , f )
2015-09-03 00:37:42 +02:00
// Find the current root
2019-06-17 10:34:30 +02:00
err = f . dirCache . FindRoot ( ctx , false )
2015-09-03 00:37:42 +02:00
if err != nil {
// Assume it is a file
newRoot , remote := dircache . SplitPath ( root )
2018-10-14 15:41:26 +02:00
tempF := * f
tempF . dirCache = dircache . New ( newRoot , f . trueRootID , & tempF )
tempF . root = newRoot
2015-09-03 00:37:42 +02:00
// Make new Fs which is the parent
2019-06-17 10:34:30 +02:00
err = tempF . dirCache . FindRoot ( ctx , false )
2015-09-03 00:37:42 +02:00
if err != nil {
// No root so return old f
return f , nil
}
2019-06-17 10:34:30 +02:00
_ , err := tempF . newObjectWithInfo ( ctx , remote , nil )
2016-06-25 22:23:20 +02:00
if err != nil {
if err == fs . ErrorObjectNotFound {
// File doesn't exist so return old f
return f , nil
}
return nil , err
2015-09-03 00:37:42 +02:00
}
2018-10-14 15:41:26 +02:00
// XXX: update the old f here instead of returning tempF, since
// `features` were already filled with functions having *f as a receiver.
2019-07-28 19:47:38 +02:00
// See https://github.com/rclone/rclone/issues/2182
2018-10-14 15:41:26 +02:00
f . dirCache = tempF . dirCache
f . root = tempF . root
2016-06-21 19:01:53 +02:00
// return an error with an fs which points to the parent
2018-10-14 15:41:26 +02:00
return f , fs . ErrorIsFile
2015-09-03 00:37:42 +02:00
}
return f , nil
}
2016-08-08 20:05:06 +02:00
// getRootInfo gets the root folder info
func ( f * Fs ) getRootInfo ( ) ( rootInfo * acd . Folder , err error ) {
var resp * http . Response
err = f . pacer . Call ( func ( ) ( bool , error ) {
rootInfo , resp , err = f . c . Nodes . GetRoot ( )
return f . shouldRetry ( resp , err )
} )
return rootInfo , err
}
2016-06-25 22:58:34 +02:00
// Return an Object from a path
2015-09-03 00:37:42 +02:00
//
2016-06-25 22:23:20 +02:00
// If it can't be found it returns the error fs.ErrorObjectNotFound.
2019-06-17 10:34:30 +02:00
func ( f * Fs ) newObjectWithInfo ( ctx context . Context , remote string , info * acd . Node ) ( fs . Object , error ) {
2015-11-07 12:14:46 +01:00
o := & Object {
fs : f ,
2015-09-03 00:37:42 +02:00
remote : remote ,
}
if info != nil {
// Set info but not meta
o . info = info
} else {
2019-06-17 10:34:30 +02:00
err := o . readMetaData ( ctx ) // reads info and meta, returning an error
2015-09-03 00:37:42 +02:00
if err != nil {
2016-06-25 22:23:20 +02:00
return nil , err
2015-09-03 00:37:42 +02:00
}
}
2016-06-25 22:23:20 +02:00
return o , nil
2015-09-03 00:37:42 +02:00
}
2016-06-25 22:23:20 +02:00
// NewObject finds the Object at remote. If it can't be found
// it returns the error fs.ErrorObjectNotFound.
2019-06-17 10:34:30 +02:00
func ( f * Fs ) NewObject ( ctx context . Context , remote string ) ( fs . Object , error ) {
return f . newObjectWithInfo ( ctx , remote , nil )
2015-09-03 00:37:42 +02:00
}
2015-09-22 19:47:16 +02:00
// FindLeaf finds a directory of name leaf in the folder with ID pathID
2019-06-17 10:34:30 +02:00
func ( f * Fs ) FindLeaf ( ctx context . Context , pathID , leaf string ) ( pathIDOut string , found bool , err error ) {
2017-02-09 12:01:20 +01:00
//fs.Debugf(f, "FindLeaf(%q, %q)", pathID, leaf)
2015-09-22 19:47:16 +02:00
folder := acd . FolderFromId ( pathID , f . c . Nodes )
2015-09-11 20:18:41 +02:00
var resp * http . Response
var subFolder * acd . Folder
err = f . pacer . Call ( func ( ) ( bool , error ) {
2020-01-14 18:33:35 +01:00
subFolder , resp , err = folder . GetFolder ( f . opt . Enc . FromStandardName ( leaf ) )
2016-05-23 19:03:22 +02:00
return f . shouldRetry ( resp , err )
2015-09-11 20:18:41 +02:00
} )
2015-09-03 00:37:42 +02:00
if err != nil {
if err == acd . ErrorNodeNotFound {
2017-02-09 12:01:20 +01:00
//fs.Debugf(f, "...Not found")
2015-09-03 00:37:42 +02:00
return "" , false , nil
}
2017-02-09 12:01:20 +01:00
//fs.Debugf(f, "...Error %v", err)
2015-09-03 00:37:42 +02:00
return "" , false , err
}
if subFolder . Status != nil && * subFolder . Status != statusAvailable {
2017-02-09 12:01:20 +01:00
fs . Debugf ( f , "Ignoring folder %q in state %q" , leaf , * subFolder . Status )
2015-09-03 00:37:42 +02:00
time . Sleep ( 1 * time . Second ) // FIXME wait for problem to go away!
return "" , false , nil
}
2017-02-09 12:01:20 +01:00
//fs.Debugf(f, "...Found(%q, %v)", *subFolder.Id, leaf)
2015-09-03 00:37:42 +02:00
return * subFolder . Id , true , nil
}
2015-09-22 19:47:16 +02:00
// CreateDir makes a directory with pathID as parent and name leaf
2019-06-17 10:34:30 +02:00
func ( f * Fs ) CreateDir ( ctx context . Context , pathID , leaf string ) ( newID string , err error ) {
2015-09-22 19:47:16 +02:00
//fmt.Printf("CreateDir(%q, %q)\n", pathID, leaf)
folder := acd . FolderFromId ( pathID , f . c . Nodes )
2015-09-11 20:18:41 +02:00
var resp * http . Response
var info * acd . Folder
err = f . pacer . Call ( func ( ) ( bool , error ) {
2020-01-14 18:33:35 +01:00
info , resp , err = folder . CreateFolder ( f . opt . Enc . FromStandardName ( leaf ) )
2016-05-23 19:03:22 +02:00
return f . shouldRetry ( resp , err )
2015-09-11 20:18:41 +02:00
} )
2015-09-03 00:37:42 +02:00
if err != nil {
2015-09-11 20:18:41 +02:00
//fmt.Printf("...Error %v\n", err)
2015-09-03 00:37:42 +02:00
return "" , err
}
2015-09-11 20:18:41 +02:00
//fmt.Printf("...Id %q\n", *info.Id)
2015-09-03 00:37:42 +02:00
return * info . Id , nil
}
// list the objects into the function supplied
//
// If directories is set it only sends directories
// User function to process a File item from listAll
//
// Should return true to finish processing
type listAllFn func ( * acd . Node ) bool
// Lists the directory required calling the user function on each item found
//
// If the user fn ever returns true then it early exits with found = true
2015-11-07 12:14:46 +01:00
func ( f * Fs ) listAll ( dirID string , title string , directoriesOnly bool , filesOnly bool , fn listAllFn ) ( found bool , err error ) {
2015-09-22 19:47:16 +02:00
query := "parents:" + dirID
2015-09-03 00:37:42 +02:00
if directoriesOnly {
query += " AND kind:" + folderKind
} else if filesOnly {
query += " AND kind:" + fileKind
} else {
// FIXME none of these work
//query += " AND kind:(" + fileKind + " OR " + folderKind + ")"
//query += " AND (kind:" + fileKind + " OR kind:" + folderKind + ")"
}
opts := acd . NodeListOptions {
Filters : query ,
}
var nodes [ ] * acd . Node
2016-05-14 18:15:42 +02:00
var out [ ] * acd . Node
2015-09-10 00:23:37 +02:00
//var resp *http.Response
2015-09-03 00:37:42 +02:00
for {
2015-09-11 20:18:41 +02:00
var resp * http . Response
2016-05-14 18:15:42 +02:00
err = f . pacer . CallNoRetry ( func ( ) ( bool , error ) {
2015-09-11 20:18:41 +02:00
nodes , resp , err = f . c . Nodes . GetNodes ( & opts )
2016-05-23 19:03:22 +02:00
return f . shouldRetry ( resp , err )
2015-09-11 20:18:41 +02:00
} )
2015-09-03 00:37:42 +02:00
if err != nil {
2016-04-21 21:06:21 +02:00
return false , err
2015-09-03 00:37:42 +02:00
}
if nodes == nil {
break
}
for _ , node := range nodes {
if node . Name != nil && node . Id != nil && node . Kind != nil && node . Status != nil {
// Ignore nodes if not AVAILABLE
if * node . Status != statusAvailable {
continue
}
2016-11-06 17:07:11 +01:00
// Ignore bogus nodes Amazon Drive sometimes reports
hasValidParent := false
for _ , parent := range node . Parents {
if parent == dirID {
hasValidParent = true
break
}
}
if ! hasValidParent {
continue
}
2020-01-14 18:33:35 +01:00
* node . Name = f . opt . Enc . ToStandardName ( * node . Name )
2016-05-14 18:15:42 +02:00
// Store the nodes up in case we have to retry the listing
out = append ( out , node )
2015-09-03 00:37:42 +02:00
}
}
}
2016-05-14 18:15:42 +02:00
// Send the nodes now
for _ , node := range out {
if fn ( node ) {
found = true
break
}
}
2015-09-03 00:37:42 +02:00
return
}
2017-06-11 23:43:31 +02:00
// 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.
2019-06-17 10:34:30 +02:00
func ( f * Fs ) List ( ctx context . Context , dir string ) ( entries fs . DirEntries , err error ) {
err = f . dirCache . FindRoot ( ctx , false )
2017-06-11 23:43:31 +02:00
if err != nil {
return nil , err
}
2019-06-17 10:34:30 +02:00
directoryID , err := f . dirCache . FindDir ( ctx , dir , false )
2017-06-11 23:43:31 +02:00
if err != nil {
return nil , err
}
2016-05-14 18:15:42 +02:00
maxTries := fs . Config . LowLevelRetries
2017-06-11 23:43:31 +02:00
var iErr error
2016-05-14 18:15:42 +02:00
for tries := 1 ; tries <= maxTries ; tries ++ {
2017-06-11 23:43:31 +02:00
entries = nil
_ , err = f . listAll ( directoryID , "" , false , false , func ( node * acd . Node ) bool {
remote := path . Join ( dir , * node . Name )
2016-05-14 18:15:42 +02:00
switch * node . Kind {
case folderKind :
2017-06-11 23:43:31 +02:00
// cache the directory ID for later lookups
f . dirCache . Put ( remote , * node . Id )
2017-06-30 14:37:29 +02:00
when , _ := time . Parse ( timeFormat , * node . ModifiedDate ) // FIXME
2017-08-02 17:44:36 +02:00
d := fs . NewDir ( remote , when ) . SetID ( * node . Id )
2017-06-11 23:43:31 +02:00
entries = append ( entries , d )
2016-05-14 18:15:42 +02:00
case fileKind :
2019-06-17 10:34:30 +02:00
o , err := f . newObjectWithInfo ( ctx , remote , node )
2016-06-25 22:23:20 +02:00
if err != nil {
2017-06-11 23:43:31 +02:00
iErr = err
2016-06-25 22:23:20 +02:00
return true
2016-04-21 21:06:21 +02:00
}
2017-06-11 23:43:31 +02:00
entries = append ( entries , o )
2016-05-14 18:15:42 +02:00
default :
// ignore ASSET etc
2015-09-03 00:37:42 +02:00
}
2016-05-14 18:15:42 +02:00
return false
} )
2017-06-11 23:43:31 +02:00
if iErr != nil {
return nil , iErr
}
2018-01-12 17:30:54 +01:00
if fserrors . IsRetryError ( err ) {
2017-06-11 23:43:31 +02:00
fs . Debugf ( f , "Directory listing error for %q: %v - low level retry %d/%d" , dir , err , tries , maxTries )
2016-05-14 18:15:42 +02:00
continue
2015-09-03 00:37:42 +02:00
}
2016-05-14 18:15:42 +02:00
if err != nil {
return nil , err
}
break
}
2017-06-11 23:43:31 +02:00
return entries , nil
2015-09-03 00:37:42 +02:00
}
2016-08-06 00:42:49 +02:00
// checkUpload checks to see if an error occurred after the file was
// completely uploaded.
//
// If it was then it waits for a while to see if the file really
// exists and is the right size and returns an updated info.
//
// If the file wasn't found or was the wrong size then it returns the
// original error.
//
// This is a workaround for Amazon sometimes returning
//
// * 408 REQUEST_TIMEOUT
// * 504 GATEWAY_TIMEOUT
// * 500 Internal server error
//
// At the end of large uploads. The speculation is that the timeout
// is waiting for the sha1 hashing to complete and the file may well
// be properly uploaded.
2019-06-17 10:34:30 +02:00
func ( f * Fs ) checkUpload ( ctx context . Context , resp * http . Response , in io . Reader , src fs . ObjectInfo , inInfo * acd . File , inErr error , uploadTime time . Duration ) ( fixedError bool , info * acd . File , err error ) {
2016-08-06 00:42:49 +02:00
// Return if no error - all is well
if inErr == nil {
return false , inInfo , inErr
}
2016-09-12 18:47:01 +02:00
// If not one of the errors we can fix return
2016-10-17 17:18:56 +02:00
// if resp == nil || resp.StatusCode != 408 && resp.StatusCode != 500 && resp.StatusCode != 504 {
// return false, inInfo, inErr
// }
2016-11-05 14:57:03 +01:00
// The HTTP status
httpStatus := "HTTP status UNKNOWN"
if resp != nil {
httpStatus = resp . Status
}
2016-10-17 17:18:56 +02:00
// check to see if we read to the end
2016-08-06 00:42:49 +02:00
buf := make ( [ ] byte , 1 )
n , err := in . Read ( buf )
if ! ( n == 0 && err == io . EOF ) {
2017-02-09 12:01:20 +01:00
fs . Debugf ( src , "Upload error detected but didn't finish upload: %v (%q)" , inErr , httpStatus )
2016-08-06 00:42:49 +02:00
return false , inInfo , inErr
}
2016-10-17 17:18:56 +02:00
2016-11-05 14:57:03 +01:00
// Don't wait for uploads - assume they will appear later
2018-05-14 19:06:57 +02:00
if f . opt . UploadWaitPerGB <= 0 {
2017-02-09 12:01:20 +01:00
fs . Debugf ( src , "Upload error detected but waiting disabled: %v (%q)" , inErr , httpStatus )
2016-10-17 17:18:56 +02:00
return false , inInfo , inErr
}
// Time we should wait for the upload
2018-05-14 19:06:57 +02:00
uploadWaitPerByte := float64 ( f . opt . UploadWaitPerGB ) / 1024 / 1024 / 1024
2016-11-05 14:57:03 +01:00
timeToWait := time . Duration ( uploadWaitPerByte * float64 ( src . Size ( ) ) )
2016-10-17 17:18:56 +02:00
const sleepTime = 5 * time . Second // sleep between tries
retries := int ( ( timeToWait + sleepTime - 1 ) / sleepTime ) // number of retries, rounded up
2017-02-09 12:01:20 +01:00
fs . Debugf ( src , "Error detected after finished upload - waiting to see if object was uploaded correctly: %v (%q)" , inErr , httpStatus )
2016-08-06 00:42:49 +02:00
remote := src . Remote ( )
for i := 1 ; i <= retries ; i ++ {
2019-06-17 10:34:30 +02:00
o , err := f . NewObject ( ctx , remote )
2016-08-06 00:42:49 +02:00
if err == fs . ErrorObjectNotFound {
2017-02-09 12:01:20 +01:00
fs . Debugf ( src , "Object not found - waiting (%d/%d)" , i , retries )
2016-08-06 00:42:49 +02:00
} else if err != nil {
2017-02-09 12:01:20 +01:00
fs . Debugf ( src , "Object returned error - waiting (%d/%d): %v" , i , retries , err )
2016-08-06 00:42:49 +02:00
} else {
if src . Size ( ) == o . Size ( ) {
2017-02-09 12:01:20 +01:00
fs . Debugf ( src , "Object found with correct size %d after waiting (%d/%d) - %v - returning with no error" , src . Size ( ) , i , retries , sleepTime * time . Duration ( i - 1 ) )
2016-08-06 00:42:49 +02:00
info = & acd . File {
Node : o . ( * Object ) . info ,
}
return true , info , nil
}
2017-02-09 12:01:20 +01:00
fs . Debugf ( src , "Object found but wrong size %d vs %d - waiting (%d/%d)" , src . Size ( ) , o . Size ( ) , i , retries )
2016-08-06 00:42:49 +02:00
}
time . Sleep ( sleepTime )
}
2017-02-09 12:01:20 +01:00
fs . Debugf ( src , "Giving up waiting for object - returning original error: %v (%q)" , inErr , httpStatus )
2016-08-06 00:42:49 +02:00
return false , inInfo , inErr
}
2015-09-03 00:37:42 +02:00
// Put the object into the container
//
// Copy the reader in to the new object which is returned
//
// The new object may have been created if an error is returned
2019-06-17 10:34:30 +02:00
func ( f * Fs ) Put ( ctx context . Context , in io . Reader , src fs . ObjectInfo , options ... fs . OpenOption ) ( fs . Object , error ) {
2016-02-18 12:35:25 +01:00
remote := src . Remote ( )
size := src . Size ( )
2015-11-07 12:14:46 +01:00
// Temporary Object under construction
o := & Object {
fs : f ,
2015-09-03 00:37:42 +02:00
remote : remote ,
}
2016-06-12 16:06:27 +02:00
// Check if object already exists
2019-06-17 10:34:30 +02:00
err := o . readMetaData ( ctx )
2016-06-12 16:06:27 +02:00
switch err {
case nil :
2019-06-17 10:34:30 +02:00
return o , o . Update ( ctx , in , src , options ... )
2016-06-25 22:23:20 +02:00
case fs . ErrorObjectNotFound :
2016-06-12 16:06:27 +02:00
// Not found so create it
default :
return nil , err
}
// If not create it
2019-06-17 10:34:30 +02:00
leaf , directoryID , err := f . dirCache . FindRootAndPath ( ctx , remote , true )
2015-09-03 00:37:42 +02:00
if err != nil {
return nil , err
}
2016-01-04 13:23:33 +01:00
if size > warnFileSize {
2017-02-26 14:23:12 +01:00
fs . Logf ( f , "Warning: file %q may fail because it is too big. Use --max-size=%dM to skip large files." , remote , warnFileSize >> 20 )
2016-01-04 13:23:33 +01:00
}
2015-11-07 12:14:46 +01:00
folder := acd . FolderFromId ( directoryID , o . fs . c . Nodes )
2015-09-10 00:23:37 +02:00
var info * acd . File
var resp * http . Response
2015-09-11 20:18:41 +02:00
err = f . pacer . CallNoRetry ( func ( ) ( bool , error ) {
2016-10-17 17:18:56 +02:00
start := time . Now ( )
2017-01-29 21:35:57 +01:00
f . tokenRenewer . Start ( )
2020-01-14 18:33:35 +01:00
info , resp , err = folder . Put ( in , f . opt . Enc . FromStandardName ( leaf ) )
2017-01-29 21:35:57 +01:00
f . tokenRenewer . Stop ( )
2016-08-06 00:42:49 +02:00
var ok bool
2019-06-17 10:34:30 +02:00
ok , info , err = f . checkUpload ( ctx , resp , in , src , info , err , time . Since ( start ) )
2016-08-06 00:42:49 +02:00
if ok {
return false , nil
}
2016-05-23 19:03:22 +02:00
return f . shouldRetry ( resp , err )
2015-09-11 20:18:41 +02:00
} )
2015-09-03 00:37:42 +02:00
if err != nil {
return nil , err
}
o . info = info . Node
return o , nil
}
// Mkdir creates the container if it doesn't exist
2019-06-17 10:34:30 +02:00
func ( f * Fs ) Mkdir ( ctx context . Context , dir string ) error {
err := f . dirCache . FindRoot ( ctx , true )
2016-11-25 22:52:43 +01:00
if err != nil {
return err
}
if dir != "" {
2019-06-17 10:34:30 +02:00
_ , err = f . dirCache . FindDir ( ctx , dir , true )
2016-11-25 22:52:43 +01:00
}
return err
2015-09-03 00:37:42 +02:00
}
2016-11-01 13:34:47 +01:00
// 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
2019-06-17 10:34:30 +02:00
func ( f * Fs ) Move ( ctx context . Context , src fs . Object , remote string ) ( fs . Object , error ) {
2016-12-09 17:56:07 +01:00
// go test -v -run '^Test(Setup|Init|FsMkdir|FsPutFile1|FsPutFile2|FsUpdateFile1|FsMove)$'
2016-11-01 13:34:47 +01:00
srcObj , ok := src . ( * Object )
if ! ok {
2017-02-09 12:01:20 +01:00
fs . Debugf ( src , "Can't move - not same remote type" )
2016-11-01 13:34:47 +01:00
return nil , fs . ErrorCantMove
}
2016-12-09 17:56:07 +01:00
// create the destination directory if necessary
2019-06-17 10:34:30 +02:00
err := f . dirCache . FindRoot ( ctx , true )
2016-12-09 17:56:07 +01:00
if err != nil {
return nil , err
}
2019-06-17 10:34:30 +02:00
srcLeaf , srcDirectoryID , err := srcObj . fs . dirCache . FindPath ( ctx , srcObj . remote , false )
2016-12-09 17:56:07 +01:00
if err != nil {
return nil , err
}
2019-06-17 10:34:30 +02:00
dstLeaf , dstDirectoryID , err := f . dirCache . FindPath ( ctx , remote , true )
2016-12-09 17:56:07 +01:00
if err != nil {
return nil , err
}
2017-02-04 13:56:21 +01:00
err = f . moveNode ( srcObj . remote , dstLeaf , dstDirectoryID , srcObj . info , srcLeaf , srcDirectoryID , false )
2016-12-09 17:56:07 +01:00
if err != nil {
return nil , err
}
2017-02-04 13:56:21 +01:00
// Wait for directory caching so we can no longer see the old
// object and see the new object
2017-01-19 18:21:14 +01:00
time . Sleep ( 200 * time . Millisecond ) // enough time 90% of the time
2017-03-09 22:32:50 +01:00
var (
dstObj fs . Object
srcErr , dstErr error
)
2017-01-19 18:21:14 +01:00
for i := 1 ; i <= fs . Config . LowLevelRetries ; i ++ {
2019-06-17 10:34:30 +02:00
_ , srcErr = srcObj . fs . NewObject ( ctx , srcObj . remote ) // try reading the object
2017-02-04 13:56:21 +01:00
if srcErr != nil && srcErr != fs . ErrorObjectNotFound {
// exit if error on source
return nil , srcErr
}
2019-06-17 10:34:30 +02:00
dstObj , dstErr = f . NewObject ( ctx , remote )
2017-02-04 13:56:21 +01:00
if dstErr != nil && dstErr != fs . ErrorObjectNotFound {
// exit if error on dst
return nil , dstErr
}
if srcErr == fs . ErrorObjectNotFound && dstErr == nil {
// finished if src not found and dst found
2017-01-19 18:21:14 +01:00
break
}
2017-02-09 12:01:20 +01:00
fs . Debugf ( src , "Wait for directory listing to update after move %d/%d" , i , fs . Config . LowLevelRetries )
2017-01-19 18:21:14 +01:00
time . Sleep ( 1 * time . Second )
}
2017-03-09 22:32:50 +01:00
return dstObj , dstErr
2016-12-09 17:56:07 +01:00
}
2016-12-09 16:39:29 +01:00
// DirCacheFlush resets the directory cache - used in testing as an
// optional interface
func ( f * Fs ) DirCacheFlush ( ) {
f . dirCache . ResetRoot ( )
2016-11-07 21:38:57 +01:00
}
2016-11-01 13:34:47 +01:00
2017-02-05 22:20:56 +01:00
// DirMove moves src, srcRemote to this remote at dstRemote
// using server side move operations.
2016-11-07 21:38:57 +01:00
//
// 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
2019-06-17 10:34:30 +02:00
func ( f * Fs ) DirMove ( ctx context . Context , src fs . Fs , srcRemote , dstRemote string ) ( err error ) {
2016-11-07 21:38:57 +01:00
srcFs , ok := src . ( * Fs )
if ! ok {
2017-02-09 12:01:20 +01:00
fs . Debugf ( src , "DirMove error: not same remote type" )
2016-11-07 21:38:57 +01:00
return fs . ErrorCantDirMove
2016-11-01 13:34:47 +01:00
}
2017-02-05 22:20:56 +01:00
srcPath := path . Join ( srcFs . root , srcRemote )
dstPath := path . Join ( f . root , dstRemote )
2016-11-01 13:34:47 +01:00
2016-12-09 17:56:07 +01:00
// Refuse to move to or from the root
2017-02-05 22:20:56 +01:00
if srcPath == "" || dstPath == "" {
2017-02-09 12:01:20 +01:00
fs . Debugf ( src , "DirMove error: Can't move root" )
2016-12-09 17:56:07 +01:00
return errors . New ( "can't move root directory" )
}
2017-02-05 22:20:56 +01:00
// find the root src directory
2019-06-17 10:34:30 +02:00
err = srcFs . dirCache . FindRoot ( ctx , false )
2016-12-09 17:56:07 +01:00
if err != nil {
return err
}
2017-02-05 22:20:56 +01:00
// find the root dst directory
if dstRemote != "" {
2019-06-17 10:34:30 +02:00
err = f . dirCache . FindRoot ( ctx , true )
2017-02-05 22:20:56 +01:00
if err != nil {
return err
}
} else {
if f . dirCache . FoundRoot ( ) {
return fs . ErrorDirExists
}
}
// Find ID of dst parent, creating subdirs if necessary
findPath := dstRemote
if dstRemote == "" {
findPath = f . root
}
2019-06-17 10:34:30 +02:00
dstLeaf , dstDirectoryID , err := f . dirCache . FindPath ( ctx , findPath , true )
2016-11-01 13:34:47 +01:00
if err != nil {
2016-12-09 17:56:07 +01:00
return err
2016-11-01 13:34:47 +01:00
}
2017-02-05 22:20:56 +01:00
// Check destination does not exist
if dstRemote != "" {
2019-06-17 10:34:30 +02:00
_ , err = f . dirCache . FindDir ( ctx , dstRemote , false )
2017-02-05 22:20:56 +01:00
if err == fs . ErrorDirNotFound {
// OK
} else if err != nil {
return err
} else {
return fs . ErrorDirExists
}
}
// Find ID of src parent
findPath = srcRemote
var srcDirectoryID string
if srcRemote == "" {
srcDirectoryID , err = srcFs . dirCache . RootParentID ( )
} else {
2019-06-17 10:34:30 +02:00
_ , srcDirectoryID , err = srcFs . dirCache . FindPath ( ctx , findPath , false )
2017-02-05 22:20:56 +01:00
}
if err != nil {
return err
}
srcLeaf , _ := dircache . SplitPath ( srcPath )
// Find ID of src
2019-06-17 10:34:30 +02:00
srcID , err := srcFs . dirCache . FindDir ( ctx , srcRemote , false )
2016-12-09 17:56:07 +01:00
if err != nil {
return err
}
2016-11-07 21:38:57 +01:00
2016-12-09 17:56:07 +01:00
// FIXME make a proper node.UpdateMetadata command
2017-02-05 22:20:56 +01:00
srcInfo := acd . NodeFromId ( srcID , f . c . Nodes )
2016-11-07 21:38:57 +01:00
var jsonStr string
2016-12-09 17:56:07 +01:00
err = srcFs . pacer . Call ( func ( ) ( bool , error ) {
jsonStr , err = srcInfo . GetMetadata ( )
return srcFs . shouldRetry ( nil , err )
2016-11-07 21:38:57 +01:00
} )
2016-11-01 13:34:47 +01:00
if err != nil {
2017-02-09 12:01:20 +01:00
fs . Debugf ( src , "DirMove error: error reading src metadata: %v" , err )
2016-12-09 17:56:07 +01:00
return err
2016-11-01 13:34:47 +01:00
}
2016-12-09 17:56:07 +01:00
err = json . Unmarshal ( [ ] byte ( jsonStr ) , & srcInfo )
2016-11-01 13:34:47 +01:00
if err != nil {
2017-02-09 12:01:20 +01:00
fs . Debugf ( src , "DirMove error: error reading unpacking src metadata: %v" , err )
2016-12-09 17:56:07 +01:00
return err
2016-11-01 13:34:47 +01:00
}
2016-11-07 21:38:57 +01:00
2017-02-05 22:20:56 +01:00
err = f . moveNode ( srcPath , dstLeaf , dstDirectoryID , srcInfo , srcLeaf , srcDirectoryID , true )
if err != nil {
return err
}
2016-11-07 21:38:57 +01:00
2017-02-05 22:20:56 +01:00
srcFs . dirCache . FlushDir ( srcRemote )
return nil
2016-11-01 13:34:47 +01:00
}
2015-09-03 00:37:42 +02:00
// purgeCheck remotes the root directory, if check is set then it
// refuses to do so if it has anything in
2019-06-17 10:34:30 +02:00
func ( f * Fs ) purgeCheck ( ctx context . Context , dir string , check bool ) error {
2016-11-25 22:52:43 +01:00
root := path . Join ( f . root , dir )
if root == "" {
2016-06-12 16:06:02 +02:00
return errors . New ( "can't purge root directory" )
2015-09-03 00:37:42 +02:00
}
dc := f . dirCache
2019-06-17 10:34:30 +02:00
err := dc . FindRoot ( ctx , false )
2017-01-15 13:18:07 +01:00
if err != nil {
return err
}
2019-06-17 10:34:30 +02:00
rootID , err := dc . FindDir ( ctx , dir , false )
2015-09-03 00:37:42 +02:00
if err != nil {
return err
}
if check {
// check directory is empty
empty := true
2015-10-04 23:08:31 +02:00
_ , err = f . listAll ( rootID , "" , false , false , func ( node * acd . Node ) bool {
2015-09-03 00:37:42 +02:00
switch * node . Kind {
case folderKind :
empty = false
return true
case fileKind :
empty = false
return true
default :
2017-02-09 12:01:20 +01:00
fs . Debugf ( "Found ASSET %s" , * node . Id )
2015-09-03 00:37:42 +02:00
}
return false
} )
if err != nil {
return err
}
if ! empty {
2016-06-12 16:06:02 +02:00
return errors . New ( "directory not empty" )
2015-09-03 00:37:42 +02:00
}
}
node := acd . NodeFromId ( rootID , f . c . Nodes )
2015-09-10 00:23:37 +02:00
var resp * http . Response
2015-09-11 20:18:41 +02:00
err = f . pacer . Call ( func ( ) ( bool , error ) {
resp , err = node . Trash ( )
2016-05-23 19:03:22 +02:00
return f . shouldRetry ( resp , err )
2015-09-11 20:18:41 +02:00
} )
2015-09-03 00:37:42 +02:00
if err != nil {
return err
}
2016-11-25 22:52:43 +01:00
f . dirCache . FlushDir ( dir )
2015-09-03 00:37:42 +02:00
if err != nil {
return err
}
return nil
}
// Rmdir deletes the root folder
//
// Returns an error if it isn't empty
2019-06-17 10:34:30 +02:00
func ( f * Fs ) Rmdir ( ctx context . Context , dir string ) error {
return f . purgeCheck ( ctx , dir , true )
2015-09-03 00:37:42 +02:00
}
2015-09-22 19:47:16 +02:00
// Precision return the precision of this Fs
2015-11-07 12:14:46 +01:00
func ( f * Fs ) Precision ( ) time . Duration {
2015-09-03 00:37:42 +02:00
return fs . ModTimeNotSupported
}
2016-01-11 13:39:33 +01:00
// Hashes returns the supported hash sets.
2018-01-12 17:30:54 +01:00
func ( f * Fs ) Hashes ( ) hash . Set {
2018-01-18 21:27:52 +01:00
return hash . Set ( hash . MD5 )
2016-01-11 13:39:33 +01:00
}
2015-09-03 00:37:42 +02:00
// Copy src to this remote using server side copy 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.ErrorCantCopy
2019-06-17 10:34:30 +02:00
//func (f *Fs) Copy(ctx context.Context, src fs.Object, remote string) (fs.Object, error) {
2015-11-07 12:14:46 +01:00
// srcObj, ok := src.(*Object)
2015-09-03 00:37:42 +02:00
// if !ok {
2017-02-09 12:01:20 +01:00
// fs.Debugf(src, "Can't copy - not same remote type")
2015-09-03 00:37:42 +02:00
// return nil, fs.ErrorCantCopy
// }
2015-11-07 12:14:46 +01:00
// srcFs := srcObj.fs
2015-09-03 00:37:42 +02:00
// _, err := f.c.ObjectCopy(srcFs.container, srcFs.root+srcObj.remote, f.container, f.root+remote, nil)
// if err != nil {
// return nil, err
// }
2019-06-17 10:34:30 +02:00
// return f.NewObject(ctx, remote), nil
2015-09-03 00:37:42 +02:00
//}
// Purge deletes all the files and the container
//
// Optional interface: Only implement this if you have a way of
// deleting all the files quicker than just running Remove() on the
// result of List()
2019-06-17 10:34:30 +02:00
func ( f * Fs ) Purge ( ctx context . Context ) error {
return f . purgeCheck ( ctx , "" , false )
2015-09-03 00:37:42 +02:00
}
// ------------------------------------------------------------
2015-09-22 19:47:16 +02:00
// Fs returns the parent Fs
2016-02-18 12:35:25 +01:00
func ( o * Object ) Fs ( ) fs . Info {
2015-11-07 12:14:46 +01:00
return o . fs
2015-09-03 00:37:42 +02:00
}
// Return a string version
2015-11-07 12:14:46 +01:00
func ( o * Object ) String ( ) string {
2015-09-03 00:37:42 +02:00
if o == nil {
return "<nil>"
}
return o . remote
}
2015-09-22 19:47:16 +02:00
// Remote returns the remote path
2015-11-07 12:14:46 +01:00
func ( o * Object ) Remote ( ) string {
2015-09-03 00:37:42 +02:00
return o . remote
}
2016-01-11 13:39:33 +01:00
// Hash returns the Md5sum of an object returning a lowercase hex string
2019-06-17 10:34:30 +02:00
func ( o * Object ) Hash ( ctx context . Context , t hash . Type ) ( string , error ) {
2018-01-18 21:27:52 +01:00
if t != hash . MD5 {
return "" , hash . ErrUnsupported
2016-01-11 13:39:33 +01:00
}
2016-11-30 22:05:35 +01:00
if o . info . ContentProperties != nil && o . info . ContentProperties . Md5 != nil {
2015-09-03 00:37:42 +02:00
return * o . info . ContentProperties . Md5 , nil
}
return "" , nil
}
// Size returns the size of an object in bytes
2015-11-07 12:14:46 +01:00
func ( o * Object ) Size ( ) int64 {
2016-11-30 22:05:35 +01:00
if o . info . ContentProperties != nil && o . info . ContentProperties . Size != nil {
return int64 ( * o . info . ContentProperties . Size )
}
return 0 // Object is likely PENDING
2015-09-03 00:37:42 +02:00
}
// readMetaData gets the metadata if it hasn't already been fetched
//
// it also sets the info
2016-06-25 22:23:20 +02:00
//
// If it can't be found it returns the error fs.ErrorObjectNotFound.
2019-06-17 10:34:30 +02:00
func ( o * Object ) readMetaData ( ctx context . Context ) ( err error ) {
2015-09-03 00:37:42 +02:00
if o . info != nil {
return nil
}
2019-06-17 10:34:30 +02:00
leaf , directoryID , err := o . fs . dirCache . FindRootAndPath ( ctx , o . remote , false )
2015-09-03 00:37:42 +02:00
if err != nil {
2016-06-25 22:23:20 +02:00
if err == fs . ErrorDirNotFound {
return fs . ErrorObjectNotFound
}
2015-09-03 00:37:42 +02:00
return err
}
2015-11-07 12:14:46 +01:00
folder := acd . FolderFromId ( directoryID , o . fs . c . Nodes )
2015-09-11 20:18:41 +02:00
var resp * http . Response
var info * acd . File
2015-11-07 12:14:46 +01:00
err = o . fs . pacer . Call ( func ( ) ( bool , error ) {
2020-01-14 18:33:35 +01:00
info , resp , err = folder . GetFile ( o . fs . opt . Enc . FromStandardName ( leaf ) )
2016-05-23 19:03:22 +02:00
return o . fs . shouldRetry ( resp , err )
2015-09-11 20:18:41 +02:00
} )
2015-09-03 00:37:42 +02:00
if err != nil {
2016-06-25 22:23:20 +02:00
if err == acd . ErrorNodeNotFound {
return fs . ErrorObjectNotFound
}
2015-09-03 00:37:42 +02:00
return err
}
o . info = info . Node
return nil
}
// 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
2019-06-17 10:34:30 +02:00
func ( o * Object ) ModTime ( ctx context . Context ) time . Time {
err := o . readMetaData ( ctx )
2015-09-03 00:37:42 +02:00
if err != nil {
2017-02-09 18:08:51 +01:00
fs . Debugf ( o , "Failed to read metadata: %v" , err )
2015-09-03 00:37:42 +02:00
return time . Now ( )
}
modTime , err := time . Parse ( timeFormat , * o . info . ModifiedDate )
if err != nil {
2017-02-09 18:08:51 +01:00
fs . Debugf ( o , "Failed to read mtime from object: %v" , err )
2015-09-03 00:37:42 +02:00
return time . Now ( )
}
return modTime
}
2015-09-22 19:47:16 +02:00
// SetModTime sets the modification time of the local fs object
2019-06-17 10:34:30 +02:00
func ( o * Object ) SetModTime ( ctx context . Context , modTime time . Time ) error {
2015-09-03 00:37:42 +02:00
// FIXME not implemented
2016-03-22 16:07:10 +01:00
return fs . ErrorCantSetModTime
2015-09-03 00:37:42 +02:00
}
2015-09-22 19:47:16 +02:00
// Storable returns a boolean showing whether this object storable
2015-11-07 12:14:46 +01:00
func ( o * Object ) Storable ( ) bool {
2015-09-03 00:37:42 +02:00
return true
}
// Open an object for read
2019-06-17 10:34:30 +02:00
func ( o * Object ) Open ( ctx context . Context , options ... fs . OpenOption ) ( in io . ReadCloser , err error ) {
2018-05-14 19:06:57 +02:00
bigObject := o . Size ( ) >= int64 ( o . fs . opt . TempLinkThreshold )
2016-01-30 19:08:44 +01:00
if bigObject {
2017-04-24 16:36:34 +02:00
fs . Debugf ( o , "Downloading large object via tempLink" )
2016-01-30 19:08:44 +01:00
}
2015-09-03 00:37:42 +02:00
file := acd . File { Node : o . info }
2015-09-10 00:23:37 +02:00
var resp * http . Response
2016-09-10 12:29:57 +02:00
headers := fs . OpenOptionHeaders ( options )
2015-11-07 12:14:46 +01:00
err = o . fs . pacer . Call ( func ( ) ( bool , error ) {
2016-01-30 19:08:44 +01:00
if ! bigObject {
2016-09-10 12:29:57 +02:00
in , resp , err = file . OpenHeaders ( headers )
2016-01-30 19:08:44 +01:00
} else {
2019-05-07 14:53:16 +02:00
in , resp , err = file . OpenTempURLHeaders ( o . fs . noAuthClient , headers )
2016-01-30 19:08:44 +01:00
}
2016-05-23 19:03:22 +02:00
return o . fs . shouldRetry ( resp , err )
2015-09-11 20:18:41 +02:00
} )
2015-09-03 00:37:42 +02:00
return in , err
}
// Update the object with the contents of the io.Reader, modTime and size
//
// The new object may have been created if an error is returned
2019-06-17 10:34:30 +02:00
func ( o * Object ) Update ( ctx context . Context , in io . Reader , src fs . ObjectInfo , options ... fs . OpenOption ) error {
2015-09-03 00:37:42 +02:00
file := acd . File { Node : o . info }
2015-09-10 00:23:37 +02:00
var info * acd . File
var resp * http . Response
var err error
2015-11-07 12:14:46 +01:00
err = o . fs . pacer . CallNoRetry ( func ( ) ( bool , error ) {
2016-10-17 17:18:56 +02:00
start := time . Now ( )
2017-01-29 21:35:57 +01:00
o . fs . tokenRenewer . Start ( )
2016-11-17 21:54:40 +01:00
info , resp , err = file . Overwrite ( in )
2017-01-29 21:35:57 +01:00
o . fs . tokenRenewer . Stop ( )
2016-08-06 00:42:49 +02:00
var ok bool
2019-06-17 10:34:30 +02:00
ok , info , err = o . fs . checkUpload ( ctx , resp , in , src , info , err , time . Since ( start ) )
2016-08-06 00:42:49 +02:00
if ok {
return false , nil
}
2016-05-23 19:03:22 +02:00
return o . fs . shouldRetry ( resp , err )
2015-09-11 20:18:41 +02:00
} )
2015-09-03 00:37:42 +02:00
if err != nil {
return err
}
o . info = info . Node
return nil
}
2016-12-09 17:56:07 +01:00
// Remove a node
func ( f * Fs ) removeNode ( info * acd . Node ) error {
2015-09-11 20:18:41 +02:00
var resp * http . Response
var err error
2016-12-09 17:56:07 +01:00
err = f . pacer . Call ( func ( ) ( bool , error ) {
resp , err = info . Trash ( )
return f . shouldRetry ( resp , err )
2015-09-11 20:18:41 +02:00
} )
2015-09-03 00:37:42 +02:00
return err
}
2016-12-09 17:56:07 +01:00
// Remove an object
2019-06-17 10:34:30 +02:00
func ( o * Object ) Remove ( ctx context . Context ) error {
2016-12-09 17:56:07 +01:00
return o . fs . removeNode ( o . info )
}
// Restore a node
2017-01-14 10:50:45 +01:00
func ( f * Fs ) restoreNode ( info * acd . Node ) ( newInfo * acd . Node , err error ) {
2016-11-07 21:38:57 +01:00
var resp * http . Response
2016-12-09 17:56:07 +01:00
err = f . pacer . Call ( func ( ) ( bool , error ) {
2017-01-14 10:50:45 +01:00
newInfo , resp , err = info . Restore ( )
2016-12-09 17:56:07 +01:00
return f . shouldRetry ( resp , err )
2016-11-01 13:34:47 +01:00
} )
2017-01-14 10:50:45 +01:00
return newInfo , err
2016-11-01 13:34:47 +01:00
}
2016-12-09 17:56:07 +01:00
// Changes name of given node
2017-01-14 10:50:45 +01:00
func ( f * Fs ) renameNode ( info * acd . Node , newName string ) ( newInfo * acd . Node , err error ) {
2016-11-01 13:34:47 +01:00
var resp * http . Response
2016-12-09 17:56:07 +01:00
err = f . pacer . Call ( func ( ) ( bool , error ) {
2020-01-14 18:33:35 +01:00
newInfo , resp , err = info . Rename ( f . opt . Enc . FromStandardName ( newName ) )
2016-12-09 17:56:07 +01:00
return f . shouldRetry ( resp , err )
2016-11-01 13:34:47 +01:00
} )
2017-01-14 10:50:45 +01:00
return newInfo , err
2016-11-01 13:34:47 +01:00
}
// Replaces one parent with another, effectively moving the file. Leaves other
// parents untouched. ReplaceParent cannot be used when the file is trashed.
2016-12-09 17:56:07 +01:00
func ( f * Fs ) replaceParent ( info * acd . Node , oldParentID string , newParentID string ) error {
return f . pacer . Call ( func ( ) ( bool , error ) {
resp , err := info . ReplaceParent ( oldParentID , newParentID )
return f . shouldRetry ( resp , err )
2016-11-01 13:34:47 +01:00
} )
}
// Adds one additional parent to object.
2016-12-09 17:56:07 +01:00
func ( f * Fs ) addParent ( info * acd . Node , newParentID string ) error {
return f . pacer . Call ( func ( ) ( bool , error ) {
resp , err := info . AddParent ( newParentID )
return f . shouldRetry ( resp , err )
2016-11-01 13:34:47 +01:00
} )
}
// Remove given parent from object, leaving the other possible
// parents untouched. Object can end up having no parents.
2016-12-09 17:56:07 +01:00
func ( f * Fs ) removeParent ( info * acd . Node , parentID string ) error {
return f . pacer . Call ( func ( ) ( bool , error ) {
resp , err := info . RemoveParent ( parentID )
return f . shouldRetry ( resp , err )
2016-11-01 13:34:47 +01:00
} )
}
2016-12-09 17:56:07 +01:00
// moveNode moves the node given from the srcLeaf,srcDirectoryID to
// the dstLeaf,dstDirectoryID
2017-02-04 13:56:21 +01:00
func ( f * Fs ) moveNode ( name , dstLeaf , dstDirectoryID string , srcInfo * acd . Node , srcLeaf , srcDirectoryID string , useDirErrorMsgs bool ) ( err error ) {
2017-02-09 12:01:20 +01:00
// fs.Debugf(name, "moveNode dst(%q,%s) <- src(%q,%s)", dstLeaf, dstDirectoryID, srcLeaf, srcDirectoryID)
2016-11-07 21:38:57 +01:00
cantMove := fs . ErrorCantMove
if useDirErrorMsgs {
cantMove = fs . ErrorCantDirMove
}
2016-12-09 17:56:07 +01:00
if len ( srcInfo . Parents ) > 1 && srcLeaf != dstLeaf {
2017-02-09 12:01:20 +01:00
fs . Debugf ( name , "Move error: object is attached to multiple parents and should be renamed. This would change the name of the node in all parents." )
2017-02-04 13:56:21 +01:00
return cantMove
2016-11-07 21:38:57 +01:00
}
2016-12-09 17:56:07 +01:00
if srcLeaf != dstLeaf {
2017-02-09 12:01:20 +01:00
// fs.Debugf(name, "renaming")
2017-02-04 13:56:21 +01:00
_ , err = f . renameNode ( srcInfo , dstLeaf )
2016-11-07 21:38:57 +01:00
if err != nil {
2017-02-09 12:01:20 +01:00
fs . Debugf ( name , "Move: quick path rename failed: %v" , err )
2016-11-07 21:38:57 +01:00
goto OnConflict
}
}
2016-12-09 17:56:07 +01:00
if srcDirectoryID != dstDirectoryID {
2017-02-09 12:01:20 +01:00
// fs.Debugf(name, "trying parent replace: %s -> %s", oldParentID, newParentID)
2016-12-09 17:56:07 +01:00
err = f . replaceParent ( srcInfo , srcDirectoryID , dstDirectoryID )
2016-11-07 21:38:57 +01:00
if err != nil {
2017-02-09 12:01:20 +01:00
fs . Debugf ( name , "Move: quick path parent replace failed: %v" , err )
2017-02-04 13:56:21 +01:00
return err
2016-11-07 21:38:57 +01:00
}
}
2017-02-04 13:56:21 +01:00
return nil
2016-11-07 21:38:57 +01:00
OnConflict :
2017-02-09 12:01:20 +01:00
fs . Debugf ( name , "Could not directly rename file, presumably because there was a file with the same name already. Instead, the file will now be trashed where such operations do not cause errors. It will be restored to the correct parent after. If any of the subsequent calls fails, the rename/move will be in an invalid state." )
2016-11-07 21:38:57 +01:00
2017-02-09 12:01:20 +01:00
// fs.Debugf(name, "Trashing file")
2016-12-09 17:56:07 +01:00
err = f . removeNode ( srcInfo )
2016-11-07 21:38:57 +01:00
if err != nil {
2017-02-09 12:01:20 +01:00
fs . Debugf ( name , "Move: remove node failed: %v" , err )
2017-02-04 13:56:21 +01:00
return err
2016-11-07 21:38:57 +01:00
}
2017-02-09 12:01:20 +01:00
// fs.Debugf(name, "Renaming file")
2016-12-09 17:56:07 +01:00
_ , err = f . renameNode ( srcInfo , dstLeaf )
2016-11-07 21:38:57 +01:00
if err != nil {
2017-02-09 12:01:20 +01:00
fs . Debugf ( name , "Move: rename node failed: %v" , err )
2017-02-04 13:56:21 +01:00
return err
2016-11-07 21:38:57 +01:00
}
// note: replacing parent is forbidden by API, modifying them individually is
// okay though
2017-02-09 12:01:20 +01:00
// fs.Debugf(name, "Adding target parent")
2016-12-09 17:56:07 +01:00
err = f . addParent ( srcInfo , dstDirectoryID )
2016-11-07 21:38:57 +01:00
if err != nil {
2017-02-09 12:01:20 +01:00
fs . Debugf ( name , "Move: addParent failed: %v" , err )
2017-02-04 13:56:21 +01:00
return err
2016-11-07 21:38:57 +01:00
}
2017-02-09 12:01:20 +01:00
// fs.Debugf(name, "removing original parent")
2016-12-09 17:56:07 +01:00
err = f . removeParent ( srcInfo , srcDirectoryID )
2016-11-07 21:38:57 +01:00
if err != nil {
2017-02-09 12:01:20 +01:00
fs . Debugf ( name , "Move: removeParent failed: %v" , err )
2017-02-04 13:56:21 +01:00
return err
2016-11-07 21:38:57 +01:00
}
2017-02-09 12:01:20 +01:00
// fs.Debugf(name, "Restoring")
2017-02-04 13:56:21 +01:00
_ , err = f . restoreNode ( srcInfo )
2016-11-07 21:38:57 +01:00
if err != nil {
2017-02-09 12:01:20 +01:00
fs . Debugf ( name , "Move: restoreNode node failed: %v" , err )
2017-02-04 13:56:21 +01:00
return err
2016-11-07 21:38:57 +01:00
}
2017-02-04 13:56:21 +01:00
return nil
2016-11-07 21:38:57 +01:00
}
2016-09-21 23:13:24 +02:00
// MimeType of an Object if known, "" otherwise
2019-06-17 10:34:30 +02:00
func ( o * Object ) MimeType ( ctx context . Context ) string {
2016-11-30 22:05:35 +01:00
if o . info . ContentProperties != nil && o . info . ContentProperties . ContentType != nil {
2016-09-21 23:13:24 +02:00
return * o . info . ContentProperties . ContentType
}
return ""
}
2018-03-08 21:03:34 +01:00
// ChangeNotify calls the passed function with a path that has had changes.
// If the implementation uses polling, it should adhere to the given interval.
2017-10-16 21:54:53 +02:00
//
// Automatically restarts itself in case of unexpected behaviour of the remote.
//
// Close the returned channel to stop being notified.
2019-06-17 10:34:30 +02:00
func ( f * Fs ) ChangeNotify ( ctx context . Context , notifyFunc func ( string , fs . EntryType ) , pollIntervalChan <- chan time . Duration ) {
2018-05-14 19:06:57 +02:00
checkpoint := f . opt . Checkpoint
2017-10-16 21:54:53 +02:00
go func ( ) {
2018-08-25 21:28:57 +02:00
var ticker * time . Ticker
var tickerC <- chan time . Time
2017-10-16 21:54:53 +02:00
for {
select {
2018-08-25 21:28:57 +02:00
case pollInterval , ok := <- pollIntervalChan :
if ! ok {
if ticker != nil {
ticker . Stop ( )
}
return
}
if pollInterval == 0 {
if ticker != nil {
ticker . Stop ( )
ticker , tickerC = nil , nil
}
} else {
ticker = time . NewTicker ( pollInterval )
tickerC = ticker . C
}
case <- tickerC :
checkpoint = f . changeNotifyRunner ( notifyFunc , checkpoint )
if err := config . SetValueAndSave ( f . name , "checkpoint" , checkpoint ) ; err != nil {
fs . Debugf ( f , "Unable to save checkpoint: %v" , err )
}
2017-10-16 21:54:53 +02:00
}
}
} ( )
}
2018-03-08 21:03:34 +01:00
func ( f * Fs ) changeNotifyRunner ( notifyFunc func ( string , fs . EntryType ) , checkpoint string ) string {
2017-10-16 21:54:53 +02:00
var err error
var resp * http . Response
var reachedEnd bool
var csCount int
var nodeCount int
fs . Debugf ( f , "Checking for changes on remote (Checkpoint %q)" , checkpoint )
err = f . pacer . CallNoRetry ( func ( ) ( bool , error ) {
resp , err = f . c . Changes . GetChangesFunc ( & acd . ChangesOptions {
Checkpoint : checkpoint ,
IncludePurged : true ,
} , func ( changeSet * acd . ChangeSet , err error ) error {
if err != nil {
return err
}
2018-03-08 21:03:34 +01:00
type entryType struct {
path string
entryType fs . EntryType
}
var pathsToClear [ ] entryType
2017-10-16 21:54:53 +02:00
csCount ++
nodeCount += len ( changeSet . Nodes )
if changeSet . End {
reachedEnd = true
}
if changeSet . Checkpoint != "" {
checkpoint = changeSet . Checkpoint
}
for _ , node := range changeSet . Nodes {
if path , ok := f . dirCache . GetInv ( * node . Id ) ; ok {
2018-03-08 21:03:34 +01:00
if node . IsFile ( ) {
pathsToClear = append ( pathsToClear , entryType { path : path , entryType : fs . EntryObject } )
} else {
pathsToClear = append ( pathsToClear , entryType { path : path , entryType : fs . EntryDirectory } )
}
continue
}
if node . IsFile ( ) {
// translate the parent dir of this object
if len ( node . Parents ) > 0 {
if path , ok := f . dirCache . GetInv ( node . Parents [ 0 ] ) ; ok {
// and append the drive file name to compute the full file name
2020-01-14 18:33:35 +01:00
name := f . opt . Enc . ToStandardName ( * node . Name )
2018-03-08 21:03:34 +01:00
if len ( path ) > 0 {
2019-05-19 17:53:14 +02:00
path = path + "/" + name
2018-03-08 21:03:34 +01:00
} else {
2019-05-19 17:53:14 +02:00
path = name
2018-03-08 21:03:34 +01:00
}
// this will now clear the actual file too
pathsToClear = append ( pathsToClear , entryType { path : path , entryType : fs . EntryObject } )
}
} else { // a true root object that is changed
pathsToClear = append ( pathsToClear , entryType { path : * node . Name , entryType : fs . EntryObject } )
}
2017-10-16 21:54:53 +02:00
}
}
2018-03-08 21:03:34 +01:00
visitedPaths := make ( map [ string ] bool )
for _ , entry := range pathsToClear {
if _ , ok := visitedPaths [ entry . path ] ; ok {
2017-10-16 21:54:53 +02:00
continue
}
2018-03-08 21:03:34 +01:00
visitedPaths [ entry . path ] = true
notifyFunc ( entry . path , entry . entryType )
2017-10-16 21:54:53 +02:00
}
return nil
} )
return false , err
} )
fs . Debugf ( f , "Got %d ChangeSets with %d Nodes" , csCount , nodeCount )
if err != nil && err != io . ErrUnexpectedEOF {
fs . Debugf ( f , "Failed to get Changes: %v" , err )
return checkpoint
}
if reachedEnd {
reachedEnd = false
fs . Debugf ( f , "All changes were processed. Waiting for more." )
} else if checkpoint == "" {
fs . Debugf ( f , "Did not get any checkpoint, something went wrong! %+v" , resp )
}
return checkpoint
}
2018-05-13 10:16:56 +02:00
// ID returns the ID of the Object if known, or "" if not
func ( o * Object ) ID ( ) string {
if o . info . Id == nil {
return ""
}
return * o . info . Id
}
2015-09-03 00:37:42 +02:00
// Check the interfaces are satisfied
var (
2015-11-07 12:14:46 +01:00
_ fs . Fs = ( * Fs ) ( nil )
_ fs . Purger = ( * Fs ) ( nil )
// _ fs.Copier = (*Fs)(nil)
2018-03-08 21:03:34 +01:00
_ fs . Mover = ( * Fs ) ( nil )
_ fs . DirMover = ( * Fs ) ( nil )
_ fs . DirCacheFlusher = ( * Fs ) ( nil )
_ fs . ChangeNotifier = ( * Fs ) ( nil )
_ fs . Object = ( * Object ) ( nil )
_ fs . MimeTyper = & Object { }
2018-05-13 10:16:56 +02:00
_ fs . IDer = & Object { }
2015-09-03 00:37:42 +02:00
)