v2fly/infra/conf/v4/api.go

62 lines
1.9 KiB
Go
Raw Normal View History

package v4
2019-02-10 18:04:11 +00:00
import (
2021-06-19 13:36:54 +00:00
"google.golang.org/protobuf/types/known/anypb"
2021-04-08 19:56:04 +00:00
"strings"
2021-03-06 18:05:44 +00:00
"github.com/jhump/protoreflect/desc"
"github.com/jhump/protoreflect/dynamic"
2019-02-10 18:04:11 +00:00
2021-02-16 20:31:50 +00:00
"github.com/v2fly/v2ray-core/v4/app/commander"
loggerservice "github.com/v2fly/v2ray-core/v4/app/log/command"
2021-04-12 00:18:20 +00:00
observatoryservice "github.com/v2fly/v2ray-core/v4/app/observatory/command"
2021-02-16 20:31:50 +00:00
handlerservice "github.com/v2fly/v2ray-core/v4/app/proxyman/command"
routerservice "github.com/v2fly/v2ray-core/v4/app/router/command"
2021-02-16 20:31:50 +00:00
statsservice "github.com/v2fly/v2ray-core/v4/app/stats/command"
"github.com/v2fly/v2ray-core/v4/common/serial"
2019-02-10 18:04:11 +00:00
)
type APIConfig struct {
2019-02-10 18:04:11 +00: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 18:04:11 +00:00
}
2021-06-19 13:36:54 +00:00
services := make([]*anypb.Any, 0, 16)
2019-02-10 18:04:11 +00:00
for _, s := range c.Services {
switch strings.ToLower(s) {
2020-11-19 17:57:31 +00:00
case "reflectionservice":
services = append(services, serial.ToTypedMessage(&commander.ReflectionConfig{}))
2019-02-10 18:04:11 +00: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 21:20:30 +00:00
case "observatoryservice":
2021-04-12 00:18:20 +00:00
services = append(services, serial.ToTypedMessage(&observatoryservice.Config{}))
case "routingservice":
services = append(services, serial.ToTypedMessage(&routerservice.Config{}))
2021-03-06 18:05:44 +00:00
default:
if !strings.HasPrefix(s, "#") {
continue
}
2021-03-06 21:08:27 +00:00
message, err := desc.LoadMessageDescriptor(s[1:])
2021-03-06 18:05:44 +00: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 18:04:11 +00:00
}
}
return &commander.Config{
Tag: c.Tag,
Service: services,
}, nil
}