]> git.mxchange.org Git - jcore-utils.git/blob - src/org/mxchange/jsfcore/validator/BaseObjectValidator.java
Some changes for internationalization + jcore.jar updated
[jcore-utils.git] / src / org / mxchange / jsfcore / validator / BaseObjectValidator.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.jsfcore.validator;
18
19 import java.text.MessageFormat;
20 import java.util.Arrays;
21 import java.util.ResourceBundle;
22 import javax.faces.application.FacesMessage;
23 import javax.faces.component.UIComponent;
24 import javax.faces.context.FacesContext;
25 import javax.faces.validator.Validator;
26 import javax.faces.validator.ValidatorException;
27 import org.mxchange.jcore.BaseFrameworkSystem;
28 import org.mxchange.jcore.FrameworkInterface;
29
30 /**
31  * A general object validation class. Please implement javax.faces.validator.Validator
32  * (with import line!) and call preValidate(). You also may want to try out some
33  * other BaseFooValidator classes before directly inheriting from this class.
34  *
35  * @author Roland Haeder
36  */
37 public abstract class BaseObjectValidator extends BaseFrameworkSystem implements FrameworkInterface, Validator {
38
39         /**
40          * Needs to be implemented as the Validator interface needs to be implemented.
41          *
42          * @param context
43          * @param component
44          * @param value
45          * @throws ValidatorException 
46          */
47         @Override
48         abstract public void validate (final FacesContext context, final UIComponent component, final Object value) throws ValidatorException;
49
50         /**
51          * Initializes resource bundle
52          *
53          * @param FacesContext instance
54          */
55         private void initResourceBundle (final FacesContext context) {
56                 // Is it set?
57                 if (null == this.getBundle()) {
58                         // Set it now
59                         setBundle(ResourceBundle.getBundle("org.mxchange.localization.messages", context.getViewRoot().getLocale()));
60                 }
61         }
62
63         /**
64          * Pre-validation of value, e.g. not null
65          *
66          * @param context FacesContext instance
67          * @param component UIComponent instance
68          * @param value Value to check
69          * @param requiredFields Array of required field names (ending with)
70          * @throws ValidatorException If something more horrible went wrong
71          */
72         protected void preValidate (final FacesContext context, final UIComponent component, final Object value, final String[] requiredFields) throws ValidatorException {
73                 // Trace message
74                 this.getLogger().trace(MessageFormat.format("context={0},component={1},value={2},fields={3} - CALLED!", context, component, value, Arrays.toString(requiredFields))); //NOI18N
75
76                 // Set resource bundle
77                 this.initResourceBundle(context);
78
79                 // Init message and key
80                 FacesMessage facesMessage = null;
81                 String errKey = "error.unknown_id"; //NOI18N
82
83                 // Get client id
84                 String clientId = component.getClientId();
85
86                 // Default is no field is valid
87                 boolean isValidField = false;
88
89                 for (final String field : requiredFields) {
90                         // Get logger
91                         this.getLogger().debug(MessageFormat.format("field={0},clientId={1}", field, clientId)); //NOI18N
92
93                         // Is it the same?
94                         if (clientId.endsWith(field)) {
95                                 // Is valid field
96                                 isValidField = true;
97
98                                 // Is it null?
99                                 if (null == value) {
100                                         errKey = String.format("error.%s.is_null", field); //NOI18N
101
102                                         // Value it null
103                                         facesMessage = new FacesMessage(this.getMessageStringFromKey(errKey));
104
105                                         // Abort here?
106                                 }
107                         }
108                 }
109
110                 // Debug message
111                 this.getLogger().debug(MessageFormat.format("isValidField={0}", isValidField)); //NOI18N
112
113                 // Valid field?
114                 if (!isValidField) {
115                         // Invalid field
116                         facesMessage = new FacesMessage(MessageFormat.format(errKey, clientId));
117                 }
118
119                 // Debug message
120                 this.getLogger().debug(MessageFormat.format("facesMessage={0}", facesMessage)); //NOI18N
121
122                 // Is it not null?
123                 if (null != facesMessage) {
124                         throw new ValidatorException(facesMessage);
125                 }
126
127                 // Trace message
128                 this.getLogger().trace("EXIT!"); //NOI18N
129         }
130 }