/* * Copyright 2007-2017 Charles du Jeu - Abstrium SAS * This file is part of Pydio. * * Pydio is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Pydio 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 Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with Pydio. If not, see . * * The latest code can be found at . */ "use strict"; var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } (function (global) { var pydio = global.pydio; var MessageHash = global.pydio.MessageHash; var Callbacks = (function () { function Callbacks() { _classCallCheck(this, Callbacks); } _createClass(Callbacks, null, [{ key: "deleteAction", value: function deleteAction(manager, args) { var userSelection; if (args && args.length) { userSelection = args[0]; } else { userSelection = pydio.getUserSelection(); } var firstNode = userSelection.getUniqueNode(); var meta = firstNode.getMetadata(); var deleteMessageId = undefined, fieldName = undefined, fieldValues = [], metaAttribute = 'basename'; if (meta.get("ajxp_mime") == "user_editable") { deleteMessageId = 'ajxp_conf.34'; fieldName = "user_id"; } else if (meta.get("ajxp_mime") == "role") { deleteMessageId = 'ajxp_conf.126'; fieldName = "role_id"; } else if (meta.get("ajxp_mime") == "group") { deleteMessageId = 'ajxp_conf.126'; fieldName = "group"; metaAttribute = "filename"; } else { deleteMessageId = 'ajxp_conf.35'; fieldName = "repository_id"; metaAttribute = "repository_id"; } fieldValues = userSelection.getSelectedNodes().map(function (node) { if (metaAttribute === 'basename') { return PathUtils.getBasename(node.getMetadata().get('filename')); } else { return node.getMetadata().get(metaAttribute); } }); var apply = (function () { if (!fieldValues.length) { return; } var parameters = { get_action: 'delete' }; if (fieldValues.length === 1) { parameters[fieldName] = fieldValues[0]; } else { parameters[fieldName + '[]'] = fieldValues; } PydioApi.getClient().request(parameters, (function (transport) { if (firstNode.getParent()) { firstNode.getParent().reload(null, true); } }).bind(this)); }).bind(this); pydio.UI.openComponentInModal('PydioReactUI', 'ConfirmDialog', { message: MessageHash[deleteMessageId], validCallback: apply }); } }, { key: "addSchedulerTask", value: function addSchedulerTask() { pydio.UI.openComponentInModal('AdminScheduler', 'TaskEditor', { node: null }); } }, { key: "editSchedulerTask", value: function editSchedulerTask(manager, args) { console.log(arguments); var userSelection; if (args && args.length) { userSelection = args[0]; } else { userSelection = pydio.getUserSelection(); } pydio.UI.openComponentInModal('AdminScheduler', 'TaskEditor', { node: userSelection.getUniqueNode() }); } }, { key: "applyDND", value: function applyDND(manager, dndActionParameter) { if (dndActionParameter.getStep() === PydioComponents.DNDActionParameter.STEP_CAN_DROP) { AdminComponents.DNDActionsManager.canDropNodeOnNode(dndActionParameter.getSource(), dndActionParameter.getTarget()); } else if (dndActionParameter.getStep() === PydioComponents.DNDActionParameter.STEP_END_DRAG) { AdminComponents.DNDActionsManager.dropNodeOnNode(dndActionParameter.getSource(), dndActionParameter.getTarget()); } } }]); return Callbacks; })(); var ns = global.AdminActions || {}; ns.Callbacks = Callbacks; global.AdminActions = ns; })(window);