forgejo/modules/validation/validateable.go

51 lines
1.1 KiB
Go
Raw Normal View History

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