mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-02 08:19:04 +01:00
42 lines
902 B
Go
42 lines
902 B
Go
// Copyright 2023 The forgejo Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package validation
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
)
|
|
|
|
type Validateable interface {
|
|
Validate() []string
|
|
}
|
|
|
|
func IsValid(v Validateable) (bool, error) {
|
|
if err := v.Validate(); len(err) > 0 {
|
|
errString := strings.Join(err, "\n")
|
|
return false, fmt.Errorf(errString)
|
|
}
|
|
|
|
return true, nil
|
|
}
|
|
|
|
func ValidateNotEmpty(value, fieldName string) []string {
|
|
if value == "" {
|
|
return []string{fmt.Sprintf("Field %v may not be empty", fieldName)}
|
|
}
|
|
return []string{}
|
|
}
|
|
|
|
func ValidateOneOf(value string, allowed []string) []string {
|
|
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)
|
|
}
|