2014-10-28 18:09:22 -04:00
|
|
|
package command
|
|
|
|
|
|
|
|
import (
|
|
|
|
"flag"
|
|
|
|
"fmt"
|
2014-10-28 22:29:51 -04:00
|
|
|
"io"
|
|
|
|
"path/filepath"
|
2014-10-28 18:09:22 -04:00
|
|
|
"strings"
|
|
|
|
|
2014-10-28 22:29:51 -04:00
|
|
|
"github.com/hashicorp/harmony-go/archive"
|
2014-10-28 18:09:22 -04:00
|
|
|
"github.com/mitchellh/packer/packer"
|
|
|
|
)
|
|
|
|
|
2014-10-28 22:29:51 -04:00
|
|
|
// archiveTemplateEntry is the name the template always takes within the slug.
|
|
|
|
const archiveTemplateEntry = ".packer-template.json"
|
|
|
|
|
2014-10-28 18:09:22 -04:00
|
|
|
type PushCommand struct {
|
|
|
|
Meta
|
2014-10-28 22:29:51 -04:00
|
|
|
|
|
|
|
// For tests:
|
|
|
|
uploadFn func(io.Reader, *uploadOpts) (<-chan struct{}, <-chan error, error)
|
2014-10-28 18:09:22 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *PushCommand) Run(args []string) int {
|
2014-10-28 22:29:51 -04:00
|
|
|
var token string
|
|
|
|
|
2014-10-28 18:09:22 -04:00
|
|
|
f := flag.NewFlagSet("push", flag.ContinueOnError)
|
|
|
|
f.Usage = func() { c.Ui.Error(c.Help()) }
|
2014-10-28 22:29:51 -04:00
|
|
|
f.StringVar(&token, "token", "", "token")
|
2014-10-28 18:09:22 -04:00
|
|
|
if err := f.Parse(args); err != nil {
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
args = f.Args()
|
|
|
|
if len(args) != 1 {
|
|
|
|
f.Usage()
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
// Read the template
|
|
|
|
tpl, err := packer.ParseTemplateFile(args[0], nil)
|
|
|
|
if err != nil {
|
|
|
|
c.Ui.Error(fmt.Sprintf("Failed to parse template: %s", err))
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2014-10-28 22:29:51 -04:00
|
|
|
// Validate some things
|
|
|
|
if tpl.Push.Name == "" {
|
|
|
|
c.Ui.Error(fmt.Sprintf(
|
|
|
|
"The 'push' section must be specified in the template with\n" +
|
|
|
|
"at least the 'name' option set."))
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
// Build the archiving options
|
|
|
|
var opts archive.ArchiveOpts
|
|
|
|
opts.Include = tpl.Push.Include
|
|
|
|
opts.Exclude = tpl.Push.Exclude
|
|
|
|
opts.VCS = tpl.Push.VCS
|
|
|
|
opts.Extra = map[string]string{
|
|
|
|
archiveTemplateEntry: args[0],
|
|
|
|
}
|
|
|
|
|
|
|
|
// Determine the path we're archiving
|
|
|
|
path := tpl.Push.BaseDir
|
|
|
|
if path == "" {
|
|
|
|
path, err = filepath.Abs(args[0])
|
|
|
|
if err != nil {
|
|
|
|
c.Ui.Error(fmt.Sprintf("Error determining path to archive: %s", err))
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
path = filepath.Dir(path)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Build the upload options
|
|
|
|
var uploadOpts uploadOpts
|
|
|
|
uploadOpts.Slug = tpl.Push.Name
|
|
|
|
uploadOpts.Token = token
|
|
|
|
|
|
|
|
// Start the archiving process
|
|
|
|
r, archiveErrCh, err := archive.Archive(path, &opts)
|
|
|
|
if err != nil {
|
|
|
|
c.Ui.Error(fmt.Sprintf("Error archiving: %s", err))
|
|
|
|
return 1
|
|
|
|
}
|
2014-10-28 22:34:19 -04:00
|
|
|
defer r.Close()
|
2014-10-28 22:29:51 -04:00
|
|
|
|
|
|
|
// Start the upload process
|
|
|
|
doneCh, uploadErrCh, err := c.upload(r, &uploadOpts)
|
|
|
|
if err != nil {
|
|
|
|
c.Ui.Error(fmt.Sprintf("Error starting upload: %s", err))
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
err = nil
|
|
|
|
select {
|
|
|
|
case err = <-archiveErrCh:
|
|
|
|
err = fmt.Errorf("Error archiving: %s", err)
|
|
|
|
case err = <-uploadErrCh:
|
|
|
|
err = fmt.Errorf("Error uploading: %s", err)
|
|
|
|
case <-doneCh:
|
|
|
|
}
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
c.Ui.Error(err.Error())
|
|
|
|
return 1
|
|
|
|
}
|
2014-10-28 18:09:22 -04:00
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func (*PushCommand) Help() string {
|
|
|
|
helpText := `
|
|
|
|
Usage: packer push [options] TEMPLATE
|
|
|
|
|
|
|
|
Push the template and the files it needs to a Packer build service.
|
|
|
|
This will not initiate any builds, it will only update the templates
|
|
|
|
used for builds.
|
2014-10-28 22:29:51 -04:00
|
|
|
|
|
|
|
Options:
|
|
|
|
|
|
|
|
-token=<token> Access token to use to upload. If blank, the
|
|
|
|
TODO environmental variable will be used.
|
2014-10-28 18:09:22 -04:00
|
|
|
`
|
|
|
|
|
|
|
|
return strings.TrimSpace(helpText)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (*PushCommand) Synopsis() string {
|
|
|
|
return "push template files to a Packer build service"
|
|
|
|
}
|
2014-10-28 22:29:51 -04:00
|
|
|
|
|
|
|
func (c *PushCommand) upload(
|
|
|
|
r io.Reader, opts *uploadOpts) (<-chan struct{}, <-chan error, error) {
|
|
|
|
if c.uploadFn != nil {
|
|
|
|
return c.uploadFn(r, opts)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil, nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type uploadOpts struct {
|
|
|
|
URL string
|
|
|
|
Slug string
|
|
|
|
Token string
|
|
|
|
}
|