/* * (C) Copyright 2009-2016 Nuxeo SA (http://nuxeo.com/) and others. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * * Contributors: * Thierry Delprat * Florent Guillaume */ package org.nuxeo.ecm.webapp.tree.nav; import java.util.List; import org.nuxeo.ecm.platform.actions.ActionService; import org.nuxeo.ecm.webapp.directory.DirectoryTreeService; import org.nuxeo.runtime.api.Framework; import org.nuxeo.runtime.model.ComponentContext; import org.nuxeo.runtime.model.ComponentInstance; import org.nuxeo.runtime.model.DefaultComponent; /** * Very simple component to manage Navigation tree registration. * <p> * Moved from module nuxeo-platform-virtual-navigation-web, originally added in 5.6. * * @author Thierry Delprat * @author Thierry Martins * @since 6.0 */ public class NavTreeService extends DefaultComponent { public static String NAVTREE_EP = "navigationTree"; protected NavTreeRegistry registry; @Override public void activate(ComponentContext context) { registry = new NavTreeRegistry(); } @Override public void deactivate(ComponentContext context) { registry = null; } @Override public void registerContribution(Object contribution, String extensionPoint, ComponentInstance contributor) { if (NAVTREE_EP.equals(extensionPoint)) { NavTreeDescriptor contrib = (NavTreeDescriptor) contribution; registry.addContribution(contrib); getActionService().addAction(contrib.getAction()); } } /** * @since 5.6 */ @Override public void unregisterContribution(Object contribution, String extensionPoint, ComponentInstance contributor) { if (NAVTREE_EP.equals(extensionPoint)) { NavTreeDescriptor contrib = (NavTreeDescriptor) contribution; registry.removeContribution(contrib); getActionService().removeAction(contrib.getTreeId()); } } public List<NavTreeDescriptor> getTreeDescriptors() { return registry.getTreeDescriptors(getDirectoryTreeService()); } protected DirectoryTreeService getDirectoryTreeService() { return (DirectoryTreeService) Framework.getRuntime().getComponent(DirectoryTreeService.NAME); } /** * @since 6.0 */ protected ActionService getActionService() { return (ActionService) Framework.getRuntime().getComponent(ActionService.ID); } /** * Returns the last modified time of this service or of the {@link DirectoryTreeService}, whichever the greater * * @since 5.6 */ @Override public Long getLastModified() { Long res = super.getLastModified(); DirectoryTreeService treeService = getDirectoryTreeService(); if (treeService != null) { Long other = treeService.getLastModified(); if (res == null || (other != null && other.compareTo(res) > 0)) { res = other; } } return res; } }