gitpod/components/gitpod-cli/cmd/stop-workspace.go
2021-10-26 11:40:03 +02:00

44 lines
1.1 KiB
Go

// Copyright (c) 2020 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"
"time"
gitpod "github.com/gitpod-io/gitpod/gitpod-cli/pkg/gitpod"
"github.com/spf13/cobra"
)
// stopWorkspaceCmd represents the stopWorkspaceCmd command
var stopWorkspaceCmd = &cobra.Command{
Use: "stop",
Short: "Stop current workspace",
Args: cobra.ArbitraryArgs,
Run: func(cmd *cobra.Command, args []string) {
ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
defer cancel()
wsInfo, err := gitpod.GetWSInfo(ctx)
if err != nil {
fail(err.Error())
}
client, err := gitpod.ConnectToServer(ctx, wsInfo, []string{
"function:stopWorkspace",
"resource:workspace::" + wsInfo.WorkspaceId + "::get/update",
})
if err != nil {
fail(err.Error())
}
err = client.StopWorkspace(ctx, wsInfo.WorkspaceId)
if err != nil {
fail(err.Error())
}
},
}
func init() {
rootCmd.AddCommand(stopWorkspaceCmd)
}