oca-ocb-security/odoo-bringout-oca-ocb-auth_totp_mail/auth_totp_mail/controllers/home.py
Ernad Husremovic c0efcc53f5 19.0 vanilla
2026-03-09 09:32:28 +01:00

32 lines
1.3 KiB
Python

import logging
import odoo.addons.auth_totp.controllers.home
from odoo import http
from odoo.exceptions import AccessDenied, UserError
from odoo.http import request
_logger = logging.getLogger(__name__)
class Home(odoo.addons.auth_totp.controllers.home.Home):
@http.route()
def web_totp(self, redirect=None, **kwargs):
response = super().web_totp(redirect=redirect, **kwargs)
if response.status_code != 200 or response.qcontext['user']._mfa_type() != 'totp_mail':
# In case the response from the super is a redirection
# or the user has another TOTP method, we return the response from the call to super.
return response
if not request.session.get('pre_uid') or request.session.uid:
raise AccessDenied("The user must still be in the pre-authentication phase") # pylint: disable=missing-gettext
# Send the email containing the code to the user inbox
try:
user = response.qcontext['user']
with user.env.cr.savepoint():
user._send_totp_mail_code()
except (AccessDenied, UserError) as e:
response.qcontext['error'] = str(e)
except Exception as e:
_logger.exception('Unable to send TOTP email')
response.qcontext['error'] = str(e)
return response