39 lines
911 B
Go
39 lines
911 B
Go
|
|
// Code scaffolded by goctl. Safe to edit.
|
|||
|
|
// goctl 1.10.1
|
|||
|
|
|
|||
|
|
package auth
|
|||
|
|
|
|||
|
|
import (
|
|||
|
|
"context"
|
|||
|
|
|
|||
|
|
"gateway/internal/svc"
|
|||
|
|
"gateway/internal/types"
|
|||
|
|
|
|||
|
|
"github.com/zeromicro/go-zero/core/logx"
|
|||
|
|
)
|
|||
|
|
|
|||
|
|
type LoginMfaConfirmLogic struct {
|
|||
|
|
logx.Logger
|
|||
|
|
ctx context.Context
|
|||
|
|
svcCtx *svc.ServiceContext
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// 確認登入 MFA(TOTP / 備援碼)並核發 JWT
|
|||
|
|
func NewLoginMfaConfirmLogic(ctx context.Context, svcCtx *svc.ServiceContext) *LoginMfaConfirmLogic {
|
|||
|
|
return &LoginMfaConfirmLogic{
|
|||
|
|
Logger: logx.WithContext(ctx),
|
|||
|
|
ctx: ctx,
|
|||
|
|
svcCtx: svcCtx,
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
func (l *LoginMfaConfirmLogic) LoginMfaConfirm(req *types.LoginMFAConfirmReq) (*types.AuthTokenData, error) {
|
|||
|
|
if err := requireLoginDeps(l.svcCtx); err != nil {
|
|||
|
|
return nil, err
|
|||
|
|
}
|
|||
|
|
if req == nil {
|
|||
|
|
return nil, errb.InputMissingRequired("request body is required")
|
|||
|
|
}
|
|||
|
|
return confirmLoginMFA(l.ctx, l.svcCtx, req.TenantSlug, req.ChallengeID, req.Code)
|
|||
|
|
}
|