You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
boundary/internal/cmd/commands/ferry/pause.go

137 lines
3.2 KiB

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
package ferry
import (
"context"
"strings"
"time"
"github.com/hashicorp/boundary/api"
"github.com/hashicorp/boundary/internal/cmd/base"
"github.com/hashicorp/boundary/internal/errors"
"github.com/hashicorp/go-retryablehttp"
"github.com/mitchellh/cli"
"github.com/posener/complete"
)
var (
_ cli.Command = (*PauseCommand)(nil)
_ cli.CommandAutocomplete = (*PauseCommand)(nil)
)
type PauseCommand struct {
*base.Command
}
func (c *PauseCommand) Synopsis() string {
return "Pauses the running boundary ferry daemon"
}
func (c *PauseCommand) Help() string {
helpText := `
Usage: boundary ferry pause
Pause the boundary ferry daemon:
$ boundary ferry pause
For a full list of examples, please see the documentation.
` + c.Flags().Help()
return strings.TrimSpace(helpText)
}
func (c *PauseCommand) Flags() *base.FlagSets {
set := c.FlagSet(base.FlagSetOutputFormat)
f := set.NewFlagSet("Client Options")
f.BoolVar(&base.BoolVar{
Name: "output-curl-string",
Target: &c.FlagOutputCurlString,
Usage: "Instead of executing the request, print an equivalent cURL command string and exit.",
})
f.UintVar(&base.UintVar{
Name: "ferry-port",
Target: &c.FlagFerryDaemonPort,
Default: 9300,
EnvVar: base.EnvFerryDaemonPort,
Usage: "The port on which the ferry daemon is listening.",
})
return set
}
func (c *PauseCommand) AutocompleteArgs() complete.Predictor {
return complete.PredictNothing
}
func (c *PauseCommand) AutocompleteFlags() complete.Flags {
return c.Flags().Completions()
}
func (c *PauseCommand) Run(args []string) int {
ctx := c.Context
f := c.Flags()
if err := f.Parse(args); err != nil {
c.PrintCliError(err)
return base.CommandUserError
}
resp, apiErr, err := c.Pause(ctx)
if err != nil {
c.PrintCliError(err)
return base.CommandCliError
}
if apiErr != nil {
c.PrintApiError(apiErr, "Error from ferry daemon when attempting to pause")
return base.CommandApiError
}
switch base.Format(c.UI) {
case "json":
if ok := c.PrintJsonItem(resp); !ok {
return base.CommandCliError
}
default:
c.UI.Output("Ferry has been successfully paused.")
}
return base.CommandSuccess
}
func (c *PauseCommand) Pause(ctx context.Context) (*api.Response, *api.Error, error) {
const op = "ferry.(PauseCommand).Pause"
client := retryablehttp.NewClient()
client.Logger = nil
client.RetryWaitMin = 100 * time.Millisecond
client.RetryWaitMax = 1000 * time.Millisecond
req, err := retryablehttp.NewRequestWithContext(ctx, "POST", ferryUrl(c.FlagFerryDaemonPort, "v1/pause"), nil)
if err != nil {
return nil, nil, err
}
if c.FlagOutputCurlString {
api.LastOutputStringError = &api.OutputStringError{Request: req}
return nil, nil, api.LastOutputStringError
}
resp, err := client.Do(req)
if err != nil {
return nil, nil, errors.Wrap(ctx, err, op, errors.WithMsg("client do failed"))
}
apiResp := api.NewResponse(resp)
apiErr, err := apiResp.Decode(nil)
if err != nil {
return nil, nil, errors.Wrap(ctx, err, op, errors.WithMsg("error decoding Resume response"))
}
if apiErr != nil {
return nil, apiErr, nil
}
return apiResp, nil, nil
}