/** * 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.knowledge.base.web.internal.selector; import com.liferay.knowledge.base.constants.KBArticleConstants; import com.liferay.knowledge.base.model.KBArticle; import com.liferay.knowledge.base.service.KBArticleLocalService; import com.liferay.portal.kernel.exception.PortalException; import com.liferay.portal.kernel.workflow.WorkflowConstants; import org.osgi.service.component.annotations.Component; import org.osgi.service.component.annotations.Reference; /** * @author Adolfo PĂ©rez */ @Component( immediate = true, property = {"model.class.name=com.liferay.knowledge.base.model.KBArticle"}, service = KBArticleSelector.class ) public class KBArticleKBArticleSelector implements KBArticleSelector { @Override public KBArticleSelection findByResourcePrimKey( long groupId, String preferredKBFolderUrlTitle, long ancestorResourcePrimKey, long resourcePrimKey) throws PortalException { KBArticle ancestorKBArticle = _kbArticleLocalService.fetchLatestKBArticle( ancestorResourcePrimKey, WorkflowConstants.STATUS_APPROVED); if (ancestorKBArticle == null) { return new KBArticleSelection(null, true); } if (resourcePrimKey == KBArticleConstants.DEFAULT_PARENT_RESOURCE_PRIM_KEY) { return new KBArticleSelection(ancestorKBArticle, true); } KBArticle kbArticle = _kbArticleLocalService.fetchLatestKBArticle( resourcePrimKey, WorkflowConstants.STATUS_APPROVED); return getClosestMatchingDescendantKBArticle( groupId, ancestorKBArticle, kbArticle); } @Override public KBArticleSelection findByUrlTitle( long groupId, String preferredKBFolderUrlTitle, long ancestorResourcePrimKey, String kbFolderUrlTitle, String urlTitle) throws PortalException { KBArticle ancestorKBArticle = _kbArticleLocalService.fetchLatestKBArticle( ancestorResourcePrimKey, WorkflowConstants.STATUS_APPROVED); if (ancestorKBArticle == null) { return new KBArticleSelection(null, true); } KBArticle kbArticle = _kbArticleLocalService.fetchLatestKBArticleByUrlTitle( groupId, ancestorKBArticle.getKbFolderId(), urlTitle, WorkflowConstants.STATUS_APPROVED); return getClosestMatchingDescendantKBArticle( groupId, ancestorKBArticle, kbArticle); } protected KBArticleSelection findClosestMatchingKBArticle( long groupId, KBArticle ancestorKBArticle, KBArticle kbArticle) throws PortalException { KBArticle candidateKBArticle = kbArticle; while (candidateKBArticle != null) { KBArticle matchingKBArticle = _kbArticleLocalService.fetchKBArticleByUrlTitle( groupId, ancestorKBArticle.getKbFolderId(), candidateKBArticle.getUrlTitle()); if (matchingKBArticle != null) { return new KBArticleSelection(matchingKBArticle, false); } candidateKBArticle = candidateKBArticle.getParentKBArticle(); } return new KBArticleSelection(ancestorKBArticle, false); } protected KBArticleSelection getClosestMatchingDescendantKBArticle( long groupId, KBArticle ancestorKBArticle, KBArticle kbArticle) throws PortalException { if (kbArticle == null) { return new KBArticleSelection(ancestorKBArticle, false); } if (isDescendant(kbArticle, ancestorKBArticle)) { return new KBArticleSelection(kbArticle, true); } return findClosestMatchingKBArticle( groupId, ancestorKBArticle, kbArticle); } protected boolean isDescendant( KBArticle kbArticle, KBArticle ancestorKBArticle) throws PortalException { if (kbArticle.getKbArticleId() == ancestorKBArticle.getKbArticleId()) { return true; } KBArticle parentKBArticle = kbArticle.getParentKBArticle(); while ((parentKBArticle != null) && !parentKBArticle.equals(ancestorKBArticle)) { parentKBArticle = parentKBArticle.getParentKBArticle(); } if (parentKBArticle != null) { return true; } return false; } @Reference(unbind = "-") protected void setKBArticleLocalService( KBArticleLocalService kbArticleLocalService) { _kbArticleLocalService = kbArticleLocalService; } private KBArticleLocalService _kbArticleLocalService; }