50 lines
1.4 KiB
Go
50 lines
1.4 KiB
Go
package logic
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"juwan-backend/app/shop/rpc/internal/models/shopinvitations"
|
|
"juwan-backend/app/shop/rpc/internal/svc"
|
|
"juwan-backend/app/shop/rpc/pb"
|
|
"time"
|
|
|
|
"github.com/jinzhu/copier"
|
|
"github.com/zeromicro/go-zero/core/logx"
|
|
)
|
|
|
|
type UpdateShopInvitationsLogic struct {
|
|
ctx context.Context
|
|
svcCtx *svc.ServiceContext
|
|
logx.Logger
|
|
}
|
|
|
|
func NewUpdateShopInvitationsLogic(ctx context.Context, svcCtx *svc.ServiceContext) *UpdateShopInvitationsLogic {
|
|
return &UpdateShopInvitationsLogic{
|
|
ctx: ctx,
|
|
svcCtx: svcCtx,
|
|
Logger: logx.WithContext(ctx),
|
|
}
|
|
}
|
|
|
|
func (l *UpdateShopInvitationsLogic) UpdateShopInvitations(in *pb.UpdateShopInvitationsReq) (*pb.UpdateShopInvitationsResp, error) {
|
|
builder := l.svcCtx.ShopModelRW.ShopInvitations.UpdateOneID(in.Id).
|
|
Where(shopinvitations.PlayerIDEQ(in.PlayerId)).
|
|
SetStatus(in.Status)
|
|
if in.RespondedAt > 0 {
|
|
builder = builder.SetRespondedAt(time.Unix(in.RespondedAt, 0))
|
|
}
|
|
update, err := builder.Save(l.ctx)
|
|
if err != nil {
|
|
logx.Errorf("failed to update shop invitation: %v", err)
|
|
return nil, errors.New("failed to update shop invitation")
|
|
}
|
|
|
|
resp := &pb.ShopInvitations{}
|
|
err = copier.Copy(resp, update)
|
|
if err != nil {
|
|
logx.Errorf("failed to copy update: %v", err)
|
|
return nil, errors.New("failed to update shop invitation")
|
|
}
|
|
return &pb.UpdateShopInvitationsResp{ShopInvitations: resp}, nil
|
|
}
|