upload.go 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. package realname
  2. import (
  3. "context"
  4. "crypto/md5"
  5. "encoding/hex"
  6. "fmt"
  7. "io/ioutil"
  8. "math/rand"
  9. "os"
  10. "strconv"
  11. "strings"
  12. "syscall"
  13. "time"
  14. "github.com/pkg/errors"
  15. )
  16. // Upload upload ID card.
  17. func (s *Service) Upload(c context.Context, mid int64, data []byte) (src string, err error) {
  18. var (
  19. md5Engine = md5.New()
  20. hashMID string
  21. hashRand string
  22. fileName string
  23. dirPath string
  24. dateStr string
  25. )
  26. md5Engine.Write([]byte(strconv.FormatInt(mid, 10)))
  27. hashMID = hex.EncodeToString(md5Engine.Sum(nil))
  28. md5Engine.Reset()
  29. md5Engine.Write([]byte(strconv.FormatInt(time.Now().Unix(), 10)))
  30. md5Engine.Write([]byte(strconv.FormatInt(rand.Int63n(1000000), 10)))
  31. hashRand = hex.EncodeToString(md5Engine.Sum(nil))
  32. fileName = fmt.Sprintf("%s_%s.txt", hashMID[:6], hashRand)
  33. dateStr = time.Now().Format("20060102")
  34. dirPath = fmt.Sprintf("%s/%s/", s.c.Realname.DataDir, dateStr)
  35. var (
  36. dataFile *os.File
  37. writeFileSize int
  38. encrptedData []byte
  39. )
  40. _, err = os.Stat(dirPath)
  41. if os.IsNotExist(err) {
  42. mask := syscall.Umask(0)
  43. defer syscall.Umask(mask)
  44. if err = os.MkdirAll(dirPath, 0777); err != nil {
  45. err = errors.WithStack(err)
  46. return
  47. }
  48. }
  49. if encrptedData, err = s.mainCryptor.IMGEncrypt(data); err != nil {
  50. err = errors.WithStack(err)
  51. return
  52. }
  53. if dataFile, err = os.Create(dirPath + fileName); err != nil {
  54. err = errors.Wrapf(err, "create file %s failed", dirPath+fileName)
  55. return
  56. }
  57. defer dataFile.Close()
  58. if writeFileSize, err = dataFile.Write(encrptedData); err != nil {
  59. err = errors.Wrapf(err, "write file %s size %d failed", dirPath+fileName, len(encrptedData))
  60. return
  61. }
  62. if writeFileSize != len(encrptedData) {
  63. err = errors.Errorf("Write file data to %s , expected %d actual %d", dirPath+fileName, len(encrptedData), writeFileSize)
  64. return
  65. }
  66. src = fmt.Sprintf("%s/%s", dateStr, strings.TrimSuffix(fileName, ".txt"))
  67. return
  68. }
  69. // Preview preview id card
  70. func (s *Service) Preview(c context.Context, mid int64, src string) (img []byte, err error) {
  71. var (
  72. filePath string
  73. file *os.File
  74. fileInfo os.FileInfo
  75. )
  76. if !s.validateSrc(mid, src) {
  77. err = errors.Errorf("Preview src %s invalid", src)
  78. return
  79. }
  80. filePath = fmt.Sprintf("%s/%s.txt", s.c.Realname.DataDir, src)
  81. fileInfo, err = os.Stat(filePath)
  82. if os.IsNotExist(err) {
  83. err = errors.WithStack(err)
  84. return
  85. }
  86. if time.Since(fileInfo.ModTime()) > time.Duration(s.c.Realname.ImageExpire) {
  87. err = errors.Errorf("Realname upload image %s expired %+v", filePath, s.c.Realname.ImageExpire)
  88. return
  89. }
  90. if file, err = os.Open(filePath); err != nil {
  91. err = errors.WithStack(err)
  92. return
  93. }
  94. defer file.Close()
  95. if img, err = ioutil.ReadAll(file); err != nil {
  96. err = errors.WithStack(err)
  97. return
  98. }
  99. return s.mainCryptor.IMGDecrypt(img)
  100. }
  101. func (s *Service) validateSrc(mid int64, src string) (ok bool) {
  102. var (
  103. paths []string
  104. fileNames []string
  105. )
  106. if paths = strings.Split(src, "/"); len(paths) != 2 {
  107. return
  108. }
  109. if fileNames = strings.Split(paths[1], "_"); len(fileNames) != 2 {
  110. return
  111. }
  112. var (
  113. hash = md5.New()
  114. midHash string
  115. )
  116. hash.Write([]byte(strconv.FormatInt(mid, 10)))
  117. midHash = hex.EncodeToString(hash.Sum(nil))[:6]
  118. if midHash != fileNames[0] {
  119. return
  120. }
  121. ok = true
  122. return
  123. }