From d917dcca04b8d5f5a7a4fdf82d0a66ef14611fca Mon Sep 17 00:00:00 2001 From: Sebastien Douheret Date: Sat, 7 Oct 2017 21:43:09 +0200 Subject: Bump Syncthing 0.14.38 --- lib/syncthing/stfolder.go | 45 ++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 44 insertions(+), 1 deletion(-) (limited to 'lib/syncthing') diff --git a/lib/syncthing/stfolder.go b/lib/syncthing/stfolder.go index a5312eb..d5c74ef 100644 --- a/lib/syncthing/stfolder.go +++ b/lib/syncthing/stfolder.go @@ -6,6 +6,7 @@ import ( "strings" common "github.com/iotbzh/xds-common/golib" + "github.com/iotbzh/xds-server/lib/folder" stconfig "github.com/syncthing/syncthing/lib/config" "github.com/syncthing/syncthing/lib/protocol" ) @@ -19,6 +20,48 @@ type FolderChangeArg struct { ShareRootDir string } +// FolderLoadFromStConfig Load/Retrieve folder config from syncthing database +func (s *SyncThing) FolderLoadFromStConfig(f *[]folder.FolderConfig) error { + + defaultSdk := "" // cannot know which was the default sdk + + stCfg, err := s.ConfigGet() + if err != nil { + return err + } + if len(stCfg.Devices) < 1 { + return fmt.Errorf("Cannot load syncthing config: no device defined") + } + devID := stCfg.Devices[0].DeviceID.String() + if devID == s.MyID { + if len(stCfg.Devices) < 2 { + return fmt.Errorf("Cannot load syncthing config: no valid device found") + } + devID = stCfg.Devices[1].DeviceID.String() + } + + for _, stFld := range stCfg.Folders { + /* + cliPath := strings.TrimPrefix(stFld.Path, s.conf.FileConf.ShareRootDir) + if cliPath == "" { + cliPath = stFld.Path + }*/ + cliPath := stFld.Path + *f = append(*f, folder.FolderConfig{ + ID: stFld.ID, + Label: stFld.Label, + ClientPath: strings.TrimRight(cliPath, "/"), + Type: folder.TypeCloudSync, + Status: folder.StatusDisable, + DefaultSdk: defaultSdk, + RootPath: "", //s.conf.FileConf.ShareRootDir, + DataCloudSync: folder.CloudSyncConfig{SyncThingID: devID}, + }) + } + + return nil +} + // FolderChange is called when configuration has changed func (s *SyncThing) FolderChange(f FolderChangeArg) (string, error) { @@ -73,7 +116,7 @@ func (s *SyncThing) FolderChange(f FolderChangeArg) (string, error) { folder := stconfig.FolderConfiguration{ ID: id, Label: label, - RawPath: pathCli, + Path: pathCli, AutoNormalize: true, } -- cgit 1.2.3-korg