summaryrefslogtreecommitdiffstats
path: root/lib/xdsconfig/folderconfig.go
blob: bb2b56f8ab8c728382d83e52a4c845025df82ca7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
package xdsconfig

import (
	"fmt"
	"log"
	"path/filepath"
)

// FolderType constances
const (
	FolderTypeDocker           = 0
	FolderTypeWindowsSubsystem = 1
	FolderTypeCloudSync        = 2

	FolderStatusErrorConfig = "ErrorConfig"
	FolderStatusDisable     = "Disable"
	FolderStatusEnable      = "Enable"
)

// FolderType is the type of sharing folder
type FolderType int

// FolderConfig is the config for one folder
type FolderConfig struct {
	ID            string     `json:"id" binding:"required"`
	Label         string     `json:"label"`
	RelativePath  string     `json:"path"`
	Type          FolderType `json:"type"`
	SyncThingID   string     `json:"syncThingID"`
	BuilderSThgID string     `json:"builderSThgID"`
	Status        string     `json:"status"`
	DefaultSdk    string     `json:"defaultSdk"`

	// Not exported fields
	RootPath string `json:"-"`
}

// NewFolderConfig creates a new folder object
func NewFolderConfig(id, label, rootDir, path string, defaultSdk string) FolderConfig {
	return FolderConfig{
		ID:           id,
		Label:        label,
		RelativePath: path,
		Type:         FolderTypeCloudSync,
		SyncThingID:  "",
		Status:       FolderStatusDisable,
		RootPath:     rootDir,
		DefaultSdk:   defaultSdk,
	}
}

// GetFullPath returns the full path
func (c *FolderConfig) GetFullPath(dir string) string {
	if &dir == nil {
		dir = ""
	}
	if filepath.IsAbs(dir) {
		return filepath.Join(c.RootPath, dir)
	}
	return filepath.Join(c.RootPath, c.RelativePath, dir)
}

// Verify is called to verify that a configuration is valid
func (c *FolderConfig) Verify() error {
	var err error

	if c.Type != FolderTypeCloudSync {
		err = fmt.Errorf("Unsupported folder type")
	}

	if c.SyncThingID == "" {
		err = fmt.Errorf("device id not set (SyncThingID field)")
	}

	if c.RootPath == "" {
		err = fmt.Errorf("RootPath must not be empty")
	}

	if err != nil {
		c.Status = FolderStatusErrorConfig
		log.Printf("ERROR Verify: %v\n", err)
	}

	return err
}