1
0
mirror of https://github.com/Foltik/Shimapan synced 2024-09-21 11:11:22 -04:00
shimapan/app/public/panel/controllers/ApiCtrl.js

87 lines
2.9 KiB
JavaScript
Raw Normal View History

var angular = require('angular');
2017-10-21 17:47:55 -04:00
angular.module('ApiCtrl', ['ApiSvc', 'AuthSvc']).controller('ApiController', ['$scope', 'ApiService', 'AuthService', function ($scope, ApiService, AuthService) {
// Transforms an array of period-separated properties ex. ["file.upload", "user.view", "user.ban"]
// to json ex. { "file": "upload", "user": ["view", "ban"] }
2017-10-21 17:47:55 -04:00
function splitScope(scope) {
var res = {};
for (var i in scope) {
if (scope.hasOwnProperty(i)) {
var perm = scope[i];
var prefix = perm.substr(0, perm.indexOf('.'));
var postfix = perm.substr(perm.indexOf('.') + 1);
if (!res[prefix]) res[prefix] = [];
res[prefix].push({name: postfix});
}
2017-10-21 17:47:55 -04:00
}
return res;
}
// Called on init, retrieves the user's scope from the server.
2017-10-21 17:47:55 -04:00
$scope.parseScope = function () {
AuthService.currentUser(function (res) {
$scope.scopeObj = splitScope(res.scope);
$scope.currKeyScope = [];
2017-10-21 17:47:55 -04:00
})
};
// Triggered when a checkbox for a permission changes.
// Updates the currKeyScope object with the addition or removal.
$scope.updateCurrKeyPerm = function(prefix, perm) {
var index = $scope.scopeObj[prefix].indexOf(perm);
if ($scope.scopeObj[prefix][index].isChecked) {
$scope.currKeyScope.push(prefix + '.' + perm.name);
} else {
index = $scope.currKeyScope.indexOf(prefix + '.' + perm.name);
$scope.currKeyScope.splice(index, 1);
}
};
2017-10-21 17:47:55 -04:00
$scope.getKeys = function () {
ApiService.getAllKeys(function (keys) {
2017-10-18 13:31:08 -04:00
$scope.keys = keys;
});
};
2017-10-21 15:10:24 -04:00
2017-10-21 17:47:55 -04:00
$scope.deleteKey = function (key) {
ApiService.deleteKey(key, function () {
2017-10-21 15:10:24 -04:00
var index = $scope.keys.indexOf(key);
$scope.keys.splice(index, 1);
$scope.hideKeyInfo();
$scope.currKey = {};
});
};
2017-10-21 17:47:55 -04:00
$scope.createKey = function () {
if ($scope.currKeyScope.length === 0 || !$scope.currKeyIdentifier)
2017-10-21 17:47:55 -04:00
return;
ApiService.createKey({
identifier: $scope.currKeyIdentifier,
scope: JSON.stringify($scope.currKeyScope)
2017-10-21 17:47:55 -04:00
}, function (res) {
if (res.key) {
$scope.hideNewKey();
$scope.getKeys();
}
});
};
// Hide/show new key modal dialog
$scope.hideNewKey = function () {
$scope.nModalShow = false;
};
$scope.showNewKey = function () {
$scope.nModalShow = true;
};
// Hide/show key info modal dialog
$scope.hideKeyInfo = function () {
$scope.kModalShow = false;
};
$scope.showKeyInfo = function (key) {
$scope.kModalShow = true;
$scope.currKey = key;
$scope.currKey.scopeObj = splitScope($scope.currKey.scope);
};
2017-10-18 13:31:08 -04:00
}]);