mirror of
https://github.com/valitydev/wazuh-kibana-app.git
synced 2024-11-07 18:28:55 +00:00
53 lines
1.5 KiB
JavaScript
53 lines
1.5 KiB
JavaScript
/*
|
|
* Wazuh app - API request 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 { uiModules } from 'ui/modules';
|
|
|
|
const app = uiModules.get('app/wazuh', []);
|
|
|
|
class ApiRequest {
|
|
constructor($q, genericReq, appState) {
|
|
this.$q = $q;
|
|
this.genericReq = genericReq;
|
|
this.appState = appState;
|
|
}
|
|
|
|
async request(method, path, body) {
|
|
try {
|
|
|
|
if (!method || !path || !body) {
|
|
throw new Error('Missing parameters');
|
|
}
|
|
|
|
if (!this.appState.getCurrentAPI()){
|
|
throw new Error('No API selected.');
|
|
}
|
|
|
|
const { id } = JSON.parse(this.appState.getCurrentAPI());
|
|
const requestData = { method, path, body, id };
|
|
|
|
const data = await this.genericReq.request('POST', '/api/wazuh-api/request', requestData);
|
|
|
|
if (data.error) {
|
|
throw new Error(data.error);
|
|
}
|
|
|
|
return this.$q.resolve(data);
|
|
|
|
} catch (error) {
|
|
return error && error.data && error.data.message ?
|
|
this.$q.reject(error.data.message) :
|
|
this.$q.reject(error.message || error);
|
|
}
|
|
}
|
|
}
|
|
|
|
app.service('apiReq', ApiRequest); |