Forgejo/modules/validation/validateable.go

43 lines
896 B
Go
Raw Normal View History

2023-12-22 11:48:24 +01:00
// Copyright 2023 The forgejo Authors. All rights reserved.
// SPDX-License-Identifier: MIT
package validation
import (
"fmt"
"strings"
)
2023-12-22 13:44:45 +01:00
type Validateable interface {
Validate() []string
}
2023-12-22 11:48:24 +01:00
2023-12-22 14:20:30 +01:00
func IsValid(v Validateable) (bool, error) {
if err := v.Validate(); len(err) > 0 {
2023-12-22 11:48:24 +01:00
errString := strings.Join(err, "\n")
return false, fmt.Errorf(errString)
}
return true, nil
}
2023-12-29 09:43:10 +01:00
func ValidateNotEmpty(value, fieldName string) []string {
2023-12-22 14:20:30 +01:00
if value == "" {
return []string{fmt.Sprintf("Field %v may not be empty", fieldName)}
}
return []string{}
}
2023-12-29 15:48:45 +01:00
func ValidateOneOf(value any, allowed []any) []string {
2023-12-22 14:20:30 +01:00
for _, allowedElem := range allowed {
if value == allowedElem {
return []string{}
}
}
return []string{fmt.Sprintf("Value %v is not contained in allowed values [%v]", value, allowed)}
}
func ValidateSuffix(str, suffix string) bool {
return strings.HasSuffix(str, suffix)
2023-12-22 11:48:24 +01:00
}