Files

77 lines
1.8 KiB
Go
Raw Permalink Normal View History

2014-06-23 15:48:51 -04:00
package vagrantcloud
import (
2018-01-22 15:32:33 -08:00
"context"
2014-06-23 15:48:51 -04:00
"fmt"
2018-01-22 15:32:33 -08:00
2020-12-17 13:29:25 -08:00
"github.com/hashicorp/packer-plugin-sdk/multistep"
packersdk "github.com/hashicorp/packer-plugin-sdk/packer"
2014-06-23 15:48:51 -04:00
)
type Box struct {
Tag string `json:"tag"`
Versions []*Version `json:"versions"`
}
func (b *Box) HasVersion(version string) (bool, *Version) {
for _, v := range b.Versions {
if v.Version == version {
return true, v
}
}
return false, nil
2014-06-23 15:48:51 -04:00
}
type stepVerifyBox struct {
}
func (s *stepVerifyBox) Run(ctx context.Context, state multistep.StateBag) multistep.StepAction {
2014-06-23 15:48:51 -04:00
client := state.Get("client").(*VagrantCloudClient)
ui := state.Get("ui").(packersdk.Ui)
2019-12-19 11:21:51 -08:00
config := state.Get("config").(*Config)
2014-06-23 15:48:51 -04:00
ui.Say(fmt.Sprintf("Verifying box is accessible: %s", config.Tag))
path := fmt.Sprintf("box/%s", config.Tag)
resp, err := client.Get(path)
2014-08-12 18:11:27 +02:00
if err != nil {
state.Put("error", fmt.Errorf("Error retrieving box: %s", err))
return multistep.ActionHalt
}
if resp.StatusCode != 200 {
cloudErrors := &VagrantCloudErrors{}
err = decodeBody(resp, cloudErrors)
if err != nil {
ui.Error(fmt.Sprintf("error decoding error response: %s", err))
}
state.Put("error", fmt.Errorf("Error retrieving box: %s", cloudErrors.FormatErrors()))
2014-06-23 15:48:51 -04:00
return multistep.ActionHalt
}
box := &Box{}
if err = decodeBody(resp, box); err != nil {
state.Put("error", fmt.Errorf("Error parsing box response: %s", err))
return multistep.ActionHalt
}
if box.Tag != config.Tag {
state.Put("error", fmt.Errorf("Could not verify box: %s", config.Tag))
2014-06-23 15:48:51 -04:00
return multistep.ActionHalt
}
ui.Message("Box accessible and matches tag")
2014-06-23 15:48:51 -04:00
// Keep the box in state for later
state.Put("box", box)
// Box exists and is accessible
return multistep.ActionContinue
}
func (s *stepVerifyBox) Cleanup(state multistep.StateBag) {
// no cleanup needed
}