118 lines
3.3 KiB
Go
118 lines
3.3 KiB
Go
package codespaces
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"encoding/json"
|
|
"fmt"
|
|
"net"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/cli/cli/v2/internal/api"
|
|
"github.com/cli/cli/v2/internal/liveshare"
|
|
)
|
|
|
|
// PostCreateStateStatus is a string value representing the different statuses a state can have.
|
|
type PostCreateStateStatus string
|
|
|
|
func (p PostCreateStateStatus) String() string {
|
|
return strings.Title(string(p))
|
|
}
|
|
|
|
const (
|
|
PostCreateStateRunning PostCreateStateStatus = "running"
|
|
PostCreateStateSuccess PostCreateStateStatus = "succeeded"
|
|
PostCreateStateFailed PostCreateStateStatus = "failed"
|
|
)
|
|
|
|
// PostCreateState is a combination of a state and status value that is captured
|
|
// during codespace creation.
|
|
type PostCreateState struct {
|
|
Name string `json:"name"`
|
|
Status PostCreateStateStatus `json:"status"`
|
|
}
|
|
|
|
// PollPostCreateStates watches for state changes in a codespace,
|
|
// and calls the supplied poller for each batch of state changes.
|
|
// It runs until it encounters an error, including cancellation of the context.
|
|
func PollPostCreateStates(ctx context.Context, log logger, apiClient apiClient, user *api.User, codespace *api.Codespace, poller func([]PostCreateState)) (err error) {
|
|
token, err := apiClient.GetCodespaceToken(ctx, user.Login, codespace.Name)
|
|
if err != nil {
|
|
return fmt.Errorf("getting codespace token: %w", err)
|
|
}
|
|
|
|
session, err := ConnectToLiveshare(ctx, log, apiClient, user.Login, token, codespace)
|
|
if err != nil {
|
|
return fmt.Errorf("connect to Live Share: %w", err)
|
|
}
|
|
defer func() {
|
|
if closeErr := session.Close(); err == nil {
|
|
err = closeErr
|
|
}
|
|
}()
|
|
|
|
// Ensure local port is listening before client (getPostCreateOutput) connects.
|
|
listen, err := net.Listen("tcp", ":0") // arbitrary port
|
|
if err != nil {
|
|
return err
|
|
}
|
|
localPort := listen.Addr().(*net.TCPAddr).Port
|
|
|
|
log.Println("Fetching SSH Details...")
|
|
remoteSSHServerPort, sshUser, err := session.StartSSHServer(ctx)
|
|
if err != nil {
|
|
return fmt.Errorf("error getting ssh server details: %w", err)
|
|
}
|
|
|
|
tunnelClosed := make(chan error, 1) // buffered to avoid sender stuckness
|
|
go func() {
|
|
fwd := liveshare.NewPortForwarder(session, "sshd", remoteSSHServerPort)
|
|
tunnelClosed <- fwd.ForwardToListener(ctx, listen) // error is non-nil
|
|
}()
|
|
|
|
t := time.NewTicker(1 * time.Second)
|
|
defer t.Stop()
|
|
|
|
for {
|
|
select {
|
|
case <-ctx.Done():
|
|
return ctx.Err()
|
|
|
|
case err := <-tunnelClosed:
|
|
return fmt.Errorf("connection failed: %w", err)
|
|
|
|
case <-t.C:
|
|
states, err := getPostCreateOutput(ctx, localPort, codespace, sshUser)
|
|
if err != nil {
|
|
return fmt.Errorf("get post create output: %w", err)
|
|
}
|
|
|
|
poller(states)
|
|
}
|
|
}
|
|
}
|
|
|
|
func getPostCreateOutput(ctx context.Context, tunnelPort int, codespace *api.Codespace, user string) ([]PostCreateState, error) {
|
|
cmd, err := NewRemoteCommand(
|
|
ctx, tunnelPort, fmt.Sprintf("%s@localhost", user),
|
|
"cat /workspaces/.codespaces/shared/postCreateOutput.json",
|
|
)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("remote command: %w", err)
|
|
}
|
|
|
|
stdout := new(bytes.Buffer)
|
|
cmd.Stdout = stdout
|
|
if err := cmd.Run(); err != nil {
|
|
return nil, fmt.Errorf("run command: %w", err)
|
|
}
|
|
var output struct {
|
|
Steps []PostCreateState `json:"steps"`
|
|
}
|
|
if err := json.Unmarshal(stdout.Bytes(), &output); err != nil {
|
|
return nil, fmt.Errorf("unmarshal output: %w", err)
|
|
}
|
|
|
|
return output.Steps, nil
|
|
}
|