-
Notifications
You must be signed in to change notification settings - Fork 0
/
apollo.go
137 lines (114 loc) · 2.72 KB
/
apollo.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
package xconfig
import (
"fmt"
"strings"
"github.com/apolloconfig/agollo/v4"
"github.com/apolloconfig/agollo/v4/env/config"
"github.com/apolloconfig/agollo/v4/storage"
)
type Client struct {
client agollo.Client
Config *config.AppConfig
ChangeListeners []storage.ChangeListener
}
func NewClient(opts ...Option) (*Client, error) {
var client = &Client{
Config: &config.AppConfig{
AppID: "db-config",
Cluster: "default",
NamespaceName: storage.GetDefaultNamespace(),
IP: "http://apollo.api.thingyouwe.com",
MustStart: true,
Secret: "",
IsBackupConfig: true,
BackupConfigPath: ".apollo",
},
}
for _, opt := range opts {
opt(client)
}
var err error
client.client, err = agollo.StartWithConfig(func() (*config.AppConfig, error) {
return client.Config, nil
})
if err != nil {
return nil, err
}
for _, listener := range client.ChangeListeners {
client.client.AddChangeListener(listener)
}
return client, nil
}
func (op *Client) Init(aps *appSetter) (err error) {
if err := aps.Reset(); err != nil {
return err
}
op.client.GetDefaultConfigCache().Range(func(key, value interface{}) bool {
if err = aps.SetValue(key.(string), value); err != nil {
return false
}
return true
})
return nil
}
func checkKey(namespace string, client agollo.Client) {
cache := client.GetConfigCache(namespace)
count := 0
cache.Range(func(key, value interface{}) bool {
fmt.Println("key : ", key, ", value :", value)
count++
return true
})
if count < 1 {
panic("config key can not be null")
}
}
type Option func(option *Client)
func AppIp(appId string) Option {
return func(option *Client) {
option.Config.AppID = appId
}
}
func Cluster(cluster string) Option {
return func(option *Client) {
if len(cluster) == 0 {
cluster = "default"
}
option.Config.Cluster = cluster
}
}
func Namespace(namespace string) Option {
return func(option *Client) {
option.Config.NamespaceName = namespace
}
}
func IP(ip string) Option {
return func(option *Client) {
if len(ip) == 0 {
ip = "apollo.api.thingyouwe.com"
}
if !strings.HasPrefix(ip, "http://") || !strings.HasPrefix(ip, "https://") {
ip = "http://" + ip
}
option.Config.IP = ip
}
}
func Secret(secret string) Option {
return func(option *Client) {
option.Config.Secret = secret
}
}
func BackupConfigPath(path string) Option {
return func(option *Client) {
option.Config.IsBackupConfig = true
option.Config.BackupConfigPath = path
}
}
func ChangeListener(listener ...storage.ChangeListener) Option {
return func(option *Client) {
if len(listener) == 0 {
return
}
option.ChangeListeners = append(option.ChangeListeners, listener...)
}
}