Rename CLI trust-center commands

Replace the trust-center command tree with
compliance-portal so the CLI matches the
product and GraphQL rename.

Signed-off-by: Bryan Frimin <bryan@probo.com>
This commit is contained in:
Bryan Frimin
2026-07-20 18:08:22 +02:00
parent 8773a54396
commit 263ea61aba
27 changed files with 183 additions and 183 deletions

View File

@@ -0,0 +1,45 @@
// Copyright (c) 2026 Probo Inc <hello@probo.com>.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
package commitment
import (
"github.com/spf13/cobra"
"go.probo.inc/probo/pkg/cmd/cmdutil"
"go.probo.inc/probo/pkg/cmd/compliance-portal/commitment/create"
"go.probo.inc/probo/pkg/cmd/compliance-portal/commitment/delete"
"go.probo.inc/probo/pkg/cmd/compliance-portal/commitment/list"
"go.probo.inc/probo/pkg/cmd/compliance-portal/commitment/update"
)
func NewCmdCommitment(f *cmdutil.Factory) *cobra.Command {
cmd := &cobra.Command{
Use: "commitment <command>",
Short: "Manage compliance portal commitments",
Aliases: []string{"cmt"},
}
cmd.AddCommand(list.NewCmdList(f))
cmd.AddCommand(create.NewCmdCreate(f))
cmd.AddCommand(update.NewCmdUpdate(f))
cmd.AddCommand(delete.NewCmdDelete(f))
return cmd
}

View File

@@ -0,0 +1,246 @@
// Copyright (c) 2026 Probo Inc <hello@probo.com>.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
package create
import (
"encoding/json"
"fmt"
"github.com/charmbracelet/huh"
"github.com/spf13/cobra"
"go.probo.inc/probo/pkg/cli/api"
"go.probo.inc/probo/pkg/cmd/cmdutil"
)
var validIcons = []string{
"LOCK_KEY",
"EYE_SLASH",
"FINGERPRINT",
"SHIELD_WARNING",
"SHIELD_CHECK",
"SIREN",
"KEY",
"LOCK",
"CLOUD",
"DATABASE",
"GLOBE",
"EYE",
"USERS",
"CERTIFICATE",
"GAVEL",
"HEARTBEAT",
"BELL",
"BUG",
"CODE",
"SERVER",
}
const createMutation = `
mutation($input: CreateCompliancePortalCommitmentInput!) {
createCompliancePortalCommitment(input: $input) {
compliancePortalCommitmentEdge {
node {
id
icon
eyebrow
title
description
rank
}
}
}
}
`
type createResponse struct {
CreateCompliancePortalCommitment struct {
CompliancePortalCommitmentEdge struct {
Node struct {
ID string `json:"id"`
Icon string `json:"icon"`
Eyebrow string `json:"eyebrow"`
Title string `json:"title"`
Description string `json:"description"`
Rank int `json:"rank"`
} `json:"node"`
} `json:"compliancePortalCommitmentEdge"`
} `json:"createCompliancePortalCommitment"`
}
func NewCmdCreate(f *cmdutil.Factory) *cobra.Command {
var (
flagGroup string
flagIcon string
flagEyebrow string
flagTitle string
flagDescription string
)
cmd := &cobra.Command{
Use: "create",
Short: "Create a compliance portal commitment",
Example: ` # Create a commitment interactively
prb trust-center commitment create --group <group-id>
# Create a commitment non-interactively
prb trust-center cmt create --group <group-id> --icon SHIELD_CHECK --eyebrow "Security" --title "Encryption" --description "Data encrypted at rest"`,
RunE: func(cmd *cobra.Command, args []string) error {
cfg, err := f.Config()
if err != nil {
return err
}
host, hc, err := cfg.DefaultHost()
if err != nil {
return err
}
client := api.NewClient(
host,
hc.Token,
"/api/console/v1/graphql",
cfg.HTTPTimeoutDuration(),
cmdutil.TokenRefreshOption(cfg, host, hc),
)
if f.IOStreams.IsInteractive() {
if flagGroup == "" {
err := huh.NewInput().
Title("Commitment group ID").
Value(&flagGroup).
Run()
if err != nil {
return err
}
}
if flagIcon == "" {
iconOptions := make([]huh.Option[string], 0, len(validIcons))
for _, icon := range validIcons {
iconOptions = append(iconOptions, huh.NewOption(icon, icon))
}
err := huh.NewSelect[string]().
Title("Icon").
Options(iconOptions...).
Value(&flagIcon).
Run()
if err != nil {
return err
}
}
if flagEyebrow == "" {
err := huh.NewInput().
Title("Eyebrow").
Value(&flagEyebrow).
Run()
if err != nil {
return err
}
}
if flagTitle == "" {
err := huh.NewInput().
Title("Title").
Value(&flagTitle).
Run()
if err != nil {
return err
}
}
if flagDescription == "" {
err := huh.NewText().
Title("Description").
Value(&flagDescription).
Run()
if err != nil {
return err
}
}
}
if flagGroup == "" {
return fmt.Errorf("group is required; pass --group or run interactively")
}
if flagIcon == "" {
return fmt.Errorf("icon is required; pass --icon or run interactively")
}
if err := cmdutil.ValidateEnum("icon", flagIcon, validIcons); err != nil {
return err
}
if flagEyebrow == "" {
return fmt.Errorf("eyebrow is required; pass --eyebrow or run interactively")
}
if flagTitle == "" {
return fmt.Errorf("title is required; pass --title or run interactively")
}
if flagDescription == "" {
return fmt.Errorf("description is required; pass --description or run interactively")
}
data, err := client.Do(
createMutation,
map[string]any{
"input": map[string]any{
"groupId": flagGroup,
"icon": flagIcon,
"eyebrow": flagEyebrow,
"title": flagTitle,
"description": flagDescription,
},
},
)
if err != nil {
return err
}
var resp createResponse
if err := json.Unmarshal(data, &resp); err != nil {
return fmt.Errorf("cannot parse response: %w", err)
}
c := resp.CreateCompliancePortalCommitment.CompliancePortalCommitmentEdge.Node
_, _ = fmt.Fprintf(
f.IOStreams.Out,
"Created commitment %s (%s)\n",
c.ID,
c.Title,
)
return nil
},
}
cmd.Flags().StringVar(&flagGroup, "group", "", "Commitment group ID (required)")
cmd.Flags().StringVar(&flagIcon, "icon", "", "Commitment icon (required)")
cmd.Flags().StringVar(&flagEyebrow, "eyebrow", "", "Commitment eyebrow (required)")
cmd.Flags().StringVar(&flagTitle, "title", "", "Commitment title (required)")
cmd.Flags().StringVar(&flagDescription, "description", "", "Commitment description (required)")
return cmd
}

