wazuh-kibana-app/public/controllers/agents.js

342 lines
11 KiB
JavaScript
Raw Normal View History

const app = require('ui/modules').get('app/wazuh', []);
2018-01-15 15:11:45 +00:00
const beautifier = require('plugins/wazuh/utils/json-beautifier');
2017-01-16 12:29:48 +00:00
app.controller('agentsController',
function ($scope, $location, $q, $rootScope, appState, genericReq, apiReq, AgentsAutoComplete, errorHandler) {
$rootScope.page = 'agents';
2017-11-28 16:37:31 +00:00
$scope.extensions = appState.getExtensions().extensions;
$scope.agentsAutoComplete = AgentsAutoComplete;
2017-10-20 19:04:22 +00:00
// Check the url hash and retrieve the tabView information
if ($location.search().tabView){
$scope.tabView = $location.search().tabView;
} else { // If tabView doesn't exist, default it to 'panels'
$scope.tabView = "panels";
$location.search("tabView", "panels");
}
2017-10-20 19:04:22 +00:00
// Check the url hash and retrivew the tab information
if ($location.search().tab){
$scope.tab = $location.search().tab;
} else { // If tab doesn't exist, default it to 'general'
$scope.tab = "general";
$location.search("tab", "general");
2017-11-28 16:37:31 +00:00
// Now we initialize the implicitFilter
$rootScope.currentImplicitFilter = "";
}
$rootScope.tabVisualizations = {
general : 7,
fim : 8,
pm : 4,
2018-01-30 15:19:42 +00:00
vuls : 7,
oscap : 13,
audit : 15,
pci : 3,
virustotal : 6,
configuration: 0
};
// Object for matching nav items and Wazuh groups
const tabFilters = {
general : { group: '' },
fim : { group: 'syscheck' },
pm : { group: 'rootcheck' },
vuls : { group: 'vulnerability-detector' },
oscap : { group: 'oscap' },
audit : { group: 'audit' },
pci : { group: 'pci_dss' },
virustotal: { group: 'virustotal' }
};
// Switch subtab
$scope.switchSubtab = subtab => $scope.tabView = subtab;
$scope.switchTab = tab => {
2018-01-15 15:11:45 +00:00
if($scope.tab === tab) return;
2018-01-15 15:11:45 +00:00
if($rootScope.ownHandlers){
for(let h of $rootScope.ownHandlers){
h._scope.$destroy();
}
2018-01-08 15:27:37 +00:00
}
$rootScope.ownHandlers = [];
2017-11-28 16:37:31 +00:00
// Deleting app state traces in the url
2017-11-17 16:01:16 +00:00
$location.search('_a', null);
$scope.tabView = 'panels';
2017-11-17 16:01:16 +00:00
$rootScope.loadedVisualizations = [];
};
2017-11-17 16:01:16 +00:00
// Watchers
2017-11-17 16:01:16 +00:00
// We watch the resultState provided by the discover
$scope.$watch('tabView', () => $location.search('tabView', $scope.tabView));
$scope.$watch('tab', () => {
$location.search('tab', $scope.tab);
2018-01-15 15:11:45 +00:00
2017-11-17 16:01:16 +00:00
// Update the implicit filter
2018-01-15 15:11:45 +00:00
if (typeof tabFilters[$scope.tab] !== 'undefined' && tabFilters[$scope.tab].group === "") $rootScope.currentImplicitFilter = "";
else $rootScope.currentImplicitFilter = (typeof tabFilters[$scope.tab] !== 'undefined') ? tabFilters[$scope.tab].group : '';
if($scope.tab === 'configuration'){
firstLoad();
}
});
2017-11-28 16:37:31 +00:00
// Agent data
$scope.getAgentStatusClass = (agentStatus) => agentStatus === "Active" ? "green" : "red";
$scope.formatAgentStatus = (agentStatus) => {
return ['Active','Disconnected'].includes(agentStatus) ? agentStatus : 'Never connected';
};
const calculateMinutes = (start,end) => {
let time = new Date(start);
let endTime = new Date(end);
let minutes = ((endTime - time) / 1000) / 60;
return minutes;
}
const validateRootCheck = () => {
$scope.agent.rootcheck.duration = 'Unknown';
if ($scope.agent.rootcheck.end && $scope.agent.rootcheck.start) {
$scope.agent.rootcheck.duration = ((new Date($scope.agent.rootcheck.end) - new Date($scope.agent.rootcheck.start))/1000)/60;
$scope.agent.rootcheck.duration = Math.round($scope.agent.rootcheck.duration * 100) / 100;
if($scope.agent.rootcheck.duration <= 0){
$scope.agent.rootcheck.inProgress = true;
}
} else {
if (!$scope.agent.rootcheck.end) {
$scope.agent.rootcheck.end = 'Unknown';
}
if (!$scope.agent.rootcheck.start){
$scope.agent.rootcheck.start = 'Unknown';
}
}
}
const validateSysCheck = () => {
$scope.agent.syscheck.duration = 'Unknown';
if ($scope.agent.syscheck.end && $scope.agent.syscheck.start) {
$scope.agent.syscheck.duration = ((new Date($scope.agent.syscheck.end) - new Date($scope.agent.syscheck.start))/1000)/60;
$scope.agent.syscheck.duration = Math.round($scope.agent.syscheck.duration * 100) / 100;
if($scope.agent.syscheck.duration <= 0){
$scope.agent.syscheck.inProgress = true;
}
} else {
if (!$scope.agent.syscheck.end) {
$scope.agent.syscheck.end = 'Unknown';
}
if (!$scope.agent.syscheck.start){
$scope.agent.syscheck.start = 'Unknown';
}
}
}
$scope.getAgent = async newAgentId => {
try {
if($scope.tab === 'configuration'){
return $scope.getAgentConfig(newAgentId);
}
let id = null;
// They passed an id
if (newAgentId) {
id = newAgentId;
$location.search('agent', id);
} else {
if ($location.search().agent && !$rootScope.globalAgent) { // There's one in the url
id = $location.search().agent;
} else { // We pick the one in the rootScope
id = $rootScope.globalAgent;
$location.search('agent', id);
delete $rootScope.globalAgent;
}
}
if (id === '000' && $scope.tab === 'configuration') {
$scope.tab = 'general';
$scope.switchTab('general');
}
const data = await Promise.all([
apiReq.request('GET', `/agents/${id}`, {}),
apiReq.request('GET', `/syscheck/${id}/last_scan`, {}),
apiReq.request('GET', `/rootcheck/${id}/last_scan`, {})
]);
// Agent
$scope.agent = data[0].data.data;
if ($scope.agent.os) {
$scope.agentOS = $scope.agent.os.name + ' ' + $scope.agent.os.version;
}
else { $scope.agentOS = 'Unkwnown' };
// Syscheck
$scope.agent.syscheck = data[1].data.data;
validateSysCheck();
// Rootcheck
$scope.agent.rootcheck = data[2].data.data;
validateRootCheck();
2018-01-26 10:21:50 +00:00
if(!$scope.$$phase) $scope.$digest();
return;
} catch (error) {
errorHandler.handle(error,'Agents');
if(!$rootScope.$$phase) $rootScope.$digest();
}
};
$scope.goGroups = agent => {
$rootScope.globalAgent = agent;
$rootScope.comeFrom = 'agents';
$location.search('tab', 'groups');
$location.path('/manager');
};
2017-12-11 08:33:43 +00:00
$scope.analizeAgents = async search => {
try {
$scope.agentsAutoComplete.filters = [];
await $scope.agentsAutoComplete.addFilter('search',search);
2017-12-12 16:27:29 +00:00
if(!$scope.$$phase) $scope.$digest();
return $scope.agentsAutoComplete.items;
} catch (error) {
errorHandler.handle(error,'Agents');
if(!$rootScope.$$phase) $rootScope.$digest();
}
2017-12-12 16:27:29 +00:00
}
//Load
try {
2018-01-15 15:11:45 +00:00
if($scope.tab !== 'configuration'){
$scope.getAgent();
}
$scope.agentsAutoComplete.nextPage('');
} catch (e) {
errorHandler.handle('Unexpected exception loading controller','Agents');
if(!$rootScope.$$phase) $rootScope.$digest();
}
//Destroy
$scope.$on("$destroy", () => {
$scope.agentsAutoComplete.reset();
if($rootScope.ownHandlers) {
for(let h of $rootScope.ownHandlers){
h._scope.$destroy();
}
2018-01-08 15:27:37 +00:00
}
$rootScope.ownHandlers = [];
});
//PCI tab
let tabs = [];
genericReq.request('GET', '/api/wazuh-api/pci/all')
.then((data) => {
for(let key in data.data){
tabs.push({
"title": key,
"content": data.data[key]
});
}
})
.catch(error => {
errorHandler.handle(error,'Agents');
if(!$rootScope.$$phase) $rootScope.$digest();
});
$scope.tabs = tabs;
$scope.selectedIndex = 0;
2018-01-15 15:11:45 +00:00
/** Agent configuration */
2018-01-17 16:29:49 +00:00
$scope.switchConfigTab = selected => {
2018-01-17 16:29:49 +00:00
};
2018-01-15 15:11:45 +00:00
$scope.isArray = angular.isArray;
const getAgent = newAgentId => {
// They passed an id
if (newAgentId) {
$location.search('agent', newAgentId);
}
2018-01-15 15:11:45 +00:00
};
$scope.getAgentConfig = newAgentId => {
getAgent(newAgentId);
firstLoad();
}
$scope.goGroup = () => {
$rootScope.globalAgent = $scope.agent;
$rootScope.comeFrom = 'agents';
$location.search('tab', 'groups');
$location.path('/manager');
};
2018-01-15 15:11:45 +00:00
const firstLoad = async () => {
try{
$scope.configurationError = false;
$scope.load = true;
let id;
if ($location.search().agent && !$rootScope.globalAgent) { // There's one in the url
2018-01-15 15:11:45 +00:00
id = $location.search().agent;
} else { // We pick the one in the rootScope
id = $rootScope.globalAgent;
$location.search('agent', id);
delete $rootScope.globalAgent;
}
let data = await apiReq.request('GET', `/agents/${id}`, {});
$scope.agent = data.data.data;
$scope.groupName = $scope.agent.group;
if(!$scope.groupName){
2018-01-15 15:11:45 +00:00
$scope.configurationError = true;
$scope.load = false;
if($scope.agent.id === '000'){
$scope.configurationError = false;
$scope.tab = 'general';
$scope.switchTab('general');
}
if(!$scope.$$phase) $scope.$digest();
return;
}
data = await apiReq.request('GET', `/agents/groups/${$scope.groupName}/configuration`, {});
$scope.groupConfiguration = data.data.data.items[0];
$scope.rawJSON = beautifier.prettyPrint($scope.groupConfiguration);
data = await Promise.all([
apiReq.request('GET', `/agents/groups?search=${$scope.groupName}`, {}),
apiReq.request('GET', `/agents/groups/${$scope.groupName}`, {})
]);
2018-01-15 15:11:45 +00:00
let filtered = data[0].data.data.items.filter(item => item.name === $scope.groupName);
$scope.groupMergedSum = (filtered.length) ? filtered[0].merged_sum : 'Unknown';
filtered = data[1].data.data.items.filter(item => item.id === $scope.agent.id);
$scope.agentMergedSum = (filtered.length) ? filtered[0].merged_sum : 'Unknown';
$scope.isSynchronized = (($scope.agentMergedSum === $scope.groupMergedSum) && !([$scope.agentMergedSum,$scope.groupMergedSum].includes('Unknown')) ) ? true : false;
$scope.load = false;
if(!$scope.$$phase) $scope.$digest();
return;
} catch (error){
errorHandler.handle(error,'Agents');
if(!$rootScope.$$phase) $rootScope.$digest();
2018-01-15 15:11:45 +00:00
}
}
/** End of agent configuration */
});