forgejo/modules/validation/validatable.go

85 lines
1.7 KiB
Go
Raw Normal View History

2024-04-12 14:52:26 +03:00
// Copyright 2024 The Forgejo Authors. All rights reserved.
// Copyright 2023 The Forgejo Authors. All rights reserved.
2023-12-22 13:48:24 +03:00
// SPDX-License-Identifier: MIT
package validation
import (
"fmt"
2024-05-13 12:14:04 +03:00
"reflect"
2023-12-22 13:48:24 +03:00
"strings"
2024-01-12 16:33:52 +03:00
"unicode/utf8"
2024-01-12 16:57:22 +03:00
"code.gitea.io/gitea/modules/timeutil"
2023-12-22 13:48:24 +03:00
)
2024-05-13 12:14:04 +03:00
// ErrNotValid represents an validation error
type ErrNotValid struct {
Message string
}
func (err ErrNotValid) Error() string {
return fmt.Sprintf("Validation Error: %v", err.Message)
}
// IsErrNotValid checks if an error is a ErrNotValid.
func IsErrNotValid(err error) bool {
_, ok := err.(ErrNotValid)
return ok
}
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 {
2024-05-13 12:14:04 +03:00
typeof := reflect.TypeOf(v)
2023-12-22 13:48:24 +03:00
errString := strings.Join(err, "\n")
2024-05-13 12:14:04 +03:00
return false, ErrNotValid{fmt.Sprint(typeof, ": ", errString)}
2023-12-22 13:48:24 +03:00
}
return true, nil
}
2024-05-01 15:39:23 +03:00
func ValidateNotEmpty(value any, name string) []string {
2024-01-12 16:57:22 +03:00
isValid := true
switch v := value.(type) {
case string:
if v == "" {
isValid = false
}
case timeutil.TimeStamp:
if v.IsZero() {
isValid = false
}
2024-02-07 17:37:48 +03:00
case int64:
if v == 0 {
isValid = false
}
2024-01-12 16:57:22 +03:00
default:
isValid = false
}
if isValid {
return []string{}
2023-12-22 16:20:30 +03:00
}
2024-05-01 15:39:23 +03:00
return []string{fmt.Sprintf("%v should not be empty", name)}
2023-12-22 16:20:30 +03:00
}
2024-05-01 15:39:23 +03:00
func ValidateMaxLen(value string, maxLen int, name string) []string {
2024-01-12 16:33:52 +03:00
if utf8.RuneCountInString(value) > maxLen {
2024-05-01 15:39:23 +03:00
return []string{fmt.Sprintf("Value %v was longer than %v", name, maxLen)}
2024-01-12 16:33:52 +03:00
}
return []string{}
}
2024-05-01 16:02:27 +03:00
func ValidateOneOf(value any, allowed []any, name string) []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)}
2023-12-22 16:20:30 +03:00
}