promotion_group.go 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. package dao
  2. import (
  3. "context"
  4. "database/sql"
  5. "encoding/json"
  6. "fmt"
  7. "go-common/app/service/openplatform/ticket-sales/model"
  8. "go-common/app/service/openplatform/ticket-sales/model/consts"
  9. "go-common/library/cache/redis"
  10. xsql "go-common/library/database/sql"
  11. xtime "time"
  12. )
  13. const (
  14. _getGroupByID = "select promo_id,group_id,uid,order_count,status,expire_at,ctime,mtime from promotion_group where group_id = ?"
  15. _getUserNotExpiredGroup = "select promo_id,group_id,uid,order_count,status,expire_at,ctime,mtime from promotion_group where promo_id = ? and uid = ? and expire_at >= ? and status = ?"
  16. _updateGroupOrderCount = "update promotion_group set order_count = order_count + ? where group_id = ? and status = ? and order_count < ? and expire_at > ?"
  17. _updateGroupStatus = "update promotion_group set status = ? where group_id = ? and status = ?"
  18. _updateGroupStatusAndOrderCount = "update promotion_group set status = ?,order_count = order_count + ? where group_id = ? and status = ?"
  19. _insertGroupOrder = "insert into promotion_group (promo_id,group_id,uid,order_count,status,expire_at) values (?,?,?,?,?,?)"
  20. )
  21. //keyPromoGroup 获取拼团缓存key
  22. func keyPromoGroup(groupID int64) string {
  23. return fmt.Sprintf(model.CacheKeyPromoGroup, groupID)
  24. }
  25. //RawPromoGroup 根据id获取拼团信息
  26. func (d *Dao) RawPromoGroup(c context.Context, groupID int64) (res *model.PromotionGroup, err error) {
  27. res = new(model.PromotionGroup)
  28. row := d.db.QueryRow(c, _getGroupByID, groupID)
  29. if err = row.Scan(&res.PromoID, &res.GroupID, &res.UID, &res.OrderCount, &res.Status, &res.ExpireAt, &res.Ctime, &res.Mtime); err != nil {
  30. if err == sql.ErrNoRows {
  31. err = nil
  32. res = nil
  33. }
  34. return
  35. }
  36. return
  37. }
  38. //AddPromoGroup add promo group into db
  39. func (d *Dao) AddPromoGroup(c context.Context, promoID int64, groupID int64, uid int64, orderCount int64, status int16, expireAt int64) (id int64, err error) {
  40. var res sql.Result
  41. if res, err = d.db.Exec(c, _insertGroupOrder, promoID, groupID, uid, orderCount, status, expireAt); err != nil {
  42. return
  43. }
  44. return res.LastInsertId()
  45. }
  46. //TxAddPromoGroup add promo group into db
  47. func (d *Dao) TxAddPromoGroup(c context.Context, tx *xsql.Tx, promoID int64, groupID int64, uid int64, orderCount int64, status int16, expireAt int64) (id int64, err error) {
  48. var res sql.Result
  49. if res, err = tx.Exec(_insertGroupOrder, promoID, groupID, uid, orderCount, status, expireAt); err != nil {
  50. return
  51. }
  52. return res.LastInsertId()
  53. }
  54. //CachePromoGroup get promo group info from cache
  55. func (d *Dao) CachePromoGroup(c context.Context, groupID int64) (res *model.PromotionGroup, err error) {
  56. var (
  57. data []byte
  58. key = keyPromoGroup(groupID)
  59. )
  60. conn := d.redis.Get(c)
  61. defer conn.Close()
  62. if data, err = redis.Bytes(conn.Do("GET", key)); err != nil {
  63. if err == redis.ErrNil {
  64. err = nil
  65. }
  66. return
  67. }
  68. json.Unmarshal(data, &res)
  69. return
  70. }
  71. //AddCachePromoGroup add promo group info into cache
  72. func (d *Dao) AddCachePromoGroup(c context.Context, groupID int64, group *model.PromotionGroup) (err error) {
  73. var (
  74. data []byte
  75. key = keyPromoGroup(groupID)
  76. )
  77. conn := d.redis.Get(c)
  78. defer conn.Close()
  79. if data, err = json.Marshal(group); err != nil {
  80. return
  81. }
  82. conn.Do("SET", key, data, "EX", model.RedisExpirePromoGroup)
  83. return
  84. }
  85. //DelCachePromoGroup delete promo group cache
  86. func (d *Dao) DelCachePromoGroup(c context.Context, groupID int64) {
  87. var key = keyPromo(groupID)
  88. conn := d.redis.Get(c)
  89. defer conn.Close()
  90. conn.Do("DEL", key)
  91. }
  92. //GetUserGroupDoing 获取用户正在进行中的拼团信息
  93. func (d *Dao) GetUserGroupDoing(c context.Context, promoID int64, uid int64, status int16) (res *model.PromotionGroup, err error) {
  94. var (
  95. currentTime = xtime.Now().Unix()
  96. )
  97. res = new(model.PromotionGroup)
  98. row := d.db.QueryRow(c, _getUserNotExpiredGroup, promoID, uid, currentTime, status)
  99. if err = row.Scan(&res.PromoID, &res.GroupID, &res.UID, &res.OrderCount, &res.Status, &res.ExpireAt, &res.Ctime, &res.Mtime); err != nil {
  100. return
  101. }
  102. return
  103. }
  104. //TxUpdateGroupOrderCount 更新拼团的人数
  105. func (d *Dao) TxUpdateGroupOrderCount(c context.Context, tx *xsql.Tx, step int64, groupID int64, skuCount int64) (number int64, err error) {
  106. var (
  107. currentTime = xtime.Now().Unix()
  108. res sql.Result
  109. )
  110. if res, err = tx.Exec(_updateGroupOrderCount, step, groupID, consts.GroupDoing, skuCount, currentTime); err != nil {
  111. return
  112. }
  113. return res.RowsAffected()
  114. }
  115. //TxUpdateGroupStatus 更新拼团状态
  116. func (d *Dao) TxUpdateGroupStatus(c context.Context, tx *xsql.Tx, groupID int64, oldStatus int16, newStatus int16) (number int64, err error) {
  117. var res sql.Result
  118. if res, err = tx.Exec(_updateGroupStatus, newStatus, groupID, oldStatus); err != nil {
  119. return
  120. }
  121. return res.RowsAffected()
  122. }
  123. //UpdateGroupStatusAndOrderCount 更新拼团状态和人数
  124. func (d *Dao) UpdateGroupStatusAndOrderCount(c context.Context, groupID int64, step int64, oldStatus int16, newStatus int16) (number int64, err error) {
  125. var res sql.Result
  126. if res, err = d.db.Exec(c, _updateGroupStatusAndOrderCount, newStatus, step, groupID, oldStatus); err != nil {
  127. return
  128. }
  129. return res.RowsAffected()
  130. }