mirror of
https://gitee.com/xiangheng/x_admin.git
synced 2025-10-06 00:27:00 +08:00
init
This commit is contained in:
97
server/util/tools.go
Normal file
97
server/util/tools.go
Normal file
@@ -0,0 +1,97 @@
|
||||
package util
|
||||
|
||||
import (
|
||||
"crypto/md5"
|
||||
"encoding/hex"
|
||||
"encoding/json"
|
||||
"math"
|
||||
"math/rand"
|
||||
"os"
|
||||
"reflect"
|
||||
"strconv"
|
||||
"strings"
|
||||
"time"
|
||||
"x_admin/config"
|
||||
|
||||
"github.com/google/uuid"
|
||||
)
|
||||
|
||||
var (
|
||||
ToolsUtil = toolsUtil{}
|
||||
allRandomStr = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
|
||||
)
|
||||
|
||||
// toolsUtil 常用工具集合类
|
||||
type toolsUtil struct{}
|
||||
|
||||
// RandomString 返回随机字符串
|
||||
func (tu toolsUtil) RandomString(length int) string {
|
||||
r := rand.New(rand.NewSource(time.Now().UnixNano()))
|
||||
byteList := make([]byte, length)
|
||||
for i := 0; i < length; i++ {
|
||||
byteList[i] = allRandomStr[r.Intn(62)]
|
||||
}
|
||||
return string(byteList)
|
||||
}
|
||||
|
||||
// MakeUuid 制作UUID
|
||||
func (tu toolsUtil) MakeUuid() string {
|
||||
return strings.ReplaceAll(uuid.New().String(), "-", "")
|
||||
}
|
||||
|
||||
// MakeMd5 制作MD5
|
||||
func (tu toolsUtil) MakeMd5(data string) string {
|
||||
sum := md5.Sum([]byte(data))
|
||||
return hex.EncodeToString(sum[:])
|
||||
}
|
||||
|
||||
// MakeToken 生成唯一Token
|
||||
func (tu toolsUtil) MakeToken() string {
|
||||
ms := time.Now().UnixMilli()
|
||||
token := tu.MakeMd5(tu.MakeUuid() + strconv.FormatInt(ms, 10) + tu.RandomString(8))
|
||||
tokenSecret := token + config.Config.Secret
|
||||
return tu.MakeMd5(tokenSecret) + tu.RandomString(6)
|
||||
}
|
||||
|
||||
// Contains 判断src是否包含elem元素
|
||||
func (tu toolsUtil) Contains(src interface{}, elem interface{}) bool {
|
||||
srcArr := reflect.ValueOf(src)
|
||||
if srcArr.Kind() == reflect.Ptr {
|
||||
srcArr = srcArr.Elem()
|
||||
}
|
||||
if srcArr.Kind() == reflect.Slice {
|
||||
for i := 0; i < srcArr.Len(); i++ {
|
||||
if srcArr.Index(i).Interface() == elem {
|
||||
return true
|
||||
}
|
||||
}
|
||||
}
|
||||
return false
|
||||
}
|
||||
|
||||
// Round float四舍五入
|
||||
func (tu toolsUtil) Round(val float64, n int) float64 {
|
||||
base := math.Pow(10, float64(n))
|
||||
return math.Round(base*val) / base
|
||||
}
|
||||
|
||||
// JsonToObj JSON转Obj
|
||||
func (tu toolsUtil) JsonToObj(jsonStr string, toVal interface{}) (err error) {
|
||||
return json.Unmarshal([]byte(jsonStr), &toVal)
|
||||
}
|
||||
|
||||
// ObjToJson Obj转JSON
|
||||
func (tu toolsUtil) ObjToJson(data interface{}) (res string, err error) {
|
||||
b, err := json.Marshal(data)
|
||||
if err != nil {
|
||||
return res, err
|
||||
}
|
||||
res = string(b)
|
||||
return res, nil
|
||||
}
|
||||
|
||||
// IsFileExist 判断文件或目录是否存在
|
||||
func (tu toolsUtil) IsFileExist(path string) bool {
|
||||
_, err := os.Stat(path)
|
||||
return err == nil || os.IsExist(err)
|
||||
}
|
Reference in New Issue
Block a user