package org.sakaiproject.sitemanage.impl; import java.io.IOException; import java.io.InputStream; import java.net.MalformedURLException; import java.util.ArrayList; import java.util.Date; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.Locale; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.jdom.Document; import org.jdom.Element; import org.jdom.JDOMException; import org.jdom.input.SAXBuilder; import org.sakaiproject.component.api.ServerConfigurationService; import org.sakaiproject.email.api.EmailService; import org.sakaiproject.emailtemplateservice.model.EmailTemplate; import org.sakaiproject.emailtemplateservice.model.RenderedTemplate; import org.sakaiproject.emailtemplateservice.service.EmailTemplateService; import org.sakaiproject.sitemanage.api.UserNotificationProvider; import org.sakaiproject.tool.api.Session; import org.sakaiproject.tool.api.SessionManager; import org.sakaiproject.user.api.User; import org.sakaiproject.user.api.UserDirectoryService; public class ETSUserNotificationProviderImpl implements UserNotificationProvider { private static Log M_log = LogFactory.getLog(ETSUserNotificationProviderImpl.class); private static String NOTIFY_ADDED_PARTICIPANT ="sitemange.notifyAddedParticipant"; private static String NOTIFY_NEW_USER ="sitemanage.notifyNewUserEmail"; private static final String ADMIN = "admin"; private EmailService emailService; public void setEmailService(EmailService es) { emailService = es; } private ServerConfigurationService serverConfigurationService; public void setServerConfigurationService(ServerConfigurationService scs) { serverConfigurationService = scs; } private UserDirectoryService userDirectoryService; public void setUserDirectoryService(UserDirectoryService uds) { userDirectoryService = uds; } private EmailTemplateService emailTemplateService; public void setEmailTemplateService(EmailTemplateService ets) { emailTemplateService = ets; } private SessionManager sessionManager; public void setSessionManager(SessionManager s) { this.sessionManager = s; } public void init() { //nothing realy to do M_log.info("init()"); //do we need to load data? Map<String, String> replacementValues = new HashMap<String, String>(); // put placeholders for replacement values replacementValues.put("userName", ""); replacementValues.put("userEid", ""); replacementValues.put("localSakaiName", ""); replacementValues.put("currentUserName", ""); replacementValues.put("currentUserDisplayName", ""); replacementValues.put("localSakaiURL", ""); replacementValues.put("siteName", ""); replacementValues.put("productionSiteName", ""); replacementValues.put("newNonOfficialAccount", "false"); replacementValues.put("newPassword", ""); replacementValues.put("productionSiteName", ""); loadAddedParticipantMail(); loadNewUserMail(); } public void notifyAddedParticipant(boolean newNonOfficialAccount, User user, String siteTitle) { String from = serverConfigurationService.getBoolean(NOTIFY_FROM_CURRENT_USER, false)? getCurrentUserEmailAddress():getSetupRequestEmailAddress(); //we need to get the template if (from != null) { String productionSiteName = serverConfigurationService.getString( "ui.service", ""); String emailId = user.getEmail(); String to = emailId; String headerTo = emailId; String replyTo = emailId; Map<String, String> rv = new HashMap<String, String>(); rv.put("productionSiteName", productionSiteName); String content = ""; /* * $userName * $localSakaiName * $currentUserName * $localSakaiUrl */ Map<String, String> replacementValues = new HashMap<String, String>(); replacementValues.put("userName", user.getDisplayName()); replacementValues.put("userEid", user.getEid()); replacementValues.put("localSakaiName",serverConfigurationService.getString( "ui.service", "")); replacementValues.put("currentUserName",userDirectoryService.getCurrentUser().getDisplayName()); replacementValues.put("localSakaiUrl", serverConfigurationService.getPortalUrl()); String nonOfficialAccountUrl = serverConfigurationService.getString("nonOfficialAccount.url", null); replacementValues.put("hasNonOfficialAccountUrl", nonOfficialAccountUrl!=null?Boolean.TRUE.toString().toLowerCase():Boolean.FALSE.toString().toLowerCase()); replacementValues.put("nonOfficialAccountUrl",nonOfficialAccountUrl); replacementValues.put("siteName", siteTitle); replacementValues.put("productionSiteName", productionSiteName); replacementValues.put("newNonOfficialAccount", Boolean.valueOf(newNonOfficialAccount).toString().toLowerCase()); M_log.debug("getting template: sitemange.notifyAddedParticipant"); RenderedTemplate template = null; try { template = emailTemplateService.getRenderedTemplateForUser(NOTIFY_ADDED_PARTICIPANT, user.getReference(), replacementValues); if (template == null) return; } catch (Exception e) { e.printStackTrace(); return; } List<String> headers = new ArrayList<String>(); headers.add("Precedence: bulk"); content = template.getRenderedMessage(); emailService.send(from, to, template.getRenderedSubject(), content, headerTo, replyTo, headers); } // if } public void notifyNewUserEmail(User user, String newUserPassword, String siteTitle) { String from = getSetupRequestEmailAddress(); String productionSiteName = serverConfigurationService.getString( "ui.service", ""); String newUserEmail = user.getEmail(); String to = newUserEmail; String headerTo = newUserEmail; String replyTo = newUserEmail; String content = ""; if (from != null && newUserEmail != null) { /* * $userName * $localSakaiName * $currentUserName * $localSakaiUrl */ Map<String, String> replacementValues = new HashMap<String, String>(); replacementValues.put("userName", user.getDisplayName()); replacementValues.put("localSakaiName",serverConfigurationService.getString( "ui.service", "")); replacementValues.put("currentUserName",userDirectoryService.getCurrentUser().getDisplayName()); replacementValues.put("userEid", user.getEid()); replacementValues.put("localSakaiUrl", serverConfigurationService.getPortalUrl()); replacementValues.put("newPassword",newUserPassword); replacementValues.put("siteName", siteTitle); replacementValues.put("productionSiteName", productionSiteName); RenderedTemplate template = emailTemplateService.getRenderedTemplateForUser(NOTIFY_NEW_USER, user.getReference(), replacementValues); if (template == null) return; content = template.getRenderedMessage(); String message_subject = template.getRenderedSubject(); List<String> headers = new ArrayList<String>(); headers.add("Precedence: bulk"); emailService.send(from, to, message_subject, content, headerTo, replyTo, headers); } } /* * Private methods */ private String getSetupRequestEmailAddress() { String from = serverConfigurationService.getString("setup.request", null); if (from == null) { M_log.warn(this + " - no 'setup.request' in configuration"); from = "postmaster@".concat(serverConfigurationService .getServerName()); } return from; } @SuppressWarnings("unchecked") private void loadAddedParticipantMail() { //we need a user session to avoid potential NPE's Session sakaiSession = sessionManager.getCurrentSession(); try { sakaiSession.setUserId(ADMIN); sakaiSession.setUserEid(ADMIN); InputStream in = ETSUserNotificationProviderImpl.class.getClassLoader().getResourceAsStream("notifyAddedParticipants.xml"); Document document = new SAXBuilder( ).build(in); List<Element> it = document.getRootElement().getChildren("emailTemplate"); for (int i =0; i < it.size(); i++) { Element xmlTemplate = (Element)it.get(i); xmlToTemplate(xmlTemplate, NOTIFY_ADDED_PARTICIPANT); } } catch (MalformedURLException e) { // TODO Auto-generated catch block e.printStackTrace(); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } catch (JDOMException e) { // TODO Auto-generated catch block e.printStackTrace(); } finally { sakaiSession.setUserId(null); sakaiSession.setUserEid(null); } } @SuppressWarnings("unchecked") private void loadNewUserMail() { try { //we need a user session to avoind potential NPE's Session sakaiSession = sessionManager.getCurrentSession(); sakaiSession.setUserId(ADMIN); sakaiSession.setUserEid(ADMIN); InputStream in = ETSUserNotificationProviderImpl.class.getClassLoader().getResourceAsStream("notifyNewuser.xml"); Document document = new SAXBuilder( ).build(in); List<Element> it = document.getRootElement().getChildren("emailTemplate"); for (int i =0; i < it.size(); i++) { Element xmlTemplate = (Element)it.get(i); xmlToTemplate(xmlTemplate, NOTIFY_NEW_USER); } sakaiSession.setUserId(null); sakaiSession.setUserEid(null); } catch (MalformedURLException e) { // TODO Auto-generated catch block e.printStackTrace(); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } catch (JDOMException e) { // TODO Auto-generated catch block e.printStackTrace(); } } private void xmlToTemplate(Element xmlTemplate, String key) { String subject = xmlTemplate.getChildText("subject"); String body = xmlTemplate.getChildText("message"); String locale = xmlTemplate.getChildText("locale"); String versionString = xmlTemplate.getChildText("version"); if (!emailTemplateService.templateExists(key, new Locale(locale))) { EmailTemplate template = new EmailTemplate(); template.setSubject(subject); template.setMessage(body); template.setLocale(locale); template.setKey(key); template.setVersion(Integer.valueOf(1));//setVersion(versionString != null ? Integer.valueOf(versionString) : Integer.valueOf(0)); // set version template.setOwner("admin"); template.setLastModified(new Date()); this.emailTemplateService.saveTemplate(template); M_log.info(this + " user notification tempalte " + key + " added"); } else { EmailTemplate existingTemplate = this.emailTemplateService.getEmailTemplate(key, new Locale(locale)); String oVersionString = existingTemplate.getVersion() != null ? existingTemplate.getVersion().toString():null; if ((oVersionString == null && versionString != null) || (oVersionString != null && versionString != null && !oVersionString.equals(versionString))) { existingTemplate.setSubject(subject); existingTemplate.setMessage(body); existingTemplate.setLocale(locale); existingTemplate.setKey(key); existingTemplate.setVersion(versionString != null ? Integer.valueOf(versionString) : Integer.valueOf(0)); // set version existingTemplate.setOwner("admin"); existingTemplate.setLastModified(new Date()); this.emailTemplateService.updateTemplate(existingTemplate); M_log.info(this + " user notification tempalte " + key + " updated to newer version"); } } } private String getCurrentUserEmailAddress() { User currentUser = userDirectoryService.getCurrentUser(); String email = currentUser != null ? currentUser.getEmail():null; if (email == null || email.length() == 0) { email = getSetupRequestEmailAddress(); } return email; } }