2018-04-10 17:46:49 +08:00
|
|
|
// Copyright 2018 fatedier, fatedier@gmail.com
|
|
|
|
//
|
|
|
|
// 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"
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
|
2020-09-23 13:49:14 +08:00
|
|
|
"github.com/fatedier/frp/pkg/config"
|
|
|
|
"github.com/fatedier/frp/pkg/consts"
|
2018-04-10 17:46:49 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
2020-05-19 10:49:29 +08:00
|
|
|
RegisterCommonFlags(httpsCmd)
|
2018-04-10 17:46:49 +08:00
|
|
|
|
|
|
|
httpsCmd.PersistentFlags().StringVarP(&proxyName, "proxy_name", "n", "", "proxy name")
|
2020-05-24 17:48:37 +08:00
|
|
|
httpsCmd.PersistentFlags().StringVarP(&localIP, "local_ip", "i", "127.0.0.1", "local ip")
|
2018-04-10 17:46:49 +08:00
|
|
|
httpsCmd.PersistentFlags().IntVarP(&localPort, "local_port", "l", 0, "local port")
|
|
|
|
httpsCmd.PersistentFlags().StringVarP(&customDomains, "custom_domain", "d", "", "custom domain")
|
|
|
|
httpsCmd.PersistentFlags().StringVarP(&subDomain, "sd", "", "", "sub domain")
|
|
|
|
httpsCmd.PersistentFlags().BoolVarP(&useEncryption, "ue", "", false, "use encryption")
|
|
|
|
httpsCmd.PersistentFlags().BoolVarP(&useCompression, "uc", "", false, "use compression")
|
2023-02-09 00:38:36 +08:00
|
|
|
httpsCmd.PersistentFlags().StringVarP(&bandwidthLimit, "bandwidth_limit", "", "", "bandwidth limit")
|
|
|
|
httpsCmd.PersistentFlags().StringVarP(&bandwidthLimitMode, "bandwidth_limit_mode", "", config.BandwidthLimitModeClient, "bandwidth limit mode")
|
2018-04-10 17:46:49 +08:00
|
|
|
|
|
|
|
rootCmd.AddCommand(httpsCmd)
|
|
|
|
}
|
|
|
|
|
|
|
|
var httpsCmd = &cobra.Command{
|
|
|
|
Use: "https",
|
|
|
|
Short: "Run frpc with a single https proxy",
|
|
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
2021-06-02 23:54:22 +08:00
|
|
|
clientCfg, err := parseClientCommonCfgFromCmd()
|
2018-04-10 17:46:49 +08:00
|
|
|
if err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
|
2020-05-24 17:48:37 +08:00
|
|
|
cfg := &config.HTTPSProxyConf{}
|
2018-04-10 17:46:49 +08:00
|
|
|
var prefix string
|
|
|
|
if user != "" {
|
|
|
|
prefix = user + "."
|
|
|
|
}
|
|
|
|
cfg.ProxyName = prefix + proxyName
|
2020-05-24 17:48:37 +08:00
|
|
|
cfg.ProxyType = consts.HTTPSProxy
|
|
|
|
cfg.LocalIP = localIP
|
2018-04-10 17:46:49 +08:00
|
|
|
cfg.LocalPort = localPort
|
|
|
|
cfg.CustomDomains = strings.Split(customDomains, ",")
|
|
|
|
cfg.SubDomain = subDomain
|
|
|
|
cfg.UseEncryption = useEncryption
|
|
|
|
cfg.UseCompression = useCompression
|
2023-02-09 00:38:36 +08:00
|
|
|
cfg.BandwidthLimit, err = config.NewBandwidthQuantity(bandwidthLimit)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
cfg.BandwidthLimitMode = bandwidthLimitMode
|
2018-04-10 17:46:49 +08:00
|
|
|
|
|
|
|
err = cfg.CheckForCli()
|
|
|
|
if err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
|
|
|
|
proxyConfs := map[string]config.ProxyConf{
|
|
|
|
cfg.ProxyName: cfg,
|
|
|
|
}
|
2019-08-21 04:53:27 +08:00
|
|
|
err = startService(clientCfg, proxyConfs, nil, "")
|
2018-04-10 17:46:49 +08:00
|
|
|
if err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
}
|