mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-05 06:33:02 +00:00
abb8ba8b0e
* fix:observatory not supported by multi-json * Fix: observatory starts with empty config & fails to close (#957) * Update strategy_leastping.go (#1019) * add custom probe URL support for observatory * add custom probe interval for observer * apply coding style * Fix: observatory log & JSON config(#1211) Co-authored-by: ihotte <ihotte@yeah.net> * Change default probe url from api.v2fly.org to www.google.com * Cherry-pick missing code from branch 'dev-advloadblancer-2' Co-authored-by: Shelikhoo <xiaokangwang@outlook.com> Co-authored-by: Loyalsoldier <10487845+Loyalsoldier@users.noreply.github.com> Co-authored-by: fanyiguan <52657276+fanyiguang@users.noreply.github.com> Co-authored-by: ihotte <3087168217@qq.com> Co-authored-by: ihotte <ihotte@yeah.net>
45 lines
1.3 KiB
Go
45 lines
1.3 KiB
Go
package conf
|
|
|
|
import (
|
|
"strings"
|
|
|
|
"github.com/xtls/xray-core/app/commander"
|
|
loggerservice "github.com/xtls/xray-core/app/log/command"
|
|
observatoryservice "github.com/xtls/xray-core/app/observatory/command"
|
|
handlerservice "github.com/xtls/xray-core/app/proxyman/command"
|
|
statsservice "github.com/xtls/xray-core/app/stats/command"
|
|
"github.com/xtls/xray-core/common/serial"
|
|
)
|
|
|
|
type APIConfig struct {
|
|
Tag string `json:"tag"`
|
|
Services []string `json:"services"`
|
|
}
|
|
|
|
func (c *APIConfig) Build() (*commander.Config, error) {
|
|
if c.Tag == "" {
|
|
return nil, newError("API tag can't be empty.")
|
|
}
|
|
|
|
services := make([]*serial.TypedMessage, 0, 16)
|
|
for _, s := range c.Services {
|
|
switch strings.ToLower(s) {
|
|
case "reflectionservice":
|
|
services = append(services, serial.ToTypedMessage(&commander.ReflectionConfig{}))
|
|
case "handlerservice":
|
|
services = append(services, serial.ToTypedMessage(&handlerservice.Config{}))
|
|
case "loggerservice":
|
|
services = append(services, serial.ToTypedMessage(&loggerservice.Config{}))
|
|
case "statsservice":
|
|
services = append(services, serial.ToTypedMessage(&statsservice.Config{}))
|
|
case "observatoryservice":
|
|
services = append(services, serial.ToTypedMessage(&observatoryservice.Config{}))
|
|
}
|
|
}
|
|
|
|
return &commander.Config{
|
|
Tag: c.Tag,
|
|
Service: services,
|
|
}, nil
|
|
}
|