yao/cmd/websocket.go
2022-07-17 09:08:57 +08:00

71 lines
1.7 KiB
Go

package cmd
import (
"fmt"
"strings"
"github.com/fatih/color"
"github.com/spf13/cobra"
"github.com/yaoapp/gou"
"github.com/yaoapp/kun/exception"
"github.com/yaoapp/yao/config"
"github.com/yaoapp/yao/engine"
"github.com/yaoapp/yao/share"
)
var websocketCmd = &cobra.Command{
Use: "websocket",
Short: L("Open a websocket connection"),
Long: L("Open a websocket connection"),
Run: func(cmd *cobra.Command, args []string) {
defer share.SessionStop()
defer gou.KillPlugins()
defer func() {
err := exception.Catch(recover())
if err != nil {
fmt.Println(color.RedString(L("Fatal: %s"), err.Error()))
}
}()
Boot()
cfg := config.Conf
cfg.Session.IsCLI = true
engine.Load(cfg)
if len(args) < 1 {
fmt.Println(color.RedString(L("Not enough arguments")))
fmt.Println(color.WhiteString(share.BUILDNAME + " help"))
return
}
name := args[0]
websocket, has := gou.WebSockets[name]
if !has {
fmt.Println(color.RedString(L("%s not exists!"), name))
return
}
url := websocket.URL
protocols := websocket.Protocols
argsLen := len(args)
if argsLen > 1 {
url = args[1]
}
if argsLen > 2 {
protocols = args[2:]
}
fmt.Println(color.WhiteString("\n---------------------------------"))
fmt.Println(color.WhiteString(websocket.Name))
fmt.Println(color.WhiteString("---------------------------------"))
fmt.Println(color.GreenString(" URL: %s", url))
fmt.Println(color.GreenString("Protocols: %s", strings.Join(protocols, ",")))
fmt.Println(color.WhiteString("--------------------------------------"))
pargs := append([]string{url}, protocols...)
err := websocket.Open(pargs...)
if err != nil {
fmt.Println(color.RedString(L("%s"), err.Error()))
return
}
},
}