View File

@@ -0,0 +1,111 @@
// Copyright (c) 2026 Probo Inc <hello@probo.com>.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
package delete
import (
"fmt"
"github.com/charmbracelet/huh"
"github.com/spf13/cobra"
"go.probo.inc/probo/pkg/cli/api"
"go.probo.inc/probo/pkg/cmd/cmdutil"
)
const deleteMutation = `
mutation($input: DeleteCompliancePortalCommitmentInput!) {
deleteCompliancePortalCommitment(input: $input) {
deletedCompliancePortalCommitmentId
}
}
`
func NewCmdDelete(f *cmdutil.Factory) *cobra.Command {
var flagYes bool
cmd := &cobra.Command{
Use: "delete <id>",
Short: "Delete a compliance portal commitment",
Args: cobra.ExactArgs(1),
RunE: func(cmd *cobra.Command, args []string) error {
if !flagYes {
if !f.IOStreams.IsInteractive() {
return fmt.Errorf("cannot delete commitment: confirmation required, use --yes to confirm")
}
var confirmed bool
err := huh.NewConfirm().
Title(fmt.Sprintf("Delete commitment %s?", args[0])).
Value(&confirmed).
Run()
if err != nil {
return err
}
if !confirmed {
return nil
}
}
cfg, err := f.Config()
if err != nil {
return err
}
host, hc, err := cfg.DefaultHost()
if err != nil {
return err
}
client := api.NewClient(
host,
hc.Token,
"/api/console/v1/graphql",
cfg.HTTPTimeoutDuration(),
cmdutil.TokenRefreshOption(cfg, host, hc),
)
_, err = client.Do(
deleteMutation,
map[string]any{
"input": map[string]any{
"id": args[0],
},
},
)
if err != nil {
return err
}
_, _ = fmt.Fprintf(
f.IOStreams.Out,
"Deleted commitment %s\n",
args[0],
)
return nil
},
}
cmd.Flags().BoolVarP(&flagYes, "yes", "y", false, "Skip confirmation prompt")
return cmd
}

