wazuh-kibana-app/public/services/api-request.js
2018-10-01 10:12:07 +02:00

50 lines
1.3 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.
*/
export 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/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);
}
}
}