grim/convey

Remove the convey/extend task as it's normal usage is already covered by plan/stage environment variables. It's corner case, expanding variables, is rather exotic and not something that comes up often.
// Convey
// Copyright 2016-2019 Gary Kramlich <grim@reaperworld.com>
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
package tasks
import (
"fmt"
"path/filepath"
log "github.com/sirupsen/logrus"
"bitbucket.org/rw_grim/convey/environment"
"bitbucket.org/rw_grim/convey/path"
"bitbucket.org/rw_grim/convey/runtime"
"bitbucket.org/rw_grim/convey/yaml"
)
type Import struct {
Files yaml.StringOrSlice `yaml:"files"`
Path string `yaml:"path"`
}
// New creates a new Import task.
func (i *Import) New() Task {
return &Import{}
}
// Valid validates the export task.
func (i *Import) Valid() error {
if len(i.Files) == 0 {
return errNoFiles
}
return nil
}
// Executes the task
func (i *Import) Execute(name string, logger *log.Entry, env *environment.Environment, rt *runtime.Runtime) error {
for _, pattern := range i.Files {
src, dst := path.ParseFilePath(rt.State.CfgPath, pattern)
matches, err := filepath.Glob(filepath.Join(rt.State.CfgPath, src))
if err != nil {
return err
}
if len(matches) == 0 {
return fmt.Errorf("no matches found for %s", src)
}
for _, match := range matches {
err = rt.State.Workspace.Import(match, dst)
if err != nil {
return err
}
}
}
return nil
}