]> git.mxchange.org Git - jjobs-war.git/blob - src/java/org/mxchange/jjobs/converter/mobileprovider/JobsMobileProviderConverter.java
713dc54c831167546947b8e4fd44f5193c1a4acc
[jjobs-war.git] / src / java / org / mxchange / jjobs / converter / mobileprovider / JobsMobileProviderConverter.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.jjobs.converter.mobileprovider;
18
19 import java.text.MessageFormat;
20 import java.util.List;
21 import java.util.Objects;
22 import javax.faces.component.UIComponent;
23 import javax.faces.context.FacesContext;
24 import javax.faces.convert.Converter;
25 import javax.faces.convert.ConverterException;
26 import javax.faces.convert.FacesConverter;
27 import javax.naming.Context;
28 import javax.naming.InitialContext;
29 import javax.naming.NamingException;
30 import org.mxchange.jphone.phonenumbers.mobileprovider.MobileProvider;
31 import org.mxchange.jphone.phonenumbers.mobileprovider.MobileProviderSingletonBeanRemote;
32
33 /**
34  * Converter for SMS provider
35  * <p>
36  * @author Roland Häder<roland@mxchange.org>
37  */
38 @FacesConverter (value = "MobileProviderConverter")
39 public class JobsMobileProviderConverter implements Converter {
40
41         /**
42          * Mobile provider bean
43          */
44         private MobileProviderSingletonBeanRemote mobileRemoteBean;
45
46         /**
47          * Initialization of this converter
48          */
49         public JobsMobileProviderConverter () {
50         }
51
52         @Override
53         public Object getAsObject (final FacesContext context, final UIComponent component, final String submittedValue) {
54                 // Is the value null or empty?
55                 if ((null == submittedValue) || (submittedValue.trim().isEmpty())) {
56                         // Warning message
57                         // @TODO Not working with JNDI (no remote interface) this.loggerBeanLocal.logWarning(MessageFormat.format("{0}.getAsObject(): submittedValue is null or empty - EXIT!", this.getClass().getSimpleName())); //NOI18N
58
59                         // Return null
60                         return null;
61                 }
62
63                 synchronized (this) {
64                         // Is the EJB instanciated?
65                         if (null == this.mobileRemoteBean) {
66                                 // Try to get it
67                                 try {
68                                         // Get initial context
69                                         Context initialContext = new InitialContext();
70
71                                         /// and mobile provider controller
72                                         this.mobileRemoteBean = (MobileProviderSingletonBeanRemote) initialContext.lookup("java:global/jjobs-ejb/mobileprovider!org.mxchange.jphone.phonenumbers.mobileprovider.MobileProviderSingletonBeanRemote"); //NOI18N
73                                 } catch (final NamingException ex) {
74                                         // Continue to throw it
75                                         throw new ConverterException(MessageFormat.format("initialContext.lookup() failed: {0}", ex.getMessage()), ex); //NOI18N
76                                 }
77                         }
78                 }
79
80                 // Get full list
81                 List<MobileProvider> providerList = this.mobileRemoteBean.allMobileProvider();
82
83                 // Init value
84                 MobileProvider provider = null;
85
86                 // Try this better
87                 try {
88                         // Convert it to long
89                         Long providerId = Long.parseLong(submittedValue);
90
91                         // Category id should not be below 1
92                         assert (providerId > 0) : "providerId is smaller than one: " + providerId; //NOI18N
93
94                         // Try to find it
95                         for (final MobileProvider prov : providerList) {
96                                 // Is the id the same? (null-safe)
97                                 if (Objects.equals(prov.getProviderId(), providerId)) {
98                                         // Found it
99                                         provider = prov;
100                                         break;
101                                 }
102                         }
103                 } catch (final NumberFormatException ex) {
104                         // Log exception (maybe to much?)
105                         // @TODO Not working with JNDI (no remote interface) this.loggerBeanLocal.logException(ex);
106                 }
107
108                 // Return it
109                 return provider;
110         }
111
112         @Override
113         public String getAsString (final FacesContext context, final UIComponent component, final Object value) {
114                 // Is the object null?
115                 if ((null == value) || ((String.valueOf(value)).isEmpty())) {
116                         // Is null
117                         return ""; //NOI18N
118                 } else if (!(value instanceof MobileProvider)) {
119                         // Not same interface
120                         throw new IllegalArgumentException(MessageFormat.format("value {0} does not implement MobileProvider.", value)); //NOI18N
121                 }
122
123                 // Return category id
124                 return String.valueOf(((MobileProvider) value).getProviderId());
125         }
126
127 }