animeic 2 жил өмнө
parent
commit
c6127f82a5

+ 25 - 0
3dshow/api/address.go

@@ -40,6 +40,31 @@ func Address(r *GinRouter) {
 			return entity, nil
 		},
 		OnUpdate: func(c *gin.Context, apictx *ApiSession, entity interface{}) {
+			address := entity.(*model.Address)
+			_userId := apictx.User.ID
+			userId, err := primitive.ObjectIDFromHex(_userId)
+			if err != nil {
+				invalidId, _ := primitive.ObjectIDFromHex("6369f4b028c4bf8b14f47a6b")
+				userId = invalidId
+			}
+			// 更改默认地址的流程
+			if address.Defualt == 1 {
+				// 将已有的默认地址更改为非默认
+				opt := repo.DocSearchOptions{
+					CollectName: repo.CollectionAddress,
+					Query:       repo.Map{"userId": userId, "defualt": 1},
+					Project:     []string{"_id"},
+				}
+				defs := make([]*model.Address, 0)
+				repo.RepoSeachDoc(apictx.CreateRepoCtx(), &opt, &defs)
+				if len(defs) > 0 {
+					for _, v := range defs {
+						// 设置为非默认
+						repo.RepoUpdateSetDoc(apictx.CreateRepoCtx(), repo.CollectionAddress, v.Id.Hex(), &model.Address{Defualt: -1})
+					}
+				}
+
+			}
 
 		},
 		EmtyModel: func(c *gin.Context, apictx *ApiSession) interface{} {

+ 2 - 1
3dshow/db/db.go

@@ -35,7 +35,8 @@ func (db *MongoDB) GetOrCreateDatabase(name string) *mongo.Database {
 }
 
 func NewMongoDB(bus *comm.NatsBus) *MongoDB {
-	inst, err := bus.NewMongoDBFromConfigDev("3dshow-mongo")
+	inst, err := bus.NewMongoDBFromConfig("3dshow-mongo")
+	// inst, err := bus.NewMongoDBFromConfigDev("3dshow-mongo")
 	if err != nil {
 		panic(err)
 	}

+ 2 - 1
3dshow/db/redis.go

@@ -6,7 +6,8 @@ import (
 )
 
 func NewRedisClient(bus *comm.NatsBus) *redis.Client {
-	client, err := bus.NewRedisFromConfigDev("3dshow-redis")
+	client, err := bus.NewRedisFromConfig("3dshow-redis")
+	// client, err := bus.NewRedisFromConfigDev("3dshow-redis")
 	if err != nil {
 		return nil
 	}