common.go 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. package utils
  2. import (
  3. "crypto/md5"
  4. "encoding/hex"
  5. "regexp"
  6. )
  7. func MD5(data string) string {
  8. m := md5.Sum([]byte(data))
  9. return hex.EncodeToString(m[:])
  10. }
  11. func CheckPwd(pwd string) bool {
  12. compile := `([0-9a-z]+){6,12}|(a-z0-9]+){6,12}`
  13. reg := regexp.MustCompile(compile)
  14. flag := reg.MatchString(pwd)
  15. return flag
  16. }
  17. // 校验邮箱格式
  18. func ValidateEmailFormatat(email string) bool {
  19. reg := regexp.MustCompile(RegularEmail)
  20. return reg.MatchString(email)
  21. }
  22. // 验证是否是手机号
  23. func ValidateMobileFormatat(mobileNum string) bool {
  24. reg := regexp.MustCompile(RegularMobile)
  25. return reg.MatchString(mobileNum)
  26. }
  27. // 计算分页起始页
  28. func StartIndex(page, pagesize int) int {
  29. if page > 1 {
  30. return (page - 1) * pagesize
  31. }
  32. return 0
  33. }
  34. // GetLikeKeywordPars 获取sql查询中的参数切片
  35. func GetLikeKeywordPars(pars []interface{}, keyword string, num int) (newPars []interface{}) {
  36. newPars = pars
  37. if newPars == nil {
  38. newPars = make([]interface{}, 0)
  39. }
  40. for i := 1; i <= num; i++ {
  41. newPars = append(newPars, `%`+keyword+`%`)
  42. }
  43. return
  44. }