mirror of
https://github.com/gitpod-io/gitpod.git
synced 2025-12-08 17:36:30 +00:00
* cli: SSH / Opening improvements * Fix args in config setting * Log opening with URLs * Changelog * Fix changlog
70 lines
2.0 KiB
Go
70 lines
2.0 KiB
Go
// Copyright (c) 2023 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 (
|
|
"context"
|
|
"fmt"
|
|
"log/slog"
|
|
"time"
|
|
|
|
"github.com/bufbuild/connect-go"
|
|
v1 "github.com/gitpod-io/gitpod/components/public-api/go/experimental/v1"
|
|
"github.com/gitpod-io/local-app/pkg/helper"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var workspaceOpenOpts struct {
|
|
NoImplicitStart bool
|
|
}
|
|
|
|
// workspaceOpenCmd opens a given workspace in its pre-configured editor
|
|
var workspaceOpenCmd = &cobra.Command{
|
|
Use: "open <workspace-id>",
|
|
Short: "Opens a given workspace in its pre-configured editor",
|
|
Args: cobra.ExactArgs(1),
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
cmd.SilenceUsage = true
|
|
|
|
ctx, cancel := context.WithTimeout(cmd.Context(), 5*time.Minute)
|
|
defer cancel()
|
|
|
|
workspaceID := args[0]
|
|
|
|
gitpod, err := getGitpodClient(cmd.Context())
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
ws, err := gitpod.Workspaces.GetWorkspace(ctx, connect.NewRequest(&v1.GetWorkspaceRequest{WorkspaceId: workspaceID}))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if ws.Msg.Result.Status.Instance.Status.Phase != v1.WorkspaceInstanceStatus_PHASE_RUNNING {
|
|
if workspaceOpenOpts.NoImplicitStart {
|
|
return fmt.Errorf("workspace is not running")
|
|
}
|
|
slog.Info("workspace is not running, starting it...")
|
|
_, err := gitpod.Workspaces.StartWorkspace(ctx, connect.NewRequest(&v1.StartWorkspaceRequest{WorkspaceId: workspaceID}))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
_, err = helper.ObserveWorkspaceUntilStarted(ctx, gitpod, workspaceID)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
slog.Debug("attempting to open workspace...")
|
|
return helper.OpenWorkspaceInPreferredEditor(cmd.Context(), gitpod, workspaceID)
|
|
},
|
|
}
|
|
|
|
func init() {
|
|
workspaceCmd.AddCommand(workspaceOpenCmd)
|
|
workspaceOpenCmd.Flags().BoolVarP(&workspaceOpenOpts.NoImplicitStart, "no-implicit-start", "", false, "Do not start the workspace if it is not running")
|
|
}
|