1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-11-01 16:57:46 -04:00
v2fly/infra/conf/api.go

42 lines
1.1 KiB
Go
Raw Normal View History

2019-02-10 13:04:11 -05:00
package conf
import (
"strings"
2021-02-16 15:31:50 -05:00
"github.com/v2fly/v2ray-core/v4/app/commander"
loggerservice "github.com/v2fly/v2ray-core/v4/app/log/command"
handlerservice "github.com/v2fly/v2ray-core/v4/app/proxyman/command"
statsservice "github.com/v2fly/v2ray-core/v4/app/stats/command"
"github.com/v2fly/v2ray-core/v4/common/serial"
2019-02-10 13:04:11 -05:00
)
type APIConfig struct {
2019-02-10 13:04:11 -05:00
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.")
2019-02-10 13:04:11 -05:00
}
services := make([]*serial.TypedMessage, 0, 16)
for _, s := range c.Services {
switch strings.ToLower(s) {
2020-11-19 12:57:31 -05:00
case "reflectionservice":
services = append(services, serial.ToTypedMessage(&commander.ReflectionConfig{}))
2019-02-10 13:04:11 -05:00
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{}))
}
}
return &commander.Config{
Tag: c.Tag,
Service: services,
}, nil
}