2022-08-28 19:21:57 +08:00
|
|
|
// Package rcd provides the rcd command.
|
2018-10-27 23:02:45 +08:00
|
|
|
package rcd
|
|
|
|
|
|
|
|
import (
|
2020-11-05 23:18:51 +08:00
|
|
|
"context"
|
2018-10-27 23:02:45 +08:00
|
|
|
|
2019-07-29 01:47:38 +08:00
|
|
|
"github.com/rclone/rclone/cmd"
|
2024-08-18 22:58:35 +08:00
|
|
|
"github.com/rclone/rclone/fs"
|
2024-07-04 17:47:05 +08:00
|
|
|
"github.com/rclone/rclone/fs/rc"
|
2019-07-29 01:47:38 +08:00
|
|
|
"github.com/rclone/rclone/fs/rc/rcflags"
|
|
|
|
"github.com/rclone/rclone/fs/rc/rcserver"
|
2022-12-11 22:47:47 +08:00
|
|
|
libhttp "github.com/rclone/rclone/lib/http"
|
2023-09-04 23:32:04 +08:00
|
|
|
"github.com/rclone/rclone/lib/systemd"
|
2018-10-27 23:02:45 +08:00
|
|
|
"github.com/spf13/cobra"
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
2019-08-04 19:32:37 +08:00
|
|
|
cmd.Root.AddCommand(commandDefinition)
|
2018-10-27 23:02:45 +08:00
|
|
|
}
|
|
|
|
|
2019-08-04 19:32:37 +08:00
|
|
|
var commandDefinition = &cobra.Command{
|
2018-10-27 23:02:45 +08:00
|
|
|
Use: "rcd <path to files to serve>*",
|
|
|
|
Short: `Run rclone listening to remote control commands only.`,
|
2024-04-05 19:27:33 +08:00
|
|
|
Long: `This runs rclone so that it only listens to remote control commands.
|
2018-10-27 23:02:45 +08: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 22:31:24 +08:00
|
|
|
|
|
|
|
See the [rc documentation](/rc/) for more info on the rc flags.
|
2024-04-05 19:27:33 +08:00
|
|
|
|
2023-03-23 20:04:17 +08:00
|
|
|
` + libhttp.Help(rcflags.FlagPrefix) + libhttp.TemplateHelp(rcflags.FlagPrefix) + libhttp.AuthHelp(rcflags.FlagPrefix),
|
2022-11-27 06:40:49 +08:00
|
|
|
Annotations: map[string]string{
|
|
|
|
"versionIntroduced": "v1.45",
|
2023-07-11 01:34:10 +08:00
|
|
|
"groups": "RC",
|
2022-11-27 06:40:49 +08:00
|
|
|
},
|
2018-10-27 23:02:45 +08:00
|
|
|
Run: func(command *cobra.Command, args []string) {
|
|
|
|
cmd.CheckArgs(0, 1, command, args)
|
2024-07-04 17:47:05 +08:00
|
|
|
if rc.Opt.Enabled {
|
2024-08-18 22:58:35 +08:00
|
|
|
fs.Fatalf(nil, "Don't supply --rc flag when using rcd")
|
2018-10-27 23:02:45 +08:00
|
|
|
}
|
2019-08-04 19:32:37 +08:00
|
|
|
|
2018-10-27 23:02:45 +08:00
|
|
|
// Start the rc
|
2024-07-04 17:47:05 +08:00
|
|
|
rc.Opt.Enabled = true
|
2018-10-27 23:02:45 +08:00
|
|
|
if len(args) > 0 {
|
2024-07-04 17:47:05 +08:00
|
|
|
rc.Opt.Files = args[0]
|
2018-10-27 23:02:45 +08:00
|
|
|
}
|
2019-08-04 19:32:37 +08:00
|
|
|
|
2024-07-04 17:47:05 +08:00
|
|
|
s, err := rcserver.Start(context.Background(), &rc.Opt)
|
2018-11-02 01:20:04 +08:00
|
|
|
if err != nil {
|
2024-08-18 22:58:35 +08:00
|
|
|
fs.Fatalf(nil, "Failed to start remote control: %v", err)
|
2018-11-02 01:20:04 +08:00
|
|
|
}
|
|
|
|
if s == nil {
|
2024-08-18 22:58:35 +08:00
|
|
|
fs.Fatal(nil, "rc server not configured")
|
2018-11-02 01:20:04 +08:00
|
|
|
}
|
2019-08-04 19:32:37 +08:00
|
|
|
|
2021-03-02 18:09:33 +08:00
|
|
|
// Notify stopping on exit
|
2023-09-04 23:32:04 +08:00
|
|
|
defer systemd.Notify()()
|
2021-03-02 18:09:33 +08:00
|
|
|
|
2018-11-02 01:20:04 +08:00
|
|
|
s.Wait()
|
2018-10-27 23:02:45 +08:00
|
|
|
},
|
|
|
|
}
|