com.liferay.journal.web.internal.notifications.JournalUserNotificationHandler Maven / Gradle / Ivy
/**
* Copyright (c) 2000-present Liferay, Inc. All rights reserved.
*
* This library 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 2.1 of the License, or (at your option)
* any later version.
*
* This library 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.
*/
package com.liferay.journal.web.internal.notifications;
import com.liferay.asset.kernel.model.AssetRenderer;
import com.liferay.journal.constants.JournalArticleConstants;
import com.liferay.journal.constants.JournalPortletKeys;
import com.liferay.journal.model.JournalArticle;
import com.liferay.journal.web.internal.asset.model.JournalArticleAssetRenderer;
import com.liferay.petra.string.StringPool;
import com.liferay.portal.kernel.json.JSONObject;
import com.liferay.portal.kernel.language.Language;
import com.liferay.portal.kernel.notifications.BaseModelUserNotificationHandler;
import com.liferay.portal.kernel.notifications.UserNotificationDefinition;
import com.liferay.portal.kernel.notifications.UserNotificationHandler;
import com.liferay.portal.kernel.service.ServiceContext;
import com.liferay.portal.kernel.util.GetterUtil;
import com.liferay.portal.kernel.util.HtmlUtil;
import com.liferay.portal.kernel.util.Portal;
import org.osgi.service.component.annotations.Component;
import org.osgi.service.component.annotations.Reference;
/**
* @author Iván Zaera
*/
@Component(
immediate = true,
property = "javax.portlet.name=" + JournalPortletKeys.JOURNAL,
service = UserNotificationHandler.class
)
public class JournalUserNotificationHandler
extends BaseModelUserNotificationHandler {
public JournalUserNotificationHandler() {
setPortletId(JournalPortletKeys.JOURNAL);
}
@Override
protected String getTitle(
JSONObject jsonObject, AssetRenderer> assetRenderer,
ServiceContext serviceContext) {
String title = StringPool.BLANK;
JournalArticleAssetRenderer journalArticleAssetRenderer =
(JournalArticleAssetRenderer)assetRenderer;
JournalArticle journalArticle =
journalArticleAssetRenderer.getArticle();
long userId = GetterUtil.getLong(
jsonObject.getLong("userId"), journalArticle.getUserId());
String userFullName = HtmlUtil.escape(
_portal.getUserName(userId, StringPool.BLANK));
int notificationType = jsonObject.getInt("notificationType");
if (notificationType ==
UserNotificationDefinition.NOTIFICATION_TYPE_ADD_ENTRY) {
title = _language.format(
serviceContext.getLocale(), "x-added-a-new-web-content-article",
userFullName);
}
else if (notificationType ==
UserNotificationDefinition.NOTIFICATION_TYPE_UPDATE_ENTRY) {
title = _language.format(
serviceContext.getLocale(), "x-updated-a-web-content-article",
userFullName);
}
else if (notificationType ==
JournalArticleConstants.
NOTIFICATION_TYPE_MOVE_ENTRY_FROM_FOLDER) {
title = _language.format(
serviceContext.getLocale(),
"x-moved-a-web-content-from-a-folder", userFullName);
}
else if (notificationType ==
JournalArticleConstants.
NOTIFICATION_TYPE_MOVE_ENTRY_FROM_TRASH) {
title = _language.format(
serviceContext.getLocale(),
"x-restored-a-web-content-from-the-recycle-bin", userFullName);
}
else if (notificationType ==
JournalArticleConstants.
NOTIFICATION_TYPE_MOVE_ENTRY_TO_FOLDER) {
title = _language.format(
serviceContext.getLocale(), "x-moved-a-web-content-to-a-folder",
userFullName);
}
else if (notificationType ==
JournalArticleConstants.
NOTIFICATION_TYPE_MOVE_ENTRY_TO_TRASH) {
title = _language.format(
serviceContext.getLocale(),
"x-moved-a-web-content-to-the-recycle-bin", userFullName);
}
return title;
}
@Reference
private Language _language;
@Reference
private Portal _portal;
}