-
Notifications
You must be signed in to change notification settings - Fork 117
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cli integration for 'zrok org admin list' (#537)
- Loading branch information
1 parent
9880432
commit 9868058
Showing
1 changed file
with
76 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
package main | ||
|
||
import ( | ||
"fmt" | ||
httptransport "github.com/go-openapi/runtime/client" | ||
"github.com/jedib0t/go-pretty/v6/table" | ||
"github.com/openziti/zrok/environment" | ||
"github.com/openziti/zrok/rest_client_zrok/metadata" | ||
"github.com/openziti/zrok/tui" | ||
"github.com/spf13/cobra" | ||
"os" | ||
) | ||
|
||
func init() { | ||
organizationAdminCmd.AddCommand(newOrgAdminListCommand().cmd) | ||
} | ||
|
||
type orgAdminListCommand struct { | ||
cmd *cobra.Command | ||
} | ||
|
||
func newOrgAdminListCommand() *orgAdminListCommand { | ||
cmd := &cobra.Command{ | ||
Use: "list <organizationToken>", | ||
Short: "List the members of an organization", | ||
Args: cobra.ExactArgs(1), | ||
} | ||
command := &orgAdminListCommand{cmd} | ||
cmd.Run = command.run | ||
return command | ||
} | ||
|
||
func (c *orgAdminListCommand) run(_ *cobra.Command, args []string) { | ||
root, err := environment.LoadRoot() | ||
if err != nil { | ||
if !panicInstead { | ||
tui.Error("error loading zrokdir", err) | ||
} | ||
panic(err) | ||
} | ||
|
||
if !root.IsEnabled() { | ||
tui.Error("unable to load environment; did you 'zrok enable'?", nil) | ||
} | ||
|
||
zrok, err := root.Client() | ||
if err != nil { | ||
if !panicInstead { | ||
tui.Error("error loading zrokdir", err) | ||
} | ||
panic(err) | ||
} | ||
auth := httptransport.APIKeyAuth("X-TOKEN", "header", root.Environment().Token) | ||
|
||
req := metadata.NewListOrgMembersParams() | ||
req.OrganizationToken = args[0] | ||
|
||
resp, err := zrok.Metadata.ListOrgMembers(req, auth) | ||
if err != nil { | ||
if !panicInstead { | ||
tui.Error("error listing organization members", err) | ||
} | ||
panic(err) | ||
} | ||
|
||
fmt.Println() | ||
t := table.NewWriter() | ||
t.SetOutputMirror(os.Stdout) | ||
t.SetStyle(table.StyleColoredDark) | ||
t.AppendHeader(table.Row{"Email", "Admin?"}) | ||
for _, member := range resp.Payload.Members { | ||
t.AppendRow(table.Row{member.Email, member.Admin}) | ||
} | ||
t.Render() | ||
fmt.Println() | ||
} |