utils.go 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. package bus
  2. import (
  3. "assetcenter/conf"
  4. "assetcenter/log"
  5. "crypto/sha256"
  6. "encoding/json"
  7. "errors"
  8. "fmt"
  9. "io"
  10. "net/http"
  11. "path"
  12. "strings"
  13. )
  14. type SortMilvusSearchSlice []*MlivusSearchRes
  15. func (s SortMilvusSearchSlice) Len() int {
  16. return len(s)
  17. }
  18. func (s SortMilvusSearchSlice) Swap(i, j int) {
  19. s[i], s[j] = s[j], s[i]
  20. }
  21. func (s SortMilvusSearchSlice) Less(i, j int) bool {
  22. return s[i].Score < s[j].Score
  23. }
  24. func RemoveDuplicateMilvusSearch(slice []*MlivusSearchRes) []*MlivusSearchRes {
  25. keys := make(map[string]bool)
  26. list := make([]*MlivusSearchRes, 0)
  27. for _, entry := range slice {
  28. if _, value := keys[entry.ProductId]; !value {
  29. keys[entry.ProductId] = true
  30. list = append(list, entry)
  31. }
  32. }
  33. return list
  34. }
  35. type MlivusDeleteRes struct {
  36. Status bool `json:"status"`
  37. Msg string `json:"msg"`
  38. }
  39. func deleteImageToMlivus(tableName, product_id string) {
  40. im_hash := product_id
  41. req, err := http.NewRequest("POST", fmt.Sprintf("%s%s", conf.AppConfig.SearchImageAddr, "/delete/record"), nil)
  42. if err != nil {
  43. log.Error(err)
  44. return
  45. }
  46. q := req.URL.Query()
  47. q.Add("table_name", tableName)
  48. q.Add("im_hash", im_hash)
  49. req.URL.RawQuery = q.Encode()
  50. rep, err := http.DefaultClient.Do(req)
  51. if err != nil {
  52. log.Error(err)
  53. return
  54. }
  55. defer rep.Body.Close()
  56. res, _ := io.ReadAll(rep.Body)
  57. uploadRes := MlivusDeleteRes{}
  58. err = json.Unmarshal(res, &uploadRes)
  59. if err != nil {
  60. log.Error(err)
  61. return
  62. }
  63. }
  64. type MlivusSearchRes struct {
  65. ImHash string `json:"im_hash"`
  66. ProductId string `json:"product_id"`
  67. Score float64 `json:"score"`
  68. }
  69. func searchImageToMlivus(tableName, url string) ([]*MlivusSearchRes, error) {
  70. ext := strings.ToLower(path.Ext(url))
  71. if ext != ".jpg" && ext != ".png" && ext != ".jpeg" {
  72. return nil, errors.New("只支持jpg/png/jpeg图片")
  73. }
  74. req, err := http.NewRequest("POST", fmt.Sprintf("%s%s", conf.AppConfig.SearchImageAddr, "/img/search"), nil)
  75. if err != nil {
  76. log.Error(err)
  77. return nil, errors.New("上传文件请求配置失败")
  78. }
  79. q := req.URL.Query()
  80. q.Add("table_name", tableName)
  81. q.Add("url", url)
  82. req.URL.RawQuery = q.Encode()
  83. rep, err := http.DefaultClient.Do(req)
  84. if err != nil {
  85. log.Error(err)
  86. return nil, errors.New("处理图片失败")
  87. }
  88. defer rep.Body.Close()
  89. res, _ := io.ReadAll(rep.Body)
  90. uploadRes := []*MlivusSearchRes{}
  91. err = json.Unmarshal(res, &uploadRes)
  92. if err != nil {
  93. fmt.Println(err)
  94. return nil, err
  95. }
  96. return uploadRes, nil
  97. }
  98. type MlivusUploadRes struct {
  99. ImHash string `json:"id"`
  100. }
  101. func uploadImageToMlivus(tableName, productId, url string) {
  102. im_hash := productId
  103. // ext := strings.ToLower(path.Ext(url))
  104. // fmt.Println(ext)
  105. // if ext != ".jpg" && ext != ".png" && ext != ".jpeg" {
  106. // log.Error("只支持jpg/png/jpeg图片")
  107. // return
  108. // }
  109. req, err := http.NewRequest("POST", fmt.Sprintf("%s%s", conf.AppConfig.SearchImageAddr, "/img/upload"), nil)
  110. if err != nil {
  111. log.Error(err)
  112. return
  113. }
  114. q := req.URL.Query()
  115. q.Add("table_name", tableName)
  116. q.Add("product_id", productId)
  117. q.Add("im_hash", im_hash)
  118. q.Add("url", url)
  119. req.URL.RawQuery = q.Encode()
  120. rep, err := http.DefaultClient.Do(req)
  121. if err != nil {
  122. log.Error(err)
  123. return
  124. }
  125. defer rep.Body.Close()
  126. res, _ := io.ReadAll(rep.Body)
  127. uploadRes := MlivusUploadRes{}
  128. err = json.Unmarshal(res, &uploadRes)
  129. if err != nil {
  130. log.Error(err)
  131. return
  132. }
  133. }
  134. func getImageHash(url string) string {
  135. data := []byte(url)
  136. hasher := sha256.New()
  137. hasher.Write(data)
  138. hash := hasher.Sum(nil)
  139. return fmt.Sprintf("%x", hash)
  140. }
  141. // func getUserById(apictx *ApiSession, id primitive.ObjectID) (*model.UserSmaple, error) {
  142. // user := &model.UserSmaple{}
  143. // _, err := repo.RepoSeachDoc(apictx.CreateRepoCtx(), &repo.DocSearchOptions{
  144. // Db: "user",
  145. // CollectName: repo.CollectionUsers,
  146. // Query: repo.Map{"_id": id},
  147. // Project: []string{"name", "avatar", "city", "loginName"},
  148. // }, user)
  149. // return user, err
  150. // }