move.go 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. package api
  2. import (
  3. "assetcenter/db/repo"
  4. "fmt"
  5. "github.com/gin-gonic/gin"
  6. "go.mongodb.org/mongo-driver/bson/primitive"
  7. )
  8. func Move(r *GinRouter) {
  9. // 同步色卡名和序列
  10. r.GET("/move/mat/cardInfo", MoveCardInfo)
  11. }
  12. func MoveCardInfo(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  13. collections := []string{
  14. "personal_mat_user",
  15. "platform_mat_company",
  16. "company_mats_user",
  17. "platform_mat2d_user",
  18. "platform_mat_team",
  19. "company_mats_company",
  20. "company_mat2d_user",
  21. "platform_mat2d_company",
  22. "personal_mat_user",
  23. }
  24. for _, collect := range collections {
  25. fmt.Println("-----------------同步开始------------------------")
  26. fmt.Println("-----------------" + collect + "------------------------")
  27. ok, mats := repo.RepoSeachDocsMap(apictx.CreateRepoCtx(), &repo.DocsSearchOptions{
  28. Db: "sku3d-tree",
  29. CollectName: collect,
  30. Project: []string{"name", "cusNum", "source"},
  31. })
  32. // fmt.Println(ok)
  33. if !ok {
  34. continue
  35. }
  36. isUpdate := false
  37. if len(mats) > 0 {
  38. for _, mat := range mats {
  39. if mat["name"] == nil {
  40. mat["name"] = "默认"
  41. }
  42. if mat["cusNum"] == nil {
  43. mat["cusNum"] = "mr-001"
  44. }
  45. if source, ok := mat["source"]; ok {
  46. if sv, ok := source.(map[string]interface{}); ok {
  47. if slistv, ok := sv["colorCards"]; ok {
  48. if slist, ok := slistv.(primitive.A); ok {
  49. if len(slist) > 0 {
  50. for i, list := range slist {
  51. _name := list.(map[string]interface{})["name"]
  52. _cusNum := list.(map[string]interface{})["cusNum"]
  53. if _name == nil {
  54. slist[i].(map[string]interface{})["name"] = mat["name"]
  55. isUpdate = true
  56. }
  57. if _cusNum == nil {
  58. slist[i].(map[string]interface{})["cusNum"] = mat["cusNum"]
  59. isUpdate = true
  60. }
  61. }
  62. }
  63. }
  64. }
  65. }
  66. fmt.Println(isUpdate)
  67. fmt.Println(mat["name"])
  68. fmt.Println(mat["_id"].(primitive.ObjectID).Hex())
  69. // return mat["source"], nil
  70. if isUpdate {
  71. repo.RepoUpdateSeDbDoc(apictx.CreateRepoCtx(), "sku3d-tree", collect, mat["_id"].(primitive.ObjectID).Hex(), &mat)
  72. }
  73. }
  74. }
  75. }
  76. }
  77. fmt.Println("-----------------同步结束------------------------")
  78. return 1, nil
  79. }