订阅Liferay 6.2中的添加/更新/删除文件夹

时间:2015-01-03 11:36:58

标签: liferay liferay-6

您好我想在Liferay的文档和媒体portlet中为文件夹实现订阅功能

liferay提供的当前功能是这样的,如果您订阅任何文件夹/父文件夹,那么您将收到有关文件添加/更新的电子邮件,但不会收到文件夹的电子邮件。

因此,如果您将子文件夹添加到订阅的文件夹,您将无法收到任何电子邮件。

对此有任何帮助表示赞赏。

1 个答案:

答案 0 :(得分:0)

SubscriptionPermissionImpl中的hasPermission方法仅检查MBDiscussion,BlogsEntry,BookmarksEntry,DLFileEntry,JournalArticle,MBCategory,MBThread,WikiPage

的权限

检查以下 SubscriptionPermissionImpl.java

的方法
protected Boolean hasPermission(
            PermissionChecker permissionChecker, String className, long classPK,
            String actionId)
        throws PortalException, SystemException {...}

因此,当我们说subscriSender.flushNotificationsAsync()时,实现自定义解决方案时,它不会发送文件夹的电子邮件,因为hasPermisson返回false

由于Liferay不支持添加/更新/删除文件夹的电子邮件订阅,因此我们必须实施自己的解决方案。

以下是实现此功能的步骤。

1)为 addFolder updateFolder moveFolderToTrash 方法创建一个钩子并覆盖 DLAppService 。 在这里,我将展示如何为添加文件夹订阅,休息是相同的。

@Override
    public Folder addFolder(long repositoryId, long parentFolderId,
        String name, String description, ServiceContext serviceContext)
        throws PortalException, SystemException {

    Folder folder = null;

    folder =
        super
            .addFolder(
                repositoryId, parentFolderId, name, description,
                serviceContext);

    MySubscriptionUtil.notifySubscribersForFolders(
        folder, serviceContext, MyDLConstants.EVENT_TYPE_ADD);

    return folder;
}

2)此处 MySubcriptionUtil 是使用静态方法创建的实用程序类。

现在在 notifySubscribersForFolders 方法中,使用文件夹对象,然后通过设置所需数据创建 subscriptionSender 对象。 例如:

SubscriptionSender subscriptionSender = new SubscriptionSender();

subscriptionSender.setCompanyId(folder.getCompanyId());
subscriptionSender.setContextAttributes(
    "[$FOLDER_NAME$]", folder.getName(), "[$PARENT_FOLDER_NAME$]",
    parentFolderName, "[$SITE$]", group.getDescriptiveName());
subscriptionSender.setContextUserPrefix("FOLDER");
subscriptionSender.setFrom(fromAddress, fromName);
subscriptionSender.setHtmlFormat(true);
subscriptionSender.setBody(body);
subscriptionSender.setSubject(subject);
subscriptionSender.setMailId("folder", folder.getFolderId());
subscriptionSender.setPortletId(PortletKeys.DOCUMENT_LIBRARY);
subscriptionSender.setReplyToAddress(fromAddress);
subscriptionSender.setScopeGroupId(folder.getGroupId());
subscriptionSender.setServiceContext(serviceContext);
subscriptionSender.setUserId(folder.getUserId());

3)现在使用 addRuntimeSubscribers()代替 addPersistedSubscribers(),原因如上所述,即由于权限检查问题。 在此之前,使用Dynamic Query从订阅表中获取文件夹订阅。

    List<Long> folderIds //set this list with all parents folder ids of the folder

    // adding group id for parent folder
    /*
    * This is the default parent of any folder.
    * So if user is subscribed to home folder then 
    * he will have entry in subscription table with classPK as groupId
    */
    folderIds.add(folder.getGroupId());

    long classNameId = PortalUtil.getClassNameId(Folder.class.getName());

    DynamicQuery dynamicQuery =
        DynamicQueryFactoryUtil.forClass(Subscription.class);
    dynamicQuery.add(RestrictionsFactoryUtil.in("classPK", folderIds));
    dynamicQuery
        .add(RestrictionsFactoryUtil.eq("classNameId", classNameId));

    List<Subscription> subscriptionList =
        SubscriptionLocalServiceUtil.dynamicQuery(dynamicQuery);

    for(Subscription subscription : subscriptionList) {
        try {
            User user =
                UserLocalServiceUtil.getUser(subscription.getUserId());

            if(user.isActive()) {

                if(_log.isDebugEnabled()) {
                    _log.debug("User added to subscription list : "
                        + user.getEmailAddress());
                }

                /*
                * This is the key method call as this adds all the 
                *users to whom we need to send an email.
                */
                subscriptionSender.addRuntimeSubscribers(
                    user.getEmailAddress(), user.getFirstName()
                        + StringPool.SPACE + user.getLastName());
            }
        }
        catch(Exception e) {
            _log.error("Exception occured while fetching user @_notifySubscribersForFolders : "
                + e.getMessage());
        }
    }

    //This is the last call which will trigger the send email event
    subscriptionSender.flushNotificationsAsync();