aboutsummaryrefslogtreecommitdiff
path: root/config/command.go
blob: 34142cd07270268c41d3e577c4c738408bd85578 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package config

import (
	"strings"

	"github.com/pkg/errors"
)

func validateCommand(cmd string) error {
	tokens := strings.Split(cmd, " ")
	switch tokens[0] {
	case "cp":
		if len(tokens) != 3 {
			return errors.New("cp command takes exactly two arguments")
		}
	case "exec":
		if len(tokens) <= 1 {
			return errors.New("exec command needs arguments")
		}
	case "mkdir":
		if len(tokens) != 2 {
			return errors.New("mkdir command takes exactly one argument")
		}
	case "wait":
		if len(tokens) != 1 {
			return errors.New("wait command takes no arguments")
		}
	default:
		return errors.New("Invalid command : " + tokens[0])
	}
	return nil
}