mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-10 19:11:08 +00:00
5ff006614f
Co-authored-by: 6543 <m.huber@kithara.com> Co-authored-by: qwerty287 <80460567+qwerty287@users.noreply.github.com>
77 lines
1.6 KiB
Go
77 lines
1.6 KiB
Go
package errors
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
|
|
"go.uber.org/multierr"
|
|
)
|
|
|
|
type PipelineErrorType string
|
|
|
|
const (
|
|
PipelineErrorTypeLinter PipelineErrorType = "linter" // some error with the config syntax
|
|
PipelineErrorTypeDeprecation PipelineErrorType = "deprecation" // using some deprecated feature
|
|
PipelineErrorTypeCompiler PipelineErrorType = "compiler" // some error with the config semantics
|
|
PipelineErrorTypeGeneric PipelineErrorType = "generic" // some generic error
|
|
)
|
|
|
|
type PipelineError struct {
|
|
Type PipelineErrorType `json:"type"`
|
|
Message string `json:"message"`
|
|
IsWarning bool `json:"is_warning"`
|
|
Data interface{} `json:"data"`
|
|
}
|
|
|
|
type LinterErrorData struct {
|
|
Field string `json:"field"`
|
|
}
|
|
|
|
func (e *PipelineError) Error() string {
|
|
return fmt.Sprintf("[%s] %s", e.Type, e.Message)
|
|
}
|
|
|
|
func (e *PipelineError) GetLinterData() *LinterErrorData {
|
|
if e.Type != PipelineErrorTypeLinter {
|
|
return nil
|
|
}
|
|
|
|
if data, ok := e.Data.(*LinterErrorData); ok {
|
|
return data
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func GetPipelineErrors(err error) []*PipelineError {
|
|
var pipelineErrors []*PipelineError
|
|
for _, _err := range multierr.Errors(err) {
|
|
var err *PipelineError
|
|
if errors.As(_err, &err) {
|
|
pipelineErrors = append(pipelineErrors, err)
|
|
} else {
|
|
pipelineErrors = append(pipelineErrors, &PipelineError{
|
|
Message: _err.Error(),
|
|
Type: PipelineErrorTypeGeneric,
|
|
})
|
|
}
|
|
}
|
|
|
|
return pipelineErrors
|
|
}
|
|
|
|
func HasBlockingErrors(err error) bool {
|
|
if err == nil {
|
|
return false
|
|
}
|
|
|
|
errs := GetPipelineErrors(err)
|
|
|
|
for _, err := range errs {
|
|
if !err.IsWarning {
|
|
return true
|
|
}
|
|
}
|
|
|
|
return false
|
|
}
|