39 lines
954 B
Go
39 lines
954 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 RemoveHomeworkLogic struct {
|
|
logx.Logger
|
|
ctx context.Context
|
|
svcCtx *svc.ServiceContext
|
|
}
|
|
|
|
func NewRemoveHomeworkLogic(ctx context.Context, svcCtx *svc.ServiceContext) *RemoveHomeworkLogic {
|
|
return &RemoveHomeworkLogic{Logger: logx.WithContext(ctx), ctx: ctx, svcCtx: svcCtx}
|
|
}
|
|
|
|
func (l *RemoveHomeworkLogic) RemoveHomework(req *types.ScoutThemePath) (*types.OkData, 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")
|
|
}
|
|
|
|
if err := l.svcCtx.Scout.RemoveHomework(l.ctx, uid, req.ThemeKey); err != nil {
|
|
return nil, err
|
|
}
|
|
return &types.OkData{Ok: true}, nil
|
|
|
|
}
|