]> git.mxchange.org Git - pizzaservice-war.git/blob - src/java/org/mxchange/pizzaapplication/validator/user/PizzaUserIdValidator.java
Updated copyright year
[pizzaservice-war.git] / src / java / org / mxchange / pizzaapplication / validator / user / PizzaUserIdValidator.java
1 /*
2  * Copyright (C) 2016 - 2024 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 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.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.jusercore.model.user.UserSessionBeanRemote;
30
31 /**
32  * A validator for user ids
33  * <p>
34  * @author Roland Häder<roland@mxchange.org>
35  */
36 @FacesValidator ("UserIdValidator")
37 public class PizzaUserIdValidator extends BaseNumberValidator {
38
39         /**
40          * Remote bean
41          */
42         private static UserSessionBeanRemote USER_BEAN;
43
44         /**
45          * Serial number
46          */
47         private static final long serialVersionUID = 12_869_569_314_764_690L;
48
49         @Override
50         public void validate (final FacesContext context, final UIComponent component, final Object value) throws ValidatorException {
51                 // Is the instance there?
52                 if (USER_BEAN == null) {
53                         try {
54                                 // Not yet, attempt lookup
55                                 final Context initial = new InitialContext();
56
57                                 // Lookup EJB
58                                 USER_BEAN = (UserSessionBeanRemote) initial.lookup("java:global/pizzaservice-ejb/user!org.mxchange.jusercore.model.user.UserSessionBeanRemote");
59                         } catch (final NamingException ex) {
60                                 // Throw it again
61                                 throw new ValidatorException(new FacesMessage(FacesMessage.SEVERITY_ERROR, "Cannot lookup EJB", ex.getMessage()), ex);
62                         }
63                 }
64
65                 // All accepted, required fields
66                 final String[] requiredFields = {"userId"}; //NOI18N
67
68                 // Pre-validation (example: not null, not a string, empty string ...)
69                 super.preValidate(context, component, value, requiredFields, false);
70
71                 // Cast value
72                 final Long userId = (Long) value;
73
74                 // Define variable
75                 final Boolean ifUserExists = USER_BEAN.ifUserIdExists(userId);
76
77                 // Is the user id valid?
78                 if (!ifUserExists) {
79                         // Is not valid
80                         throw new ValidatorException(new FacesMessage(MessageFormat.format("No user found with id {0}. Please check your link.", userId))); //NOI18N
81                 }
82         }
83
84 }