2016-09-01 22:17:19 +00:00
|
|
|
package cli
|
2016-08-31 12:08:15 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"gopkg.in/urfave/cli.v2"
|
|
|
|
"strings"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
// argsParam parse one by one the given argumentes
|
|
|
|
func argsParam(params *cli.Context) []string {
|
|
|
|
argsN := params.NArg()
|
|
|
|
if argsN > 0 {
|
|
|
|
var args []string
|
|
|
|
for i := 0; i <= argsN-1; i++ {
|
|
|
|
args = append(args, params.Args().Get(i))
|
|
|
|
}
|
|
|
|
return args
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// BoolParam is used to check the presence of a bool flag
|
|
|
|
func boolFlag(b bool) bool {
|
|
|
|
if b {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
// Duplicates check projects with same name or same combinations of main/path
|
|
|
|
func duplicates(value Project, arr []Project) (Project, error) {
|
|
|
|
for _, val := range arr {
|
|
|
|
if value.Path == val.Path || value.Name == val.Name {
|
|
|
|
return val, errors.New("There is a duplicate of '" + val.Name + "'. Check your config file!")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return Project{}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// check if a string is inArray
|
|
|
|
func inArray(str string, list []string) bool {
|
|
|
|
for _, v := range list {
|
|
|
|
if v == str {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// Defines the colors scheme for the project name
|
|
|
|
func pname(name string, color int) string {
|
|
|
|
switch color {
|
|
|
|
case 1:
|
|
|
|
name = Yellow("[") + strings.ToUpper(name) + Yellow("]")
|
|
|
|
break
|
|
|
|
case 2:
|
|
|
|
name = Yellow("[") + Red(strings.ToUpper(name)) + Yellow("]")
|
|
|
|
break
|
|
|
|
case 3:
|
|
|
|
name = Yellow("[") + Blue(strings.ToUpper(name)) + Yellow("]")
|
|
|
|
break
|
|
|
|
case 4:
|
|
|
|
name = Yellow("[") + Magenta(strings.ToUpper(name)) + Yellow("]")
|
|
|
|
break
|
|
|
|
case 5:
|
|
|
|
name = Yellow("[") + Green(strings.ToUpper(name)) + Yellow("]")
|
|
|
|
break
|
|
|
|
}
|
|
|
|
return name
|
|
|
|
}
|
|
|
|
|
|
|
|
// Cewrites the log timestamp
|
|
|
|
func (writer logWriter) Write(bytes []byte) (int, error) {
|
|
|
|
return fmt.Print(YellowS("[") + time.Now().Format("15:04:05") + YellowS("]") + string(bytes))
|
|
|
|
}
|