c0286d1ac3
Fixes #306 - Adds support for Dex as an OAuth external login provider - Adds support for OIDC in general - Extract out external logins on the JS side into a service - Add a feature flag for disabling direct login - Add support for directing to the single external login service - Does *not* yet support the config in the superuser tool
119 lines
No EOL
3.4 KiB
JavaScript
119 lines
No EOL
3.4 KiB
JavaScript
(function() {
|
|
/**
|
|
* Page that displays details about an user.
|
|
*/
|
|
angular.module('quayPages').config(['pages', function(pages) {
|
|
pages.create('user-view', 'user-view.html', UserViewCtrl, {
|
|
'newLayout': true,
|
|
'title': 'User {{ user.username }}',
|
|
'description': 'User {{ user.username }}'
|
|
})
|
|
}]);
|
|
|
|
function UserViewCtrl($scope, $routeParams, $timeout, ApiService, UserService, UIService, AvatarService, Config, ExternalLoginService) {
|
|
var username = $routeParams.username;
|
|
|
|
$scope.showInvoicesCounter = 0;
|
|
$scope.showAppsCounter = 0;
|
|
$scope.showRobotsCounter = 0;
|
|
$scope.changeEmailInfo = {};
|
|
$scope.changePasswordInfo = {};
|
|
$scope.hasSingleSignin = ExternalLoginService.hasSingleSignin();
|
|
|
|
UserService.updateUserIn($scope);
|
|
|
|
var loadRepositories = function() {
|
|
var options = {
|
|
'public': true,
|
|
'namespace': username,
|
|
};
|
|
|
|
$scope.repositoriesResource = ApiService.listReposAsResource().withOptions(options).get(function(resp) {
|
|
return resp.repositories;
|
|
});
|
|
};
|
|
|
|
var loadUser = function() {
|
|
$scope.userResource = ApiService.getUserInformationAsResource({'username': username}).get(function(user) {
|
|
$scope.viewuser = user;
|
|
|
|
// Load the repositories.
|
|
$timeout(function() {
|
|
loadRepositories();
|
|
}, 10);
|
|
});
|
|
};
|
|
|
|
// Load the user.
|
|
loadUser();
|
|
|
|
$scope.showRobots = function() {
|
|
$scope.showRobotsCounter++;
|
|
};
|
|
|
|
$scope.showInvoices = function() {
|
|
$scope.showInvoicesCounter++;
|
|
};
|
|
|
|
$scope.showApplications = function() {
|
|
$scope.showAppsCounter++;
|
|
};
|
|
|
|
$scope.changePassword = function() {
|
|
if (Config.AUTHENTICATION_TYPE != 'Database') { return; }
|
|
|
|
UIService.hidePopover('#changePasswordForm');
|
|
$scope.changePasswordInfo.state = 'changing';
|
|
|
|
var data = {
|
|
'password': $scope.changePasswordInfo.password
|
|
};
|
|
|
|
ApiService.changeUserDetails(data).then(function(resp) {
|
|
$scope.changePasswordInfo.state = 'changed';
|
|
|
|
// Reset the form
|
|
delete $scope.changePasswordInfo['password']
|
|
delete $scope.changePasswordInfo['repeatPassword']
|
|
|
|
// Reload the user.
|
|
UserService.load();
|
|
}, function(result) {
|
|
$scope.changePasswordInfo.state = 'change-error';
|
|
UIService.showFormError('#changePasswordForm', result);
|
|
});
|
|
};
|
|
|
|
$scope.generateClientToken = function() {
|
|
var generateToken = function(password) {
|
|
var data = {
|
|
'password': password
|
|
};
|
|
|
|
ApiService.generateUserClientKey(data).then(function(resp) {
|
|
$scope.generatedClientToken = resp['key'];
|
|
$('#clientTokenModal').modal({});
|
|
}, ApiService.errorDisplay('Could not generate token'));
|
|
};
|
|
|
|
UIService.showPasswordDialog('Enter your password to generate an encrypted version:', generateToken);
|
|
};
|
|
|
|
$scope.changeEmail = function() {
|
|
UIService.hidePopover('#changeEmailForm');
|
|
|
|
var details = {
|
|
'email': $scope.changeEmailInfo.email
|
|
};
|
|
|
|
$scope.changeEmailInfo.state = 'sending';
|
|
ApiService.changeUserDetails(details).then(function() {
|
|
$scope.changeEmailInfo.state = 'sent';
|
|
delete $scope.changeEmailInfo['email'];
|
|
}, function(result) {
|
|
$scope.changeEmailInfo.state = 'send-error';
|
|
UIService.showFormError('#changeEmailForm', result);
|
|
});
|
|
};
|
|
}
|
|
})(); |