]> git.mxchange.org Git - pizzaservice-war.git/blob - src/java/org/mxchange/pizzaapplication/validator/url/PizzaUrlValidator.java
Please cherry-pick:
[pizzaservice-war.git] / src / java / org / mxchange / pizzaapplication / validator / url / PizzaUrlValidator.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 Affero General Public License as
6  * published by the Free Software Foundation, either version 3 of the
7  * License, or (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 Affero General Public License for more details.
13  *
14  * You should have received a copy of the GNU Affero General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17 package org.mxchange.pizzaapplication.validator.url;
18
19 import java.text.MessageFormat;
20 import java.util.regex.Pattern;
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.string.BaseStringValidator;
27
28 /**
29  * A validator for URL vallidation (only regex, but allow empty value if
30  * allowed).
31  * <p>
32  * @author Roland Häder<roland@mxchange.org>
33  */
34 @FacesValidator ("UrlValidator")
35 public class PizzaUrlValidator extends BaseStringValidator {
36
37         /**
38          * Pattern matcher
39          */
40         private static final Pattern PATTERN_MATCHER = Pattern.compile(PizzaUrlValidator.URL_REGEX);
41
42         /**
43          * Email pattern
44          */
45         private static final String URL_REGEX = "(http|https):\\/\\/[\\w\\-_]+(\\.[\\w\\-_]+)+([\\w\\-\\.,@?^=%&amp;:/~\\+#]*[\\w\\-\\@?^=%&amp;/~\\+#])?"; //NOI18N
46
47         /**
48          * Serial number
49          */
50         private static final long serialVersionUID = 187_536_745_607_193L;
51
52         /**
53          * Default constructor
54          */
55         public PizzaUrlValidator () {
56         }
57
58         @Override
59         public void validate (final FacesContext context, final UIComponent component, final Object value) throws ValidatorException {
60                 // The required field
61                 String[] requiredFields = {"companyWebsiteUrl"}; //NOI18N
62
63                 // Default is to reject empty email address fields
64                 Boolean allowEmptyValue = Boolean.FALSE;
65
66                 // Is attribute "allowEmptyValue" set?
67                 if (component.getAttributes().containsKey("allowEmptyValue")) { //NOI18N
68                         // Get attribute
69                         Object attribute = component.getAttributes().get("allowEmptyValue"); //NOI18N
70
71                         // Make sure, it is Boolean as no String is accepted anymore
72                         if (!(attribute instanceof String)) {
73                                 // Not valid attribute, please use "true" or "false" (default)
74                                 throw new IllegalArgumentException("allowEmptyValue must be of type String. Please use \"true\" or \"false\" for f:attribute value."); //NOI18N
75                         }
76
77                         // Securely cast it
78                         allowEmptyValue = Boolean.parseBoolean((String) attribute);
79                 }
80
81                 // Pre-validation (example: not null, not a string, empty string ...)
82                 super.preValidate(context, component, value, requiredFields, allowEmptyValue);
83
84                 // Is the email address empty and allowed?
85                 if (null == value && allowEmptyValue) {
86                         // Then accept this here
87                         return;
88                 } else if (null == value) {
89                         // Abort here
90                         throw new ValidatorException(new FacesMessage("No empty URL allowed.")); //NOI18N
91                 }
92
93                 // Get string from object ... ;-)
94                 String url = String.valueOf(value).trim();
95
96                 // Checks if the email address matches a regex ("low-level" check)
97                 // @TODO Should also be done by <f:validatorRegex />)
98                 boolean matches = PATTERN_MATCHER.matcher(url).matches(); //NOI18N
99
100                 // Is the email address valid?
101                 if (!matches) {
102                         // Generate message
103                         String message = MessageFormat.format("URL {0} does not match regular expression.", url); //NOI18N
104
105                         // Not matching
106                         throw new ValidatorException(new FacesMessage(FacesMessage.SEVERITY_WARN, message, message));
107                 }
108         }
109
110 }