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.
		
		
		
		
		
			
		
			
				
					
					
						
							91 lines
						
					
					
						
							4.2 KiB
						
					
					
				
			
		
		
		
			
			
			
		
		
	
	
							91 lines
						
					
					
						
							4.2 KiB
						
					
					
				| # -*- coding: utf-8 -*- | |
| ############################################################################# | |
| # | |
| #    Cybrosys Technologies Pvt. Ltd. | |
| # | |
| #    Copyright (C) 2022-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 logging | |
| import odoo | |
| from odoo import http, _ | |
| from odoo.exceptions import UserError | |
| from odoo.http import request, dispatch_rpc | |
| 
 | |
| _logger = logging.getLogger(__name__) | |
| from odoo.addons.auth_signup.controllers.main import AuthSignupHome | |
| from odoo.addons.web.controllers.database import Database | |
| 
 | |
| 
 | |
| class DatabaseInherit(Database): | |
|     @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): | |
|         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 AuthSignupHomeInherit(AuthSignupHome): | |
| 
 | |
|     @http.route('/web/forgot_password', type='http', auth='public', website=True, sitemap=False, | |
|                 csrf=False, ) | |
|     def forgot_password(self, *args, **kw): | |
|         qcontext = self.get_auth_signup_qcontext() | |
|         response = request.render('password_reset_manager.forgot_password', qcontext) | |
|         return response | |
| 
 | |
|     @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): | |
|         qcontext = self.get_auth_signup_qcontext() | |
|         response = request.render('password_reset_manager.reset_password_direct', qcontext) | |
|         return response | |
| 
 | |
|     @http.route('/web/reset_password/submit', type='http', methods=['POST'], auth="public", website=True, csrf=False) | |
|     def change_password(self, *args, **kw): | |
|         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)
 | |
| 
 |