After a quick search and reading documentation I implemented Django - Two Factor Authentication in one of my Django project [Reference Link].
It works great I am using Google Authenticator for token based login. The problem arises when I want to extend login methodology of the library. I want to enforce my every user to use 2-Factor-Auth as compulsion. I am not using any signup measures so there has to be a check at the time of Login for a user.
The problem is to design a custom login mechanism but I am unable to incorporate this library with the custom login.
PS: I have a custom user model and currently I am using default Login that came with Django Two Factor Authentication.
I did not though the code was necessary so I did not posted it but I can share it if needed.
After a through look at the library code I was able to manipulate the check in the two_factor library.
So, looking at
two_factor
folder it is easily understandable that is nothing but a Django app similar to others.I navigated to the library files in my virtual environment
venv\Lib\site-packages\two_factor\views\core.py
. As mentioned in the documentation there is no enforcement for users till now to setup 2fa.In
LoginView(...)
there is a functiondone
. IT checks for the device availability for 2fa just add a else clause for redirection.So what happens is the check for device can only be successful if the user has setup the 2fa but it will never be true for unverified user.