2014-12-09 18:01:46 -05:00
|
|
|
package atlas
|
2014-12-09 18:00:03 -05:00
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
"strconv"
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"github.com/hashicorp/atlas-go/archive"
|
|
|
|
"github.com/hashicorp/atlas-go/v1"
|
2017-04-04 16:39:01 -04:00
|
|
|
"github.com/hashicorp/packer/common"
|
|
|
|
"github.com/hashicorp/packer/helper/config"
|
|
|
|
"github.com/hashicorp/packer/packer"
|
|
|
|
"github.com/hashicorp/packer/template/interpolate"
|
2014-12-09 18:00:03 -05:00
|
|
|
"github.com/mitchellh/mapstructure"
|
|
|
|
)
|
|
|
|
|
2015-09-25 14:52:21 -04:00
|
|
|
const (
|
|
|
|
BuildEnvKey = "ATLAS_BUILD_ID"
|
|
|
|
CompileEnvKey = "ATLAS_COMPILE_ID"
|
|
|
|
)
|
2014-12-09 18:00:03 -05:00
|
|
|
|
|
|
|
// Artifacts can return a string for this state key and the post-processor
|
|
|
|
// will use automatically use this as the type. The user's value overrides
|
|
|
|
// this if `artifact_type_override` is set to true.
|
|
|
|
const ArtifactStateType = "atlas.artifact.type"
|
|
|
|
|
|
|
|
// Artifacts can return a map[string]string for this state key and this
|
|
|
|
// post-processor will automatically merge it into the metadata for any
|
|
|
|
// uploaded artifact versions.
|
|
|
|
const ArtifactStateMetadata = "atlas.artifact.metadata"
|
|
|
|
|
|
|
|
type Config struct {
|
|
|
|
common.PackerConfig `mapstructure:",squash"`
|
|
|
|
|
|
|
|
Artifact string
|
|
|
|
Type string `mapstructure:"artifact_type"`
|
|
|
|
TypeOverride bool `mapstructure:"artifact_type_override"`
|
|
|
|
Metadata map[string]string
|
|
|
|
|
2015-07-21 10:54:48 -04:00
|
|
|
ServerAddr string `mapstructure:"atlas_url"`
|
2014-12-09 18:00:03 -05:00
|
|
|
Token string
|
|
|
|
|
|
|
|
// This shouldn't ever be set outside of unit tests.
|
|
|
|
Test bool `mapstructure:"test"`
|
|
|
|
|
2015-05-27 17:56:22 -04:00
|
|
|
ctx interpolate.Context
|
2014-12-09 18:00:03 -05:00
|
|
|
user, name string
|
2015-10-18 14:13:09 -04:00
|
|
|
buildId int
|
|
|
|
compileId int
|
2014-12-09 18:00:03 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
type PostProcessor struct {
|
|
|
|
config Config
|
|
|
|
client *atlas.Client
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *PostProcessor) Configure(raws ...interface{}) error {
|
2015-05-27 17:56:22 -04:00
|
|
|
err := config.Decode(&p.config, &config.DecodeOpts{
|
2015-06-22 15:24:27 -04:00
|
|
|
Interpolate: true,
|
|
|
|
InterpolateContext: &p.config.ctx,
|
2015-05-27 17:56:22 -04:00
|
|
|
InterpolateFilter: &interpolate.RenderFilter{
|
|
|
|
Exclude: []string{},
|
|
|
|
},
|
|
|
|
}, raws...)
|
2014-12-09 18:00:03 -05:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
required := map[string]*string{
|
|
|
|
"artifact": &p.config.Artifact,
|
|
|
|
"artifact_type": &p.config.Type,
|
|
|
|
}
|
|
|
|
|
2015-05-27 17:56:22 -04:00
|
|
|
var errs *packer.MultiError
|
2014-12-09 18:00:03 -05:00
|
|
|
for key, ptr := range required {
|
|
|
|
if *ptr == "" {
|
|
|
|
errs = packer.MultiErrorAppend(
|
|
|
|
errs, fmt.Errorf("%s must be set", key))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-27 17:56:22 -04:00
|
|
|
if errs != nil && len(errs.Errors) > 0 {
|
2014-12-09 18:00:03 -05:00
|
|
|
return errs
|
|
|
|
}
|
|
|
|
|
|
|
|
p.config.user, p.config.name, err = atlas.ParseSlug(p.config.Artifact)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// If we have a build ID, save it
|
|
|
|
if v := os.Getenv(BuildEnvKey); v != "" {
|
|
|
|
raw, err := strconv.ParseInt(v, 0, 0)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf(
|
|
|
|
"Error parsing build ID: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
p.config.buildId = int(raw)
|
|
|
|
}
|
|
|
|
|
2015-09-25 14:52:21 -04:00
|
|
|
// If we have a compile ID, save it
|
|
|
|
if v := os.Getenv(CompileEnvKey); v != "" {
|
|
|
|
raw, err := strconv.ParseInt(v, 0, 0)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf(
|
|
|
|
"Error parsing compile ID: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
p.config.compileId = int(raw)
|
|
|
|
}
|
|
|
|
|
2014-12-09 18:00:03 -05:00
|
|
|
// Build the client
|
|
|
|
p.client = atlas.DefaultClient()
|
|
|
|
if p.config.ServerAddr != "" {
|
|
|
|
p.client, err = atlas.NewClient(p.config.ServerAddr)
|
|
|
|
if err != nil {
|
|
|
|
errs = packer.MultiErrorAppend(
|
2015-02-11 05:12:43 -05:00
|
|
|
errs, fmt.Errorf("Error initializing atlas client: %s", err))
|
2014-12-09 18:00:03 -05:00
|
|
|
return errs
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if p.config.Token != "" {
|
|
|
|
p.client.Token = p.config.Token
|
|
|
|
}
|
|
|
|
|
|
|
|
if !p.config.Test {
|
|
|
|
// Verify the client
|
|
|
|
if err := p.client.Verify(); err != nil {
|
2015-02-11 05:12:43 -05:00
|
|
|
if err == atlas.ErrAuth {
|
|
|
|
errs = packer.MultiErrorAppend(
|
|
|
|
errs, fmt.Errorf("Error connecting to atlas server, please check your ATLAS_TOKEN env: %s", err))
|
|
|
|
} else {
|
|
|
|
errs = packer.MultiErrorAppend(
|
|
|
|
errs, fmt.Errorf("Error initializing atlas client: %s", err))
|
|
|
|
}
|
2014-12-09 18:00:03 -05:00
|
|
|
return errs
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *PostProcessor) PostProcess(ui packer.Ui, artifact packer.Artifact) (packer.Artifact, bool, error) {
|
2017-06-01 12:02:09 -04:00
|
|
|
// todo: remove/reword after the migration
|
|
|
|
if p.config.Type == "vagrant.box" {
|
2017-08-01 09:08:14 -04:00
|
|
|
return nil, false, fmt.Errorf("Vagrant-related functionality has been removed from Terraform\n" +
|
2017-06-20 14:58:02 -04:00
|
|
|
"Enterprise into its own product, Vagrant Cloud. For more information see\n" +
|
2017-06-01 12:02:09 -04:00
|
|
|
"https://www.vagrantup.com/docs/vagrant-cloud/vagrant-cloud-migration.html\n" +
|
2017-06-20 14:58:02 -04:00
|
|
|
"Please replace the Atlas post-processor with the Vagrant Cloud post-processor,\n" +
|
|
|
|
"and see https://www.packer.io/docs/post-processors/vagrant-cloud.html for\n" +
|
|
|
|
"more detail.\n")
|
2017-06-01 12:02:09 -04:00
|
|
|
}
|
2014-12-09 18:00:03 -05:00
|
|
|
if _, err := p.client.Artifact(p.config.user, p.config.name); err != nil {
|
|
|
|
if err != atlas.ErrNotFound {
|
|
|
|
return nil, false, fmt.Errorf(
|
|
|
|
"Error finding artifact: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Artifact doesn't exist, create it
|
|
|
|
ui.Message(fmt.Sprintf("Creating artifact: %s", p.config.Artifact))
|
|
|
|
_, err = p.client.CreateArtifact(p.config.user, p.config.name)
|
|
|
|
if err != nil {
|
|
|
|
return nil, false, fmt.Errorf(
|
|
|
|
"Error creating artifact: %s", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
opts := &atlas.UploadArtifactOpts{
|
2015-10-18 14:13:09 -04:00
|
|
|
User: p.config.user,
|
|
|
|
Name: p.config.name,
|
|
|
|
Type: p.config.Type,
|
|
|
|
ID: artifact.Id(),
|
|
|
|
Metadata: p.metadata(artifact),
|
|
|
|
BuildID: p.config.buildId,
|
|
|
|
CompileID: p.config.compileId,
|
2014-12-09 18:00:03 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if fs := artifact.Files(); len(fs) > 0 {
|
|
|
|
var archiveOpts archive.ArchiveOpts
|
|
|
|
|
|
|
|
// We have files. We want to compress/upload them. If we have just
|
|
|
|
// one file, then we use it as-is. Otherwise, we compress all of
|
|
|
|
// them into a single file.
|
|
|
|
var path string
|
|
|
|
if len(fs) == 1 {
|
|
|
|
path = fs[0]
|
|
|
|
} else {
|
|
|
|
path = longestCommonPrefix(fs)
|
|
|
|
if path == "" {
|
|
|
|
return nil, false, fmt.Errorf(
|
2016-05-05 02:53:08 -04:00
|
|
|
"No common prefix for archiving files: %v", fs)
|
2014-12-09 18:00:03 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Modify the archive options to only include the files
|
|
|
|
// that are in our file list.
|
2015-03-02 14:59:18 -05:00
|
|
|
include := make([]string, len(fs))
|
2014-12-09 18:00:03 -05:00
|
|
|
for i, f := range fs {
|
|
|
|
include[i] = strings.Replace(f, path, "", 1)
|
|
|
|
}
|
|
|
|
archiveOpts.Include = include
|
|
|
|
}
|
|
|
|
|
|
|
|
r, err := archive.CreateArchive(path, &archiveOpts)
|
|
|
|
if err != nil {
|
|
|
|
return nil, false, fmt.Errorf(
|
|
|
|
"Error archiving artifact: %s", err)
|
|
|
|
}
|
|
|
|
defer r.Close()
|
|
|
|
|
|
|
|
opts.File = r
|
|
|
|
opts.FileSize = r.Size
|
|
|
|
}
|
|
|
|
|
2015-10-27 14:57:54 -04:00
|
|
|
ui.Message(fmt.Sprintf("Uploading artifact (%d bytes)", opts.FileSize))
|
2014-12-09 18:00:03 -05:00
|
|
|
var av *atlas.ArtifactVersion
|
|
|
|
doneCh := make(chan struct{})
|
|
|
|
errCh := make(chan error, 1)
|
|
|
|
go func() {
|
|
|
|
var err error
|
|
|
|
av, err = p.client.UploadArtifact(opts)
|
|
|
|
if err != nil {
|
|
|
|
errCh <- err
|
|
|
|
return
|
|
|
|
}
|
|
|
|
close(doneCh)
|
|
|
|
}()
|
|
|
|
|
|
|
|
select {
|
|
|
|
case err := <-errCh:
|
2015-10-27 14:57:54 -04:00
|
|
|
return nil, false, fmt.Errorf("Error uploading (%d bytes): %s", opts.FileSize, err)
|
2014-12-09 18:00:03 -05:00
|
|
|
case <-doneCh:
|
|
|
|
}
|
|
|
|
|
|
|
|
return &Artifact{
|
|
|
|
Name: p.config.Artifact,
|
|
|
|
Type: p.config.Type,
|
|
|
|
Version: av.Version,
|
|
|
|
}, true, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *PostProcessor) metadata(artifact packer.Artifact) map[string]string {
|
|
|
|
var metadata map[string]string
|
|
|
|
metadataRaw := artifact.State(ArtifactStateMetadata)
|
|
|
|
if metadataRaw != nil {
|
|
|
|
if err := mapstructure.Decode(metadataRaw, &metadata); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if p.config.Metadata != nil {
|
|
|
|
// If we have no extra metadata, just return as-is
|
|
|
|
if metadata == nil {
|
|
|
|
return p.config.Metadata
|
|
|
|
}
|
|
|
|
|
|
|
|
// Merge the metadata
|
|
|
|
for k, v := range p.config.Metadata {
|
|
|
|
metadata[k] = v
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return metadata
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *PostProcessor) artifactType(artifact packer.Artifact) string {
|
|
|
|
if !p.config.TypeOverride {
|
|
|
|
if v := artifact.State(ArtifactStateType); v != nil {
|
|
|
|
return v.(string)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return p.config.Type
|
|
|
|
}
|