packer-plugin-xenserver/builder/xenserver/common/step_export.go

122 lines
2.8 KiB
Go
Raw Normal View History

package common
import (
2014-12-08 09:34:48 -06:00
"crypto/tls"
"fmt"
"github.com/mitchellh/multistep"
"github.com/mitchellh/packer/packer"
2014-12-08 09:34:48 -06:00
"io"
"net/http"
"os"
)
type StepExport struct{}
func downloadFile(url, filename string) (err error) {
2014-12-08 09:34:48 -06:00
// Create the file
fh, err := os.Create(filename)
if err != nil {
return err
}
2014-12-08 09:34:48 -06:00
// Define a new transport which allows self-signed certs
tr := &http.Transport{
TLSClientConfig: &tls.Config{InsecureSkipVerify: true},
}
2014-12-08 09:34:48 -06:00
// Create a client
client := &http.Client{Transport: tr}
2014-12-08 09:34:48 -06:00
// Create request and download file
2014-12-08 09:34:48 -06:00
resp, err := client.Get(url)
if err != nil {
return err
}
2014-12-08 09:34:48 -06:00
defer resp.Body.Close()
io.Copy(fh, resp.Body)
2014-12-08 09:34:48 -06:00
return nil
}
func (StepExport) Run(state multistep.StateBag) multistep.StepAction {
config := state.Get("commonconfig").(CommonConfig)
ui := state.Get("ui").(packer.Ui)
2014-12-08 09:34:48 -06:00
client := state.Get("client").(XenAPIClient)
instance_uuid := state.Get("instance_uuid").(string)
2014-12-09 08:02:48 -06:00
instance, err := client.GetVMByUuid(instance_uuid)
if err != nil {
ui.Error(fmt.Sprintf("Could not get VM with UUID '%s': %s", instance_uuid, err.Error()))
return multistep.ActionHalt
}
2014-12-08 09:34:48 -06:00
ui.Say("Step: export artifact")
switch config.Format {
case "xva":
// export the VM
2014-12-08 09:34:48 -06:00
2014-12-12 04:40:12 -06:00
export_url := fmt.Sprintf("https://%s/export?uuid=%s&session_id=%s",
client.Host,
instance_uuid,
client.Session.(string),
)
2014-12-08 09:34:48 -06:00
export_filename := fmt.Sprintf("%s/%s.xva", config.OutputDir, config.VMName)
ui.Say("Getting XVA " + export_url)
err = downloadFile(export_url, export_filename)
if err != nil {
ui.Error(fmt.Sprintf("Could not download XVA: %s", err.Error()))
return multistep.ActionHalt
}
2014-12-08 09:34:48 -06:00
case "vdi_raw":
// export the disks
disks, err := instance.GetDisks()
2014-12-09 08:02:48 -06:00
if err != nil {
ui.Error(fmt.Sprintf("Could not get VM disks: %s", err.Error()))
2014-12-09 08:02:48 -06:00
return multistep.ActionHalt
}
for _, disk := range disks {
disk_uuid, err := disk.GetUuid()
if err != nil {
ui.Error(fmt.Sprintf("Could not get disk with UUID '%s': %s", disk_uuid, err.Error()))
return multistep.ActionHalt
}
// Basic auth in URL request is required as session token is not
// accepted for some reason.
// @todo: raise with XAPI team.
disk_export_url := fmt.Sprintf("https://%s:%s@%s/export_raw_vdi?vdi=%s",
client.Username,
client.Password,
client.Host,
disk_uuid,
)
disk_export_filename := fmt.Sprintf("%s/%s.raw", config.OutputDir, disk_uuid)
ui.Say("Getting VDI " + disk_export_url)
err = downloadFile(disk_export_url, disk_export_filename)
if err != nil {
ui.Error(fmt.Sprintf("Could not download VDI: %s", err.Error()))
return multistep.ActionHalt
}
}
2014-12-08 09:34:48 -06:00
default:
panic(fmt.Sprintf("Unknown export format '%s'", config.Format))
2014-12-08 09:34:48 -06:00
}
2014-12-08 09:37:16 -06:00
ui.Say("Download completed: " + config.OutputDir)
return multistep.ActionContinue
}
func (StepExport) Cleanup(state multistep.StateBag) {}