com.liferay.journal.web.internal.layout.display.page.JournalArticleLayoutDisplayPageObjectProvider 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.layout.display.page;
import com.liferay.asset.kernel.AssetRendererFactoryRegistryUtil;
import com.liferay.asset.kernel.model.AssetEntry;
import com.liferay.asset.kernel.model.AssetRenderer;
import com.liferay.asset.kernel.model.AssetRendererFactory;
import com.liferay.asset.kernel.service.AssetCategoryLocalServiceUtil;
import com.liferay.asset.kernel.service.AssetTagLocalServiceUtil;
import com.liferay.journal.model.JournalArticle;
import com.liferay.layout.display.page.LayoutDisplayPageObjectProvider;
import com.liferay.portal.kernel.exception.PortalException;
import com.liferay.portal.kernel.util.ArrayUtil;
import com.liferay.portal.kernel.util.StringUtil;
import java.util.Locale;
/**
* @author Jürgen Kappler
*/
public class JournalArticleLayoutDisplayPageObjectProvider
implements LayoutDisplayPageObjectProvider {
public JournalArticleLayoutDisplayPageObjectProvider(JournalArticle article)
throws PortalException {
_article = article;
_assetEntry = _getAssetEntry(article);
}
@Override
public long getClassNameId() {
return _assetEntry.getClassNameId();
}
@Override
public long getClassPK() {
return _article.getResourcePrimKey();
}
@Override
public long getClassTypeId() {
return _assetEntry.getClassTypeId();
}
@Override
public String getDescription(Locale locale) {
return _assetEntry.getDescription(locale);
}
@Override
public JournalArticle getDisplayObject() {
return _article;
}
@Override
public long getGroupId() {
return _article.getGroupId();
}
@Override
public String getKeywords(Locale locale) {
String[] assetTagNames = AssetTagLocalServiceUtil.getTagNames(
_assetEntry.getClassName(), _assetEntry.getClassPK());
String[] assetCategoryNames =
AssetCategoryLocalServiceUtil.getCategoryNames(
_assetEntry.getClassName(), _assetEntry.getClassPK());
String[] keywords =
new String[assetTagNames.length + assetCategoryNames.length];
ArrayUtil.combine(assetTagNames, assetCategoryNames, keywords);
return StringUtil.merge(keywords);
}
@Override
public String getTitle(Locale locale) {
return _assetEntry.getTitle(locale);
}
@Override
public String getURLTitle(Locale locale) {
AssetRenderer> assetRenderer = _assetEntry.getAssetRenderer();
return assetRenderer.getUrlTitle(locale);
}
private AssetEntry _getAssetEntry(JournalArticle journalArticle)
throws PortalException {
AssetRendererFactory> assetRendererFactory =
AssetRendererFactoryRegistryUtil.getAssetRendererFactoryByClassName(
JournalArticle.class.getName());
return assetRendererFactory.getAssetEntry(
JournalArticle.class.getName(),
journalArticle.getResourcePrimKey());
}
private final JournalArticle _article;
private final AssetEntry _assetEntry;
}