calc.go 1003 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. package model
  2. import (
  3. "crypto/md5"
  4. "encoding/hex"
  5. "strconv"
  6. )
  7. // TODO move to model
  8. const (
  9. shortUrlLength = 6
  10. )
  11. var (
  12. chars = [62]string{
  13. "a", "b", "c", "d", "e", "f", "g", "h",
  14. "i", "j", "k", "l", "m", "n", "o", "p",
  15. "q", "r", "s", "t", "u", "v", "w", "x",
  16. "y", "z", "0", "1", "2", "3", "4", "5",
  17. "6", "7", "8", "9", "A", "B", "C", "D",
  18. "E", "F", "G", "H", "I", "J", "K", "L",
  19. "M", "N", "O", "P", "Q", "R", "S", "T",
  20. "U", "V", "W", "X", "Y", "Z",
  21. }
  22. )
  23. // generate short url from long url
  24. func Generate(long string) [4]string {
  25. var resUrl [4]string
  26. h := md5.New()
  27. h.Write([]byte(long))
  28. hexstr := hex.EncodeToString(h.Sum(nil))
  29. for i := 0; i < 4; i++ {
  30. start := i * 8
  31. end := start + 8
  32. s := hexstr[start:end]
  33. hexInt, _ := strconv.ParseInt(s, 16, 64)
  34. hexInt = 0x3FFFFFFF & hexInt
  35. var out string = ""
  36. for n := 0; n < shortUrlLength; n++ {
  37. index := 0x0000003D & hexInt
  38. out += chars[index]
  39. hexInt = hexInt >> 5
  40. }
  41. resUrl[i] = out
  42. }
  43. return resUrl
  44. }