mirror of
https://github.com/openziti/zrok.git
synced 2025-01-11 08:29:10 +01:00
Merge branch 'main' into v0.4_zrok_sdk
This commit is contained in:
commit
632ba4cc75
@ -1,3 +1,7 @@
|
||||
# v0.4.3
|
||||
|
||||
FEATURE: New `zrok overview` command, which returns all of the account details as a single JSON structure. See the OpenAPI spec at `specs/zrok.yml` for more details of the `/api/v1/overview` endpoint (https://github.com/openziti/zrok/issues/374)
|
||||
|
||||
# v0.4.2
|
||||
|
||||
Some days are just like this. `v0.4.2` is a re-do of `v0.4.1`. Trying to get Homebrew working and had a bad release. Hopefully this is the one.
|
||||
|
72
cmd/zrok/overview.go
Normal file
72
cmd/zrok/overview.go
Normal file
@ -0,0 +1,72 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"github.com/openziti/zrok/tui"
|
||||
"github.com/openziti/zrok/zrokdir"
|
||||
"github.com/spf13/cobra"
|
||||
"io"
|
||||
"net/http"
|
||||
)
|
||||
|
||||
func init() {
|
||||
rootCmd.AddCommand(newOverviewCommand().cmd)
|
||||
}
|
||||
|
||||
type overviewCommand struct {
|
||||
cmd *cobra.Command
|
||||
}
|
||||
|
||||
func newOverviewCommand() *overviewCommand {
|
||||
cmd := &cobra.Command{
|
||||
Use: "overview",
|
||||
Short: "Retrieve all of the zrok account details (environments, shares) as JSON",
|
||||
Args: cobra.ExactArgs(0),
|
||||
}
|
||||
command := &overviewCommand{cmd: cmd}
|
||||
cmd.Run = command.run
|
||||
return command
|
||||
}
|
||||
|
||||
func (cmd *overviewCommand) run(_ *cobra.Command, _ []string) {
|
||||
zrd, err := zrokdir.Load()
|
||||
if err != nil {
|
||||
if !panicInstead {
|
||||
tui.Error("error loading zrokdir", err)
|
||||
}
|
||||
panic(err)
|
||||
}
|
||||
|
||||
if zrd.Env == nil {
|
||||
tui.Error("unable to load environment; did you 'zrok enable'?", nil)
|
||||
}
|
||||
|
||||
client := &http.Client{}
|
||||
apiEndpoint, _ := zrd.ApiEndpoint()
|
||||
req, err := http.NewRequest("GET", fmt.Sprintf("%v/api/v1/overview", apiEndpoint), nil)
|
||||
if err != nil {
|
||||
if !panicInstead {
|
||||
tui.Error("error accessing overview", err)
|
||||
}
|
||||
panic(err)
|
||||
}
|
||||
req.Header.Add("X-TOKEN", zrd.Env.Token)
|
||||
resp, err := client.Do(req)
|
||||
if err != nil {
|
||||
if !panicInstead {
|
||||
tui.Error("error requesting overview", err)
|
||||
}
|
||||
panic(err)
|
||||
}
|
||||
|
||||
json, err := io.ReadAll(resp.Body)
|
||||
if err != nil {
|
||||
if !panicInstead {
|
||||
tui.Error("error reading body", err)
|
||||
}
|
||||
panic(err)
|
||||
}
|
||||
_ = resp.Body.Close()
|
||||
|
||||
fmt.Println(string(json))
|
||||
}
|
Loading…
Reference in New Issue
Block a user