thread-master/apps/backend/internal/logic/ownposts/own_post_analyze_logic.go

39 lines
982 B
Go

package ownposts
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 OwnPostAnalyzeLogic struct {
logx.Logger
ctx context.Context
svcCtx *svc.ServiceContext
}
func NewOwnPostAnalyzeLogic(ctx context.Context, svcCtx *svc.ServiceContext) *OwnPostAnalyzeLogic {
return &OwnPostAnalyzeLogic{Logger: logx.WithContext(ctx), ctx: ctx, svcCtx: svcCtx}
}
func (l *OwnPostAnalyzeLogic) OwnPostAnalyze(req *types.OwnPostAnalyzeReq) (*types.OwnPostPublic, 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")
}
p, err := l.svcCtx.Studio.AnalyzePost(l.ctx, uid, req.PostId)
if err != nil {
return nil, err
}
out := types.OwnPostFromDomain(p)
return &out, nil
}