1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-10 01:40:44 +00:00
v2fly/main/commands/all/api/jsonv4/inbounds_remove.go
2021-09-04 11:12:04 +01:00

88 lines
2.0 KiB
Go

package jsonv4
import (
"fmt"
handlerService "github.com/v2fly/v2ray-core/v4/app/proxyman/command"
"github.com/v2fly/v2ray-core/v4/main/commands/all/api"
"github.com/v2fly/v2ray-core/v4/main/commands/base"
"github.com/v2fly/v2ray-core/v4/main/commands/helpers"
)
var cmdRemoveInbounds = &base.Command{
CustomFlags: true,
UsageLine: "{{.Exec}} api rmi [--server=127.0.0.1:8080] [c1.json] [dir1]...",
Short: "remove inbounds",
Long: `
Remove inbounds from V2Ray.
> Make sure you have "HandlerService" set in "config.api.services"
of server config.
Arguments:
-format <format>
The input format.
Available values: "auto", "json", "toml", "yaml"
Default: "auto"
-r
Load folders recursively.
-tags
The input are tags instead of config files
-s, -server <server:port>
The API server address. Default 127.0.0.1:8080
-t, -timeout <seconds>
Timeout seconds to call API. Default 3
Example:
{{.Exec}} {{.LongName}} dir
{{.Exec}} {{.LongName}} c1.json c2.yaml
{{.Exec}} {{.LongName}} -tags tag1 tag2
`,
Run: executeRemoveInbounds,
}
func executeRemoveInbounds(cmd *base.Command, args []string) {
api.SetSharedFlags(cmd)
api.SetSharedConfigFlags(cmd)
isTags := cmd.Flag.Bool("tags", false, "")
cmd.Flag.Parse(args)
var tags []string
if *isTags {
tags = cmd.Flag.Args()
} else {
c, err := helpers.LoadConfig(cmd.Flag.Args(), api.APIConfigFormat, api.APIConfigRecursively)
if err != nil {
base.Fatalf("failed to load: %s", err)
}
tags = make([]string, 0)
for _, c := range c.InboundConfigs {
tags = append(tags, c.Tag)
}
}
if len(tags) == 0 {
base.Fatalf("no inbound to remove")
}
conn, ctx, close := api.DialAPIServer()
defer close()
client := handlerService.NewHandlerServiceClient(conn)
for _, tag := range tags {
fmt.Println("removing:", tag)
r := &handlerService.RemoveInboundRequest{
Tag: tag,
}
_, err := client.RemoveInbound(ctx, r)
if err != nil {
base.Fatalf("failed to remove inbound: %s", err)
}
}
}