postprocess_action.js
122 lines
| 4.4 KiB
| application/javascript
|
JavascriptLexer
r0 | // # Copyright (C) 2010-2016 RhodeCode GmbH | |||
// # | ||||
// # This program is free software: you can redistribute it and/or modify | ||||
// # it under the terms of the GNU Affero General Public License, version 3 | ||||
// # (only), as published by the Free Software Foundation. | ||||
// # | ||||
// # This program is distributed in the hope that it will be useful, | ||||
// # but WITHOUT ANY WARRANTY; without even the implied warranty of | ||||
// # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||||
// # GNU General Public License for more details. | ||||
// # | ||||
// # You should have received a copy of the GNU Affero General Public License | ||||
// # along with this program. If not, see <http://www.gnu.org/licenses/>. | ||||
// # | ||||
// # This program is dual-licensed. If you wish to learn more about the | ||||
r28 | // # AppEnlight Enterprise Edition, including its added features, Support | |||
r0 | // # services, and proprietary license terms, please see | |||
// # https://rhodecode.com/licenses/ | ||||
angular.module('appenlight.directives.postProcessAction', []).directive('postProcessAction', ['applicationsPropertyResource', function (applicationsPropertyResource) { | ||||
return { | ||||
scope: {}, | ||||
bindToController:{ | ||||
action: '=', | ||||
resource: '=' | ||||
}, | ||||
controller:postProcessActionController, | ||||
controllerAs:'ctrl', | ||||
restrict: 'E', | ||||
templateUrl: 'templates/directives/postprocess_action.html' | ||||
}; | ||||
function postProcessActionController(){ | ||||
var vm = this; | ||||
console.log(vm); | ||||
var allOps = { | ||||
'eq': 'Equal', | ||||
'ne': 'Not equal', | ||||
'ge': 'Greater or equal', | ||||
'gt': 'Greater than', | ||||
'le': 'Lesser or equal', | ||||
'lt': 'Lesser than', | ||||
'startswith': 'Starts with', | ||||
'endswith': 'Ends with', | ||||
'contains': 'Contains' | ||||
}; | ||||
var fieldOps = {}; | ||||
fieldOps['http_status'] = ['eq', 'ne', 'ge', 'le']; | ||||
fieldOps['group:priority'] = ['eq', 'ne', 'ge', 'le']; | ||||
fieldOps['duration'] = ['ge', 'le']; | ||||
fieldOps['url_domain'] = ['eq', 'ne', 'startswith', 'endswith', | ||||
'contains']; | ||||
fieldOps['url_path'] = ['eq', 'ne', 'startswith', 'endswith', | ||||
'contains']; | ||||
fieldOps['error'] = ['eq', 'ne', 'startswith', 'endswith', | ||||
'contains']; | ||||
fieldOps['tags:server_name'] = ['eq', 'ne', 'startswith', 'endswith', | ||||
'contains']; | ||||
fieldOps['group:occurences'] = ['eq', 'ne', 'ge', 'le']; | ||||
var possibleFields = { | ||||
'__AND__': 'All met (composite rule)', | ||||
'__OR__': 'One met (composite rule)', | ||||
r41 | '__NOT__': 'Not met (composite rule)', | |||
r0 | 'http_status': 'HTTP Status', | |||
'duration': 'Request duration', | ||||
'group:priority': 'Group -> Priority', | ||||
'url_domain': 'Domain', | ||||
'url_path': 'URL Path', | ||||
'error': 'Error', | ||||
'tags:server_name': 'Tag -> Server name', | ||||
'group:occurences': 'Group -> Occurences' | ||||
}; | ||||
vm.ruleDefinitions = { | ||||
fieldOps: fieldOps, | ||||
allOps: allOps, | ||||
possibleFields: possibleFields | ||||
}; | ||||
vm.possibleActions = [ | ||||
['1', 'Priority +1'], | ||||
['-1', 'Priority -1'] | ||||
]; | ||||
vm.deleteAction = function (action) { | ||||
applicationsPropertyResource.remove({ | ||||
pkey: vm.action.pkey, | ||||
resourceId: vm.resource.resource_id, | ||||
key: 'postprocessing_rules' | ||||
}, function () { | ||||
vm.resource.postprocessing_rules.splice( | ||||
vm.resource.postprocessing_rules.indexOf(action), 1); | ||||
}); | ||||
}; | ||||
vm.saveAction = function () { | ||||
var params = { | ||||
'pkey': vm.action.pkey, | ||||
'resourceId': vm.resource.resource_id, | ||||
key: 'postprocessing_rules' | ||||
}; | ||||
applicationsPropertyResource.update(params, vm.action, | ||||
function (data) { | ||||
vm.action.dirty = false; | ||||
vm.errors = []; | ||||
}, function (response) { | ||||
if (response.status == 422) { | ||||
var errorDict = angular.fromJson(response.data); | ||||
vm.errors = _.values(errorDict); | ||||
} | ||||
}); | ||||
}; | ||||
vm.setDirty = function() { | ||||
vm.action.dirty = true; | ||||
console.log('set dirty'); | ||||
}; | ||||
} | ||||
}]); | ||||