wazuh-kibana-app/public/services/api-tester.js

85 lines
3.2 KiB
JavaScript
Raw Normal View History

/*
* Wazuh app - API test 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 chrome from 'ui/chrome';
import * as modules from 'ui/modules'
const app = modules.get('app/wazuh', []);
app.service('testAPI', function ($http, $location, $rootScope, appState, genericReq) {
2017-10-30 10:35:30 +00:00
return {
check_stored: async data => {
try {
const headers = {headers:{ "Content-Type": 'application/json' },timeout: $rootScope.userTimeout || 8000};
/** Checks for outdated cookies */
const current = appState.getCreatedAt();
const lastRestart = $rootScope.lastRestart;
if(current && lastRestart && lastRestart > current){
appState.removeCurrentPattern();
appState.removeCurrentAPI();
appState.removeClusterInfo();
appState.removeCreatedAt();
delete $rootScope.lastRestart;
const configuration = await genericReq.request('GET', '/api/wazuh-api/configuration', {})
appState.setPatternSelector(typeof configuration.data.data['ip.selector'] !== 'undefined' ? configuration.data.data['ip.selector'] : true)
return 'cookies_outdated';
/** End of checks for outdated cookies */
} else {
if(appState.getUserCode()) headers.headers.code = appState.getUserCode();
const result = await Promise.all([
genericReq.request('GET', '/api/wazuh-api/configuration', {}),
$http.post(chrome.addBasePath('/api/wazuh-api/checkStoredAPI'), data,headers)
]);
2018-03-11 11:17:33 +00:00
appState.setPatternSelector(typeof result[0].data.data['ip.selector'] !== 'undefined' ? result[0].data.data['ip.selector'] : true)
if(result[1].error) {
return Promise.reject(result[1])
}
return result[1];
}
} catch (error) {
if(error.status && error.status === -1){
$rootScope.apiIsDown = true;
2018-04-30 16:02:52 +00:00
}
return Promise.reject(error);
}
2017-10-30 10:35:30 +00:00
},
check: async data => {
try {
const headers = {headers:{ "Content-Type": 'application/json' },timeout: $rootScope.userTimeout || 8000};
if(appState.getUserCode()) headers.headers.code = appState.getUserCode();
const url = chrome.addBasePath("/api/wazuh-api/checkAPI");
const response = await $http.post(url, data, headers);
2017-10-30 10:35:30 +00:00
if (response.error) {
return Promise.reject(response);
}
return response;
} catch(error) {
2018-04-30 16:02:52 +00:00
return Promise.reject(error);
}
2017-10-30 10:35:30 +00:00
}
};
});