summaryrefslogtreecommitdiffstats
path: root/lib/folder/folder-pathmap.go
blob: 8711df25b9f1988cc247924ec06b3ca9909ac467 (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
86
87
88
package folder

import (
	"fmt"
	"io/ioutil"
	"os"
	"path/filepath"

	common "github.com/iotbzh/xds-common/golib"
)

// IFOLDER interface implementation for native/path mapping folders

// PathMap .
type PathMap struct {
	config FolderConfig
}

// NewFolderPathMap Create a new instance of PathMap
func NewFolderPathMap() *PathMap {
	f := PathMap{}
	return &f
}

// Add a new folder
func (f *PathMap) Add(cfg FolderConfig) (*FolderConfig, error) {
	if cfg.DataPathMap.ServerPath == "" {
		return nil, fmt.Errorf("ServerPath must be set")
	}

	// Sanity check
	dir := cfg.DataPathMap.ServerPath
	if !common.Exists(dir) {
		// try to create if not existing
		if err := os.MkdirAll(dir, 0755); err != nil {
			return nil, fmt.Errorf("Cannot create ServerPath directory: %s", dir)
		}
	}
	if !common.Exists(dir) {
		return nil, fmt.Errorf("ServerPath directory is not accessible: %s", dir)
	}
	file, err := ioutil.TempFile(dir, "xds_pathmap_check")
	if err != nil {
		return nil, fmt.Errorf("ServerPath sanity check error: %s", err.Error())
	}
	defer os.Remove(file.Name())

	msg := "sanity check PathMap Add folder"
	n, err := file.Write([]byte(msg))
	if err != nil || n != len(msg) {
		return nil, fmt.Errorf("ServerPath sanity check error: %s", err.Error())
	}

	f.config = cfg
	f.config.RootPath = cfg.DataPathMap.ServerPath
	f.config.Status = StatusEnable

	return &f.config, nil
}

// GetConfig Get public part of folder config
func (f *PathMap) GetConfig() FolderConfig {
	return f.config
}

// GetFullPath returns the full path
func (f *PathMap) GetFullPath(dir string) string {
	if &dir == nil {
		return f.config.DataPathMap.ServerPath
	}
	return filepath.Join(f.config.DataPathMap.ServerPath, dir)
}

// Remove a folder
func (f *PathMap) Remove() error {
	// nothing to do
	return nil
}

// Sync Force folder files synchronization
func (f *PathMap) Sync() error {
	return nil
}

// IsInSync Check if folder files are in-sync
func (f *PathMap) IsInSync() (bool, error) {
	return true, nil
}