packer-cn/builder/profitbricks/step_take_snapshot.go

73 lines
1.7 KiB
Go
Raw Normal View History

2016-06-29 04:35:41 +02:00
package profitbricks
import (
"context"
2016-11-01 14:08:04 -07:00
"encoding/json"
2017-03-28 17:45:01 -07:00
"time"
"github.com/hashicorp/packer/helper/multistep"
2017-04-04 13:39:01 -07:00
"github.com/hashicorp/packer/packer"
2016-06-29 04:35:41 +02:00
"github.com/profitbricks/profitbricks-sdk-go"
)
type stepTakeSnapshot struct{}
func (s *stepTakeSnapshot) Run(_ context.Context, state multistep.StateBag) multistep.StepAction {
2016-06-29 04:35:41 +02:00
ui := state.Get("ui").(packer.Ui)
c := state.Get("config").(*Config)
ui.Say("Creating ProfitBricks snapshot...")
profitbricks.SetAuth(c.PBUsername, c.PBPassword)
dcId := state.Get("datacenter_id").(string)
volumeId := state.Get("volume_id").(string)
snapshot := profitbricks.CreateSnapshot(dcId, volumeId, c.SnapshotName, "")
2016-06-29 04:35:41 +02:00
2016-07-07 10:28:46 +02:00
state.Put("snapshotname", c.SnapshotName)
2016-06-29 04:35:41 +02:00
if snapshot.StatusCode > 299 {
2016-10-13 00:41:04 +02:00
var restError RestError
2017-03-29 13:38:31 -07:00
if err := json.Unmarshal([]byte(snapshot.Response), &restError); err != nil {
ui.Error(err.Error())
return multistep.ActionHalt
}
2016-11-01 14:08:04 -07:00
if len(restError.Messages) > 0 {
2016-10-13 00:41:04 +02:00
ui.Error(restError.Messages[0].Message)
} else {
ui.Error(snapshot.Response)
}
2016-06-29 04:35:41 +02:00
return multistep.ActionHalt
}
s.waitTillProvisioned(snapshot.Headers.Get("Location"), *c)
2016-06-29 04:35:41 +02:00
return multistep.ActionContinue
}
func (s *stepTakeSnapshot) Cleanup(state multistep.StateBag) {
}
func (d *stepTakeSnapshot) waitTillProvisioned(path string, config Config) {
d.setPB(config.PBUsername, config.PBPassword, config.PBUrl)
waitCount := 50
2016-11-16 00:17:30 +01:00
if config.Retries > 0 {
waitCount = config.Retries
}
2016-06-29 04:35:41 +02:00
for i := 0; i < waitCount; i++ {
request := profitbricks.GetRequestStatus(path)
if request.Metadata.Status == "DONE" {
2016-06-29 04:35:41 +02:00
break
}
time.Sleep(10 * time.Second)
i++
}
}
func (d *stepTakeSnapshot) setPB(username string, password string, url string) {
profitbricks.SetAuth(username, password)
profitbricks.SetEndpoint(url)
}