41 lines
984 B
Go
41 lines
984 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 ClearInspireSessionLogic struct {
|
||
|
|
logx.Logger
|
||
|
|
ctx context.Context
|
||
|
|
svcCtx *svc.ServiceContext
|
||
|
|
}
|
||
|
|
|
||
|
|
func NewClearInspireSessionLogic(ctx context.Context, svcCtx *svc.ServiceContext) *ClearInspireSessionLogic {
|
||
|
|
return &ClearInspireSessionLogic{Logger: logx.WithContext(ctx), ctx: ctx, svcCtx: svcCtx}
|
||
|
|
}
|
||
|
|
|
||
|
|
func (l *ClearInspireSessionLogic) ClearInspireSession() (*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")
|
||
|
|
}
|
||
|
|
s, err := l.svcCtx.Inspire.ClearSession(l.ctx, uid)
|
||
|
|
if err != nil {
|
||
|
|
return nil, err
|
||
|
|
}
|
||
|
|
out := types.SessionFromDomain(s)
|
||
|
|
return &out, nil
|
||
|
|
|
||
|
|
}
|