gitpod/dev/gpctl/cmd/public-api-workspaces-list.go
Gero Posmyk-Leinemann 33f9c0b6a7
[proxy] Expose v1 api on api. subdomain (#19089)
* [proxy] Expose v1 api on api. subdomain

* [gpctl] Move to use gRPC on api.gitpod.io directly

* [proxy] Remove "test compression" comment as that has been tested and works
2023-11-20 14:59:58 +02:00

49 lines
1.3 KiB
Go

// Copyright (c) 2022 Gitpod GmbH. All rights reserved.
// Licensed under the GNU Affero General Public License (AGPL).
// See License.AGPL.txt in the project root for license information.
package cmd
import (
"github.com/gitpod-io/gitpod/common-go/log"
v1 "github.com/gitpod-io/gitpod/components/public-api/go/v1"
"github.com/spf13/cobra"
)
var publicApiWorkspacesListCmd = &cobra.Command{
Use: "list",
Aliases: []string{"ls"},
Short: "List your workspaces",
Args: cobra.ExactArgs(1),
Run: func(cmd *cobra.Command, args []string) {
organizationID := args[0]
conn, err := newPublicAPIConn()
if err != nil {
log.Log.WithError(err).Fatal()
}
service := v1.NewWorkspaceServiceClient(conn)
resp, err := service.ListWorkspaces(cmd.Context(), &v1.ListWorkspacesRequest{OrganizationId: organizationID})
if err != nil {
log.WithError(err).Fatal("failed to retrieve workspace list")
return
}
tpl := `ID OrganizationID ContextURL InstanceID InstanceStatus
{{- range .Workspaces }}
{{ .Id }} {{ .OrganizationId }} {{ .ContextUrl }} {{ .Status.InstanceId }} {{ .Status.Phase.Name }}
{{ end }}
`
err = getOutputFormat(tpl, "{..id}").Print(resp)
if err != nil {
log.Fatal(err)
}
},
}
func init() {
publicApiWorkspacesCmd.AddCommand(publicApiWorkspacesListCmd)
}