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"
|
|
|
|
|
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"
|
|
|
|
"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)
|
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.
|
|
|
|
`,
|
|
|
|
Run: func(command *cobra.Command, args []string) {
|
|
|
|
cmd.CheckArgs(1, 1, command, args)
|
|
|
|
fsrc := cmd.NewFsSrc(args)
|
|
|
|
cmd.Run(false, false, command, func() error {
|
2020-01-29 20:49:42 +01:00
|
|
|
return operations.HashLister(context.Background(), dropbox.DbHashType, fsrc, os.Stdout)
|
2017-05-30 20:26:06 +02:00
|
|
|
})
|
|
|
|
},
|
|
|
|
}
|