38 lines
942 B
Go
38 lines
942 B
Go
package vagrantcloud
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/mitchellh/multistep"
|
|
"github.com/mitchellh/packer/packer"
|
|
)
|
|
|
|
type stepUpload struct {
|
|
}
|
|
|
|
func (s *stepUpload) Run(state multistep.StateBag) multistep.StepAction {
|
|
client := state.Get("client").(*VagrantCloudClient)
|
|
ui := state.Get("ui").(packer.Ui)
|
|
upload := state.Get("upload").(*Upload)
|
|
artifactFilePath := state.Get("artifactFilePath").(string)
|
|
url := upload.UploadPath
|
|
|
|
ui.Say(fmt.Sprintf("Uploading box: %s", artifactFilePath))
|
|
|
|
ui.Message("Depending on your internet connection and the size of the box, this may take some time")
|
|
|
|
resp, err := client.Upload(artifactFilePath, url)
|
|
|
|
if err != nil || (resp.StatusCode != 200) {
|
|
state.Put("error", fmt.Errorf("Error uploading Box: %s", err))
|
|
return multistep.ActionHalt
|
|
}
|
|
|
|
ui.Message("Box succesfully uploaded")
|
|
|
|
return multistep.ActionContinue
|
|
}
|
|
|
|
func (s *stepUpload) Cleanup(state multistep.StateBag) {
|
|
// No cleanup
|
|
}
|