/*
* Copyright (C) 2005-2010 Alfresco Software Limited.
*
* This file is part of Alfresco
*
* 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 .
*/
package org.alfresco.repo.activities.feed;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Set;
import org.alfresco.model.ContentModel;
import org.alfresco.repo.action.executer.MailActionExecuter;
import org.alfresco.repo.admin.SysAdminParams;
import org.alfresco.repo.dictionary.RepositoryLocation;
import org.alfresco.repo.domain.activities.ActivityFeedEntity;
import org.alfresco.repo.lock.JobLockService;
import org.alfresco.repo.lock.LockAcquisitionException;
import org.alfresco.repo.security.authentication.AuthenticationContext;
import org.alfresco.repo.transaction.RetryingTransactionHelper;
import org.alfresco.repo.transaction.RetryingTransactionHelper.RetryingTransactionCallback;
import org.alfresco.service.cmr.action.Action;
import org.alfresco.service.cmr.action.ActionService;
import org.alfresco.service.cmr.activities.ActivityService;
import org.alfresco.service.cmr.admin.RepoAdminService;
import org.alfresco.service.cmr.model.FileFolderService;
import org.alfresco.service.cmr.repository.InvalidNodeRefException;
import org.alfresco.service.cmr.repository.NodeRef;
import org.alfresco.service.cmr.repository.NodeService;
import org.alfresco.service.cmr.repository.StoreRef;
import org.alfresco.service.cmr.repository.TemplateService;
import org.alfresco.service.cmr.search.SearchService;
import org.alfresco.service.cmr.security.PersonService;
import org.alfresco.service.cmr.site.SiteInfo;
import org.alfresco.service.cmr.site.SiteService;
import org.alfresco.service.namespace.NamespaceException;
import org.alfresco.service.namespace.NamespaceService;
import org.alfresco.service.namespace.QName;
import org.alfresco.service.transaction.TransactionService;
import org.alfresco.util.ModelUtil;
import org.alfresco.util.Pair;
import org.alfresco.util.ParameterCheck;
import org.alfresco.util.PropertyCheck;
import org.alfresco.util.UrlUtil;
import org.alfresco.util.VmShutdownListener;
import org.alfresco.util.VmShutdownListener.VmShutdownException;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.json.JSONException;
import org.springframework.extensions.surf.util.I18NUtil;
/**
* Implementation of the Activity Feed Notifier component
*
* Note: currently implemented to email activities stored in JSON format
*
* @since 3.5
*/
public class FeedNotifierImpl implements FeedNotifier
{
private static Log logger = LogFactory.getLog(FeedNotifierImpl.class);
private static final QName LOCK_QNAME = QName.createQName(NamespaceService.SYSTEM_MODEL_1_0_URI, "ActivityFeedNotifier");
private static final long LOCK_TTL = 30000L;
private static ThreadLocal> lockThreadLocal = new ThreadLocal>();
private static VmShutdownListener vmShutdownListener = new VmShutdownListener(FeedNotifierImpl.class.getName());
private static final String MSG_EMAIL_SUBJECT = "activities.feed.notifier.email.subject";
private ActivityService activityService;
private PersonService personService;
private NodeService nodeService;
private FileFolderService fileFolderService;
private ActionService actionService;
private SearchService searchService;
private NamespaceService namespaceService;
private SiteService siteService;
private JobLockService jobLockService;
private TransactionService transactionService;
private AuthenticationContext authenticationContext;
private SysAdminParams sysAdminParams;
private RepoAdminService repoAdminService;
private List excludedEmailSuffixes;
private RepositoryLocation feedEmailTemplateLocation;
public void setActivityService(ActivityService activityService)
{
this.activityService = activityService;
}
public void setPersonService(PersonService personService)
{
this.personService = personService;
}
public void setNodeService(NodeService nodeService)
{
this.nodeService = nodeService;
}
public void setFileFolderService(FileFolderService fileFolderService)
{
this.fileFolderService = fileFolderService;
}
public void setActionService(ActionService actionService)
{
this.actionService = actionService;
}
public void setSearchService(SearchService searchService)
{
this.searchService = searchService;
}
public void setNamespaceService(NamespaceService namespaceService)
{
this.namespaceService = namespaceService;
}
public void setSiteService(SiteService siteService)
{
this.siteService = siteService;
}
public void setJobLockService(JobLockService jobLockService)
{
this.jobLockService = jobLockService;
}
public void setTransactionService(TransactionService transactionService)
{
this.transactionService = transactionService;
}
public void setAuthenticationContext(AuthenticationContext authenticationContext)
{
this.authenticationContext = authenticationContext;
}
public void setFeedEmailTemplateLocation(RepositoryLocation feedEmailTemplateLocation)
{
this.feedEmailTemplateLocation = feedEmailTemplateLocation;
}
public void setSysAdminParams(SysAdminParams sysAdminParams)
{
this.sysAdminParams = sysAdminParams;
}
public void setRepoAdminService(RepoAdminService repoAdminService)
{
this.repoAdminService = repoAdminService;
}
public void setExcludedEmailSuffixes(List excludedEmailSuffixes)
{
this.excludedEmailSuffixes = excludedEmailSuffixes;
}
/**
* Perform basic checks to ensure that the necessary dependencies were injected.
*/
private void checkProperties()
{
PropertyCheck.mandatory(this, "activityService", activityService);
PropertyCheck.mandatory(this, "personService", personService);
PropertyCheck.mandatory(this, "nodeService", nodeService);
PropertyCheck.mandatory(this, "fileFolderService", fileFolderService);
PropertyCheck.mandatory(this, "actionService", actionService);
PropertyCheck.mandatory(this, "searchService", searchService);
PropertyCheck.mandatory(this, "namespaceService", namespaceService);
PropertyCheck.mandatory(this, "siteService", siteService);
PropertyCheck.mandatory(this, "jobLockService", jobLockService);
PropertyCheck.mandatory(this, "transactionService", transactionService);
PropertyCheck.mandatory(this, "authenticationContext", authenticationContext);
PropertyCheck.mandatory(this, "sysAdminParams", sysAdminParams);
PropertyCheck.mandatory(this, "feedEmailTemplateLocation", feedEmailTemplateLocation);
}
public void execute(int repeatIntervalMins)
{
checkProperties();
// Bypass if the system is in read-only mode
if (transactionService.isReadOnly())
{
if (logger.isDebugEnabled())
{
logger.debug("Activities email notification bypassed; the system is read-only");
}
return;
}
try
{
if (logger.isTraceEnabled())
{
logger.trace("Activities email notification started");
}
refreshLock();
executeInternal(repeatIntervalMins);
// Done
if (logger.isTraceEnabled())
{
logger.trace("Activities email notification completed");
}
}
catch (LockAcquisitionException e)
{
// Job being done by another process
if (logger.isDebugEnabled())
{
logger.debug("Activities email notification already underway");
}
}
catch (VmShutdownException e)
{
// Aborted
if (logger.isDebugEnabled())
{
logger.debug("Activities email notification aborted");
}
}
finally
{
releaseLock();
}
}
private void executeInternal(final int repeatIntervalMins)
{
final NodeRef emailTemplateRef = getEmailTemplateRef();
if (emailTemplateRef == null)
{
return;
}
final String shareUrl = UrlUtil.getShareUrl(sysAdminParams);
if (logger.isDebugEnabled())
{
logger.debug("Share URL configured as: "+shareUrl);
}
int userCnt = 0;
int feedEntryCnt = 0;
long startTime = System.currentTimeMillis();
try
{
final String subjectText = buildSubjectText(startTime);
Set people = personService.getAllPeople();
// local cache for this execution
final Map siteNames = new HashMap(10);
for (final NodeRef personNodeRef : people)
{
refreshLock();
try
{
final RetryingTransactionHelper txHelper = transactionService.getRetryingTransactionHelper();
txHelper.setMaxRetries(0);
Pair result = txHelper.doInTransaction(new RetryingTransactionCallback>()
{
public Pair execute() throws Throwable
{
return prepareAndSendEmail(personNodeRef, emailTemplateRef, subjectText, siteNames, shareUrl, repeatIntervalMins);
}
}, true, true);
if (result != null)
{
int entryCnt = result.getFirst();
final long maxFeedId = result.getSecond();
transactionService.getRetryingTransactionHelper().doInTransaction(new RetryingTransactionCallback()
{
public Void execute() throws Throwable
{
Long currentMaxFeedId = (Long)nodeService.getProperty(personNodeRef, ContentModel.PROP_EMAIL_FEED_ID);
if ((currentMaxFeedId == null) || (currentMaxFeedId < maxFeedId))
{
nodeService.setProperty(personNodeRef, ContentModel.PROP_EMAIL_FEED_ID, maxFeedId);
}
return null;
}
}, false, true);
userCnt++;
feedEntryCnt += entryCnt;
}
}
catch (InvalidNodeRefException inre)
{
// skip this person - eg. no longer exists ?
logger.warn("Skip feed notification for user ("+personNodeRef+"): " + inre.getMessage());
}
}
}
catch (Throwable e)
{
// If the VM is shutting down, then ignore
if (vmShutdownListener.isVmShuttingDown())
{
// Ignore
}
else
{
logger.error("Exception during notification of feeds", e);
}
}
finally
{
// assume sends are synchronous - hence bump up to last max feed id
if (userCnt > 0)
{
if (logger.isInfoEnabled())
{
// TODO i18n of info message
StringBuilder sb = new StringBuilder();
sb.append("Notified ").append(userCnt).append(" user").append(userCnt != 1 ? "s" : "");
sb.append(" of ").append(feedEntryCnt).append(" activity feed entr").append(feedEntryCnt != 1 ? "ies" : "y");
sb.append(" (in ").append(System.currentTimeMillis()-startTime).append(" msecs)");
logger.info(sb.toString());
}
}
else
{
if (logger.isTraceEnabled())
{
logger.trace("Nothing to send since no new user activities found");
}
}
}
}
protected Pair prepareAndSendEmail(final NodeRef personNodeRef, NodeRef emailTemplateRef,
String subjectText, Map siteNames,
String shareUrl, int repeatIntervalMins)
{
Map 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 (skipUser(emailFeedDisabled, feedUserId, emailAddress, excludedEmailSuffixes))
{
// skip
return null;
}
// 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;
}
// own + others (note: template can be changed to filter out user's own activities if needed)
List feedEntries = activityService.getUserFeedEntries(feedUserId, FeedTaskProcessor.FEED_FORMAT_JSON, null, false, false, null, null, emailFeedDBID);
if (feedEntries.size() > 0)
{
long userMaxFeedId = -1L;
Map model = new HashMap();
List