2017-11-20 12:16:05 +01:00
|
|
|
package touch
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2019-06-17 10:34:30 +02:00
|
|
|
"context"
|
2017-11-20 12:16:05 +01:00
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/pkg/errors"
|
2019-07-28 19:47:38 +02:00
|
|
|
"github.com/rclone/rclone/cmd"
|
|
|
|
"github.com/rclone/rclone/fs"
|
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/object"
|
2021-05-22 21:06:24 +02:00
|
|
|
"github.com/rclone/rclone/fs/operations"
|
2017-11-20 12:16:05 +01:00
|
|
|
"github.com/spf13/cobra"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
notCreateNewFile bool
|
|
|
|
timeAsArgument string
|
2020-03-17 13:28:23 +01:00
|
|
|
localTime bool
|
2021-05-22 21:06:24 +02:00
|
|
|
recursive bool
|
2017-11-20 12:16:05 +01:00
|
|
|
)
|
|
|
|
|
2020-06-10 12:00:25 +02:00
|
|
|
const (
|
|
|
|
defaultLayout string = "060102"
|
2021-05-22 21:06:24 +02:00
|
|
|
layoutDateWithTime string = "2006-01-02T15:04:05"
|
|
|
|
layoutDateWithTimeNano string = "2006-01-02T15:04:05.999999999"
|
2020-06-10 12:00:25 +02:00
|
|
|
)
|
2017-11-20 12:16:05 +01: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()
|
2021-08-16 11:30:01 +02:00
|
|
|
flags.BoolVarP(cmdFlags, ¬CreateNewFile, "no-create", "C", false, "Do not create the file if it does not exist (implied with --recursive)")
|
|
|
|
flags.StringVarP(cmdFlags, &timeAsArgument, "timestamp", "t", "", "Use specified time instead of the current time of day")
|
|
|
|
flags.BoolVarP(cmdFlags, &localTime, "localtime", "", false, "Use localtime for timestamp, not UTC")
|
|
|
|
flags.BoolVarP(cmdFlags, &recursive, "recursive", "R", false, "Recursively touch all files")
|
2017-11-20 12:16:05 +01:00
|
|
|
}
|
|
|
|
|
2019-10-11 17:58:11 +02:00
|
|
|
var commandDefinition = &cobra.Command{
|
2017-11-20 12:16:05 +01:00
|
|
|
Use: "touch remote:path",
|
|
|
|
Short: `Create new file or change file modification time.`,
|
2020-03-17 13:28:23 +01:00
|
|
|
Long: `
|
2021-05-22 21:06:24 +02:00
|
|
|
Set the modification time on file(s) as specified by remote:path to
|
2020-03-17 13:28:23 +01:00
|
|
|
have the current time.
|
|
|
|
|
2021-05-22 21:06:24 +02:00
|
|
|
If remote:path does not exist then a zero sized file will be created,
|
|
|
|
unless ` + "`--no-create`" + ` or ` + "`--recursive`" + ` is provided.
|
2020-03-17 13:28:23 +01:00
|
|
|
|
2021-05-22 21:06:24 +02:00
|
|
|
If ` + "`--recursive`" + ` is used then recursively sets the modification
|
|
|
|
time on all existing files that is found under the path. Filters are supported,
|
|
|
|
and you can test with the ` + "`--dry-run`" + ` or the ` + "`--interactive`" + ` flag.
|
|
|
|
|
|
|
|
If ` + "`--timestamp`" + ` is used then sets the modification time to that
|
2020-03-17 13:28:23 +01:00
|
|
|
time instead of the current time. Times may be specified as one of:
|
|
|
|
|
2020-10-13 23:49:58 +02:00
|
|
|
- 'YYMMDD' - e.g. 17.10.30
|
|
|
|
- 'YYYY-MM-DDTHH:MM:SS' - e.g. 2006-01-02T15:04:05
|
|
|
|
- 'YYYY-MM-DDTHH:MM:SS.SSS' - e.g. 2006-01-02T15:04:05.123456789
|
2020-03-17 13:28:23 +01:00
|
|
|
|
2021-05-22 21:06:24 +02:00
|
|
|
Note that value of ` + "`--timestamp`" + ` is in UTC. If you want local time
|
|
|
|
then add the ` + "`--localtime`" + ` flag.
|
2020-03-17 13:28:23 +01:00
|
|
|
`,
|
2017-11-20 12:16:05 +01:00
|
|
|
Run: func(command *cobra.Command, args []string) {
|
|
|
|
cmd.CheckArgs(1, 1, command, args)
|
2021-05-22 21:06:24 +02:00
|
|
|
f, fileName := cmd.NewFsFile(args[0])
|
2017-11-20 12:16:05 +01:00
|
|
|
cmd.Run(true, false, command, func() error {
|
2021-05-22 21:06:24 +02:00
|
|
|
return Touch(context.Background(), f, fileName)
|
2017-11-20 12:16:05 +01:00
|
|
|
})
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2021-05-22 21:06:24 +02:00
|
|
|
// parseTimeArgument parses a timestamp string according to specific layouts
|
|
|
|
func parseTimeArgument(timeString string) (time.Time, error) {
|
|
|
|
layout := defaultLayout
|
|
|
|
if len(timeString) == len(layoutDateWithTime) {
|
|
|
|
layout = layoutDateWithTime
|
|
|
|
} else if len(timeString) > len(layoutDateWithTime) {
|
|
|
|
layout = layoutDateWithTimeNano
|
|
|
|
}
|
|
|
|
if localTime {
|
|
|
|
return time.ParseInLocation(layout, timeString, time.Local)
|
|
|
|
}
|
|
|
|
return time.Parse(layout, timeString)
|
|
|
|
}
|
|
|
|
|
|
|
|
// timeOfTouch returns the time value set on files
|
|
|
|
func timeOfTouch() (time.Time, error) {
|
|
|
|
var t time.Time
|
2017-11-20 12:16:05 +01:00
|
|
|
if timeAsArgument != "" {
|
2021-05-22 21:06:24 +02:00
|
|
|
var err error
|
|
|
|
if t, err = parseTimeArgument(timeAsArgument); err != nil {
|
|
|
|
return t, errors.Wrap(err, "failed to parse timestamp argument")
|
2020-03-17 13:28:23 +01:00
|
|
|
}
|
2021-05-22 21:06:24 +02:00
|
|
|
} else {
|
|
|
|
t = time.Now()
|
|
|
|
}
|
|
|
|
return t, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// createEmptyObject creates an empty object (file) with specified timestamp
|
|
|
|
func createEmptyObject(ctx context.Context, remote string, modTime time.Time, f fs.Fs) error {
|
|
|
|
var buffer []byte
|
|
|
|
src := object.NewStaticObjectInfo(remote, modTime, int64(len(buffer)), true, nil, f)
|
|
|
|
_, err := f.Put(ctx, bytes.NewBuffer(buffer), src)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Touch create new file or change file modification time.
|
|
|
|
func Touch(ctx context.Context, f fs.Fs, fileName string) error {
|
|
|
|
t, err := timeOfTouch()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
2017-11-20 12:16:05 +01:00
|
|
|
}
|
2021-05-22 21:06:24 +02:00
|
|
|
fs.Debugf(nil, "Touch time %v", t)
|
|
|
|
file, err := f.NewObject(ctx, fileName)
|
2017-11-20 12:16:05 +01:00
|
|
|
if err != nil {
|
2021-05-22 21:06:24 +02:00
|
|
|
if errors.Cause(err) == fs.ErrorObjectNotFound {
|
|
|
|
// Touch single non-existent file
|
|
|
|
if notCreateNewFile {
|
|
|
|
fs.Logf(f, "Not touching non-existent file due to --no-create")
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
if recursive {
|
|
|
|
fs.Logf(f, "Not touching non-existent file due to --recursive")
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
if operations.SkipDestructive(ctx, f, "touch (create)") {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
fs.Debugf(f, "Touching (creating)")
|
|
|
|
if err = createEmptyObject(ctx, fileName, t, f); err != nil {
|
|
|
|
return errors.Wrap(err, "failed to touch (create)")
|
2017-11-20 12:16:05 +01:00
|
|
|
}
|
|
|
|
}
|
2021-10-21 18:22:58 +02:00
|
|
|
if errors.Cause(err) == fs.ErrorIsDir {
|
2021-05-22 21:06:24 +02:00
|
|
|
if recursive {
|
|
|
|
// Touch existing directory, recursive
|
|
|
|
fs.Debugf(nil, "Touching files in directory recursively")
|
|
|
|
return operations.TouchDir(ctx, f, t, true)
|
|
|
|
}
|
|
|
|
// Touch existing directory without recursing
|
|
|
|
fs.Debugf(nil, "Touching files in directory non-recursively")
|
|
|
|
return operations.TouchDir(ctx, f, t, false)
|
|
|
|
}
|
|
|
|
return err
|
2017-11-20 12:16:05 +01:00
|
|
|
}
|
2021-05-22 21:06:24 +02:00
|
|
|
// Touch single existing file
|
|
|
|
if !operations.SkipDestructive(ctx, fileName, "touch") {
|
|
|
|
fs.Debugf(f, "Touching %q", fileName)
|
|
|
|
err = file.SetModTime(ctx, t)
|
|
|
|
if err != nil {
|
|
|
|
return errors.Wrap(err, "failed to touch")
|
|
|
|
}
|
2017-11-20 12:16:05 +01:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|