2023-08-10 09:06:00 +00:00
|
|
|
// Copyright 2023 Woodpecker Authors
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2021-09-27 00:38:15 +00:00
|
|
|
package lint
|
|
|
|
|
|
|
|
import (
|
2023-11-03 10:44:03 +00:00
|
|
|
"errors"
|
2021-09-27 00:38:15 +00:00
|
|
|
"fmt"
|
|
|
|
"os"
|
2023-11-03 10:44:03 +00:00
|
|
|
"path"
|
2021-09-27 00:38:15 +00:00
|
|
|
"path/filepath"
|
|
|
|
"strings"
|
|
|
|
|
2023-11-03 10:44:03 +00:00
|
|
|
"github.com/muesli/termenv"
|
2021-10-27 19:03:14 +00:00
|
|
|
"github.com/urfave/cli/v2"
|
2021-10-12 07:25:13 +00:00
|
|
|
|
2023-12-08 07:15:08 +00:00
|
|
|
"go.woodpecker-ci.org/woodpecker/v2/cli/common"
|
|
|
|
pipeline_errors "go.woodpecker-ci.org/woodpecker/v2/pipeline/errors"
|
|
|
|
"go.woodpecker-ci.org/woodpecker/v2/pipeline/frontend/yaml"
|
|
|
|
"go.woodpecker-ci.org/woodpecker/v2/pipeline/frontend/yaml/linter"
|
2021-09-27 00:38:15 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Command exports the info command.
|
2021-10-27 19:03:14 +00:00
|
|
|
var Command = &cli.Command{
|
2021-09-27 00:38:15 +00:00
|
|
|
Name: "lint",
|
|
|
|
Usage: "lint a pipeline configuration file",
|
2023-04-29 08:12:36 +00:00
|
|
|
ArgsUsage: "[path/to/.woodpecker.yaml]",
|
2021-09-27 00:38:15 +00:00
|
|
|
Action: lint,
|
|
|
|
}
|
|
|
|
|
|
|
|
func lint(c *cli.Context) error {
|
2021-12-13 18:51:53 +00:00
|
|
|
return common.RunPipelineFunc(c, lintFile, lintDir)
|
|
|
|
}
|
2021-09-27 00:38:15 +00:00
|
|
|
|
2021-12-13 18:51:53 +00:00
|
|
|
func lintDir(c *cli.Context, dir string) error {
|
2022-07-17 16:25:56 +00:00
|
|
|
var errorStrings []string
|
|
|
|
if err := filepath.Walk(dir, func(path string, info os.FileInfo, e error) error {
|
2021-09-27 00:38:15 +00:00
|
|
|
if e != nil {
|
|
|
|
return e
|
|
|
|
}
|
|
|
|
|
|
|
|
// check if it is a regular file (not dir)
|
2023-04-29 08:12:36 +00:00
|
|
|
if info.Mode().IsRegular() && (strings.HasSuffix(info.Name(), ".yaml") || strings.HasSuffix(info.Name(), ".yml")) {
|
2021-09-27 00:38:15 +00:00
|
|
|
fmt.Println("#", info.Name())
|
2022-07-17 16:25:56 +00:00
|
|
|
if err := lintFile(c, path); err != nil {
|
|
|
|
errorStrings = append(errorStrings, err.Error())
|
|
|
|
}
|
2021-09-27 00:38:15 +00:00
|
|
|
fmt.Println("")
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
2022-07-17 16:25:56 +00:00
|
|
|
}); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(errorStrings) != 0 {
|
|
|
|
return fmt.Errorf("ERRORS: %s", strings.Join(errorStrings, "; "))
|
|
|
|
}
|
|
|
|
return nil
|
2021-09-27 00:38:15 +00:00
|
|
|
}
|
|
|
|
|
2021-12-13 18:51:53 +00:00
|
|
|
func lintFile(_ *cli.Context, file string) error {
|
2023-11-03 10:44:03 +00:00
|
|
|
output := termenv.NewOutput(os.Stdout)
|
|
|
|
|
2022-04-19 08:40:48 +00:00
|
|
|
fi, err := os.Open(file)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer fi.Close()
|
|
|
|
|
2023-11-03 10:44:03 +00:00
|
|
|
buf, err := os.ReadFile(file)
|
2021-09-27 00:38:15 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2023-11-03 10:44:03 +00:00
|
|
|
rawConfig := string(buf)
|
|
|
|
|
|
|
|
c, err := yaml.ParseString(rawConfig)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2023-11-04 14:30:47 +00:00
|
|
|
config := &linter.WorkflowConfig{
|
|
|
|
File: path.Base(file),
|
|
|
|
RawConfig: rawConfig,
|
|
|
|
Workflow: c,
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: lint multiple files at once to allow checks for sth like "depends_on" to work
|
|
|
|
err = linter.New(linter.WithTrusted(true)).Lint([]*linter.WorkflowConfig{config})
|
2023-11-03 10:44:03 +00:00
|
|
|
if err != nil {
|
2023-12-24 11:14:30 +00:00
|
|
|
fmt.Printf("🔥 %s has warnings / errors:\n", output.String(config.File).Underline())
|
2023-11-03 10:44:03 +00:00
|
|
|
|
2023-12-22 22:34:17 +00:00
|
|
|
hasErrors := false
|
2023-11-03 10:44:03 +00:00
|
|
|
for _, err := range pipeline_errors.GetPipelineErrors(err) {
|
|
|
|
line := " "
|
|
|
|
|
|
|
|
if err.IsWarning {
|
|
|
|
line = fmt.Sprintf("%s ⚠️ ", line)
|
|
|
|
} else {
|
|
|
|
line = fmt.Sprintf("%s ❌", line)
|
|
|
|
hasErrors = true
|
|
|
|
}
|
|
|
|
|
|
|
|
if data := err.GetLinterData(); data != nil {
|
|
|
|
line = fmt.Sprintf("%s %s\t%s", line, output.String(data.Field).Bold(), err.Message)
|
|
|
|
} else {
|
|
|
|
line = fmt.Sprintf("%s %s", line, err.Message)
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: use table output
|
|
|
|
fmt.Printf("%s\n", line)
|
|
|
|
}
|
|
|
|
|
|
|
|
if hasErrors {
|
|
|
|
return errors.New("config has errors")
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-09-27 00:38:15 +00:00
|
|
|
fmt.Println("✅ Config is valid")
|
|
|
|
return nil
|
|
|
|
}
|