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
|
|
|
"os"
|
|
|
|
|
2019-09-23 15:32:36 +02:00
|
|
|
"github.com/rclone/rclone/backend/dropbox/dbhash"
|
2019-07-28 19:47:38 +02:00
|
|
|
"github.com/rclone/rclone/cmd"
|
2019-09-23 15:32:36 +02:00
|
|
|
"github.com/rclone/rclone/fs/hash"
|
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() {
|
|
|
|
cmd.Root.AddCommand(commandDefintion)
|
|
|
|
}
|
|
|
|
|
|
|
|
var commandDefintion = &cobra.Command{
|
|
|
|
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.
|
|
|
|
`,
|
|
|
|
Run: func(command *cobra.Command, args []string) {
|
|
|
|
cmd.CheckArgs(1, 1, command, args)
|
|
|
|
fsrc := cmd.NewFsSrc(args)
|
|
|
|
cmd.Run(false, false, command, func() error {
|
2019-09-23 15:32:36 +02:00
|
|
|
dbHashType := hash.RegisterHash("Dropbox", 64, dbhash.New)
|
|
|
|
return operations.HashLister(context.Background(), dbHashType, fsrc, os.Stdout)
|
2017-05-30 20:26:06 +02:00
|
|
|
})
|
|
|
|
},
|
|
|
|
}
|