cp_relation.go 4.71 KB
Newer Older
chenweijian's avatar
chenweijian committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
package cp_s

import (
	"encoding/json"
	"git.hilo.cn/hilo-common/_const/enum/diamond_e"
	"git.hilo.cn/hilo-common/domain"
	"git.hilo.cn/hilo-common/mycontext"
	"git.hilo.cn/hilo-common/myerr/comerr"
	"git.hilo.cn/hilo-common/rpc"
	"git.hilo.cn/hilo-common/sdk/tencentyun"
	"git.hilo.cn/hilo-common/txop/msg"
	"hilo-user/_const/enum/cp_e"
	"hilo-user/domain/model/cp_m"
	"hilo-user/domain/model/diamond_m"
	"hilo-user/domain/model/user_m"
	"hilo-user/myerr/bizerr"
)

chenweijian's avatar
chenweijian committed
19
func InviteCpRelation(myCtx *mycontext.MyContext, myUserId uint64, externalId, lang string) error {
chenweijian's avatar
chenweijian committed
20 21 22 23 24
	model := domain.CreateModelContext(myCtx)
	user, err := user_m.GetUser(model, myUserId)
	if err != nil {
		return err
	}
chenweijian's avatar
chenweijian committed
25
	userInvite, err := user_m.GetUserByExtId(model, externalId)
chenweijian's avatar
chenweijian committed
26 27 28 29
	if err != nil {
		return err
	}

chenweijian's avatar
chenweijian committed
30 31 32 33
	if userInvite.ID == myUserId {
		return bizerr.InvalidParameter
	}

chenweijian's avatar
chenweijian committed
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 62 63 64 65 66 67 68 69 70 71 72 73
	// 自己是否有cp了
	myCp, err := cp_m.GetCp(model, myUserId)
	if err != nil {
		return err
	}
	if myCp.Id > 0 {
		return msg.GetErrByLanguage(model, 0, lang, comerr.InvalidParameter)
	}
	// 对方是否已经有cp了
	inviCp, err := cp_m.GetCp(model, userInvite.ID)
	if err != nil {
		return err
	}
	if inviCp.Id > 0 {
		return msg.GetErrByLanguage(model, 0, lang, comerr.InvalidParameter)
	}

	// 我是否发起过cp邀请,且还未被处理
	myInvite, err := cp_m.GetCpInvite(model, user.ID, 0, cp_e.CpInvite)
	if err != nil {
		model.Log.Errorf("InviteCpRelation myUserId:%d, err:%v", myUserId, err)
		return err
	}
	if myInvite != nil && myInvite.Id > 0 {
		return bizerr.CpAlreadyInvite
	}

	err = model.Transaction(func(model *domain.Model) error {
		// 创建邀请记录
		cpInvId, err := cp_m.CreateCpInvite(model, myUserId, userInvite.ID, cp_e.CpRelationInviteDiamond)
		if err != nil {
			model.Log.Errorf("InviteCpRelation myUserId:%d, err:%v", myUserId, err)
			return err
		}
		// 扣费
		err = diamond_m.ChangeDiamondAccountDetail(model, diamond_e.CpInvite, cpInvId, myUserId, cp_e.CpRelationInviteDiamond)
		if err != nil {
			model.Log.Errorf("InviteCpRelation myUserId:%d, err:%v", myUserId, err)
			return err
		}
chenweijian's avatar
chenweijian committed
74
		// 发送私信-邀请
chenweijian's avatar
chenweijian committed
75 76 77
		data, _ := json.Marshal(cp_m.CpInviteMessage{
			Identifier: "CpInviteMessage",
			Msg:        "Do you want to be CP with me?",
chenweijian's avatar
chenweijian committed
78
			Tip:        "24 hours automatic expiration",
chenweijian's avatar
chenweijian committed
79
			Sender:     user_m.ToUserTiny(user),
chenweijian's avatar
chenweijian committed
80 81 82 83 84 85 86 87 88 89 90 91
		})
		if err := tencentyun.BatchSendCustomMsg(model, 1, user.ExternalId, []string{userInvite.ExternalId}, string(data), "cp邀请"); err != nil {
			model.Log.Errorf("BatchSendCustomMsg fail:%v", err)
			return err
		}
		return nil
	})
	if err != nil {
		model.Log.Errorf("InviteCpRelation myUserId:%d, err:%v", myUserId, err)
		return err
	}
	// socket 推送弹窗
chenweijian's avatar
chenweijian committed
92
	go rpc.SendCpInviteNotice(userInvite.ID, user.Code, user.Nick, user.Avatar, "Do you want to be CP with me?", user.ExternalId)
chenweijian's avatar
chenweijian committed
93 94 95 96

	return nil
}

