2021-12-13 18:51:53 +00:00
|
|
|
package common
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"os"
|
2022-11-03 18:12:40 +00:00
|
|
|
"strings"
|
2021-12-13 18:51:53 +00:00
|
|
|
|
|
|
|
"github.com/urfave/cli/v2"
|
2022-11-03 18:12:40 +00:00
|
|
|
|
|
|
|
"github.com/woodpecker-ci/woodpecker/shared/constant"
|
2021-12-13 18:51:53 +00:00
|
|
|
)
|
|
|
|
|
2022-11-03 18:12:40 +00:00
|
|
|
func DetectPipelineConfig() (isDir bool, config string, _ error) {
|
|
|
|
for _, config := range constant.DefaultConfigOrder {
|
|
|
|
shouldBeDir := strings.HasSuffix(config, "/")
|
|
|
|
config = strings.TrimSuffix(config, "/")
|
2021-12-13 18:51:53 +00:00
|
|
|
|
2022-11-03 18:12:40 +00:00
|
|
|
if fi, err := os.Stat(config); err == nil && shouldBeDir == fi.IsDir() {
|
|
|
|
return fi.IsDir(), config, nil
|
|
|
|
}
|
2021-12-13 18:51:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return false, "", fmt.Errorf("could not detect pipeline config")
|
|
|
|
}
|
|
|
|
|
|
|
|
func RunPipelineFunc(c *cli.Context, fileFunc, dirFunc func(*cli.Context, string) error) error {
|
|
|
|
if c.Args().Len() == 0 {
|
|
|
|
isDir, path, err := DetectPipelineConfig()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if isDir {
|
|
|
|
return dirFunc(c, path)
|
|
|
|
}
|
|
|
|
return fileFunc(c, path)
|
|
|
|
}
|
|
|
|
|
|
|
|
multiArgs := c.Args().Len() > 1
|
|
|
|
for _, arg := range c.Args().Slice() {
|
|
|
|
fi, err := os.Stat(arg)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if multiArgs {
|
|
|
|
fmt.Println("#", fi.Name())
|
|
|
|
}
|
|
|
|
if fi.IsDir() {
|
|
|
|
if err := dirFunc(c, arg); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if err := fileFunc(c, arg); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if multiArgs {
|
|
|
|
fmt.Println("")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|