2013-06-17 07:01:42 -04:00
|
|
|
package digitalocean
|
|
|
|
|
|
|
|
import (
|
2017-04-08 15:52:57 -04:00
|
|
|
"context"
|
2013-06-17 07:01:42 -04:00
|
|
|
"fmt"
|
2013-06-19 00:54:15 -04:00
|
|
|
"log"
|
2014-11-24 03:14:05 -05:00
|
|
|
"strconv"
|
2017-05-16 10:38:53 -04:00
|
|
|
"strings"
|
2015-06-10 17:02:06 -04:00
|
|
|
|
|
|
|
"github.com/digitalocean/godo"
|
2013-06-17 07:01:42 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
type Artifact struct {
|
|
|
|
// The name of the snapshot
|
|
|
|
snapshotName string
|
2013-06-19 00:54:15 -04:00
|
|
|
|
|
|
|
// The ID of the image
|
2015-06-10 17:02:06 -04:00
|
|
|
snapshotId int
|
2013-06-19 00:54:15 -04:00
|
|
|
|
2013-10-05 22:29:02 -04:00
|
|
|
// The name of the region
|
2017-05-16 10:38:53 -04:00
|
|
|
regionNames []string
|
2013-10-05 22:29:02 -04:00
|
|
|
|
2013-06-19 00:54:15 -04:00
|
|
|
// The client for making API calls
|
2015-06-10 17:02:06 -04:00
|
|
|
client *godo.Client
|
2013-06-17 07:01:42 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func (*Artifact) BuilderId() string {
|
|
|
|
return BuilderId
|
|
|
|
}
|
|
|
|
|
|
|
|
func (*Artifact) Files() []string {
|
|
|
|
// No files with DigitalOcean
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (a *Artifact) Id() string {
|
2017-05-16 10:38:53 -04:00
|
|
|
return fmt.Sprintf("%s:%s", strings.Join(a.regionNames[:], ","), strconv.FormatUint(uint64(a.snapshotId), 10))
|
2013-06-17 07:01:42 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func (a *Artifact) String() string {
|
2017-05-16 10:38:53 -04:00
|
|
|
return fmt.Sprintf("A snapshot was created: '%v' (ID: %v) in regions '%v'", a.snapshotName, a.snapshotId, strings.Join(a.regionNames[:], ","))
|
2013-06-17 07:01:42 -04:00
|
|
|
}
|
2013-06-18 19:01:14 -04:00
|
|
|
|
2014-01-19 13:32:44 -05:00
|
|
|
func (a *Artifact) State(name string) interface{} {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2013-06-18 19:01:14 -04:00
|
|
|
func (a *Artifact) Destroy() error {
|
2013-10-05 22:29:02 -04:00
|
|
|
log.Printf("Destroying image: %d (%s)", a.snapshotId, a.snapshotName)
|
2017-04-09 14:33:05 -04:00
|
|
|
_, err := a.client.Images.Delete(context.TODO(), a.snapshotId)
|
2015-06-10 17:02:06 -04:00
|
|
|
return err
|
2013-06-18 19:01:14 -04:00
|
|
|
}
|