2021-06-19 08:45:43 -04:00
|
|
|
package v4
|
2019-02-10 13:04:11 -05:00
|
|
|
|
|
|
|
import (
|
2021-06-19 09:36:54 -04:00
|
|
|
"google.golang.org/protobuf/types/known/anypb"
|
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"
|
2021-01-29 19:31:11 -05:00
|
|
|
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
|
|
|
)
|
|
|
|
|
2020-10-11 07:22:46 -04:00
|
|
|
type APIConfig struct {
|
2019-02-10 13:04:11 -05:00
|
|
|
Tag string `json:"tag"`
|
|
|
|
Services []string `json:"services"`
|
|
|
|
}
|
|
|
|
|
2020-10-11 07:22:46 -04:00
|
|
|
func (c *APIConfig) Build() (*commander.Config, error) {
|
2019-06-14 09:47:28 -04:00
|
|
|
if c.Tag == "" {
|
2020-10-11 07:22:46 -04:00
|
|
|
return nil, newError("API tag can't be empty.")
|
2019-02-10 13:04:11 -05:00
|
|
|
}
|
|
|
|
|
2021-06-19 09:36:54 -04:00
|
|
|
services := make([]*anypb.Any, 0, 16)
|
2019-02-10 13:04:11 -05:00
|
|
|
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{}))
|
2021-01-29 19:31:11 -05:00
|
|
|
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
|
|
|
|
}
|