mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-09 06:31:22 +00:00
GUAC-801 Implemented new endpoint for password update, and updated js to use the new endpoint.
This commit is contained in:
@@ -74,15 +74,15 @@ angular.module('home').controller('homeController', ['$scope', '$injector',
|
||||
*
|
||||
* @type String
|
||||
*/
|
||||
$scope.password = null;
|
||||
$scope.newPassword = null;
|
||||
|
||||
/**
|
||||
* The password match for the user. The update password action will fail if
|
||||
* $scope.password !== $scope.passwordMatch.
|
||||
* $scope.newPassword !== $scope.passwordMatch.
|
||||
*
|
||||
* @type String
|
||||
*/
|
||||
$scope.passwordMatch = null;
|
||||
$scope.newPasswordMatch = null;
|
||||
|
||||
/**
|
||||
* Returns whether critical data has completed being loaded.
|
||||
@@ -176,8 +176,9 @@ angular.module('home').controller('homeController', ['$scope', '$injector',
|
||||
$scope.closePasswordUpdate = function closePasswordUpdate() {
|
||||
|
||||
// Clear the password fields and close the dialog
|
||||
$scope.password = null;
|
||||
$scope.passwordMatch = null;
|
||||
$scope.oldPassword = null;
|
||||
$scope.newPassword = null;
|
||||
$scope.newPasswordMatch = null;
|
||||
$scope.showPasswordDialog = false;
|
||||
};
|
||||
|
||||
@@ -188,29 +189,40 @@ angular.module('home').controller('homeController', ['$scope', '$injector',
|
||||
$scope.updatePassword = function updatePassword() {
|
||||
|
||||
// Verify passwords match
|
||||
if ($scope.passwordMatch !== $scope.password) {
|
||||
if ($scope.newPasswordMatch !== $scope.newPassword) {
|
||||
$scope.showStatus({
|
||||
'className' : 'error',
|
||||
'title' : 'HOME.DIALOG_HEADER_ERROR',
|
||||
'text' : 'HOME.ERROR_PASSWORD_MISMATCH',
|
||||
'actions' : [ ACKNOWLEDGE_ACTION ]
|
||||
className : 'error',
|
||||
title : 'HOME.DIALOG_HEADER_ERROR',
|
||||
text : 'HOME.ERROR_PASSWORD_MISMATCH',
|
||||
actions : [ ACKNOWLEDGE_ACTION ]
|
||||
});
|
||||
return;
|
||||
}
|
||||
|
||||
// Save the user with the new password
|
||||
userService.saveUser({
|
||||
username: currentUserID,
|
||||
password: $scope.password
|
||||
userService.updateUserPassword(currentUserID, $scope.oldPassword, $scope.newPassword)
|
||||
.success(function passwordUpdated() {
|
||||
|
||||
// Close the password update dialog
|
||||
$scope.closePasswordUpdate();
|
||||
|
||||
// Indicate that the password has been changed
|
||||
$scope.showStatus({
|
||||
text : 'HOME.PASSWORD_CHANGED',
|
||||
actions : [ ACKNOWLEDGE_ACTION ]
|
||||
});
|
||||
})
|
||||
|
||||
// Notify of any errors
|
||||
.error(function passwordUpdateFailed(error) {
|
||||
$scope.showStatus({
|
||||
className : 'error',
|
||||
title : 'HOME.DIALOG_HEADER_ERROR',
|
||||
'text' : error.message,
|
||||
actions : [ ACKNOWLEDGE_ACTION ]
|
||||
});
|
||||
});
|
||||
|
||||
$scope.closePasswordUpdate();
|
||||
|
||||
// Indicate that the password has been changed
|
||||
$scope.showStatus({
|
||||
'text' : 'HOME.PASSWORD_CHANGED',
|
||||
'actions' : [ ACKNOWLEDGE_ACTION ]
|
||||
});
|
||||
};
|
||||
|
||||
}]);
|
||||
|
@@ -31,14 +31,16 @@
|
||||
<div class="section">
|
||||
<table class="properties">
|
||||
<tr>
|
||||
<th>{{'HOME.FIELD_HEADER_PASSWORD' | translate}}</th>
|
||||
|
||||
<td><input ng-model="password" type="password" /></td>
|
||||
<th>{{'HOME.FIELD_HEADER_PASSWORD_OLD' | translate}}</th>
|
||||
<td><input ng-model="oldPassword" type="password" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>{{'HOME.FIELD_HEADER_PASSWORD_AGAIN' | translate}}</th>
|
||||
|
||||
<td><input ng-model="passwordMatch" type="password" /></td>
|
||||
<th>{{'HOME.FIELD_HEADER_PASSWORD_NEW' | translate}}</th>
|
||||
<td><input ng-model="newPassword" type="password" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>{{'HOME.FIELD_HEADER_PASSWORD_NEW_AGAIN' | translate}}</th>
|
||||
<td><input ng-model="newPasswordMatch" type="password" /></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
|
@@ -29,9 +29,9 @@ angular.module('index').factory('authenticationInterceptor', ['$location', '$q',
|
||||
},
|
||||
|
||||
'responseError': function(rejection) {
|
||||
// Do not redirect failed login requests to the login page.
|
||||
// Do not redirect failed api requests.
|
||||
if ((rejection.status === 401 || rejection.status === 403)
|
||||
&& rejection.config.url.search('api/token') === -1) {
|
||||
&& rejection.config.url.search('api/') === -1) {
|
||||
$location.path('/login');
|
||||
}
|
||||
return $q.reject(rejection);
|
||||
|
@@ -23,8 +23,15 @@
|
||||
/**
|
||||
* Service for operating on users via the REST API.
|
||||
*/
|
||||
angular.module('rest').factory('userService', ['$http', 'authenticationService',
|
||||
function userService($http, authenticationService) {
|
||||
angular.module('rest').factory('userService', ['$injector',
|
||||
function userService($injector) {
|
||||
|
||||
// Get required types
|
||||
var UserPasswordUpdate = $injector.get("UserPasswordUpdate");
|
||||
|
||||
// Get required services
|
||||
var $http = $injector.get("$http");
|
||||
var authenticationService = $injector.get("authenticationService");
|
||||
|
||||
var service = {};
|
||||
|
||||
@@ -173,6 +180,44 @@ angular.module('rest').factory('userService', ['$http', 'authenticationService',
|
||||
|
||||
};
|
||||
|
||||
/**
|
||||
* Makes a request to the REST API to update the password for a user,
|
||||
* returning a promise that can be used for processing the results of the call.
|
||||
*
|
||||
* @param {String} username
|
||||
* The username of the user to update.
|
||||
*
|
||||
* @param {String} oldPassword
|
||||
* The exiting password of the user to update.
|
||||
*
|
||||
* @param {String} newPassword
|
||||
* The new password of the user to update.
|
||||
*
|
||||
* @returns {Promise}
|
||||
* A promise for the HTTP call which will succeed if and only if the
|
||||
* password update operation is successful.
|
||||
*/
|
||||
service.updateUserPassword = function updateUserPassword(username,
|
||||
oldPassword, newPassword) {
|
||||
|
||||
// Build HTTP parameters set
|
||||
var httpParameters = {
|
||||
token : authenticationService.getCurrentToken()
|
||||
};
|
||||
|
||||
// Retrieve user
|
||||
return $http({
|
||||
method : 'PUT',
|
||||
url : 'api/users/' + encodeURIComponent(username) + '/password',
|
||||
params : httpParameters,
|
||||
data : new UserPasswordUpdate({
|
||||
oldPassword : oldPassword,
|
||||
newPassword : newPassword
|
||||
})
|
||||
});
|
||||
|
||||
};
|
||||
|
||||
return service;
|
||||
|
||||
}]);
|
||||
|
@@ -0,0 +1,61 @@
|
||||
/*
|
||||
* Copyright (C) 2015 Glyptodon LLC
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
* THE SOFTWARE.
|
||||
*/
|
||||
|
||||
/**
|
||||
* Service which defines the UserPasswordUpdate class.
|
||||
*/
|
||||
angular.module('rest').factory('UserPasswordUpdate', [function defineUserPasswordUpdate() {
|
||||
|
||||
/**
|
||||
* The object sent to the REST API when representing the data
|
||||
* associated with a user password update.
|
||||
*
|
||||
* @constructor
|
||||
* @param {UserPasswordUpdate|Object} [template={}]
|
||||
* The object whose properties should be copied within the new
|
||||
* UserPasswordUpdate.
|
||||
*/
|
||||
var UserPasswordUpdate = function UserPasswordUpdate(template) {
|
||||
|
||||
// Use empty object by default
|
||||
template = template || {};
|
||||
|
||||
/**
|
||||
* This user's current password. Required for authenticating the user
|
||||
* as part of to the password update operation.
|
||||
*
|
||||
* @type String
|
||||
*/
|
||||
this.oldPassword = template.oldPassword;
|
||||
|
||||
/**
|
||||
* The new password to set for the user.
|
||||
*
|
||||
* @type String
|
||||
*/
|
||||
this.newPassword = template.newPassword;
|
||||
|
||||
};
|
||||
|
||||
return UserPasswordUpdate;
|
||||
|
||||
}]);
|
Reference in New Issue
Block a user