/**
* Parameter flow control controller.
*
* @author Eric Zhao
*/
angular.module('sentinelDashboardApp').controller('ParamFlowController', ['$scope', '$stateParams', 'ParamFlowService', 'ngDialog',
'MachineService',
function ($scope, $stateParams, ParamFlowService, ngDialog,
MachineService) {
const UNSUPPORTED_CODE = 4041;
$scope.app = $stateParams.app;
$scope.curExItem = {};
$scope.paramItemClassTypeList = [
'int', 'double', 'java.lang.String', 'long', 'float', 'char', 'byte'
];
$scope.rulesPageConfig = {
pageSize: 10,
currentPageIndex: 1,
totalPage: 1,
totalCount: 0,
};
$scope.macsInputConfig = {
searchField: ['text', 'value'],
persist: true,
create: false,
maxItems: 1,
render: {
item: function (data, escape) {
return '
' + escape(data.text) + '
';
}
},
onChange: function (value, oldValue) {
$scope.macInputModel = value;
}
};
function updateSingleParamItem(arr, v, t, c) {
for (let i = 0; i < arr.length; i++) {
if (arr[i].object === v && arr[i].classType === t) {
arr[i].count = c;
return;
}
}
arr.push({object: v, classType: t, count: c});
}
function removeSingleParamItem(arr, v, t) {
for (let i = 0; i < arr.length; i++) {
if (arr[i].object === v && arr[i].classType === t) {
arr.splice(i, 1);
break;
}
}
}
function isNumberClass(classType) {
return classType === 'int' || classType === 'double' ||
classType === 'float' || classType === 'long' || classType === 'short';
}
function isByteClass(classType) {
return classType === 'byte';
}
function notNumberAtLeastZero(num) {
return num === undefined || num === '' || isNaN(num) || num < 0;
}
function notGoodNumber(num) {
return num === undefined || num === '' || isNaN(num);
}
function notGoodNumberBetweenExclusive(num, l ,r) {
return num === undefined || num === '' || isNaN(num) || num < l || num > r;
}
$scope.notValidParamItem = (curExItem) => {
if (isNumberClass(curExItem.classType) && notGoodNumber(curExItem.object)) {
return true;
}
if (isByteClass(curExItem.classType) && notGoodNumberBetweenExclusive(curExItem.object, -128, 127)) {
return true;
}
return curExItem.object === undefined || curExItem.classType === undefined ||
notNumberAtLeastZero(curExItem.count);
};
$scope.addParamItem = () => {
updateSingleParamItem($scope.currentRule.rule.paramFlowItemList,
$scope.curExItem.object, $scope.curExItem.classType, $scope.curExItem.count);
let oldItem = $scope.curExItem;
$scope.curExItem = {classType: oldItem.classType};
};
$scope.removeParamItem = (v, t) => {
removeSingleParamItem($scope.currentRule.rule.paramFlowItemList, v, t);
};
function getMachineRules() {
if (!$scope.macInputModel) {
return;
}
let mac = $scope.macInputModel.split(':');
ParamFlowService.queryMachineRules($scope.app, mac[0], mac[1])
.success(function (data) {
if (data.code === 0 && data.data) {
$scope.loadError = undefined;
$scope.rules = data.data;
$scope.rulesPageConfig.totalCount = $scope.rules.length;
} else {
$scope.rules = [];
$scope.rulesPageConfig.totalCount = 0;
if (data.code === UNSUPPORTED_CODE) {
$scope.loadError = {message: "机器 " + mac[0] + ":" + mac[1] + " 的 Sentinel 客户端版本不支持热点参数限流功能,请升级至 0.2.0 以上版本并引入 sentinel-parameter-flow-control 依赖。"}
} else {
$scope.loadError = {message: data.msg}
}
}
})
.error((data, header, config, status) => {
$scope.loadError = {message: "未知错误"}
});
}
$scope.getMachineRules = getMachineRules;
getMachineRules();
var paramFlowRuleDialog;
$scope.editRule = function (rule) {
$scope.currentRule = angular.copy(rule);
if ($scope.currentRule.rule && $scope.currentRule.rule.durationInSec === undefined) {
$scope.currentRule.rule.durationInSec = 1;
}
$scope.paramFlowRuleDialog = {
title: '编辑热点规则',
type: 'edit',
confirmBtnText: '保存',
supportAdvanced: true,
showAdvanceButton: rule.rule.paramFlowItemList === undefined || rule.rule.paramFlowItemList.length <= 0
};
paramFlowRuleDialog = ngDialog.open({
template: '/app/views/dialog/param-flow-rule-dialog.html',
width: 680,
overlay: true,
scope: $scope
});
$scope.curExItem = {};
};
$scope.addNewRule = function () {
var mac = $scope.macInputModel.split(':');
$scope.currentRule = {
app: $scope.app,
ip: mac[0],
port: mac[1],
rule: {
grade: 1,
paramFlowItemList: [],
count: 0,
limitApp: 'default',
controlBehavior: 0,
durationInSec: 1,
burstCount: 0,
maxQueueingTimeMs: 0,
clusterMode: false,
clusterConfig: {
thresholdType: 0,
fallbackToLocalWhenFail: true,
}
}
};
$scope.paramFlowRuleDialog = {
title: '新增热点规则',
type: 'add',
confirmBtnText: '新增',
supportAdvanced: true,
showAdvanceButton: true,
};
paramFlowRuleDialog = ngDialog.open({
template: '/app/views/dialog/param-flow-rule-dialog.html',
width: 680,
overlay: true,
scope: $scope
});
$scope.curExItem = {};
};
$scope.onOpenAdvanceClick = function () {
$scope.paramFlowRuleDialog.showAdvanceButton = false;
};
$scope.onCloseAdvanceClick = function () {
$scope.paramFlowRuleDialog.showAdvanceButton = true;
};
$scope.saveRule = function () {
if (!ParamFlowService.checkRuleValid($scope.currentRule.rule)) {
return;
}
if ($scope.paramFlowRuleDialog.type === 'add') {
addNewRuleAndPush($scope.currentRule);
} else if ($scope.paramFlowRuleDialog.type === 'edit') {
saveRuleAndPush($scope.currentRule, true);
}
};
function addNewRuleAndPush(rule) {
ParamFlowService.addNewRule(rule).success((data) => {
if (data.success) {
getMachineRules();
paramFlowRuleDialog.close();
} else {
alert('添加规则失败:' + data.msg);
}
}).error((data) => {
if (data) {
alert('添加规则失败:' + data.msg);
} else {
alert("添加规则失败:未知错误");
}
});
}
function saveRuleAndPush(rule, edit) {
ParamFlowService.saveRule(rule).success(function (data) {
if (data.success) {
alert("修改规则成功");
getMachineRules();
if (edit) {
paramFlowRuleDialog.close();
} else {
confirmDialog.close();
}
} else {
alert('修改规则失败:' + data.msg);
}
}).error((data) => {
if (data) {
alert('修改规则失败:' + data.msg);
} else {
alert("修改规则失败:未知错误");
}
});
}
function deleteRuleAndPush(entity) {
if (entity.id === undefined || isNaN(entity.id)) {
alert('规则 ID 不合法!');
return;
}
ParamFlowService.deleteRule(entity).success((data) => {
if (data.code == 0) {
getMachineRules();
confirmDialog.close();
} else {
alert('删除规则失败:' + data.msg);
}
}).error((data) => {
if (data) {
alert('删除规则失败:' + data.msg);
} else {
alert("删除规则失败:未知错误");
}
});
};
var confirmDialog;
$scope.deleteRule = function (ruleEntity) {
$scope.currentRule = ruleEntity;
console.log('deleting: ' + ruleEntity);
$scope.confirmDialog = {
title: '删除热点规则',
type: 'delete_rule',
attentionTitle: '请确认是否删除如下热点参数限流规则',
attention: '资源名: ' + ruleEntity.rule.resource + ', 热点参数索引: ' + ruleEntity.rule.paramIdx +
', 限流模式: ' + (ruleEntity.rule.grade === 1 ? 'QPS' : '未知') + ', 限流阈值: ' + ruleEntity.rule.count,
confirmBtnText: '删除',
};
confirmDialog = ngDialog.open({
template: '/app/views/dialog/confirm-dialog.html',
scope: $scope,
overlay: true
});
};
$scope.confirm = function () {
if ($scope.confirmDialog.type === 'delete_rule') {
deleteRuleAndPush($scope.currentRule);
} else {
console.error('error');
}
};
queryAppMachines();
function queryAppMachines() {
MachineService.getAppMachines($scope.app).success(
function (data) {
if (data.code == 0) {
// $scope.machines = data.data;
if (data.data) {
$scope.machines = [];
$scope.macsInputOptions = [];
data.data.forEach(function (item) {
if (item.healthy) {
$scope.macsInputOptions.push({
text: item.ip + ':' + item.port,
value: item.ip + ':' + item.port
});
}
});
}
if ($scope.macsInputOptions.length > 0) {
$scope.macInputModel = $scope.macsInputOptions[0].value;
}
} else {
$scope.macsInputOptions = [];
}
}
);
};
$scope.$watch('macInputModel', function () {
if ($scope.macInputModel) {
getMachineRules();
}
});
}]);