Files
sailpoint-cli/cmd/transform/list.go
2022-09-27 15:55:45 -04:00

61 lines
1.4 KiB
Go

// Copyright (c) 2021, SailPoint Technologies, Inc. All rights reserved.
package transform
import (
"encoding/json"
"fmt"
"io"
"net/http"
"github.com/olekukonko/tablewriter"
"github.com/sailpoint-oss/sp-cli/client"
transmodel "github.com/sailpoint-oss/sp-cli/cmd/transform/model"
"github.com/spf13/cobra"
)
func newListCmd(client client.Client) *cobra.Command {
return &cobra.Command{
Use: "list",
Short: "List transforms",
Long: "List transforms for tenant",
Aliases: []string{"ls"},
Args: cobra.NoArgs,
RunE: func(cmd *cobra.Command, args []string) error {
endpoint := cmd.Flags().Lookup("transforms-endpoint").Value.String()
resp, err := client.Get(cmd.Context(), endpoint)
if err != nil {
return err
}
defer func(Body io.ReadCloser) {
_ = Body.Close()
}(resp.Body)
if resp.StatusCode != http.StatusOK {
body, _ := io.ReadAll(resp.Body)
return fmt.Errorf("non-200 response: %s\nbody: %s", resp.Status, body)
}
raw, err := io.ReadAll(resp.Body)
if err != nil {
return err
}
var transforms []transmodel.Transform
err = json.Unmarshal(raw, &transforms)
if err != nil {
return err
}
table := tablewriter.NewWriter(cmd.OutOrStdout())
table.SetHeader(transmodel.TransformColumns)
for _, v := range transforms {
table.Append(v.TransformToColumns())
}
table.Render()
return nil
},
}
}