39 lines
1012 B
Go
39 lines
1012 B
Go
|
|
package compose
|
||
|
|
|
||
|
|
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 ComposeAnalyzeViralLogic struct {
|
||
|
|
logx.Logger
|
||
|
|
ctx context.Context
|
||
|
|
svcCtx *svc.ServiceContext
|
||
|
|
}
|
||
|
|
|
||
|
|
func NewComposeAnalyzeViralLogic(ctx context.Context, svcCtx *svc.ServiceContext) *ComposeAnalyzeViralLogic {
|
||
|
|
return &ComposeAnalyzeViralLogic{Logger: logx.WithContext(ctx), ctx: ctx, svcCtx: svcCtx}
|
||
|
|
}
|
||
|
|
|
||
|
|
func (l *ComposeAnalyzeViralLogic) ComposeAnalyzeViral(req *types.ComposeViralReq) (*types.ViralAnalysisPublic, 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")
|
||
|
|
}
|
||
|
|
v, err := l.svcCtx.Studio.AnalyzeViral(l.ctx, uid, req.Text)
|
||
|
|
if err != nil {
|
||
|
|
return nil, err
|
||
|
|
}
|
||
|
|
out := types.ViralFromDomain(v)
|
||
|
|
return &out, nil
|
||
|
|
}
|