mirror of
https://github.com/rclone/rclone.git
synced 2024-11-23 23:23:12 +08:00
36 lines
1020 B
Go
36 lines
1020 B
Go
package dbhashsum
|
|
|
|
import (
|
|
"context"
|
|
"os"
|
|
|
|
"github.com/rclone/rclone/backend/dropbox/dbhash"
|
|
"github.com/rclone/rclone/cmd"
|
|
"github.com/rclone/rclone/fs/hash"
|
|
"github.com/rclone/rclone/fs/operations"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func init() {
|
|
cmd.Root.AddCommand(commandDefinition)
|
|
}
|
|
|
|
var commandDefinition = &cobra.Command{
|
|
Use: "dbhashsum remote:path",
|
|
Short: `Produces a Dropbox hash file for all the objects in the path.`,
|
|
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 {
|
|
dbHashType := hash.RegisterHash("Dropbox", 64, dbhash.New)
|
|
return operations.HashLister(context.Background(), dbHashType, fsrc, os.Stdout)
|
|
})
|
|
},
|
|
}
|