1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-06 13:25:13 -04:00
v2fly/infra/conf/api.go

61 lines
1.9 KiB
Go
Raw Normal View History

2019-02-10 13:04:11 -05:00
package conf
import (
2021-04-08 15:56:04 -04:00
"strings"
2021-03-06 13:05:44 -05:00
"github.com/jhump/protoreflect/desc"
"github.com/jhump/protoreflect/dynamic"
2019-02-10 13:04:11 -05:00
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"
2021-04-11 20:18:20 -04:00
observatoryservice "github.com/v2fly/v2ray-core/v4/app/observatory/command"
2021-02-16 15:31:50 -05:00
handlerservice "github.com/v2fly/v2ray-core/v4/app/proxyman/command"
routerservice "github.com/v2fly/v2ray-core/v4/app/router/command"
2021-02-16 15:31:50 -05:00
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{}))
2021-04-08 17:20:30 -04:00
case "observatoryservice":
2021-04-11 20:18:20 -04:00
services = append(services, serial.ToTypedMessage(&observatoryservice.Config{}))
case "routingservice":
services = append(services, serial.ToTypedMessage(&routerservice.Config{}))
2021-03-06 13:05:44 -05:00
default:
if !strings.HasPrefix(s, "#") {
continue
}
2021-03-06 16:08:27 -05:00
message, err := desc.LoadMessageDescriptor(s[1:])
2021-03-06 13:05:44 -05:00
if err != nil || message == nil {
return nil, newError("Cannot find API", s, "").Base(err)
}
serviceConfig := dynamic.NewMessage(message)
services = append(services, serial.ToTypedMessage(serviceConfig))
2019-02-10 13:04:11 -05:00
}
}
return &commander.Config{
Tag: c.Tag,
Service: services,
}, nil
}