mirror of
https://github.com/gitpod-io/gitpod.git
synced 2025-12-08 17:36:30 +00:00
45 lines
1.2 KiB
Go
45 lines
1.2 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/public-api/experimental/v1"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var publicApiWorkspacesListCmd = &cobra.Command{
|
|
Use: "list",
|
|
Short: "List your workspaces",
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
conn, err := newPublicAPIConn()
|
|
if err != nil {
|
|
log.Log.WithError(err).Fatal()
|
|
}
|
|
|
|
service := v1.NewWorkspacesServiceClient(conn)
|
|
|
|
resp, err := service.ListWorkspaces(cmd.Context(), &v1.ListWorkspacesRequest{})
|
|
if err != nil {
|
|
log.WithError(err).Fatal("failed to retrieve workspace list")
|
|
return
|
|
}
|
|
|
|
tpl := `ID Owner ContextURL InstanceID InstanceStatus
|
|
{{- range .Result }}
|
|
{{ .WorkspaceId }} {{ .OwnerId }} {{ .Context.ContextUrl }} {{ .Status.Instance.InstanceId}} {{ .Status.Instance.Status.Phase}}
|
|
{{ end }}
|
|
`
|
|
err = getOutputFormat(tpl, "{..id}").Print(resp)
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
},
|
|
}
|
|
|
|
func init() {
|
|
publicApiWorkspacesCmd.AddCommand(publicApiWorkspacesListCmd)
|
|
}
|