forgejo/modules/validation/validateable.go

51 lines
1.1 KiB
Go
Raw Normal View History

2023-12-22 10:48:24 +00:00
// Copyright 2023 The forgejo Authors. All rights reserved.
// SPDX-License-Identifier: MIT
package validation
import (
"fmt"
"strings"
2024-01-12 13:33:52 +00:00
"unicode/utf8"
2023-12-22 10:48:24 +00:00
)
2023-12-22 12:44:45 +00:00
type Validateable interface {
Validate() []string
}
2023-12-22 10:48:24 +00:00
2023-12-22 13:20:30 +00:00
func IsValid(v Validateable) (bool, error) {
if err := v.Validate(); len(err) > 0 {
2023-12-22 10:48:24 +00:00
errString := strings.Join(err, "\n")
return false, fmt.Errorf(errString)
}
return true, nil
}
2024-01-12 13:33:52 +00:00
func ValidateNotEmpty(value string, fieldName string) []string {
2023-12-22 13:20:30 +00:00
if value == "" {
return []string{fmt.Sprintf("Field %v may not be empty", fieldName)}
}
return []string{}
}
2024-01-12 13:33:52 +00:00
func ValidateMaxLen(value string, maxLen int, fieldName string) []string {
if utf8.RuneCountInString(value) > maxLen {
return []string{fmt.Sprintf("Value in field %v was longer than %v", fieldName, maxLen)}
}
return []string{}
}
2023-12-29 14:48:45 +00:00
func ValidateOneOf(value any, allowed []any) []string {
2023-12-22 13:20:30 +00: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 10:48:24 +00:00
}