]> git.mxchange.org Git - jfinancials-war.git/blob - src/java/org/mxchange/jfinancials/validator/generic_product/FinancialsGenericProductValidator.java
Product-only:
[jfinancials-war.git] / src / java / org / mxchange / jfinancials / validator / generic_product / FinancialsGenericProductValidator.java
1 /*
2  * Copyright (C) 2017 - 2022 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 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.jfinancials.validator.generic_product;
18
19 import java.text.MessageFormat;
20 import javax.enterprise.inject.spi.CDI;
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 import org.mxchange.jfinancials.beans.generic_product.list.FinancialsProductListWebViewBean;
28 import org.mxchange.jfinancials.beans.generic_product.list.FinancialsProductListWebViewController;
29
30 /**
31  * A validator for generic products, will fail when product i18n key is already
32  * used.
33  * <p>
34  * @author Roland Häder<roland@mxchange.org>
35  */
36 @FacesValidator (value = "GenericProductValidator")
37 public class FinancialsGenericProductValidator extends BaseStringValidator {
38
39         /**
40          * Backing bean for product categories
41          */
42         private static FinancialsProductListWebViewController PRODUCT_LIST_CONTROLLER;
43
44         /**
45          * Serial number
46          */
47         private static final long serialVersionUID = 1_086_256_763_716_450L;
48
49         /**
50          * Whether bypass duplicate i18n key check
51          */
52         private Boolean bypassDuplicateI18nKey;
53
54         /**
55          * Default constructor
56          */
57         public FinancialsGenericProductValidator () {
58                 // Set allowEmpty to FALSE by default
59                 this.bypassDuplicateI18nKey = Boolean.FALSE;
60         }
61
62         /**
63          * Setter for bypassDuplicateI18nKey flag
64          * <p>
65          * @param bypassDuplicateI18nKey Whether to bypass i18n key duplicate-check
66          */
67         public void setBypassDuplicateI18nKey (final Boolean bypassDuplicateI18nKey) {
68                 this.bypassDuplicateI18nKey = bypassDuplicateI18nKey;
69         }
70
71         @Override
72         public void validate (final FacesContext context, final UIComponent component, final Object productI18nKey) throws ValidatorException {
73                 // The required field
74                 final String[] requiredFields = {"productI18nKey"}; //NOI18N
75
76                 // Pre-validate it
77                 super.preValidate(context, component, productI18nKey, requiredFields, Boolean.FALSE);
78
79                 // Is the instance there?
80                 if (null == PRODUCT_LIST_CONTROLLER) {
81                         // Then get it from CDI
82                         PRODUCT_LIST_CONTROLLER = CDI.current().select(FinancialsProductListWebViewBean.class).get();
83                 }
84
85                 // Check, if the name has already been used
86                 if (!this.bypassDuplicateI18nKey && PRODUCT_LIST_CONTROLLER.isProductI18nKeyAdded((String) productI18nKey)) {
87                         // Create message
88                         final String message = MessageFormat.format("I18n key {0} is already used. Please type an other.", productI18nKey);
89
90                         // Throw exception
91                         throw new ValidatorException(new FacesMessage(FacesMessage.SEVERITY_WARN, message, message));
92                 }
93         }
94
95 }