]> git.mxchange.org Git - jfinancials-war.git/blob - src/java/org/mxchange/jfinancials/validator/password/FinancialsUserPasswordValidator.java
Updated copyright year
[jfinancials-war.git] / src / java / org / mxchange / jfinancials / validator / password / FinancialsUserPasswordValidator.java
1 /*
2  * Copyright (C) 2016 - 2022 Free Software Foundation
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU Affero General Public License as
6  * published by the Free Software Foundation, either version 3 of the
7  * License, or (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU Affero General Public License for more details.
13  *
14  * You should have received a copy of the GNU Affero General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17 package org.mxchange.jfinancials.validator.password;
18
19 import javax.faces.component.UIComponent;
20 import javax.faces.context.FacesContext;
21 import javax.faces.validator.FacesValidator;
22 import javax.faces.validator.ValidatorException;
23 import org.mxchange.jcoreee.validator.string.BaseStringValidator;
24
25 /**
26  * A validator for validating passwords (if they match with stored)
27  * <p>
28  * @author Roland Häder<roland@mxchange.org>
29  */
30 @FacesValidator ("UserPasswordValidator")
31 public class FinancialsUserPasswordValidator extends BaseStringValidator {
32
33         /**
34          * Serial number
35          */
36         private static final long serialVersionUID = 48_581_795_687_317L;
37
38         @Override
39         public void validate (final FacesContext context, final UIComponent component, final Object value) throws ValidatorException {
40                 // The required field
41                 final String[] requiredFields = {"currentPassword"}; //NOI18N
42
43                 // Pre-validation (example: not null, not a string, empty string ...)
44                 super.preValidate(context, component, value, requiredFields, false);
45
46                 /*
47                  * @TODO injection is not working in converters. No, JavaEE is not so super-flexible.
48                 // value is known to be an entered password, so instance login container
49                 LoginContainer container = new UserLoginContainer(this.userLoginController.getLoggedInUser(), (String) value);
50
51                 // Test it here
52                 if (!UserUtils.ifPasswordMatches(container, this.userLoginController.getLoggedInUser())) {
53                         // Password mismatches
54                         throw new ValidatorException(new FacesMessage(FacesMessage.SEVERITY_WARN, "Password mismatching.", "The password the user has entered does not match the stored password.")); //NOI18N
55                 }
56                  */
57         }
58
59 }