mirror of
https://github.com/valitydev/wazuh-kibana-app.git
synced 2024-11-07 02:15:24 +00:00
41 lines
2.0 KiB
JavaScript
41 lines
2.0 KiB
JavaScript
/*
|
|
* Wazuh app - Module for Wazuh-API-Elastic routes
|
|
* 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 { WazuhApiElastic } from '../controllers';
|
|
|
|
export default (server, options) => {
|
|
const ctrl = new WazuhApiElastic(server);
|
|
|
|
// Save the given API into elasticsearch
|
|
server.route({ method: 'PUT', path: '/api/wazuh-api/settings', handler: (req,reply) => ctrl.saveAPI(req,reply) });
|
|
|
|
// Update the given API into elasticsearch
|
|
server.route({ method: 'PUT', path: '/api/wazuh-api/update-settings', handler: (req,reply) => ctrl.updateFullAPI(req,reply) });
|
|
|
|
// Get Wazuh-API entries list (Multimanager) from elasticsearch index
|
|
server.route({ method: 'GET', path: '/api/wazuh-api/apiEntries', handler: (req,reply) => ctrl.getAPIEntries(req,reply) });
|
|
|
|
// Delete Wazuh-API entry (multimanager) from elasticsearch index
|
|
server.route({ method: 'DELETE', path: '/api/wazuh-api/apiEntries/{id}', handler: (req,reply) => ctrl.deleteAPIEntries(req,reply) });
|
|
|
|
// Set Wazuh-API as default (multimanager) on elasticsearch index
|
|
server.route({ method: 'PUT', path: '/api/wazuh-api/apiEntries/{id}', handler: (req,reply) => ctrl.setAPIEntryDefault(req,reply) });
|
|
|
|
// Toggle extension state: Enable / Disable
|
|
server.route({ method: 'PUT', path: '/api/wazuh-api/extension/toggle/{id}/{extensionName}/{extensionValue}', handler: (req,reply) => ctrl.toggleExtension(req,reply) });
|
|
|
|
// Return extension state list
|
|
server.route({ method: 'GET', path: '/api/wazuh-api/extension', handler: (req,reply) => ctrl.getExtensions(req,reply) });
|
|
|
|
// Update the API hostname
|
|
server.route({ method: 'PUT', path: '/api/wazuh-api/updateApiHostname/{id}', handler: (req,reply) => ctrl.updateAPIHostname(req,reply) });
|
|
};
|