thread-master/apps/backend/internal/logic/inspire/delete_inspire_session_logi...

44 lines
1.1 KiB
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 DeleteInspireSessionLogic struct {
logx.Logger
ctx context.Context
svcCtx *svc.ServiceContext
}
func NewDeleteInspireSessionLogic(ctx context.Context, svcCtx *svc.ServiceContext) *DeleteInspireSessionLogic {
return &DeleteInspireSessionLogic{
Logger: logx.WithContext(ctx),
ctx: ctx,
svcCtx: svcCtx,
}
}
func (l *DeleteInspireSessionLogic) DeleteInspireSession(req *types.InspireSessionIdPath) (*types.InspireSessionPublic, 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")
}
// 刪除後回傳目前 active session可能是新建的
sess, err := l.svcCtx.Inspire.DeleteSession(l.ctx, uid, req.Id)
if err != nil {
return nil, err
}
out := types.SessionFromDomain(sess)
return &out, nil
}