mirror of
https://github.com/go-task/task.git
synced 2025-01-12 04:34:11 +02:00
5268df6bfd
ref #40
168 lines
3.6 KiB
Go
168 lines
3.6 KiB
Go
package task
|
|
|
|
import (
|
|
"bytes"
|
|
"errors"
|
|
"os"
|
|
"path/filepath"
|
|
"runtime"
|
|
"strings"
|
|
"text/template"
|
|
|
|
"github.com/go-task/task/execext"
|
|
|
|
"github.com/Masterminds/sprig"
|
|
)
|
|
|
|
var (
|
|
// TaskvarsFilePath file containing additional variables
|
|
TaskvarsFilePath = "Taskvars"
|
|
// ErrMultilineResultCmd is returned when a command returns multiline result
|
|
ErrMultilineResultCmd = errors.New("Got multiline result from command")
|
|
)
|
|
|
|
var (
|
|
templateFuncs template.FuncMap
|
|
)
|
|
|
|
func init() {
|
|
taskFuncs := template.FuncMap{
|
|
"OS": func() string { return runtime.GOOS },
|
|
"ARCH": func() string { return runtime.GOARCH },
|
|
// historical reasons
|
|
"IsSH": func() bool { return true },
|
|
"FromSlash": func(path string) string {
|
|
return filepath.FromSlash(path)
|
|
},
|
|
"ToSlash": func(path string) string {
|
|
return filepath.ToSlash(path)
|
|
},
|
|
"ExeExt": func() string {
|
|
if runtime.GOOS == "windows" {
|
|
return ".exe"
|
|
}
|
|
return ""
|
|
},
|
|
}
|
|
|
|
templateFuncs = sprig.TxtFuncMap()
|
|
for k, v := range taskFuncs {
|
|
templateFuncs[k] = v
|
|
}
|
|
}
|
|
|
|
// ReplaceVariables writes vars into initial string
|
|
func (e *Executor) ReplaceVariables(initial string, call Call) (string, error) {
|
|
templ, err := template.New("").Funcs(templateFuncs).Parse(initial)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
var b bytes.Buffer
|
|
if err = templ.Execute(&b, call.Vars); err != nil {
|
|
return "", err
|
|
}
|
|
return b.String(), nil
|
|
}
|
|
|
|
// ReplaceSliceVariables writes vars into initial string slice
|
|
func (e *Executor) ReplaceSliceVariables(initials []string, call Call) ([]string, error) {
|
|
result := make([]string, len(initials))
|
|
for i, s := range initials {
|
|
var err error
|
|
result[i], err = e.ReplaceVariables(s, call)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
return result, nil
|
|
}
|
|
|
|
func (e *Executor) getVariables(call Call) (Vars, error) {
|
|
t := e.Tasks[call.Task]
|
|
|
|
result := make(Vars, len(t.Vars)+len(e.taskvars)+len(call.Vars))
|
|
merge := func(vars Vars, runTemplate bool) error {
|
|
for k, v := range vars {
|
|
if runTemplate {
|
|
var err error
|
|
v, err = e.ReplaceVariables(v, call)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
v, err := e.handleDynamicVariableContent(v)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
result[k] = v
|
|
}
|
|
return nil
|
|
}
|
|
|
|
if err := merge(e.taskvars, false); err != nil {
|
|
return nil, err
|
|
}
|
|
if err := merge(t.Vars, true); err != nil {
|
|
return nil, err
|
|
}
|
|
if err := merge(getEnvironmentVariables(), false); err != nil {
|
|
return nil, err
|
|
}
|
|
if err := merge(call.Vars, false); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return result, nil
|
|
}
|
|
|
|
// GetEnvironmentVariables returns environment variables as map
|
|
func getEnvironmentVariables() Vars {
|
|
var (
|
|
env = os.Environ()
|
|
m = make(Vars, len(env))
|
|
)
|
|
|
|
for _, e := range env {
|
|
keyVal := strings.SplitN(e, "=", 2)
|
|
key, val := keyVal[0], keyVal[1]
|
|
m[key] = val
|
|
}
|
|
return m
|
|
}
|
|
|
|
func (e *Executor) handleDynamicVariableContent(value string) (string, error) {
|
|
if !strings.HasPrefix(value, "$") {
|
|
return value, nil
|
|
}
|
|
|
|
e.muDynamicCache.Lock()
|
|
defer e.muDynamicCache.Unlock()
|
|
if result, ok := e.dynamicCache[value]; ok {
|
|
return result, nil
|
|
}
|
|
|
|
var stdout bytes.Buffer
|
|
opts := &execext.RunCommandOptions{
|
|
Command: strings.TrimPrefix(value, "$"),
|
|
Dir: e.Dir,
|
|
Stdout: &stdout,
|
|
Stderr: e.Stderr,
|
|
}
|
|
if err := execext.RunCommand(opts); err != nil {
|
|
return "", &dynamicVarError{cause: err, cmd: opts.Command}
|
|
}
|
|
|
|
result := strings.TrimSuffix(stdout.String(), "\n")
|
|
if strings.ContainsRune(result, '\n') {
|
|
return "", ErrMultilineResultCmd
|
|
}
|
|
|
|
result = strings.TrimSpace(result)
|
|
e.verbosePrintfln(`task: dynamic variable: "%s", result: "%s"`, value, result)
|
|
e.dynamicCache[value] = result
|
|
return result, nil
|
|
}
|