]> git.mxchange.org Git - pizzaservice-ejb.git/commitdiff
Continued a bit:
authorRoland Häder <roland@mxchange.org>
Wed, 18 May 2016 07:50:46 +0000 (09:50 +0200)
committerRoland Haeder <roland@mxchange.org>
Fri, 20 May 2016 21:17:45 +0000 (23:17 +0200)
- added sending out registration email
- added internal TODO

src/java/org/mxchange/jusercore/model/register/PizzaUserRegistrationSessionBean.java
src/java/org/mxchange/pizzaapplication/beans/resendlink/PizzaResendLinkSessionBean.java

index 78c37ef90171e346c6104b0cfa62a3a6c5be4614..eb40ed70cb7e2abaf6b3505e116b62e284a44a3c 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(user.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, user); //NOI18N
 
                // Trace message
                this.getLoggerBeanLocal().logTrace(MessageFormat.format("registerUser: addedUser={0},addedUser.userId={1} - EXIT!", addedUser, addedUser.getUserId())); //NOI18N
index d1fbc0c2eb5b61b09842ae2e8753bd31b8d50ba7..2b958268bf5556246945b507cf1143cd4419c4d5 100644 (file)
@@ -81,6 +81,7 @@ public class PizzaResendLinkSessionBean extends BasePizzaDatabaseBean implements
                }
 
                // Send email
+               // TODO: Internationlize the subject line somehow
                this.sendEmail("Resend confirmation link", "resend_confirmation_link", emailAddress, user); //NOI18N
 
                // Log trace message