-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathmain.go
67 lines (57 loc) · 1.86 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
package main
import (
"github.com/michaelquigley/pfxlog"
"github.com/openziti/sdk-golang/example/reflect/cmd"
"github.com/openziti/sdk-golang/ziti"
"github.com/sirupsen/logrus"
"github.com/spf13/cobra"
)
var log = pfxlog.Logger()
var verbose bool
var rootCmd = &cobra.Command{Use: "app"}
func main() {
logrus.SetFormatter(&logrus.TextFormatter{
ForceColors: true,
DisableTimestamp: true,
TimestampFormat: "",
PadLevelText: true,
})
logrus.SetReportCaller(false)
rootCmd.PersistentPreRun = func(cmd *cobra.Command, args []string) {
if verbose {
logrus.SetLevel(logrus.DebugLevel)
}
}
rootCmd.PersistentFlags().BoolVarP(&verbose, "verbose", "v", false, "Enable verbose logging")
rootCmd.PersistentFlags().StringP("identity", "i", "", "REQUIRED: Path to JSON file that contains an enrolled identity")
rootCmd.PersistentFlags().StringP("serviceName", "s", "", "REQUIRED: The service to host")
_ = cobra.MarkFlagRequired(rootCmd.PersistentFlags(), "identity")
_ = cobra.MarkFlagRequired(rootCmd.PersistentFlags(), "serviceName")
var serverCmd = &cobra.Command{
Use: "server",
Short: "run the process as a server",
Run: func(subcmd *cobra.Command, args []string) {
cmd.Server(getConfig(), rootCmd.Flag("serviceName").Value.String())
},
}
var clientCmd = &cobra.Command{
Use: "client",
Short: "run the process as a client",
Run: func(subcmd *cobra.Command, args []string) {
cmd.Client(getConfig(), rootCmd.Flag("serviceName").Value.String())
},
}
rootCmd.AddCommand(clientCmd, serverCmd)
_ = rootCmd.Execute()
}
func getConfig() (zitiCfg *ziti.Config) {
identityJson := rootCmd.Flag("identity").Value.String()
zitiCfg, err := ziti.NewConfigFromFile(identityJson)
if err != nil {
log.Fatalf("failed to load ziti configuration file: %v", err)
}
zitiCfg.ConfigTypes = []string{
"ziti-tunneler-client.v1",
}
return zitiCfg
}