Created
January 15, 2023 13:56
-
-
Save func25/542816f4b72f675370fbf2351cead134 to your computer and use it in GitHub Desktop.
Custom struct tag in Go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
"reflect" | |
"strconv" | |
"strings" | |
) | |
type Student struct { | |
Age float32 `validate:"min=18"` | |
Name string `validate:"required"` | |
} | |
func Validate(student any) error { | |
// get the value of interface{}/ pointer point to | |
val := reflect.Indirect(reflect.ValueOf(student)) | |
for i := 0; i < val.NumField(); i++ { | |
typeField := val.Type().Field(i) | |
tag := typeField.Tag.Get("validate") | |
if tag == "" { | |
continue | |
} | |
valueField := val.Field(i) | |
rules := strings.Split(tag, ",") | |
for _, rule := range rules { | |
parts := strings.Split(rule, "=") | |
key := parts[0] | |
var value string | |
if len(parts) > 1 { | |
value = parts[1] | |
} | |
switch key { | |
case "required": | |
if err := isRequired(valueField); err != nil { | |
return err | |
} | |
case "min": | |
if err := isMin(valueField, value); err != nil { | |
return err | |
} | |
} | |
} | |
} | |
return nil | |
} | |
func isMin(valueField reflect.Value, minStr string) error { | |
typeField := valueField.Type() | |
if minStr == "" { | |
return nil | |
} | |
min, err := strconv.ParseFloat(minStr, 64) | |
if err != nil { | |
return fmt.Errorf("min value %f is not a number", min) | |
} | |
switch valueField.Kind() { | |
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64: | |
if float64(valueField.Int()) < min { | |
return fmt.Errorf("field %s must be greater or equal %d", typeField.Name(), int(min)) | |
} | |
case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64: | |
if float64(valueField.Uint()) < min { | |
return fmt.Errorf("field %s must be greater or equal than %d", typeField.Name(), uint(min)) | |
} | |
case reflect.Float32, reflect.Float64: | |
if valueField.Float() < min { | |
return fmt.Errorf("field %s must be greater or equal than %f", typeField.Name(), min) | |
} | |
} | |
return nil | |
} | |
func isRequired(v reflect.Value) error { | |
switch v.Kind() { | |
case reflect.Array, reflect.Map, reflect.Slice, reflect.String: | |
if v.Len() != 0 { | |
return nil | |
} | |
case reflect.Bool: | |
if v.Bool() { | |
return nil | |
} | |
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64: | |
if v.Int() != 0 { | |
return nil | |
} | |
case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64: | |
if v.Uint() != 0 { | |
return nil | |
} | |
} | |
return fmt.Errorf("field %s is required", v.Type().Name()) | |
} | |
func main() { | |
// create a student which violates age validation | |
student := interface{}(Student{Age: 17, Name: "Aiden"}) | |
if err := Validate(student); err != nil { | |
fmt.Println(err) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment