/*! * @license * Alfresco Example Content Application * * Copyright (C) 2005 - 2020 Alfresco Software Limited * * This file is part of the Alfresco Example Content Application. * 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: * * The Alfresco Example Content Application 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. * * The Alfresco Example Content Application 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 . */ import { PersonEntry, NodeEntry, PeopleApi } from '@alfresco/js-api'; import { PersonModel, SitesApi, UploadApi, NodesApi, FavoritesApi, SearchApi, NodeContentTree, Person, SharedLinksApi } from './repo-client/apis'; import { UserActions } from './user-actions'; import { browser } from 'protractor'; export class AdminActions extends UserActions { constructor() { super(); } sites: SitesApi = new SitesApi(); upload: UploadApi = new UploadApi(); nodes: NodesApi = new NodesApi(); favorites: FavoritesApi = new FavoritesApi(); search: SearchApi = new SearchApi(); shared: SharedLinksApi = new SharedLinksApi(); async login(username?: string, password?: string) { return super.login(username || browser.params.ADMIN_USERNAME, password || browser.params.ADMIN_PASSWORD); } async getDataDictionaryId(): Promise { try { return this.nodes.getNodeIdFromParent('Data Dictionary', '-root-'); } catch (error) { super.handleError('Admin Actions - getDataDictionaryId failed : ', error); return ''; } } async getNodeTemplatesFolderId(): Promise { try { return this.nodes.getNodeIdFromParent('Node Templates', await this.getDataDictionaryId()); } catch (error) { super.handleError('Admin Actions - getNodeTemplatesFolderId failed : ', error); return ''; } } async getSpaceTemplatesFolderId(): Promise { try { return this.nodes.getNodeIdFromParent('Space Templates', await this.getDataDictionaryId()); } catch (error) { super.handleError('Admin Actions - getSpaceTemplatesFolderId failed : ', error); return ''; } } async createUser(user: PersonModel): Promise { const person = new Person(user); const peopleApi = new PeopleApi(this.alfrescoApi); await this.login(); try { return peopleApi.createPerson(person); } catch (error) { super.handleError('Admin Actions - createUser failed : ', error); return null; } } async disableUser(username: string): Promise { const peopleApi = new PeopleApi(this.alfrescoApi); await this.login(); try { return peopleApi.updatePerson(username, { enabled: false }); } catch (error) { super.handleError('Admin Actions - createUser failed : ', error); return null; } } async changePassword(username: string, newPassword: string): Promise { const peopleApi = new PeopleApi(this.alfrescoApi); await this.login(); try { return peopleApi.updatePerson(username, { password: newPassword }); } catch (error) { super.handleError('Admin Actions - changePassword failed : ', error); return null; } } async createNodeTemplate(name: string, title: string = '', description: string = '', author: string = ''): Promise { try { const templatesRootFolderId: string = await this.getNodeTemplatesFolderId(); return this.nodes.createFile(name, templatesRootFolderId, title, description, author); } catch (error) { super.handleError('Admin Actions - createNodeTemplate failed : ', error); return null; } } async createNodeTemplatesHierarchy(hierarchy: NodeContentTree): Promise { try { return this.nodes.createContent(hierarchy, `Data Dictionary/Node Templates`); } catch (error) { super.handleError('Admin Actions - createNodeTemplatesHierarchy failed : ', error); } } async createSpaceTemplate(name: string, title: string = '', description: string = ''): Promise { try { const templatesRootFolderId: string = await this.getSpaceTemplatesFolderId(); return this.nodes.createFolder(name, templatesRootFolderId, title, description); } catch (error) { super.handleError('Admin Actions - createSpaceTemplate failed : ', error); return null; } } async createSpaceTemplatesHierarchy(hierarchy: NodeContentTree): Promise { try { return this.nodes.createContent(hierarchy, `Data Dictionary/Space Templates`); } catch (error) { super.handleError('Admin Actions - createSpaceTemplatesHierarchy failed : ', error); } } async removeUserAccessOnNodeTemplate(nodeName: string): Promise { try { const templatesRootFolderId = await this.getNodeTemplatesFolderId(); const nodeId: string = await this.nodes.getNodeIdFromParent(nodeName, templatesRootFolderId); return this.nodes.setInheritPermissions(nodeId, false); } catch (error) { super.handleError('Admin Actions - removeUserAccessOnNodeTemplate failed : ', error); return null; } } async removeUserAccessOnSpaceTemplate(nodeName: string): Promise { try { const templatesRootFolderId = await this.getSpaceTemplatesFolderId(); const nodeId: string = await this.nodes.getNodeIdFromParent(nodeName, templatesRootFolderId); return this.nodes.setInheritPermissions(nodeId, false); } catch (error) { super.handleError('Admin Actions - removeUserAccessOnSpaceTemplate failed : ', error); return null; } } async cleanupNodeTemplatesFolder(): Promise { try { return this.nodes.deleteNodeChildren(await this.getNodeTemplatesFolderId()); } catch (error) { super.handleError('Admin Actions - cleanupNodeTemplatesFolder failed : ', error); } } async cleanupNodeTemplatesItems(nodeNames: string[]): Promise { try { const templatesFolderId = await this.getNodeTemplatesFolderId(); for (const nodeName of nodeNames) { const nodeId = await this.nodes.getNodeIdFromParent(nodeName, templatesFolderId); await this.nodes.deleteNodeById(nodeId); } } catch (error) { super.handleError('Admin Actions - cleanupNodeTemplatesItems failed : ', error); } } async cleanupSpaceTemplatesFolder(): Promise { try { const spaceTemplatesNodeId = await this.getSpaceTemplatesFolderId(); // folder links are deleted automatically when original folder is deleted // Software Engineering Project is the default folder template coming from ACS, should not be deleted const nodesToDelete = (await this.nodes.getNodeChildren(spaceTemplatesNodeId)).list.entries .filter((node) => node.entry.nodeType !== 'app:folderlink' && node.entry.name !== 'Software Engineering Project') .map((node) => node.entry.id); return this.nodes.deleteNodesById(nodesToDelete); } catch (error) { super.handleError('Admin Actions - cleanupSpaceTemplatesFolder failed : ', error); } } async cleanupSpaceTemplatesItems(nodeNames: string[]): Promise { try { const spaceTemplatesNodeId = await this.getSpaceTemplatesFolderId(); for (const nodeName of nodeNames) { const nodeId = await this.nodes.getNodeIdFromParent(nodeName, spaceTemplatesNodeId); await this.nodes.deleteNodeById(nodeId); } } catch (error) { super.handleError('Admin Actions - cleanupSpaceTemplatesFolder failed : ', error); } } async createLinkToFileId(originalFileId: string, destinationParentId: string): Promise { try { return this.nodes.createFileLink(originalFileId, destinationParentId); } catch (error) { super.handleError('Admin Actions - createLinkToFileId failed : ', error); return null; } } async createLinkToFileName(originalFileName: string, originalFileParentId: string, destinationParentId?: string): Promise { if (!destinationParentId) { destinationParentId = originalFileParentId; } try { const nodeId = await this.nodes.getNodeIdFromParent(originalFileName, originalFileParentId); return this.createLinkToFileId(nodeId, destinationParentId); } catch (error) { super.handleError('Admin Actions - createLinkToFileName failed : ', error); return null; } } async createLinkToFolderId(originalFolderId: string, destinationParentId: string): Promise { try { return this.nodes.createFolderLink(originalFolderId, destinationParentId); } catch (error) { super.handleError('Admin Actions - createLinkToFolderId failed : ', error); return null; } } async createLinkToFolderName(originalFolderName: string, originalFolderParentId: string, destinationParentId?: string): Promise { if (!destinationParentId) { destinationParentId = originalFolderParentId; } try { const nodeId = await this.nodes.getNodeIdFromParent(originalFolderName, originalFolderParentId); return this.createLinkToFolderId(nodeId, destinationParentId); } catch (error) { super.handleError('Admin Actions - createLinkToFolderName failed : ', error); return null; } } }