mirror of
https://github.com/valitydev/wazuh-kibana-app.git
synced 2024-11-07 10:18:57 +00:00
260 lines
9.1 KiB
JavaScript
260 lines
9.1 KiB
JavaScript
/*
|
|
* Wazuh app - Data handler service
|
|
* Copyright (C) 2018 Wazuh, Inc.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* Find more information about this on the LICENSE file.
|
|
*/
|
|
import * as modules from 'ui/modules'
|
|
|
|
const app = modules.get('app/wazuh', []);
|
|
|
|
app.factory('DataHandler', function ($q, apiReq,errorHandler) {
|
|
class DataHandler {
|
|
constructor() {
|
|
this.items = [];
|
|
this.filters = [];
|
|
this.path = '';
|
|
this.offset = 0;
|
|
this.sortValue = '';
|
|
this.initial = true;
|
|
this.initialBatch = 40;
|
|
this.regularBatch = 15;
|
|
this.busy = false;
|
|
this.end = false;
|
|
this.onlyParents = false;
|
|
this.ruleID = null;
|
|
this.decoderPosition = null;
|
|
}
|
|
|
|
toggleOnlyParents(value){
|
|
this.reset();
|
|
this.onlyParents = !value;
|
|
return this.nextPage();
|
|
}
|
|
|
|
nextPage () {
|
|
if(this.totalItems && this.items && this.totalItems > this.items.length){
|
|
this.end = false;
|
|
}
|
|
if (this.busy || this.end) {
|
|
return Promise.resolve(true);
|
|
}
|
|
const deferred = $q.defer();
|
|
|
|
this.busy = true;
|
|
let requestData;
|
|
|
|
if (this.initial) {
|
|
requestData = {
|
|
offset: this.offset,
|
|
limit: this.initialBatch
|
|
};
|
|
this.initial = false;
|
|
} else {
|
|
requestData = {
|
|
offset: this.offset,
|
|
limit: this.regularBatch
|
|
};
|
|
}
|
|
if(this.sortValue){
|
|
requestData.sort = this.sortDir ? '-' + this.sortValue : this.sortValue;
|
|
}
|
|
|
|
for(let filter of this.filters){
|
|
if (filter.value !== '') requestData[filter.name] = filter.value;
|
|
}
|
|
|
|
if(this.offset !== 0 && this.offset >= this.totalItems){
|
|
this.end = true;
|
|
this.busy = false;
|
|
return Promise.resolve(true);
|
|
}
|
|
|
|
const path = this.onlyParents ? this.path + '/parents' : this.path;
|
|
apiReq.request('GET', path, requestData)
|
|
.then(data => {
|
|
if (data.data.data === 0){
|
|
this.busy = false;
|
|
deferred.resolve(false);
|
|
}
|
|
this.totalItems = data.data.data.totalItems;
|
|
let items = data.data.data.items;
|
|
for (let i = 0,len = items.length; i < len; i++) {
|
|
this.items.push(items[i]);
|
|
this.items[i].selected = false;
|
|
}
|
|
// Prevents from any manager
|
|
if (this.path === '/agents') {
|
|
const filteredAgents = this.items.filter(item => item && item.id !== '000');
|
|
this.items = filteredAgents;
|
|
}
|
|
this.offset += items.length;
|
|
if (this.offset >= this.totalItems) this.end = true;
|
|
if (data.data.data !== 0){
|
|
if(this.path === '/agents/groups'){
|
|
let filtered = this.items.filter((elem, index, self) => self.findIndex(
|
|
(t) => {return (t.merged_sum === elem.merged_sum)}) === index);
|
|
if(filtered.length !== this.items.length) this.items = filtered;
|
|
}
|
|
|
|
// Remove the current decoder (by its position) from the list of related decoders
|
|
if (this.decoderPosition || this.decoderPosition === 0) {
|
|
const filteredDecoders = this.items.filter(item => item.position !== this.decoderPosition);
|
|
this.items = filteredDecoders;
|
|
}
|
|
|
|
deferred.resolve(true);
|
|
}
|
|
this.busy = false;
|
|
})
|
|
.catch(error => {
|
|
this.busy = false;
|
|
errorHandler.handle(error,'Datahandler factory');
|
|
});
|
|
|
|
return deferred.promise;
|
|
}
|
|
|
|
getFilter (filterName) {
|
|
let filtered = this.filters.filter(element => element.name === filterName);
|
|
return (filtered.length !== 0) ? filtered[0].value : null;
|
|
}
|
|
|
|
hasFilter (filterName) {
|
|
let filtered = this.filters.filter(element => element.name === filterName);
|
|
return filtered.length !== 0;
|
|
}
|
|
|
|
addFilter (filterName, value) {
|
|
this.removeFilter(filterName, false);
|
|
|
|
this.filters.push({
|
|
name: filterName,
|
|
value: value
|
|
});
|
|
return this.search();
|
|
}
|
|
|
|
///////////////////////////////////////////////////////////////
|
|
// Only used by agents preview, don't use for any thing more //
|
|
///////////////////////////////////////////////////////////////
|
|
addMultipleFilters (arrayOfFilters) {
|
|
for(const filter of arrayOfFilters) this.removeFilter(filter.name,false)
|
|
this.filters.push(...arrayOfFilters);
|
|
return this.search();
|
|
}
|
|
|
|
removeFilter (filterName, search) {
|
|
this.end = false;
|
|
if(search) this.filters = this.filters.filter(filter => filterName !== filter.name && filter.value !== search);
|
|
else this.filters = this.filters.filter(filter => filterName !== filter.name);
|
|
|
|
if (search) this.search();
|
|
|
|
}
|
|
|
|
removeAllFilters () {
|
|
for (let filter of this.filters) {
|
|
this.removeFilter(filter.name, true);
|
|
}
|
|
// this.filters = [];
|
|
// return this.search();
|
|
}
|
|
|
|
delete (name, index) {
|
|
apiReq.request('DELETE', this.path, {})
|
|
.then(function (data) {
|
|
this.items.splice(index, 1);
|
|
}.bind(this))
|
|
.catch(error => errorHandler.handle(error,'Datahandler factory'));
|
|
}
|
|
|
|
search () {
|
|
if (this.busy) {
|
|
return Promise.resolve(true);
|
|
}
|
|
this.busy = true;
|
|
const deferred = $q.defer();
|
|
let requestData;
|
|
this.end = false;
|
|
|
|
//this.sortValue = '';
|
|
requestData = {
|
|
offset: 0,
|
|
limit: this.initialBatch
|
|
};
|
|
if(this.sortValue){
|
|
requestData.sort = this.sortDir ? '-' + this.sortValue : this.sortValue;
|
|
}
|
|
|
|
let isUnknown = false;
|
|
|
|
for(let filter of this.filters){
|
|
if (filter.value !== '' && filter.value !== 'Unknown') requestData[filter.name] = filter.value;
|
|
if (filter.value === 'Unknown') isUnknown = true;
|
|
}
|
|
|
|
|
|
apiReq.request('GET', this.path, requestData)
|
|
.then(data => {
|
|
this.items = [];
|
|
let items = data.data.data.items;
|
|
this.totalItems = data.data.data.totalItems;
|
|
for (let i = 0,len = items.length; i < len; i++) {
|
|
this.items.push(items[i]);
|
|
this.items[i].selected = false;
|
|
}
|
|
if(isUnknown){
|
|
this.items = this.items.filter(item => typeof item.os === 'undefined');
|
|
}
|
|
|
|
// Remove the current rule (by its ID) from the list of related rules
|
|
if (this.ruleID) {
|
|
const filteredRules = this.items.filter(item => item.id !== this.ruleID);
|
|
this.items = filteredRules;
|
|
}
|
|
// Prevents from any manager
|
|
if (this.path === '/agents') {
|
|
const filteredAgents = this.items.filter(item => item && item.id !== '000');
|
|
this.items = filteredAgents;
|
|
}
|
|
this.offset = items.length;
|
|
deferred.resolve(true);
|
|
this.busy = false;
|
|
})
|
|
.catch(error => {
|
|
this.busy = false;
|
|
errorHandler.handle(error,'Datahandler factory');
|
|
});
|
|
|
|
return deferred.promise;
|
|
}
|
|
|
|
sort(by) {
|
|
this.sortValue = by;
|
|
this.sortDir = !this.sortDir;
|
|
return this.search();
|
|
}
|
|
|
|
reset() {
|
|
this.items = [];
|
|
this.filters = [];
|
|
this.offset = 0;
|
|
this.sortValue = '';
|
|
this.initial = true;
|
|
this.end = false;
|
|
this.busy = false;
|
|
this.ruleID = null;
|
|
this.decoderPosition = null;
|
|
this.onlyParents = false;
|
|
}
|
|
}
|
|
|
|
return DataHandler;
|
|
});
|