mirror of
https://github.com/rclone/rclone.git
synced 2024-12-23 15:38:57 +01:00
config: add config/paths to the rc as rclone config paths equivalent
Fixes #7568
This commit is contained in:
parent
17fea90ac9
commit
c482624a6c
@ -3,6 +3,7 @@ package config
|
|||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
"errors"
|
"errors"
|
||||||
|
"os"
|
||||||
|
|
||||||
"github.com/rclone/rclone/fs"
|
"github.com/rclone/rclone/fs"
|
||||||
"github.com/rclone/rclone/fs/rc"
|
"github.com/rclone/rclone/fs/rc"
|
||||||
@ -242,3 +243,38 @@ func rcSetPath(ctx context.Context, in rc.Params) (out rc.Params, err error) {
|
|||||||
err = SetConfigPath(path)
|
err = SetConfigPath(path)
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
rc.Add(rc.Call{
|
||||||
|
Path: "config/paths",
|
||||||
|
Fn: rcPaths,
|
||||||
|
Title: "Reads the config file path and other important paths.",
|
||||||
|
AuthRequired: true,
|
||||||
|
Help: `
|
||||||
|
Returns a JSON object with the following keys:
|
||||||
|
|
||||||
|
- config: path to config file
|
||||||
|
- cache: path to root of cache directory
|
||||||
|
- temp: path to root of temporary directory
|
||||||
|
|
||||||
|
Eg
|
||||||
|
|
||||||
|
{
|
||||||
|
"cache": "/home/USER/.cache/rclone",
|
||||||
|
"config": "/home/USER/.rclone.conf",
|
||||||
|
"temp": "/tmp"
|
||||||
|
}
|
||||||
|
|
||||||
|
See the [config paths](/commands/rclone_config_paths/) command for more information on the above.
|
||||||
|
`,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// Set the config file path
|
||||||
|
func rcPaths(ctx context.Context, in rc.Params) (out rc.Params, err error) {
|
||||||
|
return rc.Params{
|
||||||
|
"config": GetConfigPath(),
|
||||||
|
"cache": GetCacheDir(),
|
||||||
|
"temp": os.TempDir(),
|
||||||
|
}, nil
|
||||||
|
}
|
||||||
|
@ -177,3 +177,14 @@ func TestRcSetPath(t *testing.T) {
|
|||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
assert.Equal(t, oldPath, config.GetConfigPath())
|
assert.Equal(t, oldPath, config.GetConfigPath())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestRcPaths(t *testing.T) {
|
||||||
|
call := rc.Calls.Get("config/paths")
|
||||||
|
assert.NotNil(t, call)
|
||||||
|
out, err := call.Fn(context.Background(), nil)
|
||||||
|
require.NoError(t, err)
|
||||||
|
|
||||||
|
assert.Equal(t, config.GetConfigPath(), out["config"])
|
||||||
|
assert.Equal(t, config.GetCacheDir(), out["cache"])
|
||||||
|
assert.Equal(t, os.TempDir(), out["temp"])
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user