2023-06-15 09:41:30 +08:00
|
|
|
|
package utils
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"encoding/json"
|
|
|
|
|
"fmt"
|
|
|
|
|
"reflect"
|
2023-09-05 11:47:03 +08:00
|
|
|
|
"strconv"
|
2023-06-15 09:41:30 +08:00
|
|
|
|
"strings"
|
|
|
|
|
|
2023-06-22 11:08:44 +08:00
|
|
|
|
"github.com/lionsoul2014/ip2region/binding/golang/xdb"
|
|
|
|
|
)
|
2023-06-15 09:41:30 +08:00
|
|
|
|
|
|
|
|
|
// CopyObject 拷贝对象
|
|
|
|
|
func CopyObject(src interface{}, dst interface{}) error {
|
|
|
|
|
|
|
|
|
|
srcType := reflect.TypeOf(src)
|
|
|
|
|
srcValue := reflect.ValueOf(src)
|
|
|
|
|
dstValue := reflect.ValueOf(dst).Elem()
|
|
|
|
|
reflect.TypeOf(dst)
|
|
|
|
|
for i := 0; i < srcType.NumField(); i++ {
|
|
|
|
|
field := srcType.Field(i)
|
|
|
|
|
value := dstValue.FieldByName(field.Name)
|
|
|
|
|
if !value.IsValid() {
|
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
// 数据类型相同,直接赋值
|
|
|
|
|
v := srcValue.FieldByName(field.Name)
|
|
|
|
|
if value.Type() == field.Type {
|
|
|
|
|
value.Set(v)
|
|
|
|
|
} else {
|
|
|
|
|
// src data type is string,dst data type is slice, map, struct
|
|
|
|
|
// use json decode the data
|
|
|
|
|
if field.Type.Kind() == reflect.String && (value.Type().Kind() == reflect.Struct ||
|
|
|
|
|
value.Type().Kind() == reflect.Map ||
|
|
|
|
|
value.Type().Kind() == reflect.Slice) {
|
|
|
|
|
pType := reflect.New(value.Type())
|
|
|
|
|
v2 := pType.Interface()
|
|
|
|
|
err := json.Unmarshal([]byte(v.String()), &v2)
|
|
|
|
|
if err == nil {
|
|
|
|
|
value.Set(reflect.ValueOf(v2).Elem())
|
|
|
|
|
}
|
2023-06-20 11:46:13 +08:00
|
|
|
|
// map, struct, slice to string
|
2023-06-15 09:41:30 +08:00
|
|
|
|
} else if (field.Type.Kind() == reflect.Struct ||
|
|
|
|
|
field.Type.Kind() == reflect.Map ||
|
|
|
|
|
field.Type.Kind() == reflect.Slice) && value.Type().Kind() == reflect.String {
|
|
|
|
|
ba, err := json.Marshal(v.Interface())
|
|
|
|
|
if err == nil {
|
2023-06-20 11:46:13 +08:00
|
|
|
|
val := string(ba)
|
|
|
|
|
if strings.Contains(val, "{") {
|
|
|
|
|
value.Set(reflect.ValueOf(string(ba)))
|
|
|
|
|
} else {
|
|
|
|
|
value.Set(reflect.ValueOf(""))
|
|
|
|
|
}
|
2023-06-15 09:41:30 +08:00
|
|
|
|
}
|
|
|
|
|
} else { // 简单数据类型的强制类型转换
|
|
|
|
|
switch value.Kind() {
|
|
|
|
|
case reflect.Int:
|
|
|
|
|
case reflect.Int8:
|
|
|
|
|
case reflect.Int16:
|
|
|
|
|
case reflect.Int32:
|
|
|
|
|
case reflect.Int64:
|
|
|
|
|
value.SetInt(v.Int())
|
|
|
|
|
break
|
|
|
|
|
case reflect.Float32:
|
|
|
|
|
case reflect.Float64:
|
|
|
|
|
value.SetFloat(v.Float())
|
|
|
|
|
break
|
|
|
|
|
case reflect.Bool:
|
|
|
|
|
value.SetBool(v.Bool())
|
|
|
|
|
break
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func Ip2Region(searcher *xdb.Searcher, ip string) string {
|
|
|
|
|
str, err := searcher.SearchByStr(ip)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return ""
|
|
|
|
|
}
|
|
|
|
|
arr := strings.Split(str, "|")
|
|
|
|
|
if len(arr) < 3 {
|
|
|
|
|
return arr[0]
|
|
|
|
|
}
|
|
|
|
|
return fmt.Sprintf("%s-%s-%s", arr[0], arr[2], arr[3])
|
|
|
|
|
}
|
2023-07-10 07:05:56 +08:00
|
|
|
|
|
|
|
|
|
func IsEmptyValue(obj interface{}) bool {
|
2023-08-14 17:59:21 +08:00
|
|
|
|
if obj == nil {
|
|
|
|
|
return true
|
|
|
|
|
}
|
2023-09-05 11:47:03 +08:00
|
|
|
|
|
2023-07-10 07:05:56 +08:00
|
|
|
|
v := reflect.ValueOf(obj)
|
|
|
|
|
switch v.Kind() {
|
|
|
|
|
case reflect.Ptr, reflect.Interface:
|
|
|
|
|
return v.IsNil()
|
|
|
|
|
case reflect.Array, reflect.Slice, reflect.Map, reflect.String:
|
|
|
|
|
return v.Len() == 0
|
|
|
|
|
case reflect.Bool:
|
|
|
|
|
return !v.Bool()
|
|
|
|
|
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
|
|
|
|
|
return v.Int() == 0
|
|
|
|
|
case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:
|
|
|
|
|
return v.Uint() == 0
|
|
|
|
|
case reflect.Float32, reflect.Float64:
|
|
|
|
|
return v.Float() == 0
|
|
|
|
|
case reflect.Complex64, reflect.Complex128:
|
|
|
|
|
return v.Complex() == 0
|
|
|
|
|
default:
|
|
|
|
|
return reflect.DeepEqual(obj, reflect.Zero(reflect.TypeOf(obj)).Interface())
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-09-05 11:47:03 +08:00
|
|
|
|
|
|
|
|
|
func BoolValue(str string) bool {
|
|
|
|
|
value, err := strconv.ParseBool(str)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
|
return value
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func FloatValue(str string) float64 {
|
|
|
|
|
value, err := strconv.ParseFloat(str, 64)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return 0
|
|
|
|
|
}
|
|
|
|
|
return value
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func IntValue(str string, defaultValue int) int {
|
|
|
|
|
value, err := strconv.Atoi(str)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return defaultValue
|
|
|
|
|
}
|
|
|
|
|
return value
|
|
|
|
|
}
|