31 lines
692 B
Go
31 lines
692 B
Go
package index
|
|
|
|
import (
|
|
"github.com/TeaOSLab/EdgeCommon/pkg/rpc/pb"
|
|
"github.com/TeaOSLab/EdgeUser/internal/web/actions/actionutils"
|
|
"github.com/iwind/TeaGo/actions"
|
|
)
|
|
|
|
// CheckOTPAction 检查是否需要OTP
|
|
type CheckOTPAction struct {
|
|
actionutils.ParentAction
|
|
}
|
|
|
|
func (this *CheckOTPAction) Init() {
|
|
this.Nav("", "", "")
|
|
}
|
|
|
|
func (this *CheckOTPAction) RunPost(params struct {
|
|
Username string
|
|
|
|
Must *actions.Must
|
|
}) {
|
|
checkResp, err := this.RPC().UserRPC().CheckUserOTPWithUsername(this.UserContext(), &pb.CheckUserOTPWithUsernameRequest{Username: params.Username})
|
|
if err != nil {
|
|
this.ErrorPage(err)
|
|
return
|
|
}
|
|
this.Data["requireOTP"] = checkResp.RequireOTP
|
|
this.Success()
|
|
}
|