mirror of https://github.com/jumpserver/jumpserver
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
992 B
34 lines
992 B
# -*- coding: utf-8 -*-
|
|
#
|
|
|
|
from __future__ import unicode_literals
|
|
from django.views.generic.edit import FormView
|
|
from .. import forms, errors, mixins
|
|
from .utils import redirect_to_guard_view
|
|
|
|
from common.utils import get_logger
|
|
|
|
logger = get_logger(__name__)
|
|
__all__ = ['UserLoginOtpView']
|
|
|
|
|
|
class UserLoginOtpView(mixins.AuthMixin, FormView):
|
|
template_name = 'authentication/login_otp.html'
|
|
form_class = forms.UserCheckOtpCodeForm
|
|
redirect_field_name = 'next'
|
|
|
|
def form_valid(self, form):
|
|
otp_code = form.cleaned_data.get('otp_code')
|
|
try:
|
|
self.check_user_mfa(otp_code)
|
|
return redirect_to_guard_view()
|
|
except (errors.MFAFailedError, errors.BlockMFAError) as e:
|
|
form.add_error('otp_code', e.msg)
|
|
return super().form_invalid(form)
|
|
except Exception as e:
|
|
logger.error(e)
|
|
import traceback
|
|
traceback.print_exception()
|
|
return redirect_to_guard_view()
|
|
|