-
Notifications
You must be signed in to change notification settings - Fork 335
/
config.go
89 lines (77 loc) · 2.08 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
// Copyright (C) 2020-2021, IrineSistiana
//
// This file is part of mosdns.
//
// mosdns is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// mosdns is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
package coremain
import (
"github.com/IrineSistiana/mosdns/dispatcher/handler"
"gopkg.in/yaml.v3"
"io/ioutil"
"os"
)
// Config is config
type Config struct {
Log struct {
Level string `yaml:"level"`
File string `yaml:"file"`
} `yaml:"log"`
Library []string `yaml:"library"`
Plugin []*handler.Config `yaml:"plugin"`
Include []string `yaml:"include"`
}
// parseConfig loads a yaml config from path f.
func parseConfig(f string) (*Config, error) {
b, err := ioutil.ReadFile(f)
if err != nil {
return nil, err
}
c := new(Config)
if err := yaml.Unmarshal(b, c); err != nil {
return nil, err
}
return c, nil
}
// GenConfig generates a config template to path p.
func GenConfig(p string) error {
c := new(Config)
c.Log.Level = "info"
argsPlaceholder := map[string]interface{}{"arg1": "value1", "arg2": "value2"}
c.Plugin = append(c.Plugin, &handler.Config{
Tag: "server",
Type: "server",
Args: argsPlaceholder,
})
c.Plugin = append(c.Plugin, &handler.Config{
Tag: "forward",
Type: "forward",
Args: argsPlaceholder,
})
return c.Save(p)
}
func (c *Config) Save(p string) error {
f, err := os.Create(p)
if err != nil {
return err
}
defer f.Close()
encoder := yaml.NewEncoder(f)
encoder.SetIndent(2)
defer encoder.Close()
err = encoder.Encode(c)
if err != nil {
return err
}
return err
}