-
Notifications
You must be signed in to change notification settings - Fork 314
/
Copy pathtrigger.go
81 lines (64 loc) · 1.96 KB
/
trigger.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
package cli
import (
"context"
"fmt"
"io"
"net/http"
"strings"
"time"
"github.com/pkg/errors"
"github.com/spf13/cobra"
"k8s.io/cli-runtime/pkg/genericclioptions"
"github.com/tilt-dev/tilt/internal/analytics"
analytics2 "github.com/tilt-dev/tilt/internal/engine/analytics"
"github.com/tilt-dev/tilt/pkg/model"
)
type triggerCmd struct {
streams genericclioptions.IOStreams
}
var _ tiltCmd = &triggerCmd{}
func newTriggerCmd(streams genericclioptions.IOStreams) *triggerCmd {
return &triggerCmd{
streams: streams,
}
}
func (t triggerCmd) name() model.TiltSubcommand {
return "trigger"
}
func (t triggerCmd) register() *cobra.Command {
cmd := &cobra.Command{
Use: "trigger [RESOURCE_NAME]",
Short: "Trigger an update for the specified resource",
Long: `Trigger an update for the specified resource.
If the resource has Trigger Mode: Manual and has pending changes, this command will cause those pending changes to be applied.
Otherwise, this command will force a full rebuild.
`,
Args: cobra.ExactArgs(1),
}
addConnectServerFlags(cmd)
return cmd
}
func (t triggerCmd) run(ctx context.Context, args []string) error {
resource := args[0]
a := analytics.Get(ctx)
a.Incr("cmd.trigger", make(analytics2.CmdTags))
defer a.Flush(time.Second)
// TODO(maia): this should probably be the triggerPayload struct, but seems
// like a lot of code to move over (to avoid import cycles) for one call.
payload := []byte(fmt.Sprintf(`{"manifest_names":[%q], "build_reason": %d}`, resource, model.BuildReasonFlagTriggerCLI))
r, status := apiPostJson("trigger", payload)
b, err := io.ReadAll(r)
if err != nil {
return errors.Wrap(err, "error reading response from tilt api")
}
_ = r.Close()
body := strings.TrimSpace(string(b))
if status != http.StatusOK {
return fmt.Errorf("(%d): %s", status, body)
}
if len(body) > 0 {
return errors.New(body)
}
_, _ = fmt.Fprintf(t.streams.Out, "Successfully triggered update for resource: %q\n", resource)
return nil
}