2016-08-05 18:12:27 +02:00
|
|
|
package check
|
|
|
|
|
|
|
|
import (
|
2019-06-17 10:34:30 +02:00
|
|
|
"context"
|
|
|
|
|
2019-07-28 19:47:38 +02:00
|
|
|
"github.com/rclone/rclone/cmd"
|
2019-10-11 17:55:04 +02:00
|
|
|
"github.com/rclone/rclone/fs/config/flags"
|
2019-07-28 19:47:38 +02:00
|
|
|
"github.com/rclone/rclone/fs/operations"
|
2016-08-05 18:12:27 +02:00
|
|
|
"github.com/spf13/cobra"
|
|
|
|
)
|
|
|
|
|
2017-02-13 11:48:26 +01:00
|
|
|
// Globals
|
|
|
|
var (
|
|
|
|
download = false
|
2018-05-29 19:07:04 +02:00
|
|
|
oneway = false
|
2017-02-13 11:48:26 +01:00
|
|
|
)
|
|
|
|
|
2016-08-05 18:12:27 +02:00
|
|
|
func init() {
|
2019-10-11 17:58:11 +02:00
|
|
|
cmd.Root.AddCommand(commandDefinition)
|
2019-10-11 17:55:04 +02:00
|
|
|
cmdFlags := commandDefinition.Flags()
|
|
|
|
flags.BoolVarP(cmdFlags, &download, "download", "", download, "Check by downloading rather than with hash.")
|
|
|
|
flags.BoolVarP(cmdFlags, &oneway, "one-way", "", oneway, "Check one way only, source files must exist on remote")
|
2016-08-05 18:12:27 +02:00
|
|
|
}
|
|
|
|
|
2019-10-11 17:58:11 +02:00
|
|
|
var commandDefinition = &cobra.Command{
|
2016-08-05 18:12:27 +02:00
|
|
|
Use: "check source:path dest:path",
|
|
|
|
Short: `Checks the files in the source and destination match.`,
|
|
|
|
Long: `
|
2017-02-13 11:48:26 +01:00
|
|
|
Checks the files in the source and destination match. It compares
|
|
|
|
sizes and hashes (MD5 or SHA1) and logs a report of files which don't
|
|
|
|
match. It doesn't alter the source or destination.
|
|
|
|
|
|
|
|
If you supply the --size-only flag, it will only compare the sizes not
|
|
|
|
the hashes as well. Use this for a quick check.
|
2016-08-05 18:12:27 +02:00
|
|
|
|
2017-02-13 11:48:26 +01:00
|
|
|
If you supply the --download flag, it will download the data from
|
|
|
|
both remotes and check them against each other on the fly. This can
|
|
|
|
be useful for remotes that don't support hashes or if you really want
|
|
|
|
to check all the data.
|
2018-05-29 19:07:04 +02:00
|
|
|
|
|
|
|
If you supply the --one-way flag, it will only check that files in source
|
|
|
|
match the files in destination, not the other way around. Meaning extra files in
|
|
|
|
destination that are not in the source will not trigger an error.
|
2016-08-05 18:12:27 +02:00
|
|
|
`,
|
|
|
|
Run: func(command *cobra.Command, args []string) {
|
|
|
|
cmd.CheckArgs(2, 2, command, args)
|
|
|
|
fsrc, fdst := cmd.NewFsSrcDst(args)
|
2016-12-04 17:52:24 +01:00
|
|
|
cmd.Run(false, false, command, func() error {
|
2017-02-13 11:48:26 +01:00
|
|
|
if download {
|
2019-06-17 10:34:30 +02:00
|
|
|
return operations.CheckDownload(context.Background(), fdst, fsrc, oneway)
|
2017-02-13 11:48:26 +01:00
|
|
|
}
|
2019-06-17 10:34:30 +02:00
|
|
|
return operations.Check(context.Background(), fdst, fsrc, oneway)
|
2016-08-05 18:12:27 +02:00
|
|
|
})
|
|
|
|
},
|
|
|
|
}
|