Files
alfresco-community-repo/source/java/org/alfresco/repo/activities/feed/EmailUserNotifier.java
Alan Davis 84841e063f Merged 5.2.N (5.2.1) to HEAD (5.2)
125788 rmunteanu: Merged 5.1.N (5.1.2) to 5.2.N (5.2.1)
      125606 rmunteanu: Merged 5.1.1 (5.1.1) to 5.1.N (5.1.2)
         125515 slanglois: MNT-16155 Update source headers - add new Copyrights for Java and JSP source files + automatic check in the build


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@127810 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
2016-06-03 17:08:06 +00:00

191 lines
6.4 KiB
Java

/*
* #%L
* Alfresco Repository
* %%
* Copyright (C) 2005 - 2016 Alfresco Software Limited
* %%
* This file is part of the Alfresco software.
* If the software was purchased under a paid Alfresco license, the terms of
* the paid license agreement will prevail. Otherwise, the software is
* provided under the following open source license terms:
*
* Alfresco is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Alfresco is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
* #L%
*/
package org.alfresco.repo.activities.feed;
import java.io.Serializable;
import java.util.List;
import java.util.Map;
import org.alfresco.model.ContentModel;
import org.alfresco.repo.action.executer.MailActionExecuter;
import org.alfresco.repo.security.authentication.AuthenticationContext;
import org.alfresco.service.cmr.action.Action;
import org.alfresco.service.cmr.action.ActionService;
import org.alfresco.service.cmr.repository.NodeRef;
import org.alfresco.service.namespace.QName;
import org.alfresco.util.ParameterCheck;
import org.alfresco.util.PropertyCheck;
import org.apache.commons.logging.Log;
import org.springframework.beans.factory.InitializingBean;
/**
* Notifies the given user by sending activity feed information to their registered email address.
*
* @since 4.0
*/
public class EmailUserNotifier extends AbstractUserNotifier implements InitializingBean
{
private List<String> excludedEmailSuffixes;
private AuthenticationContext authenticationContext;
private ActionService actionService;
public void setAuthenticationContext(AuthenticationContext authenticationContext)
{
this.authenticationContext = authenticationContext;
}
public void setActionService(ActionService actionService)
{
this.actionService = actionService;
}
public static Log getLogger()
{
return logger;
}
public static void setLogger(Log logger)
{
EmailUserNotifier.logger = logger;
}
public List<String> getExcludedEmailSuffixes()
{
return excludedEmailSuffixes;
}
public void setExcludedEmailSuffixes(List<String> excludedEmailSuffixes)
{
this.excludedEmailSuffixes = excludedEmailSuffixes;
}
/**
* Perform basic checks to ensure that the necessary dependencies were injected.
*/
protected void checkProperties()
{
super.checkProperties();
PropertyCheck.mandatory(this, "authenticationContext", authenticationContext);
PropertyCheck.mandatory(this, "actionService", actionService);
}
/*
* (non-Javadoc)
* @see org.springframework.beans.factory.InitializingBean#afterPropertiesSet()
*/
public void afterPropertiesSet() throws Exception
{
checkProperties();
}
protected boolean skipUser(NodeRef personNodeRef)
{
Map<QName, Serializable> personProps = nodeService.getProperties(personNodeRef);
String feedUserId = (String)personProps.get(ContentModel.PROP_USERNAME);
String emailAddress = (String)personProps.get(ContentModel.PROP_EMAIL);
Boolean emailFeedDisabled = (Boolean)personProps.get(ContentModel.PROP_EMAIL_FEED_DISABLED);
if ((emailFeedDisabled != null) && (emailFeedDisabled == true))
{
return true;
}
if (authenticationContext.isSystemUserName(feedUserId) || authenticationContext.isGuestUserName(feedUserId))
{
// skip "guest" or "System" user
return true;
}
if ((emailAddress == null) || (emailAddress.length() <= 0))
{
// skip user that does not have an email address
if (logger.isDebugEnabled())
{
logger.debug("Skip for '"+feedUserId+"' since they have no email address set");
}
return true;
}
String lowerEmailAddress = emailAddress.toLowerCase();
for (String excludedEmailSuffix : excludedEmailSuffixes)
{
if (lowerEmailAddress.endsWith(excludedEmailSuffix.toLowerCase()))
{
// skip user whose email matches exclude suffix
if (logger.isDebugEnabled())
{
logger.debug("Skip for '"+feedUserId+"' since email address is excluded ("+emailAddress+")");
}
return true;
}
}
return false;
}
protected Long getFeedId(NodeRef personNodeRef)
{
Map<QName, Serializable> personProps = nodeService.getProperties(personNodeRef);
// where did we get up to ?
Long emailFeedDBID = (Long)personProps.get(ContentModel.PROP_EMAIL_FEED_ID);
if (emailFeedDBID != null)
{
// increment min feed id
emailFeedDBID++;
}
else
{
emailFeedDBID = -1L;
}
return emailFeedDBID;
}
protected void notifyUser(NodeRef personNodeRef, String subjectText, Object[] subjectParams, Map<String, Object> model, String templateNodeRef)
{
ParameterCheck.mandatory("personNodeRef", personNodeRef);
Map<QName, Serializable> personProps = nodeService.getProperties(personNodeRef);
String emailAddress = (String)personProps.get(ContentModel.PROP_EMAIL);
Action mail = actionService.createAction(MailActionExecuter.NAME);
mail.setParameterValue(MailActionExecuter.PARAM_TO, emailAddress);
mail.setParameterValue(MailActionExecuter.PARAM_SUBJECT, subjectText);
mail.setParameterValue(MailActionExecuter.PARAM_SUBJECT_PARAMS, subjectParams);
//mail.setParameterValue(MailActionExecuter.PARAM_TEXT, buildMailText(emailTemplateRef, model));
mail.setParameterValue(MailActionExecuter.PARAM_TEMPLATE, templateNodeRef);
mail.setParameterValue(MailActionExecuter.PARAM_TEMPLATE_MODEL, (Serializable)model);
actionService.executeAction(mail, null);
}
}