party_invite.go 6.32 KB
Newer Older
chenweijian's avatar
chenweijian committed
1 2 3
package invite_r

import (
chenweijian's avatar
chenweijian committed
4
	"git.hilo.cn/hilo-common/domain"
chenweijian's avatar
chenweijian committed
5
	"git.hilo.cn/hilo-common/mycontext"
chenweijian's avatar
chenweijian committed
6
	"git.hilo.cn/hilo-common/utils"
chenweijian's avatar
chenweijian committed
7
	"github.com/gin-gonic/gin"
chenweijian's avatar
chenweijian committed
8 9
	"hilo-user/cv/invite_cv"
	"hilo-user/domain/cache/user_c"
chenweijian's avatar
chenweijian committed
10 11 12 13
	"hilo-user/domain/model/invite_m"
	"hilo-user/domain/model/promotion_m"
	"hilo-user/domain/model/user_m"
	"hilo-user/myerr/bizerr"
chenweijian's avatar
chenweijian committed
14
	"hilo-user/req"
chenweijian's avatar
chenweijian committed
15
	"hilo-user/resp"
chenweijian's avatar
chenweijian committed
16
	"time"
chenweijian's avatar
chenweijian committed
17 18
)

chenweijian's avatar
chenweijian committed
19
// @Tags 新人邀请
chenweijian's avatar
chenweijian committed
20
// @Summary 提交申请
chenweijian's avatar
chenweijian committed
21 22
// @Param newUserCode formData string true "被邀请人id"
// @Param platform formData string true "平台"
chenweijian's avatar
chenweijian committed
23
// @Param platformId formData string true "平台Id"
chenweijian's avatar
chenweijian committed
24 25 26
// @Param recharge formData string true "充值金额"
// @Param userCode formData string true "邀请人id"
// @Param videoUrl formData string true "充值金额"
chenweijian's avatar
chenweijian committed
27
// @Success 200
chenweijian's avatar
chenweijian committed
28 29 30
// @Router /v2/user/invite/apply [post]
func InviteApply(c *gin.Context) (*mycontext.MyContext, error) {
	myCtx := mycontext.CreateMyContext(c.Keys)
chenweijian's avatar
chenweijian committed
31

chenweijian's avatar
chenweijian committed
32 33 34
	type paramStr struct {
		NewUserCode string `form:"newUserCode" binding:"required"`
		Platform    string `form:"platform" binding:"required"`
chenweijian's avatar
chenweijian committed
35
		PlatformId  string `form:"platformId" binding:"required"`
chenweijian's avatar
chenweijian committed
36 37 38 39 40
		Recharge    string `form:"recharge" binding:"required"`
		UserCode    string `form:"userCode" binding:"required"`
		VideoUrl    string `form:"videoUrl" binding:"required"`
	}

chenweijian's avatar
chenweijian committed
41 42 43 44
	myUserId, err := req.GetUserId(c)
	if err != nil {
		return myCtx, err
	}
chenweijian's avatar
chenweijian committed
45

chenweijian's avatar
chenweijian committed
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 74 75 76 77
	var param paramStr
	if err := c.ShouldBind(&param); err != nil {
		return myCtx, err
	}
	model := domain.CreateModelContext(myCtx)
	// 平台是否填写正确
	platforms := promotion_m.GetPromotionPlatforms(model)
	var existsPlatform bool
	for _, v := range platforms {
		if v == param.Platform {
			existsPlatform = true
		}
	}
	if !existsPlatform {
		model.Log.Errorf("InviteApply param:%v", param)
		return myCtx, bizerr.InvalidParameter
	}
	// code 是否存在
	newUser, err := user_m.GetUserByCode(model, param.NewUserCode)
	if err != nil {
		model.Log.Errorf("InviteApply param:%v", param)
		return myCtx, err
	}
	user, err := user_m.GetUserByCode(model, param.UserCode)
	if err != nil {
		model.Log.Errorf("InviteApply param:%v", param)
		return myCtx, err
	}
	if newUser.ID == 0 || user.ID == 0 {
		model.Log.Errorf("InviteApply param:%v", param)
		return myCtx, bizerr.InvalidParameter
	}
chenweijian's avatar
chenweijian committed
78 79
	// 邀请人是否有资格邀请
	if !promotion_m.IsPromotionAgent(model, user.ID) {
chenweijian's avatar
chenweijian committed
80 81 82
		model.Log.Errorf("InviteApply 没有邀请资格 param:%v", param)
		return myCtx, bizerr.InviteApplyNoPermission
	}
chenweijian's avatar
chenweijian committed
83
	if user.ID != myUserId && !promotion_m.IsMyPromotionManager(model, user.ID, myUserId) {
chenweijian's avatar
chenweijian committed
84 85 86
		model.Log.Errorf("InviteApply 没有邀请资格 param:%v", param)
		return myCtx, bizerr.InviteApplyNoPermission
	}
chenweijian's avatar
chenweijian committed
87 88 89 90 91 92 93 94 95 96
	// 被邀请人是否已经被人提交过申请
	isApply, err := invite_m.IsInInviteApply(model, newUser.ID)
	if err != nil {
		model.Log.Errorf("InviteApply param:%v, err:%v", param, err)
		return myCtx, err
	}
	if isApply {
		model.Log.Errorf("InviteApply 已经被别人邀请过了 param:%v", param)
		return myCtx, bizerr.InviteApplyAlreadyInvited
	}
chenweijian's avatar
chenweijian committed
97 98 99 100 101 102 103 104 105 106 107
	// 被邀请人是否符合条件
	isInvite, err := promotion_m.IsPromotionInvitee(model, user.ID)
	if err != nil {
		model.Log.Errorf("InviteApply param:%v", param)
		return myCtx, err
	}
	if isInvite {
		model.Log.Errorf("InviteApply 已经被别人邀请了 param:%v", param)
		return myCtx, bizerr.InviteApplyAlreadyInvited
	}
	// 插入邀请表
chenweijian's avatar
chenweijian committed
108
	err = invite_m.CreateInviteApply(model, user.ID, newUser.ID, param.Platform, param.PlatformId, param.Recharge, param.VideoUrl)
chenweijian's avatar
chenweijian committed
109 110 111 112 113 114 115
	if err != nil {
		model.Log.Errorf("InviteApply param:%v", param)
		return myCtx, err
	}

	resp.ResponseOk(c, nil)
	return myCtx, nil
chenweijian's avatar
chenweijian committed
116
}
chenweijian's avatar
chenweijian committed
117 118 119 120 121 122 123 124 125 126 127 128 129 130

