Files
django-mfa2/mfa/helpers.py
2021-06-23 12:15:49 +02:00

33 lines
1.0 KiB
Python

from django.http import JsonResponse
from . import FIDO2, U2F, TrustedDevice, totp
from .models import UserKey
from .views import verify
def has_mfa(request, username):
if UserKey.objects.filter(username=username, enabled=1).count() > 0:
return verify(request, username)
return False
def is_mfa(request, ignore_methods=[]):
if request.session.get("mfa", {}).get("verified", False):
if not request.session.get("mfa", {}).get("method", None) in ignore_methods:
return True
return False
def recheck(request):
method = request.session.get("mfa", {}).get("method", None)
if not method:
return JsonResponse({"res": False})
if method == "Trusted Device":
return JsonResponse({"res": TrustedDevice.verify(request)})
elif method == "U2F":
return JsonResponse({"html": U2F.recheck(request).content})
elif method == "FIDO2":
return JsonResponse({"html": FIDO2.recheck(request).content})
elif method == "TOTP":
return JsonResponse({"html": totp.recheck(request).content})