]> git.mxchange.org Git - pizzaservice-ejb.git/blobdiff - src/java/org/mxchange/jusercore/model/register/PizzaUserRegistrationSessionBean.java
opps, use addedUser for having the id number available
[pizzaservice-ejb.git] / src / java / org / mxchange / jusercore / model / register / PizzaUserRegistrationSessionBean.java
index 78c37ef90171e346c6104b0cfa62a3a6c5be4614..bad0d8ece8bb0836befb4d80a29503f206259e35 100644 (file)
@@ -18,7 +18,11 @@ package org.mxchange.jusercore.model.register;
 
 import java.text.MessageFormat;
 import javax.ejb.EJB;
+import javax.ejb.EJBException;
 import javax.ejb.Stateless;
+import javax.mail.Address;
+import javax.mail.internet.AddressException;
+import javax.mail.internet.InternetAddress;
 import javax.persistence.NoResultException;
 import javax.persistence.Query;
 import org.mxchange.jcontacts.contact.Contact;
@@ -140,6 +144,15 @@ public class PizzaUserRegistrationSessionBean extends BasePizzaDatabaseBean impl
                if (null == user) {
                        // Abort here
                        throw new NullPointerException("user is null"); //NOI18N
+               } else if (user.getUserContact() == null) {
+                       // Throw NPE again
+                       throw new NullPointerException("user.userContact is null"); //NOI18N
+               } else if (user.getUserContact().getContactEmailAddress() == null) {
+                       // Throw NPE again
+                       throw new NullPointerException("user.userContact.contactEmailAddress is null"); //NOI18N
+               } else if (user.getUserContact().getContactEmailAddress().isEmpty()) {
+                       // Is empty
+                       throw new IllegalArgumentException("user.userContact.contactEmailAddress is empty"); //NOI18N
                }
 
                // Check if user is registered
@@ -154,7 +167,20 @@ public class PizzaUserRegistrationSessionBean extends BasePizzaDatabaseBean impl
                // Call other EJB
                User addedUser = this.userBean.addUser(user);
 
-               // Create email
+               // Init variable
+               Address emailAddress;
+
+               try {
+                       // Create email address and set
+                       emailAddress = new InternetAddress(addedUser.getUserContact().getContactEmailAddress());
+               } catch (final AddressException ex) {
+                       // Throw again
+                       throw new EJBException(ex);
+               }
+
+               // Send email
+               // TODO: Internationlize the subject line somehow
+               this.sendEmail("Registration", "registration", emailAddress, addedUser); //NOI18N
 
                // Trace message
                this.getLoggerBeanLocal().logTrace(MessageFormat.format("registerUser: addedUser={0},addedUser.userId={1} - EXIT!", addedUser, addedUser.getUserId())); //NOI18N