// Implement config options reading and writing // // This is done here rather than in fs/fs.go so we don't cause a circular dependency package rc import ( "context" "github.com/pkg/errors" ) var ( optionBlock = map[string]interface{}{} optionReload = map[string]func() error{} ) // AddOption adds an option set func AddOption(name string, option interface{}) { optionBlock[name] = option } // AddOptionReload adds an option set with a reload function to be // called when options are changed func AddOptionReload(name string, option interface{}, reload func() error) { optionBlock[name] = option optionReload[name] = reload } func init() { Add(Call{ Path: "options/blocks", Fn: rcOptionsBlocks, Title: "List all the option blocks", Help: `Returns - options - a list of the options block names`, }) } // Show the list of all the option blocks func rcOptionsBlocks(ctx context.Context, in Params) (out Params, err error) { options := []string{} for name := range optionBlock { options = append(options, name) } out = make(Params) out["options"] = options return out, nil } func init() { Add(Call{ Path: "options/get", Fn: rcOptionsGet, Title: "Get all the options", Help: `Returns an object where keys are option block names and values are an object with the current option values in. This shows the internal names of the option within rclone which should map to the external options very easily with a few exceptions. `, }) } // Show the list of all the option blocks func rcOptionsGet(ctx context.Context, in Params) (out Params, err error) { out = make(Params) for name, options := range optionBlock { out[name] = options } return out, nil } func init() { Add(Call{ Path: "options/set", Fn: rcOptionsSet, Title: "Set an option", Help: `Parameters - option block name containing an object with - key: value Repeated as often as required. Only supply the options you wish to change. If an option is unknown it will be silently ignored. Not all options will have an effect when changed like this. For example: This sets DEBUG level logs (-vv) rclone rc options/set --json '{"main": {"LogLevel": 8}}' And this sets INFO level logs (-v) rclone rc options/set --json '{"main": {"LogLevel": 7}}' And this sets NOTICE level logs (normal without -v) rclone rc options/set --json '{"main": {"LogLevel": 6}}' `, }) } // Set an option in an option block func rcOptionsSet(ctx context.Context, in Params) (out Params, err error) { for name, options := range in { current := optionBlock[name] if current == nil { return nil, errors.Errorf("unknown option block %q", name) } err := Reshape(current, options) if err != nil { return nil, errors.Wrapf(err, "failed to write options from block %q", name) } if reload := optionReload[name]; reload != nil { err = reload() if err != nil { return nil, errors.Wrapf(err, "failed to reload options from block %q", name) } } } return out, nil }