anniversary.go 4.55 KB
Newer Older
hujiebin's avatar
hujiebin committed
1 2 3 4 5 6
package cp_r

import (
	"git.hilo.cn/hilo-common/domain"
	"git.hilo.cn/hilo-common/mycontext"
	"github.com/gin-gonic/gin"
hujiebin's avatar
hujiebin committed
7
	"hilo-user/_const/enum/cp_e"
hujiebin's avatar
hujiebin committed
8
	"hilo-user/cv/cp_cv"
hujiebin's avatar
hujiebin committed
9
	"hilo-user/cv/user_cv"
hujiebin's avatar
hujiebin committed
10
	"hilo-user/domain/model/cp_m"
hujiebin's avatar
hujiebin committed
11
	"hilo-user/domain/model/user_m"
hujiebin's avatar
hujiebin committed
12 13 14 15 16 17 18
	"hilo-user/myerr/bizerr"
	"hilo-user/req"
	"hilo-user/resp"
	"strconv"
)

type PostPutAnniversaryReq struct {
hujiebin's avatar
hujiebin committed
19 20 21
	Content   string `form:"content" binding:"required"`
	Timestamp int64  `form:"timestamp" binding:"required"`
	IsRemind  bool   `form:"isRemind"`
hujiebin's avatar
hujiebin committed
22 23 24 25 26 27 28
}

// @Tags CP v2
// @Summary 发布纪念日
// @Param token header string true "token"
// @Param nonce header string true "随机数字"
// @Param content formData string true "纪念日名称"
hujiebin's avatar
hujiebin committed
29
// @Param timestamp formData int true "时间戳"
hujiebin's avatar
hujiebin committed
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
// @Param isRemind formData bool false "是否提醒"
// @Success 200
// @Router /v2/cp/anniversary [post]
func PostAnniversary(c *gin.Context) (*mycontext.MyContext, error) {
	myCtx := mycontext.CreateMyContext(c.Keys)
	userId, err := req.GetUserId(c)
	if err != nil {
		return myCtx, err
	}
	var param PostPutAnniversaryReq
	if err := c.ShouldBind(&param); err != nil {
		return myCtx, err
	}
	model := domain.CreateModelContext(myCtx)
	relation, exits := cp_m.GetCpRelation(model, userId)
	if !exits {
		return myCtx, bizerr.CpNotRelation
	} else {
hujiebin's avatar
hujiebin committed
48
		if err := cp_m.AddCpAnniversary(model, relation, param.Content, param.Timestamp, param.IsRemind); err != nil {
hujiebin's avatar
hujiebin committed
49 50 51 52 53 54 55 56 57 58 59 60
			return myCtx, err
		}
	}
	resp.ResponseOk(c, "")
	return myCtx, nil
}

// @Tags CP v2
// @Summary 修改纪念日
// @Param token header string true "token"
// @Param nonce header string true "随机数字"
// @Param content formData string true "纪念日名称"
hujiebin's avatar
hujiebin committed
61
// @Param timestamp formData int true "时间戳"
hujiebin's avatar
hujiebin committed
62 63 64 65 66 67 68 69 70 71 72 73
// @Param isRemind formData bool false "是否提醒"
// @Param id path int true "更新的记录id"
// @Success 200
// @Router /v2/cp/anniversary/{id} [put]
func PutAnniversary(c *gin.Context) (*mycontext.MyContext, error) {
	myCtx := mycontext.CreateMyContext(c.Keys)
	var param PostPutAnniversaryReq
	if err := c.ShouldBind(&param); err != nil {
		return myCtx, err
	}
	id, _ := strconv.ParseUint(c.Param("id"), 10, 64)
	model := domain.CreateModelContext(myCtx)
hujiebin's avatar
hujiebin committed
74
	if err := cp_m.UpdateCpAnniversary(model, id, param.Content, param.Timestamp, param.IsRemind); err != nil {
hujiebin's avatar
hujiebin committed
75 76 77 78 79 80 81 82 83 84
		return myCtx, err
	}
	resp.ResponseOk(c, "")
	return myCtx, nil
}

// @Tags CP v2
// @Summary 获取纪念日
// @Param token header string true "token"
// @Param nonce header string true "随机数字"
hujiebin's avatar
hujiebin committed
85 86
// @Param pageIndex query int true "偏移值 默认:1" default(1)
// @Param pageSize query int true "请求数量 默认:10" default(10)
hujiebin's avatar
hujiebin committed
87 88 89 90 91 92 93 94 95
// @Success 200 {object} []cp_cv.CvCpAnniversary
// @Router /v2/cp/anniversary [get]
func PageAnniversary(c *gin.Context) (*mycontext.MyContext, error) {
	myCtx := mycontext.CreateMyContext(c.Keys)
	userId, err := req.GetUserId(c)
	if err != nil {
		return myCtx, err
	}
	var response = make([]cp_cv.CvCpAnniversary, 0)
hujiebin's avatar
hujiebin committed
96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
	model := domain.CreateModelContext(myCtx)
	cpRelation, exits := cp_m.GetCpRelation(model, userId)
	if exits {
		userIds := []uint64{cpRelation.UserId1, cpRelation.UserId2}
		users, err := user_m.GetUserMapByIds(model, userIds)
		if err != nil {
			return myCtx, err
		}
		cpUserId := cpRelation.UserId2
		if cpUserId == userId {
			cpUserId = cpRelation.UserId1
		}
		userInfo := user_cv.UserToTiny(users[userId])
		cpUserInfo := user_cv.UserToTiny(users[cpUserId])
		response = append(response, cp_cv.CvCpAnniversary{
			Type: cp_e.AnniversaryItemTypeAvatar,
			CpInfo: &cp_cv.CvCpBase{
				UserInfo:   *userInfo,
				CpUserInfo: *cpUserInfo,
			},
hujiebin's avatar
hujiebin committed
116 117
			Timestamp: cpRelation.CreatedTime.Unix(),
			CanDel:    false,
hujiebin's avatar
hujiebin committed
118 119
		})
	}
hujiebin's avatar
hujiebin committed
120 121 122
	anniversary := cp_m.GetAllCpAnniversary(model, userId)
	for _, v := range anniversary {
		response = append(response, cp_cv.CvCpAnniversary{
hujiebin's avatar
hujiebin committed
123
			Type:      cp_e.AnniversaryItemTypeNormal,
hujiebin's avatar
hujiebin committed
124 125 126 127
			Id:        v.ID,
			Content:   v.Content,
			Timestamp: v.Timestamp,
			IsRemind:  v.IsRemind,
hujiebin's avatar
hujiebin committed
128
			CanDel:    true,
hujiebin's avatar
hujiebin committed
129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
		})
	}
	resp.ResponsePageBaseOk(c, response, 0, false)
	return myCtx, nil
}

// @Tags CP v2
// @Summary 获取纪念日
// @Param token header string true "token"
// @Param nonce header string true "随机数字"
// @Param id path int true "记录id"
// @Success 200
// @Router /v2/cp/anniversary/:id [delete]
func DelAnniversary(c *gin.Context) (*mycontext.MyContext, error) {
	myCtx := mycontext.CreateMyContext(c.Keys)
	id, _ := strconv.ParseUint(c.Param("id"), 10, 64)
	model := domain.CreateModelContext(myCtx)
	if err := cp_m.DelCpAnniversary(model, id); err != nil {
		return myCtx, err
	}
	resp.ResponseOk(c, "")
	return myCtx, nil
}