mirror of
https://github.com/wyx2685/V2bX.git
synced 2025-01-22 09:58:14 -05:00
93 lines
2.2 KiB
Go
93 lines
2.2 KiB
Go
package xray
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"github.com/InazumaV/V2bX/api/panel"
|
|
"github.com/InazumaV/V2bX/conf"
|
|
"github.com/xtls/xray-core/core"
|
|
"github.com/xtls/xray-core/features/inbound"
|
|
"github.com/xtls/xray-core/features/outbound"
|
|
)
|
|
|
|
type DNSConfig struct {
|
|
Servers []interface{} `json:"servers"`
|
|
Tag string `json:"tag"`
|
|
}
|
|
|
|
func (c *Xray) AddNode(tag string, info *panel.NodeInfo, config *conf.Options) error {
|
|
err := updateDNSConfig(info)
|
|
if err != nil {
|
|
return fmt.Errorf("build dns error: %s", err)
|
|
}
|
|
inboundConfig, err := buildInbound(config, info, tag)
|
|
if err != nil {
|
|
return fmt.Errorf("build inbound error: %s", err)
|
|
}
|
|
err = c.addInbound(inboundConfig)
|
|
if err != nil {
|
|
return fmt.Errorf("add inbound error: %s", err)
|
|
}
|
|
outBoundConfig, err := buildOutbound(config, tag)
|
|
if err != nil {
|
|
return fmt.Errorf("build outbound error: %s", err)
|
|
}
|
|
err = c.addOutbound(outBoundConfig)
|
|
if err != nil {
|
|
return fmt.Errorf("add outbound error: %s", err)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (c *Xray) addInbound(config *core.InboundHandlerConfig) error {
|
|
rawHandler, err := core.CreateObject(c.Server, config)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
handler, ok := rawHandler.(inbound.Handler)
|
|
if !ok {
|
|
return fmt.Errorf("not an InboundHandler: %s", err)
|
|
}
|
|
if err := c.ihm.AddHandler(context.Background(), handler); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (c *Xray) addOutbound(config *core.OutboundHandlerConfig) error {
|
|
rawHandler, err := core.CreateObject(c.Server, config)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
handler, ok := rawHandler.(outbound.Handler)
|
|
if !ok {
|
|
return fmt.Errorf("not an InboundHandler: %s", err)
|
|
}
|
|
if err := c.ohm.AddHandler(context.Background(), handler); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (c *Xray) DelNode(tag string) error {
|
|
err := c.removeInbound(tag)
|
|
if err != nil {
|
|
return fmt.Errorf("remove in error: %s", err)
|
|
}
|
|
err = c.removeOutbound(tag)
|
|
if err != nil {
|
|
return fmt.Errorf("remove out error: %s", err)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (c *Xray) removeInbound(tag string) error {
|
|
return c.ihm.RemoveHandler(context.Background(), tag)
|
|
}
|
|
|
|
func (c *Xray) removeOutbound(tag string) error {
|
|
err := c.ohm.RemoveHandler(context.Background(), tag)
|
|
return err
|
|
}
|