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