-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.go
140 lines (115 loc) · 2.73 KB
/
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
/*
Copyright 2016 Skippbox, Ltd.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package config
import (
"io/ioutil"
"os"
"path/filepath"
"gopkg.in/yaml.v2"
)
// ConfigFileName : stores the config-file name
var ConfigFileName = "alert-watch.yaml"
// Handler : holds the different kind
type Handler struct {
Slack Slack `json:"slack"`
}
// Resource contains resource configuration
type Resource struct {
Deployment bool `json:"dp"`
ReplicationController bool `json:"rc"`
ReplicaSet bool `json:"rs"`
DaemonSet bool `json:"ds"`
Services bool `json:"svc"`
Pod bool `json:"po"`
}
// Config struct contains alert-watch configuration
type Config struct {
Handler Handler `json:"handler"`
//Reason []string `json:"reason"`
Resource Resource `json:"resource"`
}
// Slack contains slack configuration
type Slack struct {
Token string `json:"token"`
Channel string `json:"channel"`
}
// New creates new config object
func New() (*Config, error) {
c := &Config{}
if err := c.Load(); err != nil {
return c, err
}
return c, nil
}
func createIfNotExist() error {
// create file if not exist
configFile := filepath.Join(configDir(), ConfigFileName)
_, err := os.Stat(configFile)
if err != nil {
if os.IsNotExist(err) {
file, err := os.Create(configFile)
if err != nil {
return err
}
file.Close()
} else {
return err
}
}
return nil
}
// Load loads configuration from config file
func (c *Config) Load() error {
err := createIfNotExist()
if err != nil {
return err
}
file, err := os.Open(getConfigFile())
if err != nil {
return err
}
b, err := ioutil.ReadAll(file)
if err != nil {
return err
}
if len(b) != 0 {
return yaml.Unmarshal(b, c)
}
return nil
}
func (c *Config) Write() error {
b, err := yaml.Marshal(c)
if err != nil {
return err
}
err = ioutil.WriteFile(getConfigFile(), b, 0644)
if err != nil {
return err
}
return nil
}
func getConfigFile() string {
configFile := filepath.Join(configDir(), ConfigFileName)
if _, err := os.Stat(configFile); err == nil {
return configFile
}
return ""
}
func configDir() string {
//return os.Getenv("HOME")
path := "./"
if _, err := os.Stat(path); os.IsNotExist(err) {
os.Mkdir(path, 755)
}
return path
}