41 lines
965 B
Go
41 lines
965 B
Go
package scout
|
|
|
|
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 SkipOutreachLogic struct {
|
|
logx.Logger
|
|
ctx context.Context
|
|
svcCtx *svc.ServiceContext
|
|
}
|
|
|
|
func NewSkipOutreachLogic(ctx context.Context, svcCtx *svc.ServiceContext) *SkipOutreachLogic {
|
|
return &SkipOutreachLogic{Logger: logx.WithContext(ctx), ctx: ctx, svcCtx: svcCtx}
|
|
}
|
|
|
|
func (l *SkipOutreachLogic) SkipOutreach(req *types.ScoutPostIdPath) (*types.ScoutPostPublic, error) {
|
|
if l.svcCtx.Scout == nil {
|
|
return nil, response.Biz(503, 503001, "scout not configured")
|
|
}
|
|
uid, ok := middleware.UIDFrom(l.ctx)
|
|
if !ok {
|
|
return nil, response.Biz(401, 401001, "missing authorization")
|
|
}
|
|
|
|
p, err := l.svcCtx.Scout.SkipOutreach(l.ctx, uid, req.Id)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
out := types.ScoutPostFromDomain(p)
|
|
return &out, nil
|
|
|
|
}
|