/* * #%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.model.rma.type; import org.alfresco.error.AlfrescoRuntimeException; import org.alfresco.model.ContentModel; import org.alfresco.module.org_alfresco_module_rm.identifier.IdentifierService; import org.alfresco.module.org_alfresco_module_rm.model.BaseBehaviourBean; import org.alfresco.module.org_alfresco_module_rm.model.RecordsManagementModel; import org.alfresco.module.org_alfresco_module_rm.record.RecordService; import org.alfresco.module.org_alfresco_module_rm.recordfolder.RecordFolderService; import org.alfresco.repo.node.NodeServicePolicies; import org.alfresco.repo.policy.Behaviour.NotificationFrequency; import org.alfresco.repo.policy.annotation.Behaviour; import org.alfresco.repo.policy.annotation.BehaviourBean; import org.alfresco.repo.policy.annotation.BehaviourKind; import org.alfresco.repo.security.authentication.AuthenticationUtil; import org.alfresco.repo.security.authentication.AuthenticationUtil.RunAsWork; import org.alfresco.service.cmr.repository.ChildAssociationRef; import org.alfresco.service.cmr.repository.NodeRef; import org.alfresco.service.namespace.QName; import org.springframework.extensions.surf.util.I18NUtil; /** * rma:recordsManagementContainer behaviour bean. * * @author Roy Wetherall * @since 2.2 */ @BehaviourBean ( defaultType = "rma:recordsManagementContainer" ) public class RecordsManagementContainerType extends BaseBehaviourBean implements NodeServicePolicies.OnCreateChildAssociationPolicy { /** behaviour name */ private static final String BEHAVIOUR_NAME = "onCreateContainerType"; /** identifier service */ protected IdentifierService identifierService; /** record service */ protected RecordService recordService; /** record folder service */ protected RecordFolderService recordFolderService; /** I18N */ private static final String MSG_CANNOT_CAST_TO_RM_TYPE = "rm.action.cast-to-rm-type"; /** * @param identifierService identifier service */ public void setIdentifierService(IdentifierService identifierService) { this.identifierService = identifierService; } /** * @param recordService record service */ public void setRecordService(RecordService recordService) { this.recordService = recordService; } /** * @param recordFolderService record folder service */ public void setRecordFolderService(RecordFolderService recordFolderService) { this.recordFolderService = recordFolderService; } /** * Disable the behaviours for this transaction * * @since 2.3 */ public void disable() { getBehaviour(BEHAVIOUR_NAME).disable(); } /** * Enable behaviours for this transaction * * @since 2.3 */ public void enable() { getBehaviour(BEHAVIOUR_NAME).enable(); } /** * @see org.alfresco.module.org_alfresco_module_rm.model.BaseTypeBehaviour#onCreateChildAssociation(org.alfresco.service.cmr.repository.ChildAssociationRef, boolean) */ @Behaviour ( kind = BehaviourKind.ASSOCIATION, notificationFrequency = NotificationFrequency.TRANSACTION_COMMIT, name = BEHAVIOUR_NAME ) public void onCreateChildAssociation(final ChildAssociationRef childAssocRef, boolean isNewNode) { AuthenticationUtil.runAsSystem(new RunAsWork<Void>() { @Override public Void doWork() { // Get the elements of the created association final NodeRef child = childAssocRef.getChildRef(); if (nodeService.exists(child)) { QName childType = nodeService.getType(child); // We only care about "folder" or sub-types that are not hidden. // Some modules use hidden files to store information (see RM-3283) if (dictionaryService.isSubClass(childType, ContentModel.TYPE_FOLDER) && !nodeService.hasAspect(child, ContentModel.ASPECT_HIDDEN)) { if (dictionaryService.isSubClass(childType, ContentModel.TYPE_SYSTEM_FOLDER)) { // this is a rule container, make sure it is an file plan component nodeService.addAspect(child, ASPECT_FILE_PLAN_COMPONENT, null); } else { // We need to automatically cast the created folder to RM type if it is a plain folder // This occurs if the RM folder has been created via IMap, WebDav, etc if (!nodeService.hasAspect(child, ASPECT_FILE_PLAN_COMPONENT)) { // Throw exception if the type is not cm:folder if (!ContentModel.TYPE_FOLDER.equals(childType)) { throw new AlfrescoRuntimeException(I18NUtil.getMessage(MSG_CANNOT_CAST_TO_RM_TYPE)); } // check the type of the parent to determine what 'kind' of artifact to create NodeRef parent = childAssocRef.getParentRef(); QName parentType = nodeService.getType(parent); if (dictionaryService.isSubClass(parentType, TYPE_FILE_PLAN)) { // create a rma:recordCategoty since we are in the root of the file plan nodeService.setType(child, TYPE_RECORD_CATEGORY); } else { // create a rma:recordFolder and initialise record folder nodeService.setType(child, TYPE_RECORD_FOLDER); recordFolderService.setupRecordFolder(child); } } // Catch all to generate the rm id (assuming it doesn't already have one!) setIdenifierProperty(child); } } else { NodeRef parentRef = childAssocRef.getParentRef(); QName parentType = nodeService.getType(parentRef); boolean isContentSubType = dictionaryService.isSubClass(childType, ContentModel.TYPE_CONTENT); boolean isUnfiledRecordContainer = parentType.equals(RecordsManagementModel.TYPE_UNFILED_RECORD_CONTAINER); boolean isUnfiledRecordFolder = parentType.equals(RecordsManagementModel.TYPE_UNFILED_RECORD_FOLDER); if (isContentSubType && (isUnfiledRecordContainer || isUnfiledRecordFolder)) { if (!nodeService.hasAspect(child, ASPECT_FILE_PLAN_COMPONENT)) { nodeService.addAspect(child, ASPECT_FILE_PLAN_COMPONENT, null); } if (!nodeService.hasAspect(child, ASPECT_RECORD)) { recordService.makeRecord(child); } } } } return null; } }); } /** * Set the identifier property * * @param nodeRef node reference */ protected void setIdenifierProperty(final NodeRef nodeRef) { AuthenticationUtil.runAsSystem(new RunAsWork<Object>() { public Object doWork() { if (nodeService.hasAspect(nodeRef, ASPECT_FILE_PLAN_COMPONENT) && nodeService.getProperty(nodeRef, PROP_IDENTIFIER) == null) { String id = identifierService.generateIdentifier(nodeRef); nodeService.setProperty(nodeRef, RecordsManagementModel.PROP_IDENTIFIER, id); } return null; } }); } }