-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconf.go
76 lines (68 loc) · 1.91 KB
/
conf.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
package main
import (
log "github.com/sirupsen/logrus"
"gopkg.in/yaml.v2"
"io/ioutil"
)
// Структура конфигурационного файла
type Config struct {
Imap struct {
Enable bool `yaml:"enable"`
Username string `yaml:"username"`
Password string `yaml:"password"`
Server string `yaml:"server"`
RefreshTimeout int64 `yaml:"refresh"`
DeleteMessages bool `yaml:"delete"`
} `yaml:"imap"`
Telegram struct {
Token string `yaml:"token"`
ChatId int64 `yaml:"chatid"`
} `yaml:"telegram"`
Asterisk struct {
Enable bool `yaml:"enable"`
Host string `yaml:"host"`
Port int `yaml:"port"`
Username string `yaml:"username"`
Password string `yaml:"password"`
Context string `yaml:"context"`
} `yaml:"asterisk"`
Crm struct {
Enable bool `yaml:"enable"`
Url string `yaml:"url"`
Timeout int `yaml:"timeout"`
} `yaml:"crm"`
LogLevel string `yaml:"loglevel"`
}
// Читаем конфиг и устанавливаем параметры приложения
func (a *MyApp) GetConfigYaml(filename string) {
log.Info("Reading config ", filename)
yamlFile, err := ioutil.ReadFile(filename)
if err != nil {
log.Fatalf("Error: %v\n", err)
}
err = yaml.Unmarshal(yamlFile, &a.config)
if err != nil {
log.Fatalf("Error: %v\n", err)
}
a.logLevel = setLogLevel(a.config.LogLevel)
}
// Устанавливаем уровень журналирования событий в приложении
func setLogLevel(confLogLevel string) log.Level {
var result log.Level
switch confLogLevel {
case configLogDebug:
result = log.DebugLevel
case configLogInfo:
result = log.InfoLevel
case configLogWarn:
result = log.WarnLevel
case configLogError:
result = log.ErrorLevel
case configLogFatal:
result = log.FatalLevel
default:
result = log.InfoLevel
}
log.Info("Application logging level: ", result)
return result
}