2014-06-23 15:48:51 -04:00
|
|
|
package vagrantcloud
|
|
|
|
|
|
|
|
import (
|
2018-01-22 18:32:33 -05:00
|
|
|
"context"
|
2014-06-23 15:48:51 -04:00
|
|
|
"fmt"
|
2018-01-22 18:32:33 -05:00
|
|
|
|
2018-01-19 19:18:44 -05:00
|
|
|
"github.com/hashicorp/packer/helper/multistep"
|
2017-04-04 16:39:01 -04:00
|
|
|
"github.com/hashicorp/packer/packer"
|
2014-06-23 15:48:51 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
type Box struct {
|
2014-06-24 15:58:45 -04:00
|
|
|
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 {
|
|
|
|
}
|
|
|
|
|
2018-01-22 18:31:41 -05:00
|
|
|
func (s *stepVerifyBox) Run(_ context.Context, state multistep.StateBag) multistep.StepAction {
|
2014-06-23 15:48:51 -04:00
|
|
|
client := state.Get("client").(*VagrantCloudClient)
|
|
|
|
ui := state.Get("ui").(packer.Ui)
|
|
|
|
config := state.Get("config").(Config)
|
|
|
|
|
|
|
|
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 12:11:27 -04:00
|
|
|
if err != nil {
|
|
|
|
state.Put("error", fmt.Errorf("Error retrieving box: %s", err))
|
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
|
|
|
|
|
|
|
if resp.StatusCode != 200 {
|
2014-06-25 11:29:25 -04:00
|
|
|
cloudErrors := &VagrantCloudErrors{}
|
|
|
|
err = decodeBody(resp, cloudErrors)
|
|
|
|
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 {
|
2014-06-25 11:29:25 -04:00
|
|
|
state.Put("error", fmt.Errorf("Could not verify box: %s", config.Tag))
|
2014-06-23 15:48:51 -04:00
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
|
|
|
|
2014-06-25 12:46:25 -04:00
|
|
|
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
|
|
|
|
}
|