You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
100 lines
1.7 KiB
100 lines
1.7 KiB
package conf |
|
|
|
import ( |
|
"flag" |
|
|
|
"go-common/library/conf" |
|
"go-common/library/log" |
|
"go-common/library/log/infoc" |
|
bm "go-common/library/net/http/blademaster" |
|
"go-common/library/net/http/blademaster/middleware/auth" |
|
"go-common/library/net/http/blademaster/middleware/verify" |
|
"go-common/library/net/rpc" |
|
"go-common/library/net/trace" |
|
"go-common/library/queue/databus" |
|
|
|
"github.com/BurntSushi/toml" |
|
) |
|
|
|
const ( |
|
configKey = "report-click.toml" |
|
) |
|
|
|
// global conf |
|
var ( |
|
confPath string |
|
Conf *Config |
|
) |
|
|
|
// Infoc2 Infoc2. |
|
type Infoc2 struct { |
|
RealTime *infoc.Config |
|
Statistics *infoc.Config |
|
} |
|
|
|
// Config config . |
|
type Config struct { |
|
Infoc2 *Infoc2 |
|
Env string |
|
Tracer *trace.Config |
|
Xlog *log.Config |
|
App *bm.App |
|
BM *bm.ServerConfig |
|
Auth *auth.Config |
|
Verify *verify.Config |
|
AccRPC *rpc.ClientConfig |
|
HisRPC *rpc.ClientConfig |
|
DataBus *Databus |
|
Click *Click |
|
} |
|
|
|
// Databus . |
|
type Databus struct { |
|
Merge *databus.Config |
|
} |
|
|
|
// Click click config. |
|
type Click struct { |
|
WebSecret string |
|
OutSecret string |
|
// aes |
|
AesKey string |
|
AesIv string |
|
AesSalt string |
|
// aes2 |
|
AesKey2 string |
|
AesIv2 string |
|
AesSalt2 string |
|
From []int64 |
|
FromInline []int64 |
|
InlineDuration int64 // inline play duration line, 10s |
|
} |
|
|
|
func init() { |
|
flag.StringVar(&confPath, "conf", "", "config path") |
|
} |
|
|
|
// Init init conf |
|
func Init() (err error) { |
|
if confPath == "" { |
|
return configCenter() |
|
} |
|
_, err = toml.DecodeFile(confPath, &Conf) |
|
return |
|
} |
|
|
|
func configCenter() (err error) { |
|
var ( |
|
ok bool |
|
value string |
|
client *conf.Client |
|
) |
|
if client, err = conf.New(); err != nil { |
|
return |
|
} |
|
if value, ok = client.Value(configKey); !ok { |
|
panic(err) |
|
} |
|
_, err = toml.Decode(value, &Conf) |
|
return |
|
}
|
|
|