2023-12-29 20:32:03 +00:00
|
|
|
package ast
|
2018-02-17 14:22:18 -02:00
|
|
|
|
2020-05-17 15:42:27 -03:00
|
|
|
import (
|
|
|
|
"fmt"
|
2022-12-31 10:48:49 -06:00
|
|
|
"time"
|
2022-12-19 01:11:31 +00:00
|
|
|
|
2023-02-08 10:21:43 +00:00
|
|
|
"github.com/Masterminds/semver/v3"
|
2022-12-19 01:11:31 +00:00
|
|
|
"gopkg.in/yaml.v3"
|
2023-05-02 16:51:39 +01:00
|
|
|
|
|
|
|
"github.com/go-task/task/v3/errors"
|
2020-05-17 15:42:27 -03:00
|
|
|
)
|
|
|
|
|
2023-12-29 20:26:02 +00:00
|
|
|
var V3 = semver.MustParse("3")
|
2023-02-08 10:21:43 +00:00
|
|
|
|
2023-12-29 20:32:03 +00:00
|
|
|
// Taskfile is the abstract syntax tree for a Taskfile
|
2018-02-17 14:22:18 -02:00
|
|
|
type Taskfile struct {
|
2023-12-29 20:26:02 +00:00
|
|
|
Location string
|
|
|
|
Version *semver.Version
|
|
|
|
Output Output
|
|
|
|
Method string
|
|
|
|
Includes *IncludedTaskfiles
|
|
|
|
Set []string
|
|
|
|
Shopt []string
|
|
|
|
Vars *Vars
|
|
|
|
Env *Vars
|
|
|
|
Tasks Tasks
|
|
|
|
Silent bool
|
|
|
|
Dotenv []string
|
|
|
|
Run string
|
|
|
|
Interval time.Duration
|
2018-02-17 14:22:18 -02:00
|
|
|
}
|
|
|
|
|
2022-12-19 01:11:31 +00:00
|
|
|
func (tf *Taskfile) UnmarshalYAML(node *yaml.Node) error {
|
|
|
|
switch node.Kind {
|
|
|
|
case yaml.MappingNode:
|
|
|
|
var taskfile struct {
|
2023-12-29 20:26:02 +00:00
|
|
|
Version *semver.Version
|
|
|
|
Output Output
|
|
|
|
Method string
|
|
|
|
Includes *IncludedTaskfiles
|
|
|
|
Set []string
|
|
|
|
Shopt []string
|
|
|
|
Vars *Vars
|
|
|
|
Env *Vars
|
|
|
|
Tasks Tasks
|
|
|
|
Silent bool
|
|
|
|
Dotenv []string
|
|
|
|
Run string
|
|
|
|
Interval time.Duration
|
2022-12-19 01:11:31 +00:00
|
|
|
}
|
|
|
|
if err := node.Decode(&taskfile); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
tf.Version = taskfile.Version
|
|
|
|
tf.Output = taskfile.Output
|
|
|
|
tf.Method = taskfile.Method
|
|
|
|
tf.Includes = taskfile.Includes
|
2023-01-14 13:41:56 -06:00
|
|
|
tf.Set = taskfile.Set
|
|
|
|
tf.Shopt = taskfile.Shopt
|
2022-12-19 01:11:31 +00:00
|
|
|
tf.Vars = taskfile.Vars
|
|
|
|
tf.Env = taskfile.Env
|
|
|
|
tf.Tasks = taskfile.Tasks
|
|
|
|
tf.Silent = taskfile.Silent
|
|
|
|
tf.Dotenv = taskfile.Dotenv
|
|
|
|
tf.Run = taskfile.Run
|
|
|
|
tf.Interval = taskfile.Interval
|
2023-05-02 16:51:39 +01:00
|
|
|
if tf.Version == nil {
|
|
|
|
return errors.New("task: 'version' is required")
|
|
|
|
}
|
2022-12-19 01:11:31 +00:00
|
|
|
if tf.Vars == nil {
|
|
|
|
tf.Vars = &Vars{}
|
|
|
|
}
|
|
|
|
if tf.Env == nil {
|
|
|
|
tf.Env = &Vars{}
|
|
|
|
}
|
|
|
|
return nil
|
2018-02-17 14:22:18 -02:00
|
|
|
}
|
2022-09-08 19:22:44 +02:00
|
|
|
|
2022-12-19 01:11:31 +00:00
|
|
|
return fmt.Errorf("yaml: line %d: cannot unmarshal %s into taskfile", node.Line, node.ShortTag())
|
2018-02-17 14:22:18 -02:00
|
|
|
}
|