]> git.mxchange.org Git - pizzaservice-war.git/blob - src/java/org/mxchange/pizzaapplication/converter/contact/PizzaContactConverter.java
Please cherry-pick:
[pizzaservice-war.git] / src / java / org / mxchange / pizzaapplication / converter / contact / PizzaContactConverter.java
1 /*
2  * Copyright (C) 2016 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.converter.contact;
18
19 import java.text.MessageFormat;
20 import javax.faces.component.UIComponent;
21 import javax.faces.context.FacesContext;
22 import javax.faces.convert.Converter;
23 import javax.faces.convert.ConverterException;
24 import javax.faces.convert.FacesConverter;
25 import javax.naming.Context;
26 import javax.naming.InitialContext;
27 import javax.naming.NamingException;
28 import org.mxchange.jcontacts.contact.Contact;
29 import org.mxchange.jcontacts.contact.ContactSessionBeanRemote;
30 import org.mxchange.jcontacts.exceptions.ContactNotFoundException;
31
32 /**
33  * Converter for contact id <-> valid contact instance
34  * <p>
35  * @author Roland Häder<roland@mxchange.org>
36  */
37 @FacesConverter (value = "ContactConverter")
38 public class PizzaContactConverter implements Converter {
39
40         /**
41          * User EJB
42          */
43         private ContactSessionBeanRemote contactBean;
44
45         /**
46          * Initialization of this converter
47          */
48         public PizzaContactConverter () {
49                 // Try to get it
50                 try {
51                         // Get initial context
52                         Context context = new InitialContext();
53
54                         // ... and user controller
55                         this.contactBean = (ContactSessionBeanRemote) context.lookup("java:global/pizzaservice-ejb/contact!org.mxchange.jcontacts.contact.ContactSessionBeanRemote"); //NOI18N
56                 } catch (final NamingException ex) {
57                         // Continue to throw it
58                         throw new ConverterException(MessageFormat.format("context.lookup() failed: {0}", ex.getMessage()), ex); //NOI18N
59                 }
60         }
61
62         @Override
63         public Object getAsObject (final FacesContext context, final UIComponent component, final String submittedValue) {
64                 // Is the value null or empty?
65                 if ((null == submittedValue) || (submittedValue.trim().isEmpty())) {
66                         // Warning message
67                         // @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
68
69                         // Return null
70                         return null;
71                 }
72
73                 // Init instance
74                 Contact contact = null;
75
76                 try {
77                         // Try to parse the value as long
78                         Long contactId = Long.valueOf(submittedValue);
79
80                         // Try to get user instance from it
81                         contact = this.contactBean.findContactById(contactId);
82                 } catch (final NumberFormatException ex) {
83                         // Throw again
84                         throw new ConverterException(ex);
85                 } catch (final ContactNotFoundException ex) {
86                         // Debug message
87                         // @TODO Not working with JNDI (no remote interface) this.loggerBeanLocal.logDebug(MessageFormat.format("{0}.getAsObject(): Exception: {1} - Returning null ...", this.getClass().getSimpleName(), ex)); //NOI18N
88                 }
89
90                 // Return it
91                 return contact;
92         }
93
94         @Override
95         public String getAsString (final FacesContext context, final UIComponent component, final Object value) {
96                 // Is the object null?
97                 if ((null == value) || ((String.valueOf(value)).isEmpty())) {
98                         // Is null
99                         return ""; //NOI18N
100                 } else if (!(value instanceof Contact)) {
101                         // Not same interface
102                         throw new IllegalArgumentException(MessageFormat.format("value {0} does not implement Contact.", value)); //NOI18N
103                 }
104
105                 // Return category id
106                 return String.valueOf(((Contact) value).getContactId());
107         }
108
109 }