validator

package
v0.0.0-...-c1bef8b Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 10, 2025 License: MIT Imports: 3 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var EmailRX = regexp.MustCompile("^[a-zA-Z0-9.!#$%&'*+\\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$")

Functions

func Matches

func Matches(value string, rx *regexp.Regexp) bool

Matches returns true if a value matches a provided compiled regular expression

func MaxChars

func MaxChars(value string, n int) bool

func MinChars

func MinChars(value string, n int) bool

MinChars returns true if a value contains at least n characters

func NotBlank

func NotBlank(value string) bool

func PermittedInt

func PermittedInt(value int, permittedValues ...int) bool

Types

type Validator

type Validator struct {
	NonFieldErrors []string
	FieldErrors    map[string]string
}

func (*Validator) AddFieldError

func (v *Validator) AddFieldError(key, message string)

func (*Validator) AddNonFieldError

func (v *Validator) AddNonFieldError(message string)

func (*Validator) CheckField

func (v *Validator) CheckField(ok bool, key, message string)

func (*Validator) Valid

func (v *Validator) Valid() bool

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL