2019-06-13 03:16:49 -04:00
|
|
|
package uhost
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2019-06-19 09:32:33 -04:00
|
|
|
"fmt"
|
2019-12-17 05:25:56 -05:00
|
|
|
|
2019-10-12 04:46:21 -04:00
|
|
|
ucloudcommon "github.com/hashicorp/packer/builder/ucloud/common"
|
2019-06-13 03:16:49 -04:00
|
|
|
"github.com/hashicorp/packer/helper/multistep"
|
|
|
|
"github.com/hashicorp/packer/packer"
|
|
|
|
)
|
|
|
|
|
|
|
|
type stepCheckSourceImageId struct {
|
|
|
|
SourceUHostImageId string
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *stepCheckSourceImageId) Run(ctx context.Context, state multistep.StateBag) multistep.StepAction {
|
|
|
|
ui := state.Get("ui").(packer.Ui)
|
2019-10-12 04:46:21 -04:00
|
|
|
client := state.Get("client").(*ucloudcommon.UCloudClient)
|
2019-06-13 03:16:49 -04:00
|
|
|
|
|
|
|
ui.Say("Querying source image id...")
|
|
|
|
|
|
|
|
imageSet, err := client.DescribeImageById(s.SourceUHostImageId)
|
|
|
|
if err != nil {
|
2019-10-12 04:46:21 -04:00
|
|
|
if ucloudcommon.IsNotFoundError(err) {
|
|
|
|
return ucloudcommon.Halt(state, err, "")
|
2019-06-13 03:16:49 -04:00
|
|
|
}
|
2019-10-12 04:46:21 -04:00
|
|
|
return ucloudcommon.Halt(state, err, fmt.Sprintf("Error on querying specified source_image_id %q", s.SourceUHostImageId))
|
2019-06-13 03:16:49 -04:00
|
|
|
}
|
|
|
|
|
2019-10-12 04:46:21 -04:00
|
|
|
if imageSet.OsType == ucloudcommon.OsTypeWindows {
|
|
|
|
return ucloudcommon.Halt(state, err, "The ucloud-uhost builder does not support Windows images yet")
|
2019-06-13 03:16:49 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
state.Put("source_image", imageSet)
|
|
|
|
return multistep.ActionContinue
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *stepCheckSourceImageId) Cleanup(multistep.StateBag) {}
|