2018-04-22 18:52:55 +00:00
|
|
|
/*
|
2018-04-22 20:16:38 +00:00
|
|
|
* Wazuh app - Module for server initialization
|
2018-04-22 18:52:55 +00:00
|
|
|
* 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.
|
|
|
|
*/
|
2018-05-16 21:58:50 +00:00
|
|
|
|
|
|
|
// Imports all server modules
|
2018-09-10 08:32:49 +00:00
|
|
|
import { Initialize } from './server/initialize';
|
|
|
|
import { WazuhElasticRouter } from './server/routes/wazuh-elastic';
|
2018-09-03 09:46:55 +00:00
|
|
|
import { WazuhApiElasticRoutes } from './server/routes/wazuh-api-elastic';
|
2018-09-10 08:32:49 +00:00
|
|
|
import { Monitoring } from './server/monitoring';
|
|
|
|
import { WazuhApiRoutes } from './server/routes/wazuh-api';
|
|
|
|
import { WazuhReportingRoutes } from './server/routes/wazuh-reporting';
|
2018-10-01 07:56:50 +00:00
|
|
|
import { WazuhUtilsRoutes } from './server/routes/wazuh-utils';
|
2018-11-15 10:48:57 +00:00
|
|
|
import { log } from './server/logger';
|
2018-04-21 10:09:55 +00:00
|
|
|
|
2018-09-10 08:32:49 +00:00
|
|
|
export function initApp(server) {
|
2018-11-15 10:48:57 +00:00
|
|
|
log(
|
|
|
|
'[initApp]',
|
|
|
|
`Waiting for awaitMigration()`,
|
|
|
|
'info'
|
|
|
|
);
|
|
|
|
server.kibanaMigrator.awaitMigration()
|
|
|
|
.then(() => {
|
|
|
|
log(
|
|
|
|
'[initApp]',
|
|
|
|
`awaitMigration() has been executed successfully`,
|
|
|
|
'info'
|
|
|
|
);
|
|
|
|
Initialize(server);
|
|
|
|
WazuhElasticRouter(server);
|
|
|
|
WazuhApiElasticRoutes(server);
|
|
|
|
Monitoring(server, false);
|
|
|
|
WazuhApiRoutes(server);
|
|
|
|
WazuhReportingRoutes(server);
|
|
|
|
WazuhUtilsRoutes(server);
|
|
|
|
}).catch(error => {
|
|
|
|
log(
|
|
|
|
'[initApp]',
|
|
|
|
`initApp function failed due to: ${error.message || error}`
|
|
|
|
);
|
|
|
|
})
|
2018-09-10 08:32:49 +00:00
|
|
|
}
|