2017-05-30 20:26:06 +02:00
|
|
|
package dbhashsum
|
|
|
|
|
|
|
|
import (
|
2019-06-17 10:34:30 +02:00
|
|
|
"context"
|
2017-05-30 20:26:06 +02:00
|
|
|
|
2020-01-29 20:49:42 +01:00
|
|
|
"github.com/rclone/rclone/backend/dropbox"
|
2019-07-28 19:47:38 +02:00
|
|
|
"github.com/rclone/rclone/cmd"
|
2020-12-18 13:45:58 +01:00
|
|
|
"github.com/rclone/rclone/cmd/hashsum"
|
2020-04-23 12:05:36 +02:00
|
|
|
"github.com/rclone/rclone/fs"
|
2019-07-28 19:47:38 +02:00
|
|
|
"github.com/rclone/rclone/fs/operations"
|
2017-05-30 20:26:06 +02:00
|
|
|
"github.com/spf13/cobra"
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
2019-10-11 17:58:11 +02:00
|
|
|
cmd.Root.AddCommand(commandDefinition)
|
2020-12-18 13:45:58 +01:00
|
|
|
cmdFlags := commandDefinition.Flags()
|
|
|
|
hashsum.AddHashFlags(cmdFlags)
|
2017-05-30 20:26:06 +02:00
|
|
|
}
|
|
|
|
|
2019-10-11 17:58:11 +02:00
|
|
|
var commandDefinition = &cobra.Command{
|
2017-05-30 20:26:06 +02:00
|
|
|
Use: "dbhashsum remote:path",
|
2017-12-03 08:38:59 +01:00
|
|
|
Short: `Produces a Dropbox hash file for all the objects in the path.`,
|
2017-05-30 20:26:06 +02:00
|
|
|
Long: `
|
|
|
|
Produces a Dropbox hash file for all the objects in the path. The
|
|
|
|
hashes are calculated according to [Dropbox content hash
|
|
|
|
rules](https://www.dropbox.com/developers/reference/content-hash).
|
|
|
|
The output is in the same format as md5sum and sha1sum.
|
2020-12-18 13:45:58 +01:00
|
|
|
|
|
|
|
By default, the hash is requested from the remote. If Dropbox hash is
|
|
|
|
not supported by the remote, no hash will be returned. With the
|
|
|
|
download flag, the file will be downloaded from the remote and
|
|
|
|
hashed locally enabling Dropbox hash for any remote.
|
2017-05-30 20:26:06 +02:00
|
|
|
`,
|
2020-04-29 11:12:12 +02:00
|
|
|
Hidden: true,
|
2017-05-30 20:26:06 +02:00
|
|
|
Run: func(command *cobra.Command, args []string) {
|
|
|
|
cmd.CheckArgs(1, 1, command, args)
|
|
|
|
fsrc := cmd.NewFsSrc(args)
|
2020-04-23 12:05:36 +02:00
|
|
|
fs.Logf(nil, `"rclone dbhashsum" is deprecated, use "rclone hashsum %v %s" instead`, dropbox.DbHashType, args[0])
|
2017-05-30 20:26:06 +02:00
|
|
|
cmd.Run(false, false, command, func() error {
|
2020-12-18 13:45:58 +01:00
|
|
|
if hashsum.HashsumOutfile == "" {
|
|
|
|
return operations.HashLister(context.Background(), dropbox.DbHashType, hashsum.OutputBase64, hashsum.DownloadFlag, fsrc, nil)
|
|
|
|
}
|
|
|
|
output, close, err := hashsum.GetHashsumOutput(hashsum.HashsumOutfile)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer close()
|
|
|
|
return operations.HashLister(context.Background(), dropbox.DbHashType, hashsum.OutputBase64, hashsum.DownloadFlag, fsrc, output)
|
2017-05-30 20:26:06 +02:00
|
|
|
})
|
|
|
|
},
|
|
|
|
}
|