This repository has been archived by the owner on Sep 26, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2k
/
store.go
178 lines (149 loc) · 3.82 KB
/
store.go
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
package main
import (
"fmt"
"io/ioutil"
"os"
"path/filepath"
"strings"
log "github.com/Sirupsen/logrus"
"github.com/docker/machine/drivers"
"github.com/docker/machine/utils"
)
// Store persists hosts on the filesystem
type Store struct {
Path string
CaCertPath string
PrivateKeyPath string
}
func NewStore(rootPath string, caCert string, privateKey string) *Store {
if rootPath == "" {
rootPath = utils.GetMachineDir()
}
return &Store{Path: rootPath, CaCertPath: caCert, PrivateKeyPath: privateKey}
}
func (s *Store) Create(name string, driverName string, flags drivers.DriverOptions) (*Host, error) {
exists, err := s.Exists(name)
if err != nil {
return nil, err
}
if exists {
return nil, fmt.Errorf("Machine %s already exists", name)
}
hostPath := filepath.Join(s.Path, name)
host, err := NewHost(name, driverName, hostPath, s.CaCertPath, s.PrivateKeyPath, flags.Bool("swarm-master"), flags.String("swarm-host"), flags.String("swarm-discovery"))
if err != nil {
return host, err
}
if flags != nil {
if err := host.Driver.SetConfigFromFlags(flags); err != nil {
return host, err
}
}
if err := host.Driver.PreCreateCheck(); err != nil {
return nil, err
}
if err := os.MkdirAll(hostPath, 0700); err != nil {
return nil, err
}
if err := host.SaveConfig(); err != nil {
return host, err
}
if err := host.Create(name); err != nil {
return host, err
}
if err := host.ConfigureAuth(); err != nil {
return host, err
}
if flags.Bool("swarm") {
log.Info("Configuring Swarm...")
discovery := flags.String("swarm-discovery")
master := flags.Bool("swarm-master")
swarmHost := flags.String("swarm-host")
addr := flags.String("swarm-addr")
if err := host.ConfigureSwarm(discovery, master, swarmHost, addr); err != nil {
log.Errorf("Error configuring Swarm: %s", err)
}
}
return host, nil
}
func (s *Store) Remove(name string, force bool) error {
active, err := s.GetActive()
if err != nil {
return err
}
if active != nil && active.Name == name {
if err := s.RemoveActive(); err != nil {
return err
}
}
host, err := s.Load(name)
if err != nil {
return err
}
return host.Remove(force)
}
func (s *Store) List() ([]Host, error) {
dir, err := ioutil.ReadDir(s.Path)
if err != nil && !os.IsNotExist(err) {
return nil, err
}
hosts := []Host{}
for _, file := range dir {
// don't load hidden dirs; used for configs
if file.IsDir() && strings.Index(file.Name(), ".") != 0 {
host, err := s.Load(file.Name())
if err != nil {
log.Errorf("error loading host %q: %s", file.Name(), err)
continue
}
hosts = append(hosts, *host)
}
}
return hosts, nil
}
func (s *Store) Exists(name string) (bool, error) {
_, err := os.Stat(filepath.Join(s.Path, name))
if os.IsNotExist(err) {
return false, nil
} else if err == nil {
return true, nil
}
return false, err
}
func (s *Store) Load(name string) (*Host, error) {
hostPath := filepath.Join(s.Path, name)
return LoadHost(name, hostPath)
}
func (s *Store) GetActive() (*Host, error) {
hostName, err := ioutil.ReadFile(s.activePath())
if os.IsNotExist(err) {
return nil, nil
} else if err != nil {
return nil, err
}
return s.Load(string(hostName))
}
func (s *Store) IsActive(host *Host) (bool, error) {
active, err := s.GetActive()
if err != nil {
return false, err
}
if active == nil {
return false, nil
}
return active.Name == host.Name, nil
}
func (s *Store) SetActive(host *Host) error {
if err := os.MkdirAll(filepath.Dir(s.activePath()), 0700); err != nil {
return err
}
return ioutil.WriteFile(s.activePath(), []byte(host.Name), 0600)
}
func (s *Store) RemoveActive() error {
return os.Remove(s.activePath())
}
// activePath returns the path to the file that stores the name of the
// active host
func (s *Store) activePath() string {
return filepath.Join(s.Path, ".active")
}