auth_utils.go 784 B

12345678910111213141516171819202122232425262728293031323334353637
  1. package auth
  2. import (
  3. "crypto/rand"
  4. "eta/eta_mini_ht_api/common/exception"
  5. stringUtils "eta/eta_mini_ht_api/common/utils/string"
  6. "math/big"
  7. "regexp"
  8. )
  9. const (
  10. letterBytes = "0123456789"
  11. )
  12. func GenerateCode(length int) (string, error) {
  13. if length <= 0 {
  14. return "", exception.New(exception.IllegalCodeLength)
  15. }
  16. b := make([]byte, length)
  17. for i := range b {
  18. n, err := rand.Int(rand.Reader, big.NewInt(int64(len(letterBytes))))
  19. if err != nil {
  20. return "", err
  21. }
  22. b[i] = letterBytes[n.Int64()]
  23. }
  24. return string(b), nil
  25. }
  26. func IsValidMobile(mobile string) bool {
  27. if stringUtils.IsBlank(mobile) {
  28. return false
  29. }
  30. regex := `^(13[0-9]|14[5-9]|15[0-3,5-9]|16[6]|17[0-8]|18[0-9]|19[0-3,5-9])\d{8}$`
  31. matched, _ := regexp.MatchString(regex, mobile)
  32. return matched
  33. }