mirror of
https://github.com/valitydev/wazuh-kibana-app.git
synced 2024-11-08 02:38:51 +00:00
235 lines
7.3 KiB
JavaScript
235 lines
7.3 KiB
JavaScript
// Require config
|
|
require('plugins/wazuh/utils/infinite_scroll/infinite-scroll.js');
|
|
var app = require('ui/modules').get('app/wazuh', []);
|
|
|
|
app.factory('Agents', function($http, DataFactory) {
|
|
var Agents = function(objectsArray, items, os_list) {
|
|
this.items = items;
|
|
this.objectsArray = objectsArray;
|
|
this.busy = false;
|
|
this.os_list = os_list;
|
|
};
|
|
|
|
Agents.prototype.nextPage = function() {
|
|
|
|
if (this.busy) return;
|
|
this.busy = true;
|
|
DataFactory.next(this.objectsArray['/agents']).then(function (data) {
|
|
var items = data.data.items;
|
|
for (var i = 0; i < items.length; i++) {
|
|
this.items.push(items[i]);
|
|
}
|
|
this.busy = false;
|
|
}.bind(this),
|
|
function (data) {
|
|
this.busy = false;
|
|
}.bind(this));
|
|
|
|
};
|
|
return Agents;
|
|
});
|
|
|
|
app.controller('agentsPreviewController', function ($scope, DataFactory, Notifier, errlog, genericReq, Agents, apiReq) {
|
|
$scope.load = true;
|
|
$scope.agents = [];
|
|
$scope._status = 'all';
|
|
$scope._os = 'all';
|
|
$scope.defaultManager = $scope.$parent.state.getDefaultManager().name;
|
|
$scope.mostActiveAgent = {"name" : "", "id" : ""};
|
|
$scope.osPlatforms = [];
|
|
$scope.osVersions = new Set();
|
|
$scope.isAddingAgent = false;
|
|
$scope.newAgent = {
|
|
'name': '', 'ip': ''
|
|
};
|
|
|
|
|
|
const notify = new Notifier({location: 'Agents - Preview'});
|
|
|
|
var objectsArray = [];
|
|
|
|
//Print Error
|
|
var printError = function (error) {
|
|
notify.error(error.message);
|
|
if ($scope.blocked) {
|
|
$scope.blocked = false;
|
|
}
|
|
};
|
|
|
|
//Functions
|
|
$scope.setSort = function (field) {
|
|
$scope._sort = field;
|
|
$scope._sortOrder = !$scope._sortOrder;
|
|
if ($scope._sortOrder) {
|
|
DataFactory.filters.set(objectsArray['/agents'], 'filter-sort',field);
|
|
} else {
|
|
DataFactory.filters.set(objectsArray['/agents'], 'filter-sort', '-' + field);
|
|
}
|
|
|
|
DataFactory.setOffset(objectsArray['/agents'],0);
|
|
DataFactory.get(objectsArray['/agents']).then(function (data) {
|
|
$scope.agents.items = data.data.items;
|
|
});
|
|
};
|
|
|
|
$scope.agentSearchFilter = function (search) {
|
|
if (search) {
|
|
DataFactory.filters.set(objectsArray['/agents'], 'search', search);
|
|
} else {
|
|
DataFactory.filters.unset(objectsArray['/agents'], 'search');
|
|
}
|
|
DataFactory.setOffset(objectsArray['/agents'],0);
|
|
DataFactory.get(objectsArray['/agents']).then(function (data) {
|
|
$scope.agents.items = data.data.items;
|
|
});
|
|
};
|
|
|
|
$scope.agentStatusFilter = function (status) {
|
|
if (status == 'all') {
|
|
DataFactory.filters.unset(objectsArray['/agents'], 'status');
|
|
} else {
|
|
DataFactory.filters.set(objectsArray['/agents'], 'status', status);
|
|
}
|
|
DataFactory.setOffset(objectsArray['/agents'],0);
|
|
DataFactory.get(objectsArray['/agents']).then(function (data) {
|
|
$scope.agents.items = data.data.items;
|
|
});
|
|
};
|
|
|
|
$scope.agentOSPlatformFilter = function (osName) {
|
|
if (osName == 'all') {
|
|
DataFactory.filters.unset(objectsArray['/agents'], 'os.platform');
|
|
} else {
|
|
DataFactory.filters.set(objectsArray['/agents'], 'os.platform', osName);
|
|
}
|
|
DataFactory.setOffset(objectsArray['/agents'],0);
|
|
DataFactory.get(objectsArray['/agents']).then(function (data) {
|
|
$scope.agents.items = data.data.items;
|
|
if(osName == 'all'){
|
|
$scope.osVersions = [];
|
|
}
|
|
else{
|
|
var osVersions = new Set();
|
|
$scope.agents.items.forEach(function(agent){
|
|
if(agent.os)
|
|
osVersions.add(agent.os.version);
|
|
});
|
|
$scope.osVersions = Array.from(osVersions);
|
|
}
|
|
});
|
|
|
|
};
|
|
|
|
$scope.addNewAgent = function (){
|
|
$scope.isAddingAgent = !$scope.isAddingAgent;
|
|
}
|
|
|
|
$scope.saveNewAgent = function (){
|
|
if($scope.newAgent.name != '') {
|
|
if(confirm("Do you want to add the agent?")){
|
|
var requestData = {
|
|
'name': $scope.newAgent.name,
|
|
'ip': $scope.newAgent.ip == '' ? 'any' : $scope.newAgent.ip
|
|
}
|
|
apiReq.request('POST', '/agents', requestData)
|
|
.then(function (data) {
|
|
if(data.error=='0'){
|
|
notify.info('The agent was added successfully.');
|
|
apiReq.request('GET', '/agents/' + data.data + '/key', {})
|
|
.then(function(data) {
|
|
prompt('',data.data);
|
|
load();
|
|
});
|
|
}
|
|
else{
|
|
notify.error('There was an error adding the new agent.');
|
|
}
|
|
}, printError);
|
|
}
|
|
}
|
|
else{
|
|
notify.error('The agent name is mandatory.');
|
|
}
|
|
}
|
|
|
|
|
|
var load = function () {
|
|
$scope.isAddingAgent = false;
|
|
$scope.newAgent = {
|
|
'name': '', 'ip': ''
|
|
};
|
|
DataFactory.initialize('get', '/agents', {}, 30, 0)
|
|
.then(function (data) {
|
|
objectsArray['/agents'] = data;
|
|
DataFactory.filters.register(objectsArray['/agents'], 'search', 'string');
|
|
DataFactory.filters.register(objectsArray['/agents'], 'status', 'string');
|
|
DataFactory.filters.register(objectsArray['/agents'], 'os.platform', 'string');
|
|
DataFactory.filters.register(objectsArray['/agents'], 'filter-sort', 'string');
|
|
DataFactory.get(objectsArray['/agents'])
|
|
.then(function (data) {
|
|
$scope.agents = new Agents(objectsArray, data.data.items, data.data.os_list);
|
|
var osPlatforms = new Set();
|
|
$scope.agents.items.forEach(function(agent){
|
|
if(agent.os)
|
|
osPlatforms.add(agent.os.platform);
|
|
});
|
|
$scope.osPlatforms = Array.from(osPlatforms);
|
|
$scope.load = false;
|
|
}, printError);
|
|
}, printError);
|
|
|
|
DataFactory.getAndClean('get', '/agents', { offset: 0, limit: 1, sort: '-id' })
|
|
.then(function (data) {
|
|
DataFactory.getAndClean('get', '/agents/' + data.data.items[0].id, {})
|
|
.then(function (data) {
|
|
$scope.lastAgent = data.data;
|
|
}, printError);
|
|
}, printError);
|
|
|
|
// Tops
|
|
genericReq.request('GET', '/api/wazuh-elastic/top/'+$scope.defaultManager+'/agent.name')
|
|
.then(function (data) {
|
|
if(data.data == ""){
|
|
$scope.mostActiveAgent.name = $scope.defaultManager;
|
|
$scope.mostActiveAgent.id = "000";
|
|
return;
|
|
}
|
|
$scope.mostActiveAgent.name = data.data;
|
|
genericReq.request('GET', '/api/wazuh-elastic/top/'+$scope.defaultManager+'/agent.id')
|
|
.then(function (data) {
|
|
if(data.data == "" && $scope.mostActiveAgent.name != ""){
|
|
$scope.mostActiveAgent.id = "000";
|
|
}else{
|
|
$scope.mostActiveAgent.id = data.data;
|
|
}
|
|
|
|
}, printError);
|
|
}, printError);
|
|
|
|
DataFactory.getAndClean('get', '/agents/summary', {})
|
|
.then(function (data) {
|
|
$scope.agentsCountActive = data.data.Active;
|
|
$scope.agentsCountDisconnected = data.data.Disconnected;
|
|
$scope.agentsCountNeverConnected = data.data['Never connected'];
|
|
$scope.agentsCountTotal = data.data.Total;
|
|
$scope.agentsCoverity = (data.data.Active / data.data.Total) * 100;
|
|
}, printError);
|
|
};
|
|
|
|
//Load
|
|
try {
|
|
load();
|
|
} catch (e) {
|
|
notify.error("Unexpected exception loading controller");
|
|
errlog.log('Unexpected exception loading controller', e);
|
|
}
|
|
|
|
//Destroy
|
|
$scope.$on("$destroy", function () {
|
|
angular.forEach(objectsArray, function (value) {
|
|
DataFactory.clean(value)
|
|
});
|
|
$scope.agents.length = 0;
|
|
});
|
|
});
|