aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorSebastien Douheret <sebastien.douheret@iot.bzh>2017-10-07 21:43:09 +0200
committerSebastien Douheret <sebastien.douheret@iot.bzh>2017-10-07 21:43:09 +0200
commitd917dcca04b8d5f5a7a4fdf82d0a66ef14611fca (patch)
tree52c49f80b83b3563d31865931f8e9422aa9b76ce /lib
parent97ca1f277dc8b6973d6fa67add5593a9c395ce60 (diff)
Bump Syncthing 0.14.38
Diffstat (limited to 'lib')
-rw-r--r--lib/syncthing/stfolder.go45
1 files changed, 44 insertions, 1 deletions
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,
}