/* * #%L * Alfresco Records Management Module * %% * Copyright (C) 2005 - 2016 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - * If the software was purchased under a paid Alfresco license, the terms of * the paid license agreement will prevail. Otherwise, the software is * provided under the following open source license terms: * - * Alfresco 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 3 of the License, or * (at your option) any later version. * - * Alfresco 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. * - * You should have received a copy of the GNU Lesser General Public License * along with Alfresco. If not, see <http://www.gnu.org/licenses/>. * #L% */ package org.alfresco.module.org_alfresco_module_rm_share.resolver.doclib; import org.alfresco.web.resolver.doclib.DefaultDoclistActionGroupResolver; import org.json.simple.JSONObject; /** * Resolves which action group if to use in the document library's document list. * * @author ewinlof */ public class FilePlanDoclistActionGroupResolver extends DefaultDoclistActionGroupResolver { /** * Will return the action group id matching rm action group configs in rm-share-config.xml. * * @param jsonObject An item (i.e. document or folder) in the doclist. * @param view Name of the type of view in which the action will be displayed. I.e. "details" * @return The action group id to use for displaying actions */ @Override public String resolve(JSONObject jsonObject, String view) { return resolve(jsonObject, view, false); } /** * Will return the action group id matching rm action group configs in rm-share-config.xml. * * @param jsonObject An item (i.e. document or folder) in the doclist. * @param view Name of the type of view in which the action will be displayed. I.e. "details" * @param isDocLib <code>true</code> if we are in the doc lib, <code>false</code> otherwise. * @return The action group id to use for displaying actions */ public String resolve(JSONObject jsonObject, String view, boolean isDocLib) { String actionGroupId = "rm-"; if (isDocLib) { actionGroupId += "doclib-"; } JSONObject node = (org.json.simple.JSONObject) jsonObject.get("node"); boolean isLink = (Boolean) node.get("isLink"); if (isLink) { actionGroupId += "link-"; } else { JSONObject rmNode = (JSONObject) node.get("rmNode"); actionGroupId += (String) rmNode.get("uiType") + "-"; } if (view.equals("details")) { actionGroupId += "details"; } else { actionGroupId += "browse"; } return actionGroupId; } }