diff options
Diffstat (limited to 'lib/folder/folder-pathmap.go')
-rw-r--r-- | lib/folder/folder-pathmap.go | 25 |
1 files changed, 24 insertions, 1 deletions
diff --git a/lib/folder/folder-pathmap.go b/lib/folder/folder-pathmap.go index f73f271..1020026 100644 --- a/lib/folder/folder-pathmap.go +++ b/lib/folder/folder-pathmap.go @@ -5,6 +5,7 @@ import ( "io/ioutil" "os" "path/filepath" + "strings" common "github.com/iotbzh/xds-common/golib" "github.com/iotbzh/xds-server/lib/xdsconfig" @@ -80,7 +81,7 @@ func (f *PathMap) GetConfig() FolderConfig { return f.config } -// GetFullPath returns the full path +// GetFullPath returns the full path of a directory (from server POV) func (f *PathMap) GetFullPath(dir string) string { if &dir == nil { return f.config.DataPathMap.ServerPath @@ -88,6 +89,28 @@ func (f *PathMap) GetFullPath(dir string) string { return filepath.Join(f.config.DataPathMap.ServerPath, dir) } +// ConvPathCli2Svr Convert path from Client to Server +func (f *PathMap) ConvPathCli2Svr(s string) string { + if f.config.ClientPath != "" && f.config.DataPathMap.ServerPath != "" { + return strings.Replace(s, + f.config.ClientPath, + f.config.DataPathMap.ServerPath, + -1) + } + return s +} + +// ConvPathSvr2Cli Convert path from Server to Client +func (f *PathMap) ConvPathSvr2Cli(s string) string { + if f.config.ClientPath != "" && f.config.DataPathMap.ServerPath != "" { + return strings.Replace(s, + f.config.DataPathMap.ServerPath, + f.config.ClientPath, + -1) + } + return s +} + // Remove a folder func (f *PathMap) Remove() error { // nothing to do |