39 lines
1.0 KiB
Go
39 lines
1.0 KiB
Go
|
|
package mentions
|
||
|
|
|
||
|
|
import (
|
||
|
|
"context"
|
||
|
|
|
||
|
|
"apps/backend/internal/middleware"
|
||
|
|
"apps/backend/internal/response"
|
||
|
|
"apps/backend/internal/svc"
|
||
|
|
"apps/backend/internal/types"
|
||
|
|
|
||
|
|
"github.com/zeromicro/go-zero/core/logx"
|
||
|
|
)
|
||
|
|
|
||
|
|
type MentionGenerateReplyLogic struct {
|
||
|
|
logx.Logger
|
||
|
|
ctx context.Context
|
||
|
|
svcCtx *svc.ServiceContext
|
||
|
|
}
|
||
|
|
|
||
|
|
func NewMentionGenerateReplyLogic(ctx context.Context, svcCtx *svc.ServiceContext) *MentionGenerateReplyLogic {
|
||
|
|
return &MentionGenerateReplyLogic{Logger: logx.WithContext(ctx), ctx: ctx, svcCtx: svcCtx}
|
||
|
|
}
|
||
|
|
|
||
|
|
func (l *MentionGenerateReplyLogic) MentionGenerateReply(req *types.MentionGenerateReq) (*types.MentionPublic, error) {
|
||
|
|
if l.svcCtx.Studio == nil {
|
||
|
|
return nil, response.Biz(503, 503001, "studio not configured")
|
||
|
|
}
|
||
|
|
uid, ok := middleware.UIDFrom(l.ctx)
|
||
|
|
if !ok {
|
||
|
|
return nil, response.Biz(401, 401001, "missing authorization")
|
||
|
|
}
|
||
|
|
m, err := l.svcCtx.Studio.GenerateMentionReply(l.ctx, uid, req.Id, req.PersonaId)
|
||
|
|
if err != nil {
|
||
|
|
return nil, err
|
||
|
|
}
|
||
|
|
out := types.MentionFromDomain(m)
|
||
|
|
return &out, nil
|
||
|
|
}
|