2017-03-03 03:56:17 -05:00
|
|
|
package ecs
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"github.com/denverdino/aliyungo/common"
|
|
|
|
"github.com/denverdino/aliyungo/ecs"
|
2017-04-17 09:04:52 -04:00
|
|
|
"github.com/hashicorp/packer/packer"
|
2017-03-03 03:56:17 -05:00
|
|
|
"github.com/mitchellh/multistep"
|
|
|
|
"log"
|
|
|
|
)
|
|
|
|
|
|
|
|
type stepDeleteAlicloudImageSnapshots struct {
|
|
|
|
AlicloudImageForceDetele bool
|
|
|
|
AlicloudImageForceDeteleSnapshots bool
|
|
|
|
AlicloudImageName string
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *stepDeleteAlicloudImageSnapshots) Run(state multistep.StateBag) multistep.StepAction {
|
|
|
|
client := state.Get("client").(*ecs.Client)
|
|
|
|
ui := state.Get("ui").(packer.Ui)
|
|
|
|
config := state.Get("config").(Config)
|
|
|
|
ui.Say("Start delete alicloud image snapshots")
|
|
|
|
// Check for force delete
|
|
|
|
if s.AlicloudImageForceDetele {
|
|
|
|
images, _, err := client.DescribeImages(&ecs.DescribeImagesArgs{
|
|
|
|
RegionId: common.Region(config.AlicloudRegion),
|
|
|
|
ImageName: s.AlicloudImageName,
|
|
|
|
})
|
|
|
|
if len(images) < 1 {
|
|
|
|
return multistep.ActionContinue
|
|
|
|
}
|
|
|
|
for _, image := range images {
|
|
|
|
if image.ImageOwnerAlias != string(ecs.ImageOwnerSelf) {
|
|
|
|
log.Printf("Only can delete the instance based on customized images %s ", image.ImageId)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
err = client.DeleteImage(common.Region(config.AlicloudRegion), image.ImageId)
|
|
|
|
if err != nil {
|
|
|
|
err := fmt.Errorf("Delete alicloud image failed: %s", err)
|
|
|
|
state.Put("error", err)
|
|
|
|
ui.Error(err.Error())
|
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
|
|
|
if s.AlicloudImageForceDeteleSnapshots {
|
|
|
|
for _, diskDevice := range image.DiskDeviceMappings.DiskDeviceMapping {
|
|
|
|
if err := client.DeleteSnapshot(diskDevice.SnapshotId); err != nil {
|
2017-03-04 05:06:32 -05:00
|
|
|
err := fmt.Errorf("Deleting ECS snapshot failed: %s", err)
|
2017-03-03 03:56:17 -05:00
|
|
|
state.Put("error", err)
|
|
|
|
ui.Error(err.Error())
|
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return multistep.ActionContinue
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *stepDeleteAlicloudImageSnapshots) Cleanup(state multistep.StateBag) {
|
|
|
|
}
|