2022-08-28 11:21:57 +00:00
|
|
|
// Package rcd provides the rcd command.
|
2018-10-27 15:02:45 +00:00
|
|
|
package rcd
|
|
|
|
|
|
|
|
import (
|
2020-11-05 15:18:51 +00:00
|
|
|
"context"
|
2018-10-27 15:02:45 +00:00
|
|
|
"log"
|
2021-03-02 10:09:33 +00:00
|
|
|
"sync"
|
2018-10-27 15:02:45 +00:00
|
|
|
|
2021-03-02 10:09:33 +00:00
|
|
|
sysdnotify "github.com/iguanesolutions/go-systemd/v5/notify"
|
2019-07-28 17:47:38 +00:00
|
|
|
"github.com/rclone/rclone/cmd"
|
|
|
|
"github.com/rclone/rclone/fs/rc/rcflags"
|
|
|
|
"github.com/rclone/rclone/fs/rc/rcserver"
|
2021-03-02 10:09:33 +00:00
|
|
|
"github.com/rclone/rclone/lib/atexit"
|
2022-12-11 14:47:47 +00:00
|
|
|
libhttp "github.com/rclone/rclone/lib/http"
|
2018-10-27 15:02:45 +00:00
|
|
|
"github.com/spf13/cobra"
|
|
|
|
)
|
|
|
|
|
2023-01-11 05:05:44 +00:00
|
|
|
// flagPrefix is the prefix used to uniquely identify command line flags.
|
|
|
|
const flagPrefix = "rc-"
|
|
|
|
|
2018-10-27 15:02:45 +00:00
|
|
|
func init() {
|
2023-01-11 05:05:44 +00:00
|
|
|
rcflags.AddFlags(cmd.Root.Flags(), flagPrefix)
|
2019-08-04 11:32:37 +00:00
|
|
|
cmd.Root.AddCommand(commandDefinition)
|
2018-10-27 15:02:45 +00:00
|
|
|
}
|
|
|
|
|
2019-08-04 11:32:37 +00:00
|
|
|
var commandDefinition = &cobra.Command{
|
2018-10-27 15:02:45 +00:00
|
|
|
Use: "rcd <path to files to serve>*",
|
|
|
|
Short: `Run rclone listening to remote control commands only.`,
|
|
|
|
Long: `
|
2019-01-29 14:12:26 +00:00
|
|
|
This runs rclone so that it only listens to remote control commands.
|
2018-10-27 15:02:45 +00:00
|
|
|
|
|
|
|
This is useful if you are controlling rclone via the rc API.
|
|
|
|
|
|
|
|
If you pass in a path to a directory, rclone will serve that directory
|
|
|
|
for GET requests on the URL passed in. It will also open the URL in
|
|
|
|
the browser when rclone is run.
|
2018-10-28 14:31:24 +00:00
|
|
|
|
|
|
|
See the [rc documentation](/rc/) for more info on the rc flags.
|
2023-01-11 05:05:44 +00:00
|
|
|
` + libhttp.Help(flagPrefix) + libhttp.TemplateHelp(flagPrefix) + libhttp.AuthHelp(flagPrefix),
|
2022-11-26 22:40:49 +00:00
|
|
|
Annotations: map[string]string{
|
|
|
|
"versionIntroduced": "v1.45",
|
|
|
|
},
|
2018-10-27 15:02:45 +00:00
|
|
|
Run: func(command *cobra.Command, args []string) {
|
|
|
|
cmd.CheckArgs(0, 1, command, args)
|
|
|
|
if rcflags.Opt.Enabled {
|
|
|
|
log.Fatalf("Don't supply --rc flag when using rcd")
|
|
|
|
}
|
2019-08-04 11:32:37 +00:00
|
|
|
|
2018-10-27 15:02:45 +00:00
|
|
|
// Start the rc
|
|
|
|
rcflags.Opt.Enabled = true
|
|
|
|
if len(args) > 0 {
|
|
|
|
rcflags.Opt.Files = args[0]
|
|
|
|
}
|
2019-08-04 11:32:37 +00:00
|
|
|
|
2020-11-05 15:18:51 +00:00
|
|
|
s, err := rcserver.Start(context.Background(), &rcflags.Opt)
|
2018-11-01 17:20:04 +00:00
|
|
|
if err != nil {
|
|
|
|
log.Fatalf("Failed to start remote control: %v", err)
|
|
|
|
}
|
|
|
|
if s == nil {
|
|
|
|
log.Fatal("rc server not configured")
|
|
|
|
}
|
2019-08-04 11:32:37 +00:00
|
|
|
|
2021-03-02 10:09:33 +00:00
|
|
|
// Notify stopping on exit
|
|
|
|
var finaliseOnce sync.Once
|
|
|
|
finalise := func() {
|
|
|
|
finaliseOnce.Do(func() {
|
|
|
|
_ = sysdnotify.Stopping()
|
|
|
|
})
|
|
|
|
}
|
|
|
|
fnHandle := atexit.Register(finalise)
|
|
|
|
defer atexit.Unregister(fnHandle)
|
|
|
|
|
|
|
|
// Notify ready to systemd
|
|
|
|
if err := sysdnotify.Ready(); err != nil {
|
|
|
|
log.Fatalf("failed to notify ready to systemd: %v", err)
|
|
|
|
}
|
|
|
|
|
2018-11-01 17:20:04 +00:00
|
|
|
s.Wait()
|
2021-03-02 10:09:33 +00:00
|
|
|
finalise()
|
2018-10-27 15:02:45 +00:00
|
|
|
},
|
|
|
|
}
|