mirror of
https://github.com/sorenisanerd/gotty.git
synced 2024-11-09 15:24:25 +00:00
42 lines
773 B
Go
42 lines
773 B
Go
package utils
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/fatih/structs"
|
|
"reflect"
|
|
"strconv"
|
|
)
|
|
|
|
func ApplyDefaultValues(struct_ interface{}) (err error) {
|
|
o := structs.New(struct_)
|
|
|
|
for _, field := range o.Fields() {
|
|
defaultValue := field.Tag("default")
|
|
if defaultValue == "" {
|
|
continue
|
|
}
|
|
var val interface{}
|
|
switch field.Kind() {
|
|
case reflect.String:
|
|
val = defaultValue
|
|
case reflect.Bool:
|
|
if defaultValue == "true" {
|
|
val = true
|
|
} else if defaultValue == "false" {
|
|
val = false
|
|
} else {
|
|
return fmt.Errorf("invalid bool expression: %v, use true/false", defaultValue)
|
|
}
|
|
case reflect.Int:
|
|
val, err = strconv.Atoi(defaultValue)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
default:
|
|
val = field.Value()
|
|
}
|
|
field.Set(val)
|
|
}
|
|
return nil
|
|
}
|