View File

@@ -0,0 +1,206 @@
// Copyright (c) 2026 Probo Inc <hello@probo.com>.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
package list
import (
"encoding/json"
"fmt"
"github.com/spf13/cobra"
"go.probo.inc/probo/pkg/cli/api"
"go.probo.inc/probo/pkg/cmd/cmdutil"
)
const listQuery = `
query($id: ID!, $first: Int, $after: CursorKey, $orderBy: CompliancePortalCommitmentOrder) {
node(id: $id) {
__typename
... on CompliancePortalCommitmentGroup {
commitments(first: $first, after: $after, orderBy: $orderBy) {
totalCount
edges {
node {
id
icon
eyebrow
title
description
rank
createdAt
}
}
pageInfo {
hasNextPage
endCursor
}
}
}
}
}
`
type commitment struct {
ID string `json:"id"`
Icon string `json:"icon"`
Eyebrow string `json:"eyebrow"`
Title string `json:"title"`
Description string `json:"description"`
Rank int `json:"rank"`
CreatedAt string `json:"createdAt"`
}
func NewCmdList(f *cmdutil.Factory) *cobra.Command {
var (
flagGroup string
flagLimit int
flagOrderBy string
flagOrderDir string
flagOutput *string
)
cmd := &cobra.Command{
Use: "list",
Short: "List compliance portal commitments",
Aliases: []string{"ls"},
Example: ` # List commitments in a group
prb trust-center commitment list --group <group-id>
# List commitments sorted by rank
prb trust-center cmt ls --group <group-id> --order-by RANK`,
Args: cobra.NoArgs,
RunE: func(cmd *cobra.Command, args []string) error {
if err := cmdutil.ValidateOutputFlag(flagOutput); err != nil {
return err
}
if flagGroup == "" {
return fmt.Errorf("group is required; pass --group")
}
cfg, err := f.Config()
if err != nil {
return err
}
host, hc, err := cfg.DefaultHost()
if err != nil {
return err
}
client := api.NewClient(
host,
hc.Token,
"/api/console/v1/graphql",
cfg.HTTPTimeoutDuration(),
cmdutil.TokenRefreshOption(cfg, host, hc),
)
variables := map[string]any{
"id": flagGroup,
}
if flagOrderBy != "" {
if err := cmdutil.ValidateEnum("order-by", flagOrderBy, []string{"RANK", "CREATED_AT", "UPDATED_AT"}); err != nil {
return err
}
variables["orderBy"] = map[string]any{
"field": flagOrderBy,
"direction": flagOrderDir,
}
}
commitments, totalCount, err := api.Paginate(
client,
listQuery,
variables,
flagLimit,
func(data json.RawMessage) (*api.Connection[commitment], error) {
var resp struct {
Node *struct {
Typename string `json:"__typename"`
Commitments api.Connection[commitment] `json:"commitments"`
} `json:"node"`
}
if err := json.Unmarshal(data, &resp); err != nil {
return nil, err
}
if resp.Node == nil {
return nil, fmt.Errorf("commitment group %s not found", flagGroup)
}
if resp.Node.Typename != "CompliancePortalCommitmentGroup" {
return nil, fmt.Errorf("expected CompliancePortalCommitmentGroup node, got %s", resp.Node.Typename)
}
return &resp.Node.Commitments, nil
},
)
if err != nil {
return err
}
if *flagOutput == cmdutil.OutputJSON {
return cmdutil.PrintJSON(f.IOStreams.Out, commitments)
}
if len(commitments) == 0 {
_, _ = fmt.Fprintln(f.IOStreams.Out, "No commitments found.")
return nil
}
rows := make([][]string, 0, len(commitments))
for _, c := range commitments {
rows = append(rows, []string{
c.ID,
c.Icon,
c.Eyebrow,
c.Title,
fmt.Sprintf("%d", c.Rank),
})
}
t := cmdutil.NewTable("ID", "ICON", "EYEBROW", "TITLE", "RANK").Rows(rows...)
_, _ = fmt.Fprintln(f.IOStreams.Out, t)
if totalCount > len(commitments) {
_, _ = fmt.Fprintf(
f.IOStreams.ErrOut,
"\nShowing %d of %d commitments\n",
len(commitments),
totalCount,
)
}
return nil
},
}
cmd.Flags().StringVar(&flagGroup, "group", "", "Commitment group ID (required)")
cmd.Flags().IntVarP(&flagLimit, "limit", "L", 30, "Maximum number of commitments to list")
cmd.Flags().StringVar(&flagOrderBy, "order-by", "", "Order by field (RANK, CREATED_AT, UPDATED_AT)")
cmd.Flags().StringVar(&flagOrderDir, "order-direction", "DESC", "Sort direction (ASC, DESC)")
flagOutput = cmdutil.AddOutputFlag(cmd)
return cmd
}

