39 lines
997 B
Go
39 lines
997 B
Go
|
|
package inspire
|
||
|
|
|
||
|
|
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 RemoveInspireElementLogic struct {
|
||
|
|
logx.Logger
|
||
|
|
ctx context.Context
|
||
|
|
svcCtx *svc.ServiceContext
|
||
|
|
}
|
||
|
|
|
||
|
|
func NewRemoveInspireElementLogic(ctx context.Context, svcCtx *svc.ServiceContext) *RemoveInspireElementLogic {
|
||
|
|
return &RemoveInspireElementLogic{Logger: logx.WithContext(ctx), ctx: ctx, svcCtx: svcCtx}
|
||
|
|
}
|
||
|
|
|
||
|
|
func (l *RemoveInspireElementLogic) RemoveInspireElement(req *types.InspireElementIdPath) (*types.OkData, error) {
|
||
|
|
|
||
|
|
if l.svcCtx.Inspire == nil {
|
||
|
|
return nil, response.Biz(503, 503001, "inspire not configured")
|
||
|
|
}
|
||
|
|
uid, ok := middleware.UIDFrom(l.ctx)
|
||
|
|
if !ok {
|
||
|
|
return nil, response.Biz(401, 401001, "missing authorization")
|
||
|
|
}
|
||
|
|
if err := l.svcCtx.Inspire.RemoveElement(l.ctx, uid, req.Id); err != nil {
|
||
|
|
return nil, err
|
||
|
|
}
|
||
|
|
return &types.OkData{Ok: true}, nil
|
||
|
|
|
||
|
|
}
|