packer-cn/builder/vmware/common/step_remote_upload.go

84 lines
1.8 KiB
Go
Raw Normal View History

2019-09-19 14:53:28 -04:00
package common
import (
"context"
"fmt"
2017-07-23 01:31:46 -04:00
"log"
"github.com/hashicorp/packer/helper/multistep"
2017-04-04 16:39:01 -04:00
"github.com/hashicorp/packer/packer"
)
2017-07-24 00:17:18 -04:00
// stepRemoteUpload uploads some thing from the state bag to a remote driver
// (if it can) and stores that new remote path into the state bag.
2019-09-19 14:53:28 -04:00
type StepRemoteUpload struct {
Key string
Message string
DoCleanup bool
Checksum string
ChecksumType string
}
2019-09-19 14:53:28 -04:00
func (s *StepRemoteUpload) Run(ctx context.Context, state multistep.StateBag) multistep.StepAction {
driver := state.Get("driver").(Driver)
ui := state.Get("ui").(packer.Ui)
2019-09-19 14:53:28 -04:00
remote, ok := driver.(RemoteDriver)
if !ok {
return multistep.ActionContinue
}
path, ok := state.Get(s.Key).(string)
if !ok {
return multistep.ActionContinue
}
2019-09-19 14:53:28 -04:00
if esx5, ok := remote.(*ESX5Driver); ok {
remotePath := esx5.CachePath(path)
2019-09-19 14:53:28 -04:00
if esx5.VerifyChecksum(s.ChecksumType, s.Checksum, remotePath) {
ui.Say("Remote cache was verified skipping remote upload...")
state.Put(s.Key, remotePath)
return multistep.ActionContinue
}
}
2017-07-24 00:11:30 -04:00
ui.Say(s.Message)
log.Printf("Remote uploading: %s", path)
2019-09-19 14:53:28 -04:00
newPath, err := remote.UploadISO(path, s.Checksum, s.ChecksumType)
2017-07-24 00:11:30 -04:00
if err != nil {
err := fmt.Errorf("Error uploading file: %s", err)
state.Put("error", err)
ui.Error(err.Error())
return multistep.ActionHalt
}
2017-07-24 00:11:30 -04:00
state.Put(s.Key, newPath)
return multistep.ActionContinue
}
2019-09-19 14:53:28 -04:00
func (s *StepRemoteUpload) Cleanup(state multistep.StateBag) {
if !s.DoCleanup {
return
}
2019-09-19 14:53:28 -04:00
driver := state.Get("driver").(Driver)
2019-09-19 14:53:28 -04:00
remote, ok := driver.(RemoteDriver)
if !ok {
return
}
path, ok := state.Get(s.Key).(string)
if !ok {
return
}
log.Printf("Cleaning up remote path: %s", path)
2018-04-26 13:56:48 -04:00
err := remote.RemoveCache(path)
if err != nil {
log.Printf("Error cleaning up: %s", err)
}
}