2020-11-25 13:01:53 +02:00
|
|
|
package conf
|
|
|
|
|
|
|
|
import (
|
|
|
|
"strings"
|
|
|
|
|
2020-12-04 03:36:16 +02:00
|
|
|
"github.com/xtls/xray-core/app/commander"
|
|
|
|
loggerservice "github.com/xtls/xray-core/app/log/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"
|
2020-11-25 13:01:53 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
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{}))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return &commander.Config{
|
|
|
|
Tag: c.Tag,
|
|
|
|
Service: services,
|
|
|
|
}, nil
|
|
|
|
}
|