META-INF.dirigible.ide-security.editors.roles.editor.js Maven / Gradle / Ivy
/*
* Copyright (c) 2024 Eclipse Dirigible contributors
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* SPDX-FileCopyrightText: Eclipse Dirigible contributors
* SPDX-License-Identifier: EPL-2.0
*/
angular.module('page', ["ideUI", "ideView", "ideWorkspace"])
.controller('PageController', function ($scope, messageHub, workspaceApi, $window, ViewParameters) {
let contents;
$scope.errorMessage = 'An unknown error was encountered. Please see console for more information.';
$scope.state = {
isBusy: true,
error: false,
busyText: "Loading...",
};
$scope.editRoleIndex = 0;
angular.element($window).bind("focus", function () {
messageHub.setFocusedEditor($scope.dataParameters.file);
messageHub.setStatusCaret('');
});
function load() {
if (!$scope.state.error) {
workspaceApi.loadContent('', $scope.dataParameters.file).then(function (response) {
if (response.status === 200) {
if (response.data === '') $scope.roles = {};
else $scope.roles = response.data;
contents = JSON.stringify($scope.roles, null, 4);
$scope.$apply(() => $scope.state.isBusy = false);
} else if (response.status === 404) {
messageHub.closeEditor($scope.dataParameters.file);
} else {
$scope.$apply(function () {
$scope.state.error = true;
$scope.errorMessage = 'There was a problem with loading the file';
$scope.state.isBusy = false;
});
}
});
}
};
function saveContents(text) {
workspaceApi.saveContent('', $scope.dataParameters.file, text).then(function (response) {
if (response.status === 200) {
messageHub.announceFileSaved({
name: $scope.dataParameters.file.substring($scope.dataParameters.file.lastIndexOf('/') + 1),
path: $scope.dataParameters.file.substring($scope.dataParameters.file.indexOf('/', 1)),
contentType: $scope.dataParameters.contentType,
workspace: $scope.dataParameters.file.substring(1, $scope.dataParameters.file.indexOf('/', 1)),
});
messageHub.setStatusMessage(`File '${$scope.dataParameters.file}' saved`);
messageHub.setEditorDirty($scope.dataParameters.file, false);
$scope.$apply(function () {
$scope.state.isBusy = false;
});
} else {
messageHub.setStatusError(`Error saving '${$scope.dataParameters.file}'`);
messageHub.showAlertError('Error while saving the file', 'Please look at the console for more information');
$scope.$apply(function () {
$scope.state.isBusy = false;
});
}
});
}
$scope.save = function (_keySet, event) {
if (event) event.preventDefault();
if (!$scope.state.error) {
$scope.state.busyText = "Saving...";
$scope.state.isBusy = true;
contents = JSON.stringify($scope.roles, null, 4);
saveContents(contents);
}
};
messageHub.onEditorFocusGain(function (msg) {
if (msg.resourcePath === $scope.dataParameters.file) messageHub.setStatusCaret('');
});
messageHub.onEditorReloadParameters(
function (event) {
$scope.$apply(() => {
if (event.resourcePath === $scope.dataParameters.file) {
$scope.dataParameters = ViewParameters.get();
}
});
}
);
messageHub.onDidReceiveMessage(
"editor.file.save.all",
function () {
if (!$scope.state.error) {
let roles = JSON.stringify($scope.roles, null, 4);
if (contents !== roles) {
$scope.save();
}
}
},
true,
);
messageHub.onDidReceiveMessage(
"roleEditor.role.add",
function (msg) {
if (msg.data.buttonId === "b1") {
$scope.$apply(function () {
$scope.roles.push({
name: msg.data.formData[0].value,
description: msg.data.formData[1].value,
});
});
}
messageHub.hideFormDialog("rolesEditorAddRole");
},
true
);
messageHub.onDidReceiveMessage(
"roleEditor.role.edit",
function (msg) {
if (msg.data.buttonId === "b1") {
$scope.$apply(function () {
$scope.roles[$scope.editRoleIndex].name = msg.data.formData[0].value;
$scope.roles[$scope.editRoleIndex].description = msg.data.formData[1].value;
});
}
messageHub.hideFormDialog("rolesEditorEditRole");
},
true
);
messageHub.onDidReceiveMessage(
"editor.file.save",
function (msg) {
if (!$scope.state.error) {
let file = msg.data && typeof msg.data === 'object' && msg.data.file;
if (file && file === $scope.dataParameters.file) {
let roles = JSON.stringify($scope.roles, null, 4);
if (contents !== roles) $scope.save();
}
}
},
true,
);
$scope.$watch('roles', function () {
if (!$scope.state.error && !$scope.state.isBusy) {
messageHub.setEditorDirty($scope.dataParameters.file, contents !== JSON.stringify($scope.roles, null, 4));
}
}, true);
$scope.addRole = function () {
messageHub.showFormDialog(
"rolesEditorAddRole",
"Add role",
[
{
id: "reriName",
type: "input",
label: "Name",
required: true,
placeholder: "Enter name",
minlength: 1,
maxlength: 255,
inputRules: {
patterns: ['^[a-zA-Z0-9_.-]*$'],
},
value: '',
},
{
id: "reriRoles",
type: "input",
label: "Description",
placeholder: "Enter description",
value: '',
},
],
[{
id: "b1",
type: "emphasized",
label: "Add",
whenValid: true,
},
{
id: "b2",
type: "transparent",
label: "Cancel",
}],
"roleEditor.role.add",
"Adding role..."
);
};
$scope.editRole = function (index) {
$scope.editRoleIndex = index;
messageHub.showFormDialog(
"rolesEditorEditRole",
"Edit role",
[{
id: "reriName",
type: "input",
label: "Name",
required: true,
placeholder: "Enter name",
minlength: 1,
maxlength: 255,
inputRules: {
patterns: ['^[a-zA-Z0-9_.-]*$'],
},
value: $scope.roles[index].name,
},
{
id: "reriRoles",
type: "input",
label: "Description",
placeholder: "Enter description",
value: $scope.roles[index].description,
}],
[{
id: "b1",
type: "emphasized",
label: "Update",
whenValid: true,
},
{
id: "b2",
type: "transparent",
label: "Cancel",
}],
"roleEditor.role.edit",
"Updating role..."
);
};
$scope.deleteRole = function (index) {
messageHub.showDialogAsync(
`Delete ${$scope.roles[index].name}?`,
'This action cannot be undone.',
[{
id: 'b1',
type: 'negative',
label: 'Delete',
},
{
id: 'b2',
type: 'transparent',
label: 'Cancel',
}],
).then(function (dialogResponse) {
if (dialogResponse.data === 'b1') {
$scope.$apply(function () {
$scope.roles.splice(index, 1);
});
}
});
};
$scope.dataParameters = ViewParameters.get();
if (!$scope.dataParameters.hasOwnProperty('file')) {
$scope.state.error = true;
$scope.errorMessage = "The 'file' data parameter is missing.";
} else if (!$scope.dataParameters.hasOwnProperty('contentType')) {
$scope.state.error = true;
$scope.errorMessage = "The 'contentType' data parameter is missing.";
} else load();
});
© 2015 - 2025 Weber Informatics LLC | Privacy Policy