2021-06-19 13:45:43 +01:00
|
|
|
package v4
|
2019-02-10 19:04:11 +01:00
|
|
|
|
|
|
|
import (
|
2021-06-19 14:36:54 +01:00
|
|
|
"google.golang.org/protobuf/types/known/anypb"
|
2021-04-08 20:56:04 +01:00
|
|
|
"strings"
|
|
|
|
|
2021-03-06 18:05:44 +00:00
|
|
|
"github.com/jhump/protoreflect/desc"
|
|
|
|
"github.com/jhump/protoreflect/dynamic"
|
2019-02-10 19:04:11 +01:00
|
|
|
|
2021-02-17 04:31:50 +08:00
|
|
|
"github.com/v2fly/v2ray-core/v4/app/commander"
|
|
|
|
loggerservice "github.com/v2fly/v2ray-core/v4/app/log/command"
|
2021-04-12 01:18:20 +01:00
|
|
|
observatoryservice "github.com/v2fly/v2ray-core/v4/app/observatory/command"
|
2021-02-17 04:31:50 +08:00
|
|
|
handlerservice "github.com/v2fly/v2ray-core/v4/app/proxyman/command"
|
2021-01-30 08:31:11 +08:00
|
|
|
routerservice "github.com/v2fly/v2ray-core/v4/app/router/command"
|
2021-02-17 04:31:50 +08:00
|
|
|
statsservice "github.com/v2fly/v2ray-core/v4/app/stats/command"
|
|
|
|
"github.com/v2fly/v2ray-core/v4/common/serial"
|
2019-02-10 19:04:11 +01:00
|
|
|
)
|
|
|
|
|
2020-10-11 19:22:46 +08:00
|
|
|
type APIConfig struct {
|
2019-02-10 19:04:11 +01:00
|
|
|
Tag string `json:"tag"`
|
|
|
|
Services []string `json:"services"`
|
|
|
|
}
|
|
|
|
|
2020-10-11 19:22:46 +08:00
|
|
|
func (c *APIConfig) Build() (*commander.Config, error) {
|
2019-06-14 16:47:28 +03:00
|
|
|
if c.Tag == "" {
|
2020-10-11 19:22:46 +08:00
|
|
|
return nil, newError("API tag can't be empty.")
|
2019-02-10 19:04:11 +01:00
|
|
|
}
|
|
|
|
|
2021-06-19 14:36:54 +01:00
|
|
|
services := make([]*anypb.Any, 0, 16)
|
2019-02-10 19:04:11 +01:00
|
|
|
for _, s := range c.Services {
|
|
|
|
switch strings.ToLower(s) {
|
2020-11-20 01:57:31 +08:00
|
|
|
case "reflectionservice":
|
|
|
|
services = append(services, serial.ToTypedMessage(&commander.ReflectionConfig{}))
|
2019-02-10 19:04:11 +01: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 22:20:30 +01:00
|
|
|
case "observatoryservice":
|
2021-04-12 01:18:20 +01:00
|
|
|
services = append(services, serial.ToTypedMessage(&observatoryservice.Config{}))
|
2021-01-30 08:31:11 +08:00
|
|
|
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 19:04:11 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return &commander.Config{
|
|
|
|
Tag: c.Tag,
|
|
|
|
Service: services,
|
|
|
|
}, nil
|
|
|
|
}
|