41 lines
941 B
Go
41 lines
941 B
Go
|
|
package jobs
|
||
|
|
|
||
|
|
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 DeleteJobLogic struct {
|
||
|
|
logx.Logger
|
||
|
|
ctx context.Context
|
||
|
|
svcCtx *svc.ServiceContext
|
||
|
|
}
|
||
|
|
|
||
|
|
func NewDeleteJobLogic(ctx context.Context, svcCtx *svc.ServiceContext) *DeleteJobLogic {
|
||
|
|
return &DeleteJobLogic{
|
||
|
|
Logger: logx.WithContext(ctx),
|
||
|
|
ctx: ctx,
|
||
|
|
svcCtx: svcCtx,
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
func (l *DeleteJobLogic) DeleteJob(req *types.JobIdPath) (*types.OkData, error) {
|
||
|
|
if l.svcCtx.Jobs == nil {
|
||
|
|
return nil, response.Biz(503, 503001, "jobs module not configured")
|
||
|
|
}
|
||
|
|
uid, ok := middleware.UIDFrom(l.ctx)
|
||
|
|
if !ok {
|
||
|
|
return nil, response.Biz(401, 401001, "missing authorization")
|
||
|
|
}
|
||
|
|
if err := l.svcCtx.Jobs.Delete(l.ctx, uid, req.Id); err != nil {
|
||
|
|
return nil, err
|
||
|
|
}
|
||
|
|
return &types.OkData{Ok: true, Message: "已刪除"}, nil
|
||
|
|
}
|