chenweijian's avatar
chenweijian committed
97
func CancelCpRelation(myCtx *mycontext.MyContext, myUserId uint64, externalId, lang string) error {
chenweijian's avatar
chenweijian committed
98 99 100 101 102
	model := domain.CreateModelContext(myCtx)
	user, err := user_m.GetUser(model, myUserId)
	if err != nil {
		return err
	}
chenweijian's avatar
chenweijian committed
103
	userRec, err := user_m.GetUserByExtId(model, externalId)
chenweijian's avatar
chenweijian committed
104 105 106 107
	if err != nil {
		return err
	}

chenweijian's avatar
chenweijian committed
108 109 110 111
	if userRec.ID == myUserId {
		return bizerr.InvalidParameter
	}

chenweijian's avatar
chenweijian committed
112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
	// 自己没有cp了
	myCp, err := cp_m.GetCp(model, myUserId)
	if err != nil {
		return err
	}
	if myCp.Id == 0 {
		return msg.GetErrByLanguage(model, 0, lang, comerr.InvalidParameter)
	}
	// 对方没有cp了
	inviCp, err := cp_m.GetCp(model, userRec.ID)
	if err != nil {
		return err
	}
	if inviCp.Id == 0 {
		return msg.GetErrByLanguage(model, 0, lang, comerr.InvalidParameter)
	}

	// 是否有关于我的cp解除申请,且还未被处理
	myCancel, err := cp_m.GetCpCancelWithMe(model, user.ID, cp_e.CpCancel)
	if err != nil {
		model.Log.Errorf("InviteCpRelation myUserId:%d, err:%v", myUserId, err)
		return err
	}
	if myCancel != nil && myCancel.Id > 0 {
		return bizerr.CpHaveCancelNoDeal
	}

	err = model.Transaction(func(model *domain.Model) error {
		// 创建邀请记录
		_, err = cp_m.CreateCpCancel(model, myUserId, userRec.ID)
		if err != nil {
			model.Log.Errorf("CancelCpRelation myUserId:%d, err:%v", myUserId, err)
			return err
		}
chenweijian's avatar
chenweijian committed
146
		// 发送私信-发起解除
chenweijian's avatar
chenweijian committed
147 148 149
		data, _ := json.Marshal(cp_m.CpCancelMessage{
			Identifier: "CpCancelMessage",
			Msg:        "I want to unbind the CP relationship",
chenweijian's avatar
chenweijian committed
150
			Tip:        "24 hours automatic expiration",
chenweijian's avatar
chenweijian committed
151
			Sender:     user_m.ToUserTiny(user),
chenweijian's avatar
chenweijian committed
152 153 154 155 156 157 158 159 160 161 162 163 164 165
		})
		if err := tencentyun.BatchSendCustomMsg(model, 1, user.ExternalId, []string{userRec.ExternalId}, string(data), "cp解除"); err != nil {
			model.Log.Errorf("CancelCpRelation BatchSendCustomMsg fail:%v", err)
			return err
		}
		return nil
	})
	if err != nil {
		model.Log.Errorf("CancelCpRelation myUserId:%d, err:%v", myUserId, err)
		return err
	}

	return nil
}