]> git.mxchange.org Git - jcore-utils.git/blob - src/org/mxchange/jcoreee/validator/bool/BaseBooleanValidator.java
BaseEeSystem is now centralized and serializable
[jcore-utils.git] / src / org / mxchange / jcoreee / validator / bool / BaseBooleanValidator.java
1 /*
2  * Copyright (C) 2015 Roland Haeder
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.jcoreee.validator.bool;
18
19 import java.text.MessageFormat;
20 import javax.faces.application.FacesMessage;
21 import javax.faces.component.UIComponent;
22 import javax.faces.component.UIInput;
23 import javax.faces.component.ValueHolder;
24 import javax.faces.context.FacesContext;
25 import javax.faces.validator.Validator;
26 import javax.faces.validator.ValidatorException;
27 import org.mxchange.jcoreee.validator.BaseObjectValidator;
28
29 /**
30  * A general boolean value validator.
31  *
32  * @author BalusC
33  * @author Roland Haeder<roland@mxchange.org>
34  */
35 public abstract class BaseBooleanValidator extends BaseObjectValidator implements Validator {
36
37         /**
38          * Serial number
39          */
40         private static final long serialVersionUID = 42_378_178_715_910_689L;
41
42         @Override
43         public void preValidate (final FacesContext context, final UIComponent component, final Object value, final String[] requiredFields) throws ValidatorException {
44                 // Trace message
45                 //this.getLogger().logTrace(MessageFormat.format("preValidate: context={0},component={1},value={2},requiredFields={3} - CALLED!", context, component, value, Arrays.toString(requiredFields))); //NOI18N
46
47                 // Pre-validate
48                 super.preValidate(context, component, value, requiredFields);
49
50                 // Get client id and init message + key
51                 String clientId = component.getClientId();
52                 FacesMessage facesMessage = null;
53                 String requiredMessage = null;
54
55                 // So far all fine, no check if the field is fine
56                 for (final String field : requiredFields) {
57                         // Debug message
58                         //this.getLogger().logDebug(MessageFormat.format("preValidate: field={0},clientId={1}", field, clientId)); //NOI18N
59
60                         // Is it the same?
61                         if (clientId.endsWith(field)) {
62                                 // Compare value's type
63                                 if (!(value instanceof Boolean)) {
64                                         // Generate message
65                                         requiredMessage = this.getMessageStringFromKey(String.format("ERROR_%s_IS_NOT_BOOLEAN", field.toUpperCase()));
66
67                                         // Value is not right type
68                                         facesMessage = new FacesMessage(FacesMessage.SEVERITY_ERROR, requiredMessage, requiredMessage); //NOI18N
69                                         break;
70                                 }
71
72                                 // Cast to string
73                                 Boolean bool = (Boolean) value;
74
75                                 // Is it false?
76                                 if (bool.equals(Boolean.FALSE)) {
77                                         // Default message
78                                         requiredMessage = ((UIInput) component).getRequiredMessage();
79
80                                         if (null == requiredMessage) {
81                                                 Object label = component.getAttributes().get("label"); //NOI18N
82
83                                                 // Check if label is null, or zero length
84                                                 if ((null == label) || (label instanceof CharSequence && ((CharSequence) label).length() == 0)) {
85                                                         label = component.getValueExpression("label"); //NOI18N
86                                                 }
87
88                                                 // Label is still null?
89                                                 if (null == label) {
90                                                         label = component.getClientId(context);
91                                                 }
92
93                                                 // Set message
94                                                 requiredMessage = MessageFormat.format(UIInput.REQUIRED_MESSAGE_ID, label);
95
96                                                 // Set value to false in UI component
97                                                 ((ValueHolder) component).setValue(Boolean.FALSE);
98                                         }
99
100                                         // Abort processing here
101                                         facesMessage = new FacesMessage(FacesMessage.SEVERITY_ERROR, requiredMessage, requiredMessage);
102                                         break;
103                                 }
104                         }
105                 }
106
107                 // Is facesMessage set?
108                 if (facesMessage != null) {
109                         // Abort here
110                         throw new ValidatorException(facesMessage);
111                 }
112         }
113 }