Files
grafana/public/app/features/admin/AdminEditUserCtrl.ts

119 lines
3.1 KiB
TypeScript
Raw Normal View History

2017-12-20 12:33:33 +01:00
import _ from 'lodash';
2018-09-07 17:55:38 +02:00
export default class AdminEditUserCtrl {
2017-11-23 17:05:08 +01:00
/** @ngInject */
constructor($scope, $routeParams, backendSrv, $location, navModelSrv) {
$scope.user = {};
2017-12-20 12:33:33 +01:00
$scope.newOrg = { name: '', role: 'Editor' };
$scope.permissions = {};
$scope.navModel = navModelSrv.getNav('admin', 'global-users', 0);
$scope.init = () => {
if ($routeParams.id) {
$scope.getUser($routeParams.id);
2015-05-19 09:09:21 +02:00
$scope.getUserOrgs($routeParams.id);
}
};
$scope.getUser = id => {
backendSrv.get('/api/users/' + id).then(user => {
$scope.user = user;
$scope.user_id = id;
$scope.permissions.isGrafanaAdmin = user.isGrafanaAdmin;
});
};
$scope.setPassword = () => {
if (!$scope.passwordForm.$valid) {
return;
}
2018-08-26 20:19:23 +02:00
const payload = { password: $scope.password };
backendSrv.put('/api/admin/users/' + $scope.user_id + '/password', payload).then(() => {
$location.path('/admin/users');
});
};
$scope.updatePermissions = () => {
2018-08-26 20:19:23 +02:00
const payload = $scope.permissions;
backendSrv.put('/api/admin/users/' + $scope.user_id + '/permissions', payload).then(() => {
$location.path('/admin/users');
});
};
$scope.create = () => {
if (!$scope.userForm.$valid) {
return;
}
backendSrv.post('/api/admin/users', $scope.user).then(() => {
2017-12-20 12:33:33 +01:00
$location.path('/admin/users');
});
};
$scope.getUserOrgs = id => {
backendSrv.get('/api/users/' + id + '/orgs').then(orgs => {
2015-05-19 09:09:21 +02:00
$scope.orgs = orgs;
});
};
$scope.update = () => {
if (!$scope.userForm.$valid) {
return;
}
backendSrv.put('/api/users/' + $scope.user_id, $scope.user).then(() => {
$location.path('/admin/users');
});
};
$scope.updateOrgUser = orgUser => {
backendSrv.patch('/api/orgs/' + orgUser.orgId + '/users/' + $scope.user_id, orgUser).then(() => {});
};
$scope.removeOrgUser = orgUser => {
backendSrv.delete('/api/orgs/' + orgUser.orgId + '/users/' + $scope.user_id).then(() => {
$scope.getUser($scope.user_id);
$scope.getUserOrgs($scope.user_id);
});
};
$scope.orgsSearchCache = [];
$scope.searchOrgs = (queryStr, callback) => {
if ($scope.orgsSearchCache.length > 0) {
2017-12-20 12:33:33 +01:00
callback(_.map($scope.orgsSearchCache, 'name'));
return;
}
backendSrv.get('/api/orgs', { query: '' }).then(result => {
$scope.orgsSearchCache = result;
2017-12-20 12:33:33 +01:00
callback(_.map(result, 'name'));
});
};
$scope.addOrgUser = () => {
if (!$scope.addOrgForm.$valid) {
return;
}
2018-08-26 20:19:23 +02:00
const orgInfo = _.find($scope.orgsSearchCache, {
2017-12-20 12:33:33 +01:00
name: $scope.newOrg.name,
});
if (!orgInfo) {
return;
}
$scope.newOrg.loginOrEmail = $scope.user.login;
backendSrv.post('/api/orgs/' + orgInfo.id + '/users/', $scope.newOrg).then(() => {
$scope.getUser($scope.user_id);
$scope.getUserOrgs($scope.user_id);
});
};
$scope.init();
2017-11-23 17:05:08 +01:00
}
}