service-import.go 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. package api
  2. import (
  3. "assetcenter/conf"
  4. "assetcenter/db"
  5. "assetcenter/db/model"
  6. "assetcenter/db/repo"
  7. "context"
  8. "errors"
  9. "fmt"
  10. "math"
  11. "time"
  12. "github.com/gin-gonic/gin"
  13. )
  14. func AssetImport(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  15. valueIdMap, err := ImportCategry(apictx.Svc.Mongo)
  16. if err != nil {
  17. return nil, err
  18. }
  19. err = ImportAssetCategory(apictx, valueIdMap)
  20. return true, err
  21. }
  22. func ImportCategry(dbMongo *db.MongoDB) (map[string]string, error) {
  23. valueIdMap := map[string]string{}
  24. CategoryConf := conf.AppConfig.Category
  25. if CategoryConf == nil {
  26. return valueIdMap, nil
  27. }
  28. if len(CategoryConf.DefaultCategory) < 1 {
  29. return valueIdMap, errors.New("category.defaultCategory 不能为空!")
  30. }
  31. ctx := &repo.RepoSession{
  32. Client: dbMongo,
  33. Ctx: context.Background(),
  34. }
  35. userId := CategoryConf.QiyeUserId
  36. total, err := repo.RepoCountDoc(ctx, repo.CollectionCategories, repo.Map{})
  37. if err != nil {
  38. return valueIdMap, err
  39. }
  40. if total > 0 {
  41. return valueIdMap, errors.New("数据已存在,无法导入。请先清除现有数据")
  42. }
  43. var createOrderId = func(deep int32, brotherIndex int32, parentOrder int64) int64 {
  44. step := math.Pow(100, float64(4-deep))
  45. orderId := int64(step) * int64(brotherIndex+1)
  46. return int64(orderId + parentOrder)
  47. }
  48. var IteUpdate func(deep int32, cates []*conf.DefaultCategoryConf, parent string, parentOrder int64) error
  49. IteUpdate = func(deep int32, cates []*conf.DefaultCategoryConf, parent string, parentOrder int64) error {
  50. if len(cates) < 1 {
  51. return nil
  52. }
  53. for index, item := range cates {
  54. currOrderId := createOrderId(deep, int32(index), parentOrder)
  55. insertItem := &model.ResCategory{
  56. Type: "imported",
  57. Name: item.Name,
  58. Level: &deep,
  59. Value: item.Value,
  60. Parent: parent,
  61. UserId: userId,
  62. OrderId: currOrderId,
  63. CreateTime: time.Now(),
  64. }
  65. id, err := repo.RepoAddDoc(ctx, repo.CollectionCategories, insertItem)
  66. if err != nil {
  67. return err
  68. }
  69. fmt.Println("added", id)
  70. valueIdMap[item.Value] = id
  71. err = IteUpdate(deep+1, item.Children, id, currOrderId)
  72. if err != nil {
  73. return err
  74. }
  75. }
  76. return nil
  77. }
  78. err = IteUpdate(0, CategoryConf.DefaultCategory, "", 0)
  79. if err != nil {
  80. return valueIdMap, err
  81. }
  82. return valueIdMap, nil
  83. }
  84. func ImportAssetCategory(apictx *ApiSession, valueIdMap map[string]string) error {
  85. AssetsConf := conf.AppConfig.Assets
  86. if AssetsConf == nil {
  87. return nil
  88. }
  89. if len(AssetsConf) < 1 {
  90. return errors.New("AppConfig.Assets 不能为空!")
  91. }
  92. userId := conf.AppConfig.Category.QiyeUserId
  93. for _, asset := range AssetsConf {
  94. if len(asset.DefaultCategory) > 0 {
  95. //添加默认分类设置
  96. ids := []string{}
  97. for _, cat := range asset.DefaultCategory {
  98. if len(valueIdMap[cat]) > 0 {
  99. ids = append(ids, valueIdMap[cat])
  100. continue
  101. }
  102. return errors.New(cat + "没有对应的分类ID")
  103. }
  104. assetCate := &model.LibCategory{Type: asset.Type, CreateTime: time.Now(), CategoryIds: ids, UserId: userId}
  105. id, err := repo.RepoAddDoc(apictx.CreateRepoCtx(), repo.CollectionDbAssetCategory, assetCate)
  106. if err != nil {
  107. return err
  108. }
  109. fmt.Sprintln("added "+asset.Type+"=>", id)
  110. }
  111. }
  112. return nil
  113. }