mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-06 05:07:41 +00:00
215 lines
8.0 KiB
JavaScript
215 lines
8.0 KiB
JavaScript
/*
|
|
* Licensed to the Apache Software Foundation (ASF) under one
|
|
* or more contributor license agreements. See the NOTICE file
|
|
* distributed with this work for additional information
|
|
* regarding copyright ownership. The ASF licenses this file
|
|
* to you under the Apache License, Version 2.0 (the
|
|
* "License"); you may not use this file except in compliance
|
|
* with the License. You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing,
|
|
* software distributed under the License is distributed on an
|
|
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
* KIND, either express or implied. See the License for the
|
|
* specific language governing permissions and limitations
|
|
* under the License.
|
|
*/
|
|
|
|
/**
|
|
* A directive for managing preferences local to the current user.
|
|
*/
|
|
angular.module('settings').directive('guacSettingsPreferences', [function guacSettingsPreferences() {
|
|
|
|
return {
|
|
// Element only
|
|
restrict: 'E',
|
|
replace: true,
|
|
|
|
scope: {},
|
|
|
|
templateUrl: 'app/settings/templates/settingsPreferences.html',
|
|
controller: ['$scope', '$injector', function settingsPreferencesController($scope, $injector) {
|
|
|
|
// Get required types
|
|
var PermissionSet = $injector.get('PermissionSet');
|
|
|
|
// Required services
|
|
var $translate = $injector.get('$translate');
|
|
var authenticationService = $injector.get('authenticationService');
|
|
var formService = $injector.get('formService');
|
|
var guacNotification = $injector.get('guacNotification');
|
|
var languageService = $injector.get('languageService');
|
|
var permissionService = $injector.get('permissionService');
|
|
var preferenceService = $injector.get('preferenceService');
|
|
var requestService = $injector.get('requestService');
|
|
var userService = $injector.get('userService');
|
|
|
|
/**
|
|
* An action to be provided along with the object sent to
|
|
* showStatus which closes the currently-shown status dialog.
|
|
*/
|
|
var ACKNOWLEDGE_ACTION = {
|
|
name : 'SETTINGS_PREFERENCES.ACTION_ACKNOWLEDGE',
|
|
// Handle action
|
|
callback : function acknowledgeCallback() {
|
|
guacNotification.showStatus(false);
|
|
}
|
|
};
|
|
|
|
/**
|
|
* The username of the current user.
|
|
*
|
|
* @type String
|
|
*/
|
|
var username = authenticationService.getCurrentUsername();
|
|
|
|
/**
|
|
* The identifier of the data source which authenticated the
|
|
* current user.
|
|
*
|
|
* @type String
|
|
*/
|
|
var dataSource = authenticationService.getDataSource();
|
|
|
|
/**
|
|
* All currently-set preferences, or their defaults if not yet set.
|
|
*
|
|
* @type Object.<String, Object>
|
|
*/
|
|
$scope.preferences = preferenceService.preferences;
|
|
|
|
/**
|
|
* A map of all available language keys to their human-readable
|
|
* names.
|
|
*
|
|
* @type Object.<String, String>
|
|
*/
|
|
$scope.languages = null;
|
|
|
|
/**
|
|
* Switches the active display langugae to the chosen language.
|
|
*/
|
|
$scope.changeLanguage = function changeLanguage() {
|
|
$translate.use($scope.preferences.language);
|
|
};
|
|
|
|
/**
|
|
* The new password for the user.
|
|
*
|
|
* @type String
|
|
*/
|
|
$scope.newPassword = null;
|
|
|
|
/**
|
|
* The password match for the user. The update password action will
|
|
* fail if $scope.newPassword !== $scope.passwordMatch.
|
|
*
|
|
* @type String
|
|
*/
|
|
$scope.newPasswordMatch = null;
|
|
|
|
/**
|
|
* Whether the current user can change their own password, or null
|
|
* if this is not yet known.
|
|
*
|
|
* @type Boolean
|
|
*/
|
|
$scope.canChangePassword = null;
|
|
|
|
/**
|
|
* Update the current user's password to the password currently set within
|
|
* the password change dialog.
|
|
*/
|
|
$scope.updatePassword = function updatePassword() {
|
|
|
|
// Verify passwords match
|
|
if ($scope.newPasswordMatch !== $scope.newPassword) {
|
|
guacNotification.showStatus({
|
|
className : 'error',
|
|
title : 'SETTINGS_PREFERENCES.DIALOG_HEADER_ERROR',
|
|
text : {
|
|
key : 'SETTINGS_PREFERENCES.ERROR_PASSWORD_MISMATCH'
|
|
},
|
|
actions : [ ACKNOWLEDGE_ACTION ]
|
|
});
|
|
return;
|
|
}
|
|
|
|
// Verify that the new password is not blank
|
|
if (!$scope.newPassword) {
|
|
guacNotification.showStatus({
|
|
className : 'error',
|
|
title : 'SETTINGS_PREFERENCES.DIALOG_HEADER_ERROR',
|
|
text : {
|
|
key : 'SETTINGS_PREFERENCES.ERROR_PASSWORD_BLANK'
|
|
},
|
|
actions : [ ACKNOWLEDGE_ACTION ]
|
|
});
|
|
return;
|
|
}
|
|
|
|
// Save the user with the new password
|
|
userService.updateUserPassword(dataSource, username, $scope.oldPassword, $scope.newPassword)
|
|
.then(function passwordUpdated() {
|
|
|
|
// Clear the password fields
|
|
$scope.oldPassword = null;
|
|
$scope.newPassword = null;
|
|
$scope.newPasswordMatch = null;
|
|
|
|
// Indicate that the password has been changed
|
|
guacNotification.showStatus({
|
|
text : {
|
|
key : 'SETTINGS_PREFERENCES.INFO_PASSWORD_CHANGED'
|
|
},
|
|
actions : [ ACKNOWLEDGE_ACTION ]
|
|
});
|
|
}, guacNotification.SHOW_REQUEST_ERROR);
|
|
|
|
};
|
|
|
|
// Retrieve defined languages
|
|
languageService.getLanguages()
|
|
.then(function languagesRetrieved(languages) {
|
|
$scope.languages = Object.keys(languages).map(function(key) {
|
|
return {
|
|
key: key,
|
|
value: languages[key]
|
|
};
|
|
});
|
|
}, requestService.DIE);
|
|
|
|
// Retrieve current permissions
|
|
permissionService.getEffectivePermissions(dataSource, username)
|
|
.then(function permissionsRetrieved(permissions) {
|
|
|
|
// Add action for changing password if permission is granted
|
|
$scope.canChangePassword = PermissionSet.hasUserPermission(permissions,
|
|
PermissionSet.ObjectPermissionType.UPDATE, username);
|
|
|
|
})
|
|
['catch'](requestService.createErrorCallback(function permissionsFailed(error) {
|
|
$scope.canChangePassword = false;
|
|
}));
|
|
|
|
/**
|
|
* Returns whether critical data has completed being loaded.
|
|
*
|
|
* @returns {Boolean}
|
|
* true if enough data has been loaded for the user interface to be
|
|
* useful, false otherwise.
|
|
*/
|
|
$scope.isLoaded = function isLoaded() {
|
|
|
|
return $scope.canChangePassword !== null
|
|
&& $scope.languages !== null;
|
|
|
|
};
|
|
|
|
}]
|
|
};
|
|
|
|
}]);
|