]> git.mxchange.org Git - jjobs-war.git/blob - src/java/org/mxchange/jjobs/validator/user/JobsUserIdValidator.java
Please cherry-pick:
[jjobs-war.git] / src / java / org / mxchange / jjobs / validator / user / JobsUserIdValidator.java
1 /*
2  * Copyright (C) 2016, 2017 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 General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (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 General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17 package org.mxchange.jjobs.validator.user;
18
19 import java.text.MessageFormat;
20 import javax.faces.application.FacesMessage;
21 import javax.faces.component.UIComponent;
22 import javax.faces.context.FacesContext;
23 import javax.faces.validator.FacesValidator;
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.number.BaseNumberValidator;
29 import org.mxchange.jjobs.beans.user.JobsUserWebRequestBean;
30 import org.mxchange.jjobs.beans.user.JobsUserWebRequestController;
31
32 /**
33  * A validator for user ids
34  * <p>
35  * @author Roland Häder<roland@mxchange.org>
36  */
37 @FacesValidator ("UserIdValidator")
38 public class JobsUserIdValidator extends BaseNumberValidator {
39
40         /**
41          * User backing bean
42          */
43         private static JobsUserWebRequestController USER_CONTROLLER;
44
45         /**
46          * Serial number
47          */
48         private static final long serialVersionUID = 12_869_569_314_764_690L;
49
50         @Override
51         public void validate (final FacesContext context, final UIComponent component, final Object value) throws ValidatorException {
52                 // Is the instance there?
53                 if (USER_CONTROLLER == null) {
54                         try {
55                                 // Not yet, attempt lookup
56                                 final Context initial = new InitialContext();
57
58                                 // Lookup EJB
59                                 USER_CONTROLLER = (JobsUserWebRequestController) initial.lookup(String.format("java:module/%s", JobsUserWebRequestBean.class.getSimpleName()));
60                         } catch (final NamingException ex) {
61                                 // Throw it again
62                                 throw new ValidatorException(new FacesMessage(FacesMessage.SEVERITY_ERROR, "Cannot lookup backing bean", ex.getMessage()), ex);
63                         }
64                 }
65
66                 // All accepted, required fields
67                 final String[] requiredFields = {"userId"}; //NOI18N
68
69                 // Pre-validation (example: not null, not a string, empty string ...)
70                 super.preValidate(context, component, value, requiredFields, false);
71
72                 // Cast value
73                 final Long userId = (Long) value;
74
75                 // Define variable
76                 final Boolean ifUserExists = USER_CONTROLLER.ifUserIdExists(userId);
77
78                 // Is the user id valid?
79                 if (!ifUserExists) {
80                         // Is not valid
81                         throw new ValidatorException(new FacesMessage(MessageFormat.format("No user found with id {0}. Please check your link.", userId))); //NOI18N
82                 }
83         }
84
85 }