2015-09-23 01:47:16 +08:00
|
|
|
// Package drive interfaces with the Google Drive object storage system
|
2013-06-28 03:13:07 +08:00
|
|
|
package drive
|
2013-01-15 07:38:18 +08:00
|
|
|
|
|
|
|
// FIXME need to deal with some corner cases
|
|
|
|
// * multiple files with the same name
|
|
|
|
// * files can be in multiple directories
|
|
|
|
// * can have directory loops
|
2013-01-20 19:56:56 +08:00
|
|
|
// * files with / in name
|
2013-01-15 07:38:18 +08:00
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"io"
|
2015-08-18 15:55:09 +08:00
|
|
|
"log"
|
2013-01-15 07:38:18 +08:00
|
|
|
"net/http"
|
|
|
|
"strings"
|
2015-09-17 20:31:10 +08:00
|
|
|
"sync"
|
2013-01-15 07:38:18 +08:00
|
|
|
"time"
|
|
|
|
|
2015-08-18 15:55:09 +08:00
|
|
|
"golang.org/x/oauth2"
|
|
|
|
"golang.org/x/oauth2/google"
|
2014-12-13 04:02:08 +08:00
|
|
|
"google.golang.org/api/drive/v2"
|
2015-02-03 01:29:08 +08:00
|
|
|
"google.golang.org/api/googleapi"
|
2014-12-13 04:02:08 +08:00
|
|
|
|
2015-09-04 04:25:55 +08:00
|
|
|
"github.com/ncw/rclone/dircache"
|
2014-03-16 00:06:11 +08:00
|
|
|
"github.com/ncw/rclone/fs"
|
2015-08-18 15:55:09 +08:00
|
|
|
"github.com/ncw/rclone/oauthutil"
|
2015-09-12 02:18:41 +08:00
|
|
|
"github.com/ncw/rclone/pacer"
|
2015-08-30 01:14:24 +08:00
|
|
|
"github.com/spf13/pflag"
|
2014-03-16 00:06:11 +08:00
|
|
|
)
|
2013-06-29 19:15:31 +08:00
|
|
|
|
2014-03-16 22:01:17 +08:00
|
|
|
// Constants
|
|
|
|
const (
|
2015-08-18 15:55:09 +08:00
|
|
|
rcloneClientID = "202264815644.apps.googleusercontent.com"
|
2015-09-02 05:33:34 +08:00
|
|
|
rcloneClientSecret = "8p/yms3OlNXE9OTDl/HLypf9gdiJ5cT3"
|
2014-03-16 22:01:17 +08:00
|
|
|
driveFolderType = "application/vnd.google-apps.folder"
|
2014-07-30 00:50:07 +08:00
|
|
|
timeFormatIn = time.RFC3339
|
|
|
|
timeFormatOut = "2006-01-02T15:04:05.000000000Z07:00"
|
2015-02-03 01:29:08 +08:00
|
|
|
minSleep = 10 * time.Millisecond
|
|
|
|
maxSleep = 2 * time.Second
|
|
|
|
decayConstant = 2 // bigger for slower decay, exponential
|
2014-03-16 22:01:17 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
// Globals
|
|
|
|
var (
|
|
|
|
// Flags
|
2016-01-03 02:47:05 +08:00
|
|
|
driveFullList = pflag.BoolP("drive-full-list", "", true, "Use a full listing for directory list. More data but usually quicker.")
|
|
|
|
driveAuthOwnerOnly = pflag.BoolP("drive-auth-owner-only", "", false, "Only consider files owned by the authenticated user. Requires drive-full-list.")
|
|
|
|
driveUseTrash = pflag.BoolP("drive-use-trash", "", false, "Send files to the trash instead of deleting permanently.")
|
2015-03-15 01:55:38 +08:00
|
|
|
// chunkSize is the size of the chunks created during a resumable upload and should be a power of two.
|
|
|
|
// 1<<18 is the minimum size supported by the Google uploader, and there is no maximum.
|
|
|
|
chunkSize = fs.SizeSuffix(256 * 1024)
|
|
|
|
driveUploadCutoff = chunkSize
|
2014-07-14 00:53:11 +08:00
|
|
|
// Description of how to auth for this app
|
2015-08-18 15:55:09 +08:00
|
|
|
driveConfig = &oauth2.Config{
|
|
|
|
Scopes: []string{"https://www.googleapis.com/auth/drive"},
|
|
|
|
Endpoint: google.Endpoint,
|
|
|
|
ClientID: rcloneClientID,
|
2015-09-02 05:33:34 +08:00
|
|
|
ClientSecret: fs.Reveal(rcloneClientSecret),
|
2015-08-18 15:55:09 +08:00
|
|
|
RedirectURL: oauthutil.TitleBarRedirectURL,
|
2014-07-14 00:53:11 +08:00
|
|
|
}
|
2014-03-16 22:01:17 +08:00
|
|
|
)
|
|
|
|
|
2013-06-29 19:15:31 +08:00
|
|
|
// Register with Fs
|
|
|
|
func init() {
|
2015-09-23 01:47:16 +08:00
|
|
|
fs.Register(&fs.Info{
|
2014-07-14 00:53:11 +08:00
|
|
|
Name: "drive",
|
|
|
|
NewFs: NewFs,
|
|
|
|
Config: func(name string) {
|
2016-01-04 23:13:36 +08:00
|
|
|
err := oauthutil.Config("drive", name, driveConfig)
|
2015-08-18 15:55:09 +08:00
|
|
|
if err != nil {
|
|
|
|
log.Fatalf("Failed to configure token: %v", err)
|
|
|
|
}
|
2014-07-14 00:53:11 +08:00
|
|
|
},
|
2014-03-16 00:06:11 +08:00
|
|
|
Options: []fs.Option{{
|
2016-01-07 23:20:32 +08:00
|
|
|
Name: fs.ConfigClientID,
|
2015-10-03 21:23:12 +08:00
|
|
|
Help: "Google Application Client Id - leave blank normally.",
|
2014-03-16 00:06:11 +08:00
|
|
|
}, {
|
2016-01-07 23:20:32 +08:00
|
|
|
Name: fs.ConfigClientSecret,
|
2015-10-03 21:23:12 +08:00
|
|
|
Help: "Google Application Client Secret - leave blank normally.",
|
2014-03-16 00:06:11 +08:00
|
|
|
}},
|
|
|
|
})
|
2015-03-15 01:55:38 +08:00
|
|
|
pflag.VarP(&driveUploadCutoff, "drive-upload-cutoff", "", "Cutoff for switching to chunked upload")
|
|
|
|
pflag.VarP(&chunkSize, "drive-chunk-size", "", "Upload chunk size. Must a power of 2 >= 256k.")
|
2013-06-29 19:15:31 +08:00
|
|
|
}
|
|
|
|
|
2015-11-07 19:14:46 +08:00
|
|
|
// Fs represents a remote drive server
|
|
|
|
type Fs struct {
|
2015-09-12 02:18:41 +08:00
|
|
|
name string // name of this remote
|
|
|
|
svc *drive.Service // the connection to the drive server
|
|
|
|
root string // the path we are working on
|
|
|
|
client *http.Client // authorized client
|
|
|
|
about *drive.About // information about the drive, including the root
|
|
|
|
dirCache *dircache.DirCache // Map of directory path to directory id
|
|
|
|
pacer *pacer.Pacer // To pace the API calls
|
2013-01-15 07:38:18 +08:00
|
|
|
}
|
|
|
|
|
2015-11-07 19:14:46 +08:00
|
|
|
// Object describes a drive object
|
|
|
|
type Object struct {
|
|
|
|
fs *Fs // what this object is part of
|
|
|
|
remote string // The remote path
|
|
|
|
id string // Drive Id of this object
|
|
|
|
url string // Download URL of this object
|
|
|
|
md5sum string // md5sum of the object
|
|
|
|
bytes int64 // size of the object
|
|
|
|
modifiedDate string // RFC3339 time it was last modified
|
2013-01-15 07:38:18 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------
|
|
|
|
|
2015-09-23 01:47:16 +08:00
|
|
|
// Name of the remote (as passed into NewFs)
|
2015-11-07 19:14:46 +08:00
|
|
|
func (f *Fs) Name() string {
|
2015-08-22 23:53:11 +08:00
|
|
|
return f.name
|
|
|
|
}
|
|
|
|
|
2015-09-23 01:47:16 +08:00
|
|
|
// Root of the remote (as passed into NewFs)
|
2015-11-07 19:14:46 +08:00
|
|
|
func (f *Fs) Root() string {
|
2015-09-02 03:45:27 +08:00
|
|
|
return f.root
|
|
|
|
}
|
|
|
|
|
2015-11-07 19:14:46 +08:00
|
|
|
// String converts this Fs to a string
|
|
|
|
func (f *Fs) String() string {
|
2013-01-15 07:38:18 +08:00
|
|
|
return fmt.Sprintf("Google drive root '%s'", f.root)
|
|
|
|
}
|
|
|
|
|
2015-09-12 02:18:41 +08:00
|
|
|
// shouldRetry determines whehter a given err rates being retried
|
|
|
|
func shouldRetry(err error) (again bool, errOut error) {
|
|
|
|
again = false
|
|
|
|
if err != nil {
|
2015-10-15 00:37:53 +08:00
|
|
|
if fs.ShouldRetry(err) {
|
2015-03-02 17:05:23 +08:00
|
|
|
again = true
|
2015-10-15 00:37:53 +08:00
|
|
|
} else {
|
|
|
|
switch gerr := err.(type) {
|
|
|
|
case *googleapi.Error:
|
|
|
|
if gerr.Code >= 500 && gerr.Code < 600 {
|
|
|
|
// All 5xx errors should be retried
|
2015-02-03 01:29:08 +08:00
|
|
|
again = true
|
2015-10-15 00:37:53 +08:00
|
|
|
} else if len(gerr.Errors) > 0 {
|
|
|
|
reason := gerr.Errors[0].Reason
|
|
|
|
if reason == "rateLimitExceeded" || reason == "userRateLimitExceeded" {
|
|
|
|
again = true
|
|
|
|
}
|
2015-02-03 01:29:08 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-09-12 02:18:41 +08:00
|
|
|
return again, err
|
2015-02-03 01:29:08 +08:00
|
|
|
}
|
|
|
|
|
2013-01-15 07:38:18 +08:00
|
|
|
// parseParse parses a drive 'url'
|
|
|
|
func parseDrivePath(path string) (root string, err error) {
|
2014-03-28 01:49:36 +08:00
|
|
|
root = strings.Trim(path, "/")
|
2013-01-15 07:38:18 +08:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2013-01-20 19:56:56 +08:00
|
|
|
// User function to process a File item from listAll
|
|
|
|
//
|
|
|
|
// Should return true to finish processing
|
|
|
|
type listAllFn func(*drive.File) 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
|
2013-01-15 07:38:18 +08:00
|
|
|
//
|
|
|
|
// Search params: https://developers.google.com/drive/search-parameters
|
2015-11-07 19:14:46 +08:00
|
|
|
func (f *Fs) listAll(dirID string, title string, directoriesOnly bool, filesOnly bool, fn listAllFn) (found bool, err error) {
|
2013-01-24 05:19:26 +08:00
|
|
|
query := fmt.Sprintf("trashed=false")
|
2015-09-23 01:47:16 +08:00
|
|
|
if dirID != "" {
|
|
|
|
query += fmt.Sprintf(" and '%s' in parents", dirID)
|
2013-01-24 05:19:26 +08:00
|
|
|
}
|
2013-01-15 07:38:18 +08:00
|
|
|
if title != "" {
|
|
|
|
// Escaping the backslash isn't documented but seems to work
|
|
|
|
title = strings.Replace(title, `\`, `\\`, -1)
|
|
|
|
title = strings.Replace(title, `'`, `\'`, -1)
|
|
|
|
query += fmt.Sprintf(" and title='%s'", title)
|
|
|
|
}
|
|
|
|
if directoriesOnly {
|
|
|
|
query += fmt.Sprintf(" and mimeType='%s'", driveFolderType)
|
|
|
|
}
|
|
|
|
if filesOnly {
|
|
|
|
query += fmt.Sprintf(" and mimeType!='%s'", driveFolderType)
|
|
|
|
}
|
2013-01-24 05:19:26 +08:00
|
|
|
// fmt.Printf("listAll Query = %q\n", query)
|
|
|
|
list := f.svc.Files.List().Q(query).MaxResults(1000)
|
2013-01-20 19:56:56 +08:00
|
|
|
OUTER:
|
2013-01-15 07:38:18 +08:00
|
|
|
for {
|
2015-02-03 01:29:08 +08:00
|
|
|
var files *drive.FileList
|
2015-09-12 02:18:41 +08:00
|
|
|
err = f.pacer.Call(func() (bool, error) {
|
2015-02-03 01:29:08 +08:00
|
|
|
files, err = list.Do()
|
2015-09-12 02:18:41 +08:00
|
|
|
return shouldRetry(err)
|
2015-02-03 01:29:08 +08:00
|
|
|
})
|
2013-01-15 07:38:18 +08:00
|
|
|
if err != nil {
|
2013-01-20 19:56:56 +08:00
|
|
|
return false, fmt.Errorf("Couldn't list directory: %s", err)
|
|
|
|
}
|
|
|
|
for _, item := range files.Items {
|
|
|
|
if fn(item) {
|
|
|
|
found = true
|
|
|
|
break OUTER
|
|
|
|
}
|
2013-01-15 07:38:18 +08:00
|
|
|
}
|
|
|
|
if files.NextPageToken == "" {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
list.PageToken(files.NextPageToken)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-03-15 01:55:38 +08:00
|
|
|
// Returns true of x is a power of 2 or zero
|
|
|
|
func isPowerOfTwo(x int64) bool {
|
|
|
|
switch {
|
|
|
|
case x == 0:
|
|
|
|
return true
|
|
|
|
case x < 0:
|
|
|
|
return false
|
|
|
|
default:
|
|
|
|
return (x & (x - 1)) == 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-07 19:14:46 +08:00
|
|
|
// NewFs contstructs an Fs from the path, container:path
|
2014-03-16 22:01:17 +08:00
|
|
|
func NewFs(name, path string) (fs.Fs, error) {
|
2015-03-15 01:55:38 +08:00
|
|
|
if !isPowerOfTwo(int64(chunkSize)) {
|
|
|
|
return nil, fmt.Errorf("drive: chunk size %v isn't a power of two", chunkSize)
|
|
|
|
}
|
|
|
|
if chunkSize < 256*1024 {
|
|
|
|
return nil, fmt.Errorf("drive: chunk size can't be less than 256k - was %v", chunkSize)
|
|
|
|
}
|
|
|
|
|
2015-08-18 15:55:09 +08:00
|
|
|
oAuthClient, err := oauthutil.NewClient(name, driveConfig)
|
2013-01-15 07:38:18 +08:00
|
|
|
if err != nil {
|
2015-08-18 15:55:09 +08:00
|
|
|
log.Fatalf("Failed to configure drive: %v", err)
|
2013-01-15 07:38:18 +08:00
|
|
|
}
|
|
|
|
|
2014-03-16 22:01:17 +08:00
|
|
|
root, err := parseDrivePath(path)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2013-01-15 07:38:18 +08:00
|
|
|
}
|
2014-07-14 00:53:11 +08:00
|
|
|
|
2015-11-07 19:14:46 +08:00
|
|
|
f := &Fs{
|
2015-09-12 02:18:41 +08:00
|
|
|
name: name,
|
|
|
|
root: root,
|
|
|
|
pacer: pacer.New().SetMinSleep(minSleep).SetMaxSleep(maxSleep).SetDecayConstant(decayConstant),
|
2014-05-06 02:52:52 +08:00
|
|
|
}
|
2013-01-15 07:38:18 +08:00
|
|
|
|
|
|
|
// Create a new authorized Drive client.
|
2015-08-18 15:55:09 +08:00
|
|
|
f.client = oAuthClient
|
2013-01-15 07:38:18 +08:00
|
|
|
f.svc, err = drive.New(f.client)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("Couldn't create Drive client: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Read About so we know the root path
|
2015-09-12 02:18:41 +08:00
|
|
|
err = f.pacer.Call(func() (bool, error) {
|
2015-02-03 01:29:08 +08:00
|
|
|
f.about, err = f.svc.About.Get().Do()
|
2015-09-12 02:18:41 +08:00
|
|
|
return shouldRetry(err)
|
2015-02-03 01:29:08 +08:00
|
|
|
})
|
2013-01-15 07:38:18 +08:00
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("Couldn't read info about Drive: %s", err)
|
|
|
|
}
|
|
|
|
|
2015-09-04 04:25:55 +08:00
|
|
|
f.dirCache = dircache.New(root, f.about.RootFolderId, f)
|
|
|
|
|
2014-05-06 02:52:52 +08:00
|
|
|
// Find the current root
|
2015-09-04 04:25:55 +08:00
|
|
|
err = f.dirCache.FindRoot(false)
|
2014-05-06 02:52:52 +08:00
|
|
|
if err != nil {
|
|
|
|
// Assume it is a file
|
2015-09-04 04:25:55 +08:00
|
|
|
newRoot, remote := dircache.SplitPath(root)
|
2014-05-06 02:52:52 +08:00
|
|
|
newF := *f
|
2015-09-04 04:25:55 +08:00
|
|
|
newF.dirCache = dircache.New(newRoot, f.about.RootFolderId, &newF)
|
2014-05-06 02:52:52 +08:00
|
|
|
newF.root = newRoot
|
|
|
|
// Make new Fs which is the parent
|
2015-09-04 04:25:55 +08:00
|
|
|
err = newF.dirCache.FindRoot(false)
|
2014-05-06 02:52:52 +08:00
|
|
|
if err != nil {
|
|
|
|
// No root so return old f
|
|
|
|
return f, nil
|
|
|
|
}
|
2014-07-30 00:50:07 +08:00
|
|
|
obj, err := newF.newFsObjectWithInfoErr(remote, nil)
|
2014-05-06 02:52:52 +08:00
|
|
|
if err != nil {
|
|
|
|
// File doesn't exist so return old f
|
|
|
|
return f, nil
|
|
|
|
}
|
|
|
|
// return a Fs Limited to this object
|
|
|
|
return fs.NewLimited(&newF, obj), nil
|
|
|
|
}
|
2015-09-04 04:25:55 +08:00
|
|
|
// fmt.Printf("Root id %s", f.dirCache.RootID())
|
2013-01-15 07:38:18 +08:00
|
|
|
return f, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return an FsObject from a path
|
2015-11-07 19:14:46 +08:00
|
|
|
func (f *Fs) newFsObjectWithInfoErr(remote string, info *drive.File) (fs.Object, error) {
|
|
|
|
fs := &Object{
|
|
|
|
fs: f,
|
2013-01-15 07:38:18 +08:00
|
|
|
remote: remote,
|
|
|
|
}
|
|
|
|
if info != nil {
|
2013-01-19 18:11:55 +08:00
|
|
|
fs.setMetaData(info)
|
2013-01-15 07:38:18 +08:00
|
|
|
} else {
|
|
|
|
err := fs.readMetaData() // reads info and meta, returning an error
|
|
|
|
if err != nil {
|
2013-06-28 15:57:32 +08:00
|
|
|
// logged already fs.Debug("Failed to read info: %s", err)
|
2014-05-06 02:52:52 +08:00
|
|
|
return nil, err
|
2013-01-15 07:38:18 +08:00
|
|
|
}
|
|
|
|
}
|
2014-05-06 02:52:52 +08:00
|
|
|
return fs, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return an FsObject from a path
|
|
|
|
//
|
|
|
|
// May return nil if an error occurred
|
2015-11-07 19:14:46 +08:00
|
|
|
func (f *Fs) newFsObjectWithInfo(remote string, info *drive.File) fs.Object {
|
2014-07-30 00:50:07 +08:00
|
|
|
fs, _ := f.newFsObjectWithInfoErr(remote, info)
|
2014-05-06 02:52:52 +08:00
|
|
|
// Errors have already been logged
|
2013-01-15 07:38:18 +08:00
|
|
|
return fs
|
|
|
|
}
|
|
|
|
|
2015-09-23 01:47:16 +08:00
|
|
|
// NewFsObject returns an FsObject from a path
|
2013-01-15 07:38:18 +08:00
|
|
|
//
|
|
|
|
// May return nil if an error occurred
|
2015-11-07 19:14:46 +08:00
|
|
|
func (f *Fs) NewFsObject(remote string) fs.Object {
|
2014-07-30 00:50:07 +08:00
|
|
|
return f.newFsObjectWithInfo(remote, nil)
|
2013-01-15 07:38:18 +08:00
|
|
|
}
|
|
|
|
|
2015-09-23 01:47:16 +08:00
|
|
|
// FindLeaf finds a directory of name leaf in the folder with ID pathID
|
2015-11-07 19:14:46 +08:00
|
|
|
func (f *Fs) FindLeaf(pathID, leaf string) (pathIDOut string, found bool, err error) {
|
2015-09-23 01:47:16 +08:00
|
|
|
// Find the leaf in pathID
|
|
|
|
found, err = f.listAll(pathID, leaf, true, false, func(item *drive.File) bool {
|
2015-09-04 04:25:55 +08:00
|
|
|
if item.Title == leaf {
|
2015-09-23 01:47:16 +08:00
|
|
|
pathIDOut = item.Id
|
2015-09-04 04:25:55 +08:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
})
|
2015-09-23 01:47:16 +08:00
|
|
|
return pathIDOut, found, err
|
2015-09-04 04:25:55 +08:00
|
|
|
}
|
|
|
|
|
2015-09-23 01:47:16 +08:00
|
|
|
// CreateDir makes a directory with pathID as parent and name leaf
|
2015-11-07 19:14:46 +08:00
|
|
|
func (f *Fs) CreateDir(pathID, leaf string) (newID string, err error) {
|
2015-09-04 04:25:55 +08:00
|
|
|
// fmt.Println("Making", path)
|
|
|
|
// Define the metadata for the directory we are going to create.
|
|
|
|
createInfo := &drive.File{
|
|
|
|
Title: leaf,
|
|
|
|
Description: leaf,
|
|
|
|
MimeType: driveFolderType,
|
2015-09-23 01:47:16 +08:00
|
|
|
Parents: []*drive.ParentReference{{Id: pathID}},
|
2015-09-04 04:25:55 +08:00
|
|
|
}
|
|
|
|
var info *drive.File
|
2015-09-12 02:18:41 +08:00
|
|
|
err = f.pacer.Call(func() (bool, error) {
|
2015-09-04 04:25:55 +08:00
|
|
|
info, err = f.svc.Files.Insert(createInfo).Do()
|
2015-09-12 02:18:41 +08:00
|
|
|
return shouldRetry(err)
|
2015-09-04 04:25:55 +08:00
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
return info.Id, nil
|
|
|
|
}
|
|
|
|
|
2013-01-15 07:38:18 +08:00
|
|
|
// Path should be directory path either "" or "path/"
|
2013-01-24 05:19:26 +08:00
|
|
|
//
|
|
|
|
// List the directory using a recursive list from the root
|
|
|
|
//
|
|
|
|
// This fetches the minimum amount of stuff but does more API calls
|
|
|
|
// which makes it slow
|
2015-11-07 19:14:46 +08:00
|
|
|
func (f *Fs) listDirRecursive(dirID string, path string, out fs.ObjectsChan) error {
|
2013-01-20 19:56:56 +08:00
|
|
|
var subError error
|
2013-01-15 07:38:18 +08:00
|
|
|
// Make the API request
|
2015-09-17 20:31:10 +08:00
|
|
|
var wg sync.WaitGroup
|
2015-09-23 01:47:16 +08:00
|
|
|
_, err := f.listAll(dirID, "", false, false, func(item *drive.File) bool {
|
2013-01-15 07:38:18 +08:00
|
|
|
// Recurse on directories
|
|
|
|
if item.MimeType == driveFolderType {
|
2015-09-17 20:31:10 +08:00
|
|
|
wg.Add(1)
|
|
|
|
folder := path + item.Title + "/"
|
|
|
|
fs.Debug(f, "Reading %s", folder)
|
|
|
|
|
|
|
|
go func() {
|
|
|
|
defer wg.Done()
|
|
|
|
err := f.listDirRecursive(item.Id, folder, out)
|
|
|
|
if err != nil {
|
|
|
|
subError = err
|
|
|
|
fs.ErrorLog(f, "Error reading %s:%s", folder, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
}()
|
2013-01-15 07:38:18 +08:00
|
|
|
} else {
|
|
|
|
// If item has no MD5 sum it isn't stored on drive, so ignore it
|
2013-01-20 19:56:56 +08:00
|
|
|
if item.Md5Checksum != "" {
|
2014-07-30 00:50:07 +08:00
|
|
|
if fs := f.newFsObjectWithInfo(path+item.Title, item); fs != nil {
|
2013-01-20 19:56:56 +08:00
|
|
|
out <- fs
|
|
|
|
}
|
2013-01-15 07:38:18 +08:00
|
|
|
}
|
|
|
|
}
|
2013-01-20 19:56:56 +08:00
|
|
|
return false
|
|
|
|
})
|
2015-09-17 20:31:10 +08:00
|
|
|
wg.Wait()
|
|
|
|
fs.Debug(f, "Finished reading %s", path)
|
2013-01-20 19:56:56 +08:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if subError != nil {
|
|
|
|
return subError
|
2013-01-15 07:38:18 +08:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-01-03 02:47:05 +08:00
|
|
|
// isAuthOwned checks if any of the item owners is the authenticated owner
|
|
|
|
func isAuthOwned(item *drive.File) bool {
|
|
|
|
for _, owner := range item.Owners {
|
|
|
|
if owner.IsAuthenticatedUser {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2013-01-24 05:19:26 +08:00
|
|
|
// Path should be directory path either "" or "path/"
|
|
|
|
//
|
|
|
|
// List the directory using a full listing and filtering out unwanted
|
|
|
|
// items
|
|
|
|
//
|
|
|
|
// This is fast in terms of number of API calls, but slow in terms of
|
|
|
|
// fetching more data than it needs
|
2015-11-07 19:14:46 +08:00
|
|
|
func (f *Fs) listDirFull(dirID string, path string, out fs.ObjectsChan) error {
|
2013-01-24 05:19:26 +08:00
|
|
|
// Orphans waiting for their parent
|
|
|
|
orphans := make(map[string][]*drive.File)
|
|
|
|
|
|
|
|
var outputItem func(*drive.File, string) // forward def for recursive fn
|
|
|
|
|
|
|
|
// Output an item or directory
|
|
|
|
outputItem = func(item *drive.File, directory string) {
|
|
|
|
// fmt.Printf("found %q %q parent %q dir %q ok %s\n", item.Title, item.Id, parentId, directory, ok)
|
|
|
|
path := item.Title
|
|
|
|
if directory != "" {
|
|
|
|
path = directory + "/" + path
|
|
|
|
}
|
2016-01-03 02:47:05 +08:00
|
|
|
if *driveAuthOwnerOnly && !isAuthOwned(item) {
|
|
|
|
return
|
|
|
|
}
|
2013-01-24 05:19:26 +08:00
|
|
|
if item.MimeType == driveFolderType {
|
|
|
|
// Put the directory into the dircache
|
|
|
|
f.dirCache.Put(path, item.Id)
|
|
|
|
// fmt.Printf("directory %s %s %s\n", path, item.Title, item.Id)
|
|
|
|
// Collect the orphans if any
|
|
|
|
for _, orphan := range orphans[item.Id] {
|
|
|
|
// fmt.Printf("rescuing orphan %s %s %s\n", path, orphan.Title, orphan.Id)
|
|
|
|
outputItem(orphan, path)
|
|
|
|
}
|
|
|
|
delete(orphans, item.Id)
|
|
|
|
} else {
|
|
|
|
// fmt.Printf("file %s %s %s\n", path, item.Title, item.Id)
|
|
|
|
// If item has no MD5 sum it isn't stored on drive, so ignore it
|
|
|
|
if item.Md5Checksum != "" {
|
2014-07-30 00:50:07 +08:00
|
|
|
if fs := f.newFsObjectWithInfo(path, item); fs != nil {
|
2013-01-24 05:19:26 +08:00
|
|
|
out <- fs
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make the API request
|
|
|
|
_, err := f.listAll("", "", false, false, func(item *drive.File) bool {
|
|
|
|
if len(item.Parents) == 0 {
|
|
|
|
// fmt.Printf("no parents %s %s: %#v\n", item.Title, item.Id, item)
|
|
|
|
return false
|
|
|
|
}
|
2015-09-23 01:47:16 +08:00
|
|
|
parentID := item.Parents[0].Id
|
|
|
|
directory, ok := f.dirCache.GetInv(parentID)
|
2013-01-24 05:19:26 +08:00
|
|
|
if !ok {
|
|
|
|
// Haven't found the parent yet so add to orphans
|
2015-09-23 01:47:16 +08:00
|
|
|
// fmt.Printf("orphan[%s] %s %s\n", parentID, item.Title, item.Id)
|
|
|
|
orphans[parentID] = append(orphans[parentID], item)
|
2013-01-24 05:19:26 +08:00
|
|
|
} else {
|
|
|
|
outputItem(item, directory)
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(orphans) > 0 {
|
|
|
|
// fmt.Printf("Orphans!!!! %v", orphans)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-09-23 01:47:16 +08:00
|
|
|
// List walks the path returning a channel of FsObjects
|
2015-11-07 19:14:46 +08:00
|
|
|
func (f *Fs) List() fs.ObjectsChan {
|
2013-06-28 15:57:32 +08:00
|
|
|
out := make(fs.ObjectsChan, fs.Config.Checkers)
|
2013-01-15 07:38:18 +08:00
|
|
|
go func() {
|
|
|
|
defer close(out)
|
2015-09-04 04:25:55 +08:00
|
|
|
err := f.dirCache.FindRoot(false)
|
2013-01-15 07:38:18 +08:00
|
|
|
if err != nil {
|
2013-06-28 03:13:07 +08:00
|
|
|
fs.Stats.Error()
|
2015-08-09 03:10:31 +08:00
|
|
|
fs.ErrorLog(f, "Couldn't find root: %s", err)
|
2013-01-15 07:38:18 +08:00
|
|
|
} else {
|
2015-02-05 05:29:51 +08:00
|
|
|
if f.root == "" && *driveFullList {
|
2015-09-04 04:25:55 +08:00
|
|
|
err = f.listDirFull(f.dirCache.RootID(), "", out)
|
2013-01-24 05:19:26 +08:00
|
|
|
} else {
|
2015-09-04 04:25:55 +08:00
|
|
|
err = f.listDirRecursive(f.dirCache.RootID(), "", out)
|
2013-01-24 05:19:26 +08:00
|
|
|
}
|
2013-01-15 07:38:18 +08:00
|
|
|
if err != nil {
|
2013-06-28 03:13:07 +08:00
|
|
|
fs.Stats.Error()
|
2015-08-09 03:10:31 +08:00
|
|
|
fs.ErrorLog(f, "List failed: %s", err)
|
2013-01-15 07:38:18 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
2015-09-23 01:47:16 +08:00
|
|
|
// ListDir walks the path returning a channel of directories
|
2015-11-07 19:14:46 +08:00
|
|
|
func (f *Fs) ListDir() fs.DirChan {
|
2013-06-28 15:57:32 +08:00
|
|
|
out := make(fs.DirChan, fs.Config.Checkers)
|
2013-01-24 06:43:20 +08:00
|
|
|
go func() {
|
|
|
|
defer close(out)
|
2015-09-04 04:25:55 +08:00
|
|
|
err := f.dirCache.FindRoot(false)
|
2013-01-24 06:43:20 +08:00
|
|
|
if err != nil {
|
2013-06-28 03:13:07 +08:00
|
|
|
fs.Stats.Error()
|
2015-08-09 03:10:31 +08:00
|
|
|
fs.ErrorLog(f, "Couldn't find root: %s", err)
|
2013-01-24 06:43:20 +08:00
|
|
|
} else {
|
2015-09-04 04:25:55 +08:00
|
|
|
_, err := f.listAll(f.dirCache.RootID(), "", true, false, func(item *drive.File) bool {
|
2013-06-28 15:57:32 +08:00
|
|
|
dir := &fs.Dir{
|
2013-01-24 06:43:20 +08:00
|
|
|
Name: item.Title,
|
|
|
|
Bytes: -1,
|
|
|
|
Count: -1,
|
|
|
|
}
|
2014-07-30 00:50:07 +08:00
|
|
|
dir.When, _ = time.Parse(timeFormatIn, item.ModifiedDate)
|
2013-01-24 06:43:20 +08:00
|
|
|
out <- dir
|
|
|
|
return false
|
|
|
|
})
|
|
|
|
if err != nil {
|
2013-06-28 03:13:07 +08:00
|
|
|
fs.Stats.Error()
|
2015-08-09 03:10:31 +08:00
|
|
|
fs.ErrorLog(f, "ListDir failed: %s", err)
|
2013-01-24 06:43:20 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
2015-02-15 02:48:08 +08:00
|
|
|
// Creates a drive.File info from the parameters passed in and a half
|
2015-11-07 19:14:46 +08:00
|
|
|
// finished Object which must have setMetaData called on it
|
2013-01-15 07:38:18 +08:00
|
|
|
//
|
2015-02-15 02:48:08 +08:00
|
|
|
// Used to create new objects
|
2015-11-07 19:14:46 +08:00
|
|
|
func (f *Fs) createFileInfo(remote string, modTime time.Time, size int64) (*Object, *drive.File, error) {
|
|
|
|
// Temporary Object under construction
|
|
|
|
o := &Object{
|
|
|
|
fs: f,
|
2015-02-15 02:48:08 +08:00
|
|
|
remote: remote,
|
|
|
|
bytes: size,
|
|
|
|
}
|
2014-04-19 00:46:57 +08:00
|
|
|
|
2015-09-23 01:47:16 +08:00
|
|
|
leaf, directoryID, err := f.dirCache.FindPath(remote, true)
|
2014-04-19 00:46:57 +08:00
|
|
|
if err != nil {
|
2015-09-04 04:25:55 +08:00
|
|
|
return nil, nil, err
|
2014-04-19 00:46:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Define the metadata for the file we are going to create.
|
2015-02-03 01:29:08 +08:00
|
|
|
createInfo := &drive.File{
|
2014-04-19 00:46:57 +08:00
|
|
|
Title: leaf,
|
|
|
|
Description: leaf,
|
2015-09-23 01:47:16 +08:00
|
|
|
Parents: []*drive.ParentReference{{Id: directoryID}},
|
2015-03-01 20:38:31 +08:00
|
|
|
MimeType: fs.MimeType(o),
|
|
|
|
ModifiedDate: modTime.Format(timeFormatOut),
|
2014-04-19 00:46:57 +08:00
|
|
|
}
|
2015-02-15 02:48:08 +08:00
|
|
|
return o, createInfo, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Put the object
|
|
|
|
//
|
|
|
|
// This assumes that the object doesn't not already exists - if you
|
|
|
|
// call it when it does exist then it will create a duplicate. Call
|
|
|
|
// object.Update() in this case.
|
|
|
|
//
|
|
|
|
// Copy the reader in to the new object which is returned
|
|
|
|
//
|
|
|
|
// The new object may have been created if an error is returned
|
2015-11-07 19:14:46 +08:00
|
|
|
func (f *Fs) Put(in io.Reader, remote string, modTime time.Time, size int64) (fs.Object, error) {
|
2015-02-15 02:48:08 +08:00
|
|
|
o, createInfo, err := f.createFileInfo(remote, modTime, size)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2014-04-19 00:46:57 +08:00
|
|
|
|
2015-02-03 01:29:08 +08:00
|
|
|
var info *drive.File
|
2015-03-15 01:55:38 +08:00
|
|
|
if size == 0 || size < int64(driveUploadCutoff) {
|
2015-03-02 17:05:23 +08:00
|
|
|
// Make the API request to upload metadata and file data.
|
|
|
|
// Don't retry, return a retry error instead
|
2015-09-12 02:18:41 +08:00
|
|
|
err = f.pacer.CallNoRetry(func() (bool, error) {
|
|
|
|
info, err = f.svc.Files.Insert(createInfo).Media(in).Do()
|
|
|
|
return shouldRetry(err)
|
|
|
|
})
|
2015-03-02 17:05:23 +08:00
|
|
|
if err != nil {
|
2015-09-12 02:18:41 +08:00
|
|
|
return o, err
|
2015-03-02 17:05:23 +08:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Upload the file in chunks
|
|
|
|
info, err = f.Upload(in, size, createInfo.MimeType, createInfo, remote)
|
|
|
|
if err != nil {
|
|
|
|
return o, err
|
|
|
|
}
|
2014-04-19 00:46:57 +08:00
|
|
|
}
|
|
|
|
o.setMetaData(info)
|
|
|
|
return o, nil
|
2013-01-15 07:38:18 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Mkdir creates the container if it doesn't exist
|
2015-11-07 19:14:46 +08:00
|
|
|
func (f *Fs) Mkdir() error {
|
2015-09-04 04:25:55 +08:00
|
|
|
return f.dirCache.FindRoot(true)
|
2013-01-15 07:38:18 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Rmdir deletes the container
|
|
|
|
//
|
|
|
|
// Returns an error if it isn't empty
|
2015-11-07 19:14:46 +08:00
|
|
|
func (f *Fs) Rmdir() error {
|
2015-09-04 04:25:55 +08:00
|
|
|
err := f.dirCache.FindRoot(false)
|
2013-01-15 07:38:18 +08:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-02-03 01:29:08 +08:00
|
|
|
var children *drive.ChildList
|
2015-09-12 02:18:41 +08:00
|
|
|
err = f.pacer.Call(func() (bool, error) {
|
2015-09-04 04:25:55 +08:00
|
|
|
children, err = f.svc.Children.List(f.dirCache.RootID()).MaxResults(10).Do()
|
2015-09-12 02:18:41 +08:00
|
|
|
return shouldRetry(err)
|
2015-02-03 01:29:08 +08:00
|
|
|
})
|
2013-01-15 07:38:18 +08:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if len(children.Items) > 0 {
|
|
|
|
return fmt.Errorf("Directory not empty: %#v", children.Items)
|
|
|
|
}
|
2013-01-19 01:01:47 +08:00
|
|
|
// Delete the directory if it isn't the root
|
|
|
|
if f.root != "" {
|
2015-09-12 02:18:41 +08:00
|
|
|
err = f.pacer.Call(func() (bool, error) {
|
2015-08-16 21:49:58 +08:00
|
|
|
if *driveUseTrash {
|
2015-09-04 04:25:55 +08:00
|
|
|
_, err = f.svc.Files.Trash(f.dirCache.RootID()).Do()
|
2015-08-16 21:49:58 +08:00
|
|
|
} else {
|
2015-09-04 04:25:55 +08:00
|
|
|
err = f.svc.Files.Delete(f.dirCache.RootID()).Do()
|
2015-08-16 21:49:58 +08:00
|
|
|
}
|
2015-09-12 02:18:41 +08:00
|
|
|
return shouldRetry(err)
|
2015-02-03 01:29:08 +08:00
|
|
|
})
|
2013-01-19 01:01:47 +08:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
2015-09-04 04:25:55 +08:00
|
|
|
f.dirCache.ResetRoot()
|
2013-01-19 01:01:47 +08:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-09-23 01:47:16 +08:00
|
|
|
// Precision of the object storage system
|
2015-11-07 19:14:46 +08:00
|
|
|
func (f *Fs) Precision() time.Duration {
|
2013-01-19 07:21:02 +08:00
|
|
|
return time.Millisecond
|
|
|
|
}
|
|
|
|
|
2015-02-15 02:48:08 +08: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
|
2015-11-07 19:14:46 +08:00
|
|
|
func (f *Fs) Copy(src fs.Object, remote string) (fs.Object, error) {
|
|
|
|
srcObj, ok := src.(*Object)
|
2015-02-15 02:48:08 +08:00
|
|
|
if !ok {
|
|
|
|
fs.Debug(src, "Can't copy - not same remote type")
|
|
|
|
return nil, fs.ErrorCantCopy
|
|
|
|
}
|
|
|
|
|
|
|
|
o, createInfo, err := f.createFileInfo(remote, srcObj.ModTime(), srcObj.bytes)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
var info *drive.File
|
2015-11-07 19:14:46 +08:00
|
|
|
err = o.fs.pacer.Call(func() (bool, error) {
|
|
|
|
info, err = o.fs.svc.Files.Copy(srcObj.id, createInfo).Do()
|
2015-09-12 02:18:41 +08:00
|
|
|
return shouldRetry(err)
|
2015-02-15 02:48:08 +08:00
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
o.setMetaData(info)
|
|
|
|
return o, nil
|
|
|
|
}
|
|
|
|
|
2013-01-19 01:01:47 +08:00
|
|
|
// Purge deletes all the files and the container
|
|
|
|
//
|
2014-07-13 16:30:14 +08:00
|
|
|
// 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()
|
2015-11-07 19:14:46 +08:00
|
|
|
func (f *Fs) Purge() error {
|
2013-01-19 01:01:47 +08:00
|
|
|
if f.root == "" {
|
|
|
|
return fmt.Errorf("Can't purge root directory")
|
|
|
|
}
|
2015-09-04 04:25:55 +08:00
|
|
|
err := f.dirCache.FindRoot(false)
|
2013-01-19 01:01:47 +08:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-09-12 02:18:41 +08:00
|
|
|
err = f.pacer.Call(func() (bool, error) {
|
2015-08-16 21:49:58 +08:00
|
|
|
if *driveUseTrash {
|
2015-09-04 04:25:55 +08:00
|
|
|
_, err = f.svc.Files.Trash(f.dirCache.RootID()).Do()
|
2015-08-16 21:49:58 +08:00
|
|
|
} else {
|
2015-09-04 04:25:55 +08:00
|
|
|
err = f.svc.Files.Delete(f.dirCache.RootID()).Do()
|
2015-08-16 21:49:58 +08:00
|
|
|
}
|
2015-09-12 02:18:41 +08:00
|
|
|
return shouldRetry(err)
|
2015-02-03 01:29:08 +08:00
|
|
|
})
|
2015-09-04 04:25:55 +08:00
|
|
|
f.dirCache.ResetRoot()
|
2013-01-15 07:38:18 +08:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-09-01 04:05:51 +08: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
|
2015-11-07 19:14:46 +08:00
|
|
|
func (f *Fs) Move(src fs.Object, remote string) (fs.Object, error) {
|
|
|
|
srcObj, ok := src.(*Object)
|
2015-09-01 04:05:51 +08:00
|
|
|
if !ok {
|
|
|
|
fs.Debug(src, "Can't move - not same remote type")
|
|
|
|
return nil, fs.ErrorCantMove
|
|
|
|
}
|
|
|
|
|
|
|
|
// Temporary FsObject under construction
|
2015-09-23 01:47:16 +08:00
|
|
|
dstObj, dstInfo, err := f.createFileInfo(remote, srcObj.ModTime(), srcObj.bytes)
|
2015-09-01 04:05:51 +08:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Do the move
|
2015-09-23 01:47:16 +08:00
|
|
|
info, err := f.svc.Files.Patch(srcObj.id, dstInfo).SetModifiedDate(true).Do()
|
2015-09-01 04:05:51 +08:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
dstObj.setMetaData(info)
|
|
|
|
return dstObj, nil
|
|
|
|
}
|
|
|
|
|
2015-09-23 01:47:16 +08:00
|
|
|
// DirMove moves src directory to this remote using server side move
|
|
|
|
// operations.
|
2015-09-01 04:05:51 +08: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
|
2015-11-07 19:14:46 +08:00
|
|
|
func (f *Fs) DirMove(src fs.Fs) error {
|
|
|
|
srcFs, ok := src.(*Fs)
|
2015-09-01 04:05:51 +08:00
|
|
|
if !ok {
|
|
|
|
fs.Debug(srcFs, "Can't move directory - not same remote type")
|
|
|
|
return fs.ErrorCantDirMove
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if destination exists
|
2015-09-23 01:47:16 +08:00
|
|
|
f.dirCache.ResetRoot()
|
|
|
|
err := f.dirCache.FindRoot(false)
|
2015-09-01 04:05:51 +08:00
|
|
|
if err == nil {
|
|
|
|
return fs.ErrorDirExists
|
|
|
|
}
|
|
|
|
|
|
|
|
// Find ID of parent
|
2015-09-23 01:47:16 +08:00
|
|
|
leaf, directoryID, err := f.dirCache.FindPath(f.root, true)
|
2015-09-01 04:05:51 +08:00
|
|
|
if err != nil {
|
2015-09-04 04:25:55 +08:00
|
|
|
return err
|
2015-09-01 04:05:51 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Do the move
|
|
|
|
patch := drive.File{
|
|
|
|
Title: leaf,
|
2015-09-23 01:47:16 +08:00
|
|
|
Parents: []*drive.ParentReference{{Id: directoryID}},
|
2015-09-01 04:05:51 +08:00
|
|
|
}
|
2015-09-23 01:47:16 +08:00
|
|
|
_, err = f.svc.Files.Patch(srcFs.dirCache.RootID(), &patch).Do()
|
2015-09-01 04:05:51 +08:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-09-04 04:25:55 +08:00
|
|
|
srcFs.dirCache.ResetRoot()
|
2015-09-01 04:05:51 +08:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2013-01-15 07:38:18 +08:00
|
|
|
// ------------------------------------------------------------
|
|
|
|
|
2015-09-23 01:47:16 +08:00
|
|
|
// Fs returns the parent Fs
|
2015-11-07 19:14:46 +08:00
|
|
|
func (o *Object) Fs() fs.Fs {
|
|
|
|
return o.fs
|
2014-03-29 01:56:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Return a string version
|
2015-11-07 19:14:46 +08:00
|
|
|
func (o *Object) String() string {
|
2014-03-29 01:56:04 +08:00
|
|
|
if o == nil {
|
|
|
|
return "<nil>"
|
|
|
|
}
|
|
|
|
return o.remote
|
|
|
|
}
|
|
|
|
|
2015-09-23 01:47:16 +08:00
|
|
|
// Remote returns the remote path
|
2015-11-07 19:14:46 +08:00
|
|
|
func (o *Object) Remote() string {
|
2013-06-28 03:13:07 +08:00
|
|
|
return o.remote
|
2013-01-15 07:38:18 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Md5sum returns the Md5sum of an object returning a lowercase hex string
|
2015-11-07 19:14:46 +08:00
|
|
|
func (o *Object) Md5sum() (string, error) {
|
2013-06-28 03:13:07 +08:00
|
|
|
return o.md5sum, nil
|
2013-01-15 07:38:18 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Size returns the size of an object in bytes
|
2015-11-07 19:14:46 +08:00
|
|
|
func (o *Object) Size() int64 {
|
2013-06-28 03:13:07 +08:00
|
|
|
return o.bytes
|
2013-01-19 18:11:55 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// setMetaData sets the fs data from a drive.File
|
2015-11-07 19:14:46 +08:00
|
|
|
func (o *Object) setMetaData(info *drive.File) {
|
2013-06-28 03:13:07 +08:00
|
|
|
o.id = info.Id
|
|
|
|
o.url = info.DownloadUrl
|
|
|
|
o.md5sum = strings.ToLower(info.Md5Checksum)
|
|
|
|
o.bytes = info.FileSize
|
|
|
|
o.modifiedDate = info.ModifiedDate
|
2013-01-15 07:38:18 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// readMetaData gets the info if it hasn't already been fetched
|
2015-11-07 19:14:46 +08:00
|
|
|
func (o *Object) readMetaData() (err error) {
|
2013-06-28 03:13:07 +08:00
|
|
|
if o.id != "" {
|
2013-01-15 07:38:18 +08:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-11-07 19:14:46 +08:00
|
|
|
leaf, directoryID, err := o.fs.dirCache.FindPath(o.remote, false)
|
2013-01-15 07:38:18 +08:00
|
|
|
if err != nil {
|
2015-09-04 04:25:55 +08:00
|
|
|
return err
|
2013-01-15 07:38:18 +08:00
|
|
|
}
|
|
|
|
|
2015-11-07 19:14:46 +08:00
|
|
|
found, err := o.fs.listAll(directoryID, leaf, false, true, func(item *drive.File) bool {
|
2013-01-20 19:56:56 +08:00
|
|
|
if item.Title == leaf {
|
2013-06-28 03:13:07 +08:00
|
|
|
o.setMetaData(item)
|
2013-01-20 19:56:56 +08:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
})
|
2013-01-15 07:38:18 +08:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2013-01-20 19:56:56 +08:00
|
|
|
if !found {
|
2013-06-28 15:57:32 +08:00
|
|
|
fs.Debug(o, "Couldn't find object")
|
2013-01-20 19:56:56 +08:00
|
|
|
return fmt.Errorf("Couldn't find object")
|
2013-01-15 07:38:18 +08:00
|
|
|
}
|
2013-01-20 19:56:56 +08:00
|
|
|
return nil
|
2013-01-15 07:38:18 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// 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
|
2015-11-07 19:14:46 +08:00
|
|
|
func (o *Object) ModTime() time.Time {
|
2013-06-28 03:13:07 +08:00
|
|
|
err := o.readMetaData()
|
2013-01-15 07:38:18 +08:00
|
|
|
if err != nil {
|
2013-06-28 15:57:32 +08:00
|
|
|
fs.Log(o, "Failed to read metadata: %s", err)
|
2013-01-15 07:38:18 +08:00
|
|
|
return time.Now()
|
|
|
|
}
|
2014-07-30 00:50:07 +08:00
|
|
|
modTime, err := time.Parse(timeFormatIn, o.modifiedDate)
|
2013-01-15 07:38:18 +08:00
|
|
|
if err != nil {
|
2013-06-28 15:57:32 +08:00
|
|
|
fs.Log(o, "Failed to read mtime from object: %s", err)
|
2013-01-15 07:38:18 +08:00
|
|
|
return time.Now()
|
|
|
|
}
|
|
|
|
return modTime
|
|
|
|
}
|
|
|
|
|
2015-09-23 01:47:16 +08:00
|
|
|
// SetModTime sets the modification time of the drive fs object
|
2015-11-07 19:14:46 +08:00
|
|
|
func (o *Object) SetModTime(modTime time.Time) {
|
2013-06-28 03:13:07 +08:00
|
|
|
err := o.readMetaData()
|
2013-01-15 07:38:18 +08:00
|
|
|
if err != nil {
|
2013-06-28 03:13:07 +08:00
|
|
|
fs.Stats.Error()
|
2015-08-09 03:10:31 +08:00
|
|
|
fs.ErrorLog(o, "Failed to read metadata: %s", err)
|
2013-01-15 07:38:18 +08:00
|
|
|
return
|
|
|
|
}
|
2013-01-19 18:11:55 +08:00
|
|
|
// New metadata
|
2015-02-03 01:29:08 +08:00
|
|
|
updateInfo := &drive.File{
|
2014-07-30 00:50:07 +08:00
|
|
|
ModifiedDate: modTime.Format(timeFormatOut),
|
2013-01-19 18:11:55 +08:00
|
|
|
}
|
2013-01-15 07:38:18 +08:00
|
|
|
// Set modified date
|
2015-02-03 01:29:08 +08:00
|
|
|
var info *drive.File
|
2015-11-07 19:14:46 +08:00
|
|
|
err = o.fs.pacer.Call(func() (bool, error) {
|
|
|
|
info, err = o.fs.svc.Files.Update(o.id, updateInfo).SetModifiedDate(true).Do()
|
2015-09-12 02:18:41 +08:00
|
|
|
return shouldRetry(err)
|
2015-02-03 01:29:08 +08:00
|
|
|
})
|
2013-01-15 07:38:18 +08:00
|
|
|
if err != nil {
|
2013-06-28 03:13:07 +08:00
|
|
|
fs.Stats.Error()
|
2015-08-09 03:10:31 +08:00
|
|
|
fs.ErrorLog(o, "Failed to update remote mtime: %s", err)
|
2015-03-02 17:25:33 +08:00
|
|
|
return
|
2013-01-15 07:38:18 +08:00
|
|
|
}
|
2015-01-05 07:19:59 +08:00
|
|
|
// Update info from read data
|
|
|
|
o.setMetaData(info)
|
2013-01-15 07:38:18 +08:00
|
|
|
}
|
|
|
|
|
2015-09-23 01:47:16 +08:00
|
|
|
// Storable returns a boolean as to whether this object is storable
|
2015-11-07 19:14:46 +08:00
|
|
|
func (o *Object) Storable() bool {
|
2013-01-15 07:38:18 +08:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
// Open an object for read
|
2015-11-07 19:14:46 +08:00
|
|
|
func (o *Object) Open() (in io.ReadCloser, err error) {
|
2015-08-16 21:11:21 +08:00
|
|
|
if o.url == "" {
|
|
|
|
return nil, fmt.Errorf("Forbidden to download - check sharing permission")
|
|
|
|
}
|
2014-07-15 18:15:48 +08:00
|
|
|
req, err := http.NewRequest("GET", o.url, nil)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2014-07-14 01:58:06 +08:00
|
|
|
req.Header.Set("User-Agent", fs.UserAgent)
|
2015-02-03 01:29:08 +08:00
|
|
|
var res *http.Response
|
2015-11-07 19:14:46 +08:00
|
|
|
err = o.fs.pacer.Call(func() (bool, error) {
|
|
|
|
res, err = o.fs.client.Do(req)
|
2015-09-12 02:18:41 +08:00
|
|
|
return shouldRetry(err)
|
2015-02-03 01:29:08 +08:00
|
|
|
})
|
2013-01-15 07:38:18 +08:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if res.StatusCode != 200 {
|
2014-07-26 01:19:49 +08:00
|
|
|
_ = res.Body.Close() // ignore error
|
2013-01-15 07:38:18 +08:00
|
|
|
return nil, fmt.Errorf("Bad response: %d: %s", res.StatusCode, res.Status)
|
|
|
|
}
|
|
|
|
return res.Body, nil
|
|
|
|
}
|
|
|
|
|
2014-04-19 00:46:57 +08:00
|
|
|
// Update the already existing object
|
2014-04-19 00:04:21 +08:00
|
|
|
//
|
|
|
|
// Copy the reader into the object updating modTime and size
|
|
|
|
//
|
|
|
|
// The new object may have been created if an error is returned
|
2015-11-07 19:14:46 +08:00
|
|
|
func (o *Object) Update(in io.Reader, modTime time.Time, size int64) error {
|
2015-02-03 01:29:08 +08:00
|
|
|
updateInfo := &drive.File{
|
2014-04-19 00:46:57 +08:00
|
|
|
Id: o.id,
|
2014-07-30 00:50:07 +08:00
|
|
|
ModifiedDate: modTime.Format(timeFormatOut),
|
2014-04-19 00:04:21 +08:00
|
|
|
}
|
|
|
|
|
2014-04-19 00:46:57 +08:00
|
|
|
// Make the API request to upload metadata and file data.
|
2015-02-03 01:29:08 +08:00
|
|
|
var err error
|
|
|
|
var info *drive.File
|
2015-03-15 01:55:38 +08:00
|
|
|
if size == 0 || size < int64(driveUploadCutoff) {
|
2015-03-02 17:05:23 +08:00
|
|
|
// Don't retry, return a retry error instead
|
2015-11-07 19:14:46 +08:00
|
|
|
err = o.fs.pacer.CallNoRetry(func() (bool, error) {
|
|
|
|
info, err = o.fs.svc.Files.Update(updateInfo.Id, updateInfo).SetModifiedDate(true).Media(in).Do()
|
2015-09-12 02:18:41 +08:00
|
|
|
return shouldRetry(err)
|
|
|
|
})
|
2015-03-02 17:05:23 +08:00
|
|
|
if err != nil {
|
2015-09-12 02:18:41 +08:00
|
|
|
return err
|
2015-03-02 17:05:23 +08:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Upload the file in chunks
|
2015-11-07 19:14:46 +08:00
|
|
|
info, err = o.fs.Upload(in, size, fs.MimeType(o), updateInfo, o.remote)
|
2015-03-02 17:05:23 +08:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2014-04-19 00:04:21 +08:00
|
|
|
}
|
|
|
|
o.setMetaData(info)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2013-01-15 07:38:18 +08:00
|
|
|
// Remove an object
|
2015-11-07 19:14:46 +08:00
|
|
|
func (o *Object) Remove() error {
|
2015-02-03 01:29:08 +08:00
|
|
|
var err error
|
2015-11-07 19:14:46 +08:00
|
|
|
err = o.fs.pacer.Call(func() (bool, error) {
|
2015-08-16 21:49:58 +08:00
|
|
|
if *driveUseTrash {
|
2015-11-07 19:14:46 +08:00
|
|
|
_, err = o.fs.svc.Files.Trash(o.id).Do()
|
2015-08-16 21:49:58 +08:00
|
|
|
} else {
|
2015-11-07 19:14:46 +08:00
|
|
|
err = o.fs.svc.Files.Delete(o.id).Do()
|
2015-08-16 21:49:58 +08:00
|
|
|
}
|
2015-09-12 02:18:41 +08:00
|
|
|
return shouldRetry(err)
|
2015-02-03 01:29:08 +08:00
|
|
|
})
|
|
|
|
return err
|
2013-01-15 07:38:18 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Check the interfaces are satisfied
|
2015-09-01 04:05:51 +08:00
|
|
|
var (
|
2015-11-07 19:14:46 +08:00
|
|
|
_ fs.Fs = (*Fs)(nil)
|
|
|
|
_ fs.Purger = (*Fs)(nil)
|
|
|
|
_ fs.Copier = (*Fs)(nil)
|
|
|
|
_ fs.Mover = (*Fs)(nil)
|
|
|
|
_ fs.DirMover = (*Fs)(nil)
|
|
|
|
_ fs.Object = (*Object)(nil)
|
2015-09-01 04:05:51 +08:00
|
|
|
)
|