thread-master/apps/backend/internal/logic/outbox/remove_outbox_logic.go

37 lines
934 B
Go
Raw Normal View History

2026-07-13 01:15:30 +00:00
package outbox
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 RemoveOutboxLogic struct {
logx.Logger
ctx context.Context
svcCtx *svc.ServiceContext
}
func NewRemoveOutboxLogic(ctx context.Context, svcCtx *svc.ServiceContext) *RemoveOutboxLogic {
return &RemoveOutboxLogic{Logger: logx.WithContext(ctx), ctx: ctx, svcCtx: svcCtx}
}
func (l *RemoveOutboxLogic) RemoveOutbox(req *types.OutboxIdPath) (*types.OkData, 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")
}
if err := l.svcCtx.Studio.RemoveOutbox(l.ctx, uid, req.Id); err != nil {
return nil, err
}
return &types.OkData{Ok: true}, nil
}