-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathion_config.go
225 lines (177 loc) · 5.55 KB
/
ion_config.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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
package ionburst
import (
"encoding/json"
"errors"
"io/ioutil"
"os"
"path/filepath"
"github.com/gobuffalo/envy"
"gopkg.in/ini.v1"
)
const DefaultIonburstConfigPath = ".ionburst/credentials"
const DefaultIonburstCredentialsProfileName = "default"
func GetDefaultIonburstConfigPath() string {
cwd := envy.Get("HOME", "./")
if cwd[:2] == "./" {
cwd, _ = os.Getwd()
}
configPath := filepath.Join(cwd, DefaultIonburstConfigPath)
return configPath
}
func NewEmptyIonConfig(cli *Client) *IonConfig {
cli.logger.Debug("Creating new empty ionburst config")
cwd := envy.Get("HOME", "./")
if cwd[:2] == "./" {
cwd, _ = os.Getwd()
}
configPath := filepath.Join(cwd, DefaultIonburstConfigPath)
config := &IonConfig{
cli: cli,
isNew: true,
file: configPath,
DefaultProfile: DefaultIonburstCredentialsProfileName,
Profiles: map[string]*CredentialsProfile{},
}
return config.init()
}
func NewIonConfig(cli *Client, uri string, ionburstID string, ionburstKey string) *IonConfig {
cwd := envy.Get("HOME", "./")
if cwd[:2] == "./" {
cwd, _ = os.Getwd()
}
configPath := filepath.Join(cwd, DefaultIonburstConfigPath)
return NewIonConfigWithFilePaths(cli, uri, ionburstID, ionburstKey, configPath)
}
func NewIonConfigWithFilePaths(cli *Client, uri string, ionburstID string, ionburstKey string, configFile string) *IonConfig {
cli.logger.Debug("Creating new ionburst config with supplied credentials")
config := &IonConfig{
cli: cli,
isNew: true,
file: configFile,
DefaultProfile: DefaultIonburstCredentialsProfileName,
Profiles: map[string]*CredentialsProfile{},
}
config.UpsertCredsProfile(DefaultIonburstCredentialsProfileName, uri, ionburstID, ionburstKey)
return config.init()
}
func LoadIonConfig(cli *Client, configFile string) (*IonConfig, error) {
if !FileExists(configFile) {
return nil, os.ErrNotExist
}
//load the config file...
cli.logger.Debug("Loading ionburst config from", configFile)
ba, err := ioutil.ReadFile(configFile)
if err != nil {
return nil, err
}
var out IonConfig
if err := json.Unmarshal(ba, &out); err != nil {
return nil, err
}
out.cli = cli
return (&out).init(), nil
}
type IonConfig struct {
cli *Client
file string
isNew bool
DefaultProfile string `json:"DefaultProfile,omitempty"`
Profiles map[string]*CredentialsProfile `json:"Profiles"`
}
func (conf *IonConfig) init() *IonConfig {
if err := conf.LoadIniCreds(); err != nil {
conf.cli.logger.Warn("No credentials file found, environment variables only")
}
return conf
}
func (conf *IonConfig) GetDefaultCredsProfile() (*CredentialsProfile, error) {
profName := conf.DefaultProfile
if profName == "" {
profName = DefaultIonburstCredentialsProfileName
}
return conf.GetCredsProfile(profName)
}
func (conf *IonConfig) SetDefaultProfile(profileName string) error {
p, err := conf.GetCredsProfile(profileName)
if err != nil {
return err
} else if p == nil {
return errors.New("Cannot find profile to set default")
}
conf.DefaultProfile = profileName
return nil
}
func (conf *IonConfig) SaveConfig() error {
return conf.SaveConfigToFile(conf.file)
}
func (conf *IonConfig) SaveConfigToFile(file string) error {
return nil
}
func (conf *IonConfig) LoadIniCreds() error {
//using the path for current config file - look and see if the ini is there a "credentials" file
opath := filepath.Dir(conf.file)
credsPath := filepath.Join(opath, "credentials")
if FileExists(credsPath) {
//lets load the credentials from the ini..
creds, err := ini.Load(credsPath)
if err != nil {
return err
}
for _, sec := range creds.Sections() {
conf.UpsertCredsProfile(sec.Name(), sec.Key("ionburst_uri").String(), sec.Key("ionburst_id").String(), sec.Key("ionburst_key").String())
}
}
return nil
}
func (conf *IonConfig) GetCredsProfile(name string) (*CredentialsProfile, error) {
if conf.Profiles == nil {
return nil, errors.New("Unable to find credentials profile " + name + " in config")
} else if v, ok := conf.Profiles[name]; !ok || v == nil {
return nil, errors.New("Unable to find credentials profile " + name + " in config")
} else {
return v, nil
}
}
func (conf *IonConfig) UpsertCredsProfile(name string, uri string, ionburstID string, ionburstKey string) *CredentialsProfile {
if len(uri) > 0 && uri[len(uri)-1] != '/' {
uri += "/"
}
if conf.Profiles == nil {
conf.Profiles = map[string]*CredentialsProfile{}
} else if v, ok := conf.Profiles[name]; !ok || v == nil {
conf.Profiles[name] = NewCredentialsProfile(uri, ionburstID, ionburstKey)
} else {
if uri != "" {
conf.Profiles[name].IonburstURI = uri
}
if ionburstID != "" {
conf.Profiles[name].IonburstID = ionburstID
}
if ionburstKey != "" {
conf.Profiles[name].IonburstKey = ionburstKey
}
}
return conf.Profiles[name]
}
func (conf *IonConfig) RemoveCredsProfile(name string) error {
if conf.Profiles == nil {
return errors.New("Unable to find credentials profile " + name + " in config")
} else if v, ok := conf.Profiles[name]; !ok || v == nil {
return errors.New("Unable to find credentials profile " + name + " in config")
} else {
delete(conf.Profiles, name)
return nil
}
}
func NewCredentialsProfile(uri string, ionburstID string, ionburstKey string) *CredentialsProfile {
return &CredentialsProfile{
IonburstID: ionburstID,
IonburstKey: ionburstKey,
IonburstURI: uri,
}
}
type CredentialsProfile struct {
IonburstURI string `json:"URI"`
IonburstID string `json:"ID"`
IonburstKey string `json:"KEY"`
}