]> git.mxchange.org Git - pizzaservice-war.git/blob - src/java/org/mxchange/pizzaapplication/validator/user/PizzaUserIdValidator.java
Please cherry-pick:
[pizzaservice-war.git] / src / java / org / mxchange / pizzaapplication / validator / user / PizzaUserIdValidator.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.pizzaapplication.validator.user;
18
19 import java.text.MessageFormat;
20 import javax.ejb.EJB;
21 import javax.faces.application.FacesMessage;
22 import javax.faces.component.UIComponent;
23 import javax.faces.context.FacesContext;
24 import javax.faces.validator.FacesValidator;
25 import javax.faces.validator.ValidatorException;
26 import org.mxchange.jcoreee.validator.number.BaseNumberValidator;
27 import org.mxchange.jusercore.model.user.UserSessionBeanRemote;
28
29 /**
30  * A validator for user ids
31  * <p>
32  * @author Roland Häder<roland@mxchange.org>
33  */
34 @FacesValidator ("UserIdValidator")
35 public class PizzaUserIdValidator extends BaseNumberValidator {
36
37         /**
38          * Serial number
39          */
40         private static final long serialVersionUID = 12_869_569_314_764_690L;
41
42         /**
43          * Remote bean
44          */
45         @EJB (lookup = "java:global/jfinancials-ejb/user!org.mxchange.jusercore.model.user.UserSessionBeanRemote")
46         private UserSessionBeanRemote userBean;
47
48         /**
49          * Default constructor
50          */
51         public PizzaUserIdValidator () {
52         }
53
54         @Override
55         public void validate (final FacesContext context, final UIComponent component, final Object value) throws ValidatorException {
56                 // All accepted, required fields
57                 String[] requiredFields = {"userId"}; //NOI18N
58
59                 // Pre-validation (example: not null, not a string, empty string ...)
60                 super.preValidate(context, component, value, requiredFields, false);
61
62                 // Cast value
63                 Long userId = (Long) value;
64
65                 // Define variable
66                 Boolean ifUserExists = this.userBean.ifUserIdExists(userId);
67
68                 // Is the user id valid?
69                 if (!ifUserExists) {
70                         // Is not valid
71                         throw new ValidatorException(new FacesMessage(MessageFormat.format("No user found with id {0}. Please check your link.", userId))); //NOI18N
72                 }
73         }
74
75 }