]> git.mxchange.org Git - pizzaservice-war.git/blob - src/java/org/mxchange/pizzaapplication/validator/password/PizzaUserPasswordValidator.java
Please cherry-pick:
[pizzaservice-war.git] / src / java / org / mxchange / pizzaapplication / validator / password / PizzaUserPasswordValidator.java
1 /*
2  * Copyright (C) 2016 Roland Häder
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.pizzaapplication.validator.password;
18
19 import java.text.MessageFormat;
20 import javax.faces.component.UIComponent;
21 import javax.faces.context.FacesContext;
22 import javax.faces.validator.FacesValidator;
23 import javax.faces.validator.Validator;
24 import javax.faces.validator.ValidatorException;
25 import javax.naming.Context;
26 import javax.naming.InitialContext;
27 import javax.naming.NamingException;
28 import org.mxchange.jcoreee.validator.string.BaseStringValidator;
29
30 /**
31  * A validator for validating passwords (if they match with stored)
32  * <p>
33  * @author Roland Häder<roland@mxchange.org>
34  */
35 @FacesValidator ("UserPasswordValidator")
36 public class PizzaUserPasswordValidator extends BaseStringValidator implements Validator {
37
38         /**
39          * Serial number
40          */
41         private static final long serialVersionUID = 48_581_795_687_317L;
42
43         /**
44          * Default constructor
45          */
46         public PizzaUserPasswordValidator () {
47                 // Try to get it
48                 try {
49                         // Get initial context
50                         Context context = new InitialContext();
51                 } catch (final NamingException ex) {
52                         // Continue to throw it
53                         throw new RuntimeException(MessageFormat.format("context.lookup() failed: {0}", ex.getMessage()), ex); //NOI18N
54                 }
55         }
56
57         @Override
58         public void validate (final FacesContext context, final UIComponent component, final Object value) throws ValidatorException {
59                 // The required field
60                 String[] requiredFields = {"currentPassword"}; //NOI18N
61
62                 // Pre-validation (example: not null, not a string, empty string ...)
63                 super.preValidate(context, component, value, requiredFields, false);
64
65                 /*
66                  * @TODO injection is not working in converters. No, JavaEE is not so super-flexible.
67                 // value is known to be an entered password, so instance login container
68                 LoginContainer container = new UserLoginContainer(this.userLoginController.getLoggedInUser(), (String) value);
69
70                 // Test it here
71                 if (!UserUtils.ifPasswordMatches(container, this.userLoginController.getLoggedInUser())) {
72                         // Password mismatches
73                         throw new ValidatorException(new FacesMessage(FacesMessage.SEVERITY_ERROR, "Password mismatching.", "The password the user has entered does not match the stored password.")); //NOI18N
74                 }
75                  */
76         }
77
78 }