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.
112 lines
5.1 KiB
112 lines
5.1 KiB
# -*- coding: utf-8 -*-
|
|
#############################################################################
|
|
#
|
|
# Cybrosys Technologies Pvt. Ltd.
|
|
#
|
|
# Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>)
|
|
# Author: Cybrosys Techno Solutions(<https://www.cybrosys.com>)
|
|
#
|
|
# You can modify it under the terms of the GNU LESSER
|
|
# GENERAL PUBLIC LICENSE (LGPL v3), Version 3.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details.
|
|
#
|
|
# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE
|
|
# (LGPL v3) along with this program.
|
|
# If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
#############################################################################
|
|
import odoo
|
|
from odoo import http, _
|
|
from odoo.http import request
|
|
from odoo.addons.auth_signup.controllers.main import AuthSignupHome
|
|
from odoo.addons.web.controllers.main import Database
|
|
|
|
|
|
class Database(Database):
|
|
"""Database Inherit"""
|
|
|
|
@http.route('/web/rest_by_master_pass/submit', type='http',
|
|
methods=['POST'], auth="public", website=True, csrf=False)
|
|
def change_password_by_master(self, *args, **kw):
|
|
"""
|
|
This route is called when while confirm the "Reset password" section
|
|
and change password using master password.
|
|
"""
|
|
values = {}
|
|
if kw['confirm_new_password'] == kw['new_password']:
|
|
if odoo.tools.config.verify_admin_password(kw['master_password']):
|
|
user_valid = request.env['res.users'].sudo().search([('login',
|
|
'=', kw['user_name'])])
|
|
if user_valid:
|
|
query = ("update res_users set password='%s' where "
|
|
"login='%s'") % (
|
|
kw['confirm_new_password'], kw['user_name'])
|
|
request.cr.execute(query)
|
|
return request.redirect('/web/login?message=%s' %
|
|
_('Password Changed'))
|
|
else:
|
|
values['error'] = _("User Name Is Not Valid")
|
|
return request.render('password_reset_manager.'
|
|
'forgot_password', values)
|
|
else:
|
|
values['error'] = _("Master Password Is Incorrect")
|
|
return request.render('password_reset_manager.forgot_password',
|
|
values)
|
|
else:
|
|
values['error'] = _("Password Not Matched")
|
|
return request.render('password_reset_manager.forgot_password',
|
|
values)
|
|
|
|
|
|
class AuthSignupHome(AuthSignupHome):
|
|
"""AuthSignupHome Inherit"""
|
|
|
|
@http.route('/web/forgot_password', type='http', auth='public',
|
|
website=True, sitemap=False, csrf=False)
|
|
def forgot_password(self, *args, **kw):
|
|
"""
|
|
Route which called while clicking "Forgot Password" link from
|
|
login page.
|
|
"""
|
|
return request.render('password_reset_manager.forgot_password',
|
|
self.get_auth_signup_qcontext())
|
|
|
|
@http.route('/web/reset_password/direct', type='http', auth='public',
|
|
website=True, sitemap=False, csrf=False, )
|
|
def web_auth_reset_password_direct(self, *args, **kw):
|
|
"""
|
|
Route which called while clicking "Change Password" link from
|
|
login page.
|
|
"""
|
|
return request.render('password_reset_manager.reset_password_direct'
|
|
, self.get_auth_signup_qcontext())
|
|
|
|
@http.route('/web/reset_password/submit', type='http',
|
|
methods=['POST'], auth="public", website=True, csrf=False)
|
|
def change_password(self, *args, **kw):
|
|
"""
|
|
This route is called when while confirm the "Change Password Form"
|
|
and change password using master password.
|
|
"""
|
|
values = {}
|
|
if kw['confirm_new_password'] == kw['new_password']:
|
|
try:
|
|
uid = request.session.authenticate(request.session.db,
|
|
kw['user_name'],
|
|
kw['old_password'])
|
|
user = request.env['res.users'].search([('id', '=', uid)])
|
|
user.password = kw['confirm_new_password']
|
|
return request.redirect('/web/login?message=%s' %
|
|
_('Password Changed'))
|
|
except odoo.exceptions.AccessDenied as e:
|
|
values['error'] = _("Login or Password Is Incorrect")
|
|
return request.render('password_reset_manager.'
|
|
'reset_password_direct', values)
|
|
else:
|
|
values['error'] = _("Password Not Match")
|
|
return request.render('password_reset_manager.reset_password_direct'
|
|
, values)
|
|
|