// @Tags 新人邀请
// @Summary 查询历史申请
// @Param pageIndex query int true "偏移值 默认:1" default(1)
// @Param pageSize query int true "请求数量 默认:10" default(10)
// @Param beginTime query string true "开始时间2006-01-02"
// @Param endTime query string true "结束时间2006-01-02"
// @Param type query int true "1.已申请2.待审核3.已通过4.已拒绝"
// @Success 200 {object} invite_cv.InviteApplyRes
// @Router /v2/user/invite/apply [get]
func InviteApplyList(c *gin.Context) (*mycontext.MyContext, error) {
	myCtx := mycontext.CreateMyContext(c.Keys)

	type paramStr struct {
chenweijian's avatar
chenweijian committed
131 132 133 134 135
		PageIndex int       `form:"pageIndex" binding:"required"`
		PageSize  int       `form:"pageSize" binding:"required"`
		BeginTime time.Time `form:"beginTime" binding:"required" time_format:"2006-01-02"`
		EndTime   time.Time `form:"endTime" binding:"required" time_format:"2006-01-02"`
		Type      int       `form:"type" binding:"required"`
chenweijian's avatar
chenweijian committed
136 137 138 139 140 141 142 143 144 145
	}

	var param paramStr
	if err := c.ShouldBindQuery(&param); err != nil {
		return myCtx, err
	}
	if param.Type < 1 || param.Type > 4 {
		return myCtx, bizerr.InvalidParameter
	}

chenweijian's avatar
chenweijian committed
146 147 148 149 150 151 152 153 154
	//beginTime, err := time.ParseInLocation(utils.DATE_FORMAT, param.BeginTime, time.Local)
	//if err != nil {
	//	return nil, myerr.WrapErr(err)
	//}
	//endTime, err := time.ParseInLocation(utils.DATE_FORMAT, param.EndTime, time.Local)
	//if err != nil {
	//	return nil, myerr.WrapErr(err)
	//}
	param.EndTime = utils.GetDayEndTime(param.EndTime)
chenweijian's avatar
chenweijian committed
155 156 157 158 159 160 161
	userId, err := req.GetUserId(c)
	if err != nil {
		return myCtx, err
	}

	var model = domain.CreateModelContext(myCtx)

chenweijian's avatar
chenweijian committed
162 163 164 165 166 167 168 169
	agentIds := []uint64{userId}
	if promotion_m.IsPromotionManager(model, userId) {
		agentIds, err = promotion_m.GetPromotionManagerAgentList(model, userId)
		if err != nil {
			return myCtx, err
		}
	}

chenweijian's avatar
chenweijian committed
170
	list, total, err := invite_m.GetApplyList(model, agentIds, param.PageIndex, param.PageSize, param.Type, param.BeginTime, param.EndTime)
chenweijian's avatar
chenweijian committed
171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200
	if err != nil {
		model.Log.Errorf("GetApplyList param:%v, err:%v", param, err)
		return myCtx, err
	}

	uids := make([]uint64, 0, len(list)+1)
	for _, v := range list {
		uids = append(uids, v.UserId, v.NewUserId)
	}
	users, err := user_c.GetUserTinyMap(model, uids, false)
	if err != nil {
		model.Log.Errorf("GetApplyList param:%v, err:%v", param, err)
		return myCtx, err
	}
	res := make([]*invite_cv.InviteApplyRes, 0, len(list))
	for _, v := range list {
		res = append(res, &invite_cv.InviteApplyRes{
			NewUserCode: users[v.NewUserId].Code,
			Platform:    v.Platform,
			Recharge:    v.RechargeInfo,
			UserCode:    users[v.UserId].Code,
			CreateUnix:  v.CreatedTime.Unix(),
			Level:       v.Level,
			Status:      v.Status,
		})
	}

	resp.ResponsePageOk(c, res, total, param.PageSize, param.PageIndex)
	return myCtx, nil
}