56 lines
1.2 KiB
Go
56 lines
1.2 KiB
Go
// Code scaffolded by goctl. Safe to edit.
|
|
// goctl 1.9.2
|
|
|
|
package user
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"strconv"
|
|
|
|
"juwan-backend/app/users/rpc/usercenter"
|
|
"juwan-backend/common/utils/contextj"
|
|
|
|
"juwan-backend/app/users/api/internal/svc"
|
|
"juwan-backend/app/users/api/internal/types"
|
|
|
|
"github.com/zeromicro/go-zero/core/logx"
|
|
)
|
|
|
|
type UnfollowUserLogic struct {
|
|
logx.Logger
|
|
ctx context.Context
|
|
svcCtx *svc.ServiceContext
|
|
}
|
|
|
|
// 取消关注用户
|
|
func NewUnfollowUserLogic(ctx context.Context, svcCtx *svc.ServiceContext) *UnfollowUserLogic {
|
|
return &UnfollowUserLogic{
|
|
Logger: logx.WithContext(ctx),
|
|
ctx: ctx,
|
|
svcCtx: svcCtx,
|
|
}
|
|
}
|
|
|
|
func (l *UnfollowUserLogic) UnfollowUser(req *types.UnfollowUserReq) (resp *types.EmptyResp, err error) {
|
|
userId, err := contextj.UserIDFrom(l.ctx)
|
|
if err != nil {
|
|
return nil, errors.New("unauthorized")
|
|
}
|
|
|
|
targetId, err := strconv.ParseInt(req.Id, 10, 64)
|
|
if err != nil {
|
|
return nil, errors.New("invalid user id")
|
|
}
|
|
|
|
_, err = l.svcCtx.UserRpc.DelUserFollows(l.ctx, &usercenter.DelUserFollowsReq{
|
|
Id: targetId,
|
|
UserId: userId,
|
|
})
|
|
if err != nil {
|
|
logx.Errorf("del user follow err: %v", err)
|
|
return nil, errors.New("unfollow user failed")
|
|
}
|
|
return &types.EmptyResp{}, nil
|
|
}
|