View File

@@ -0,0 +1,184 @@
// Copyright (c) 2026 Probo Inc <hello@probo.com>.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
package update
import (
"encoding/json"
"fmt"
"github.com/spf13/cobra"
"go.probo.inc/probo/pkg/cli/api"
"go.probo.inc/probo/pkg/cmd/cmdutil"
)
var validIcons = []string{
"LOCK_KEY",
"EYE_SLASH",
"FINGERPRINT",
"SHIELD_WARNING",
"SHIELD_CHECK",
"SIREN",
"KEY",
"LOCK",
"CLOUD",
"DATABASE",
"GLOBE",
"EYE",
"USERS",
"CERTIFICATE",
"GAVEL",
"HEARTBEAT",
"BELL",
"BUG",
"CODE",
"SERVER",
}
const updateMutation = `
mutation($input: UpdateCompliancePortalCommitmentInput!) {
updateCompliancePortalCommitment(input: $input) {
compliancePortalCommitment {
id
icon
eyebrow
title
description
rank
}
}
}
`
type updateResponse struct {
UpdateCompliancePortalCommitment struct {
CompliancePortalCommitment struct {
ID string `json:"id"`
Icon string `json:"icon"`
Eyebrow string `json:"eyebrow"`
Title string `json:"title"`
Description string `json:"description"`
Rank int `json:"rank"`
} `json:"compliancePortalCommitment"`
} `json:"updateCompliancePortalCommitment"`
}
func NewCmdUpdate(f *cmdutil.Factory) *cobra.Command {
var (
flagIcon string
flagEyebrow string
flagTitle string
flagDescription string
flagRank int
)
cmd := &cobra.Command{
Use: "update <id>",
Short: "Update a compliance portal commitment",
Example: ` # Update a commitment title
prb trust-center commitment update <id> --title "Encryption at rest"
# Update icon and rank
prb trust-center cmt update <id> --icon SHIELD_CHECK --rank 1`,
Args: cobra.ExactArgs(1),
RunE: func(cmd *cobra.Command, args []string) error {
cfg, err := f.Config()
if err != nil {
return err
}
host, hc, err := cfg.DefaultHost()
if err != nil {
return err
}
client := api.NewClient(
host,
hc.Token,
"/api/console/v1/graphql",
cfg.HTTPTimeoutDuration(),
cmdutil.TokenRefreshOption(cfg, host, hc),
)
input := map[string]any{
"id": args[0],
}
if cmd.Flags().Changed("icon") {
if err := cmdutil.ValidateEnum("icon", flagIcon, validIcons); err != nil {
return err
}
input["icon"] = flagIcon
}
if cmd.Flags().Changed("eyebrow") {
input["eyebrow"] = flagEyebrow
}
if cmd.Flags().Changed("title") {
input["title"] = flagTitle
}
if cmd.Flags().Changed("description") {
input["description"] = flagDescription
}
if cmd.Flags().Changed("rank") {
input["rank"] = flagRank
}
if len(input) == 1 {
return fmt.Errorf("at least one field must be specified for update")
}
data, err := client.Do(
updateMutation,
map[string]any{"input": input},
)
if err != nil {
return err
}
var resp updateResponse
if err := json.Unmarshal(data, &resp); err != nil {
return fmt.Errorf("cannot parse response: %w", err)
}
c := resp.UpdateCompliancePortalCommitment.CompliancePortalCommitment
_, _ = fmt.Fprintf(
f.IOStreams.Out,
"Updated commitment %s (%s)\n",
c.ID,
c.Title,
)
return nil
},
}
cmd.Flags().StringVar(&flagIcon, "icon", "", "Commitment icon")
cmd.Flags().StringVar(&flagEyebrow, "eyebrow", "", "Commitment eyebrow")
cmd.Flags().StringVar(&flagTitle, "title", "", "Commitment title")
cmd.Flags().StringVar(&flagDescription, "description", "", "Commitment description")
cmd.Flags().IntVar(&flagRank, "rank", 0, "Display rank")
return cmd
}