mirror of
https://github.com/openziti/zrok.git
synced 2025-01-03 12:39:07 +01:00
75 lines
1.7 KiB
Go
75 lines
1.7 KiB
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
httptransport "github.com/go-openapi/runtime/client"
|
|
"github.com/openziti/zrok/rest_client_zrok/environment"
|
|
"github.com/openziti/zrok/rest_model_zrok"
|
|
"github.com/openziti/zrok/tui"
|
|
"github.com/openziti/zrok/zrokdir"
|
|
"github.com/sirupsen/logrus"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func init() {
|
|
rootCmd.AddCommand(newDisableCommand().cmd)
|
|
}
|
|
|
|
type disableCommand struct {
|
|
cmd *cobra.Command
|
|
}
|
|
|
|
func newDisableCommand() *disableCommand {
|
|
cmd := &cobra.Command{
|
|
Use: "disable",
|
|
Short: "Disable (and clean up) the enabled zrok environment",
|
|
Args: cobra.NoArgs,
|
|
}
|
|
command := &disableCommand{cmd: cmd}
|
|
cmd.Run = command.run
|
|
return command
|
|
}
|
|
|
|
func (cmd *disableCommand) run(_ *cobra.Command, _ []string) {
|
|
zrd, err := zrokdir.Load()
|
|
if err != nil {
|
|
if !panicInstead {
|
|
tui.Error("unable to load zrokdir", err)
|
|
}
|
|
panic(err)
|
|
}
|
|
|
|
if zrd.Env == nil {
|
|
tui.Error("no environment found; nothing to disable!", nil)
|
|
}
|
|
|
|
zrok, err := zrd.Client()
|
|
if err != nil {
|
|
if !panicInstead {
|
|
tui.Error("could not create zrok client", err)
|
|
}
|
|
panic(err)
|
|
}
|
|
auth := httptransport.APIKeyAuth("X-TOKEN", "header", zrd.Env.Token)
|
|
req := environment.NewDisableParams()
|
|
req.Body = &rest_model_zrok.DisableRequest{
|
|
Identity: zrd.Env.ZId,
|
|
}
|
|
_, err = zrok.Environment.Disable(req, auth)
|
|
if err != nil {
|
|
logrus.Warnf("share cleanup failed (%v); will clean up local environment", err)
|
|
}
|
|
if err := zrokdir.DeleteEnvironment(); err != nil {
|
|
if !panicInstead {
|
|
tui.Error("error removing zrok environment", err)
|
|
}
|
|
panic(err)
|
|
}
|
|
if err := zrokdir.DeleteZitiIdentity("backend"); err != nil {
|
|
if !panicInstead {
|
|
tui.Error("error removing zrok backend identity", err)
|
|
}
|
|
}
|
|
fmt.Println("zrok environment disabled...")
|
|
}
|