cp_level.go 2.53 KB
Newer Older
hujiebin's avatar
hujiebin committed
1 2 3 4
package event_s

import (
	"git.hilo.cn/hilo-common/domain"
hujiebin's avatar
hujiebin committed
5 6 7
	"git.hilo.cn/hilo-common/resource/mysql"
	"github.com/jinzhu/now"
	"hilo-user/_const/enum/cp_e"
hujiebin's avatar
hujiebin committed
8 9
	"hilo-user/domain/event/gift_ev"
	"hilo-user/domain/model/cp_m"
hujiebin's avatar
hujiebin committed
10
	"time"
hujiebin's avatar
hujiebin committed
11 12
)

hujiebin's avatar
hujiebin committed
13 14 15
// 送礼增加cp等级
// 送礼增加cp排行榜
func CpGiftEvent() {
hujiebin's avatar
hujiebin committed
16 17 18 19 20 21 22 23 24
	gift_ev.AddSendGiftEventAsync(func(model *domain.Model, event interface{}) error {
		sendGiftEvent, ok := event.(*gift_ev.SendGiftEvent)
		if !ok {
			model.Log.Errorf("AddSendGiftEventAsync event type err")
			return nil
		}
		for _, receiverUid := range sendGiftEvent.ReceiveUserIds {
			diamonds := sendGiftEvent.GiftN * sendGiftEvent.ResGift.DiamondNum
			// 有cp关系
hujiebin's avatar
hujiebin committed
25
			if cpRelation, exits := cp_m.GetCpRelationPair(model, sendGiftEvent.SendUserId, receiverUid); exits {
hujiebin's avatar
hujiebin committed
26 27 28 29 30 31
				if err := cp_m.AddCpLevelPoints(model, cpRelation, diamonds); err != nil {
					model.Log.Errorf("AddCpLevelPoints fail:%v", err)
				}
				if err := cp_m.AddCpDayRank(model, cpRelation, diamonds); err != nil {
					model.Log.Errorf("AddCpDayRank fail:%v", err)
				}
hujiebin's avatar
hujiebin committed
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
				// 检查最新的等级
				if cpLevel := cp_m.GetCpLevel(model, cpRelation.ID); cpLevel.CpId >= 0 {
					if err := cp_m.UpdateCpAchievement(model, cpLevel.CpId, cpRelation.UserId1, cpRelation.UserId2, cp_e.CpAchievementLevel, mysql.Num(cpLevel.Level)); err != nil {
						model.Log.Errorf("UpdateCpAchievement fail:%v", err)
					}
				}
				// 检查最高的分数
				for _, queryType := range []string{"day", "week", "month"} {
					var beginDate, endDate string
					var cpAchievementType cp_e.CpAchievement
					switch queryType {
					case "day":
						beginDate, endDate = time.Now().Format("2006-01-02"), time.Now().Format("2006-01-02")
						cpAchievementType = cp_e.CpAchievementDayRank
					case "week":
						beginDate = now.BeginningOfWeek().Format("2006-01-02")
						endDate = now.EndOfWeek().Format("2006-01-02")
						cpAchievementType = cp_e.CpAchievementWeekRank
					case "month":
						beginDate = now.BeginningOfMonth().Format("2006-01-02")
						endDate = now.EndOfMonth().Format("2006-01-02")
						cpAchievementType = cp_e.CpAchievementMonthRank
					}
					if data := cp_m.GetCpDayRank(model, beginDate, endDate, cpRelation.ID); data.Score > 0 {
						if err := cp_m.UpdateCpAchievement(model, cpRelation.ID, cpRelation.UserId1, cpRelation.UserId2, cpAchievementType, data.Score); err != nil {
							model.Log.Errorf("UpdateCpAchievement fail:%v", err)
						}
					}
				}
				// 检查最新日周月榜单
hujiebin's avatar
hujiebin committed
62
				return nil // 业务场景允许提前break(cp是唯一的)
hujiebin's avatar
hujiebin committed
63 64 65 66 67
			}
		}
		return nil
	})
}