diff --git a/route/router.go b/route/router.go index 1c7b3ec2dedcd9aca1bd0745b57f729c4ace0060..c8aa9d3b13be86f5bc930874f0d12ef58187ad86 100755 --- a/route/router.go +++ b/route/router.go @@ -57,7 +57,6 @@ func InitRouter() *gin.Engine { innerUser.GET("/levels", wrapper(user_r.MGetUserLevels)) innerUser.GET("/bag/id", wrapper(user_r.GetUserBagId)) innerUser.GET("/cp", wrapper(user_r.GetUserCp)) - innerUser.GET("/cpRelation", wrapper(user_r.GetUserCpRelation)) innerUser.GET("/cpRelations", wrapper(user_r.MGetUserCpRelation)) innerUser.GET("/cp/pair", wrapper(user_r.GetUserCpPair)) } diff --git a/route/user_r/inner.go b/route/user_r/inner.go index b603d7b7dcfa36ffaff174c4b22aa53dea090f50..1cd7127df76b9df9de578941f5fdd01a177bb6ea 100644 --- a/route/user_r/inner.go +++ b/route/user_r/inner.go @@ -172,40 +172,6 @@ func GetUserCp(c *gin.Context) (*mycontext.MyContext, error) { return myContext, nil } -// @Tags 用户-内部 -// @Summary 获取用户cp关系 -// @Param id query int true "用户id" -// @Success 200 {object} cp_cv.CvCpRelation -// @Router /inner/user/cpRelation [get] -func GetUserCpRelation(c *gin.Context) (*mycontext.MyContext, error) { - myContext := mycontext.CreateMyContext(c.Keys) - var model = domain.CreateModelContext(myContext) - var req GetUserCpReq - if err := c.ShouldBindQuery(&req); err != nil { - return myContext, err - } - userId := req.Id - var response cp_cv.CvCpRelation - cpRelation, exists := cp_m.GetCpRelation(model, userId) - if !exists { - resp.ResponseOk(c, response) - return myContext, nil - } - cpUserId := cpRelation.UserId2 - if cpUserId == userId { - cpUserId = cpRelation.UserId1 - } - cpUser, _ := user_m.GetUser(model, cpUserId) - response = cp_cv.CvCpRelation{ - CpId: cpRelation.Id, - UserId: userId, - CpUserId: cpUserId, - CpUserAvatar: cpUser.Avatar, - } - resp.ResponseOk(c, response) - return myContext, nil -} - type MGetUserCpRelationReq struct { Ids []mysql.ID `form:"ids" binding:"required"` }