2023-09-15 10:33:32 +08:00
|
|
|
// Copyright 2023 The frp Authors
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package sub
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"os"
|
2024-02-20 12:01:41 +08:00
|
|
|
"slices"
|
2023-09-15 10:33:32 +08:00
|
|
|
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
|
2023-11-21 11:19:35 +08:00
|
|
|
"github.com/fatedier/frp/pkg/config"
|
2023-09-15 10:33:32 +08:00
|
|
|
v1 "github.com/fatedier/frp/pkg/config/v1"
|
|
|
|
"github.com/fatedier/frp/pkg/config/v1/validation"
|
|
|
|
)
|
|
|
|
|
2023-09-20 15:18:50 +08:00
|
|
|
var proxyTypes = []v1.ProxyType{
|
|
|
|
v1.ProxyTypeTCP,
|
|
|
|
v1.ProxyTypeUDP,
|
|
|
|
v1.ProxyTypeTCPMUX,
|
|
|
|
v1.ProxyTypeHTTP,
|
|
|
|
v1.ProxyTypeHTTPS,
|
|
|
|
v1.ProxyTypeSTCP,
|
|
|
|
v1.ProxyTypeSUDP,
|
|
|
|
v1.ProxyTypeXTCP,
|
2023-09-15 10:33:32 +08:00
|
|
|
}
|
|
|
|
|
2023-09-20 15:18:50 +08:00
|
|
|
var visitorTypes = []v1.VisitorType{
|
|
|
|
v1.VisitorTypeSTCP,
|
|
|
|
v1.VisitorTypeSUDP,
|
|
|
|
v1.VisitorTypeXTCP,
|
2023-09-15 10:33:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
for _, typ := range proxyTypes {
|
|
|
|
c := v1.NewProxyConfigurerByType(typ)
|
|
|
|
if c == nil {
|
|
|
|
panic("proxy type: " + typ + " not support")
|
|
|
|
}
|
|
|
|
clientCfg := v1.ClientCommonConfig{}
|
2023-09-20 15:18:50 +08:00
|
|
|
cmd := NewProxyCommand(string(typ), c, &clientCfg)
|
2023-11-21 11:19:35 +08:00
|
|
|
config.RegisterClientCommonConfigFlags(cmd, &clientCfg)
|
|
|
|
config.RegisterProxyFlags(cmd, c)
|
2023-09-15 10:33:32 +08:00
|
|
|
|
|
|
|
// add sub command for visitor
|
2024-02-20 12:01:41 +08:00
|
|
|
if slices.Contains(visitorTypes, v1.VisitorType(typ)) {
|
2023-09-20 15:18:50 +08:00
|
|
|
vc := v1.NewVisitorConfigurerByType(v1.VisitorType(typ))
|
2023-09-15 10:33:32 +08:00
|
|
|
if vc == nil {
|
|
|
|
panic("visitor type: " + typ + " not support")
|
|
|
|
}
|
2023-09-20 15:18:50 +08:00
|
|
|
visitorCmd := NewVisitorCommand(string(typ), vc, &clientCfg)
|
2023-11-21 11:19:35 +08:00
|
|
|
config.RegisterVisitorFlags(visitorCmd, vc)
|
2023-09-15 10:33:32 +08:00
|
|
|
cmd.AddCommand(visitorCmd)
|
|
|
|
}
|
|
|
|
rootCmd.AddCommand(cmd)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewProxyCommand(name string, c v1.ProxyConfigurer, clientCfg *v1.ClientCommonConfig) *cobra.Command {
|
|
|
|
return &cobra.Command{
|
|
|
|
Use: name,
|
|
|
|
Short: fmt.Sprintf("Run frpc with a single %s proxy", name),
|
|
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
|
|
clientCfg.Complete()
|
|
|
|
if _, err := validation.ValidateClientCommonConfig(clientCfg); err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
|
|
|
|
c.Complete(clientCfg.User)
|
|
|
|
c.GetBaseConfig().Type = name
|
|
|
|
if err := validation.ValidateProxyConfigurerForClient(c); err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
2023-11-16 21:03:36 +08:00
|
|
|
err := startService(clientCfg, []v1.ProxyConfigurer{c}, nil, "")
|
2023-09-15 10:33:32 +08:00
|
|
|
if err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewVisitorCommand(name string, c v1.VisitorConfigurer, clientCfg *v1.ClientCommonConfig) *cobra.Command {
|
|
|
|
return &cobra.Command{
|
|
|
|
Use: "visitor",
|
|
|
|
Short: fmt.Sprintf("Run frpc with a single %s visitor", name),
|
|
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
|
|
clientCfg.Complete()
|
|
|
|
if _, err := validation.ValidateClientCommonConfig(clientCfg); err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
|
|
|
|
c.Complete(clientCfg)
|
|
|
|
c.GetBaseConfig().Type = name
|
|
|
|
if err := validation.ValidateVisitorConfigurer(c); err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
2023-11-16 21:03:36 +08:00
|
|
|
err := startService(clientCfg, nil, []v1.VisitorConfigurer{c}, "")
|
2023-09-15 10:33:32 +08:00
|
|
|
if err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|