Ed Tanous | c9b5521 | 2017-06-12 13:25:51 -0700 | [diff] [blame] | 1 | #include <dbus/connection.hpp> |
Ed Tanous | 911ac31 | 2017-08-15 09:37:42 -0700 | [diff] [blame^] | 2 | #include <dbus_monitor.hpp> |
| 3 | #include <dbus_singleton.hpp> |
| 4 | #include <intel_oem.hpp> |
| 5 | #include <openbmc_dbus_rest.hpp> |
| 6 | #include <redfish_v1.hpp> |
| 7 | #include <security_headers_middleware.hpp> |
| 8 | #include <ssl_key_handler.hpp> |
| 9 | #include <token_authorization_middleware.hpp> |
| 10 | #include <web_kvm.hpp> |
| 11 | #include <webassets.hpp> |
Ed Tanous | c4771fb | 2017-03-13 13:39:49 -0700 | [diff] [blame] | 12 | #include <memory> |
Ed Tanous | 0fdddb1 | 2017-02-28 11:06:34 -0800 | [diff] [blame] | 13 | #include <string> |
Ed Tanous | 911ac31 | 2017-08-15 09:37:42 -0700 | [diff] [blame^] | 14 | #include <crow/app.h> |
| 15 | #include <boost/asio.hpp> |
Ed Tanous | cc5a37f | 2017-05-11 10:27:23 -0700 | [diff] [blame] | 16 | |
Ed Tanous | 9992332 | 2017-03-03 14:21:24 -0800 | [diff] [blame] | 17 | int main(int argc, char** argv) { |
Ed Tanous | 3dac749 | 2017-08-02 13:46:20 -0700 | [diff] [blame] | 18 | auto io = std::make_shared<boost::asio::io_service>(); |
Ed Tanous | 911ac31 | 2017-08-15 09:37:42 -0700 | [diff] [blame^] | 19 | crow::App<crow::TokenAuthorization::Middleware, |
| 20 | crow::SecurityHeadersMiddleware> |
Ed Tanous | 3dac749 | 2017-08-02 13:46:20 -0700 | [diff] [blame] | 21 | app(io); |
Ed Tanous | b4d29f4 | 2017-03-24 16:39:25 -0700 | [diff] [blame] | 22 | |
Ed Tanous | 911ac31 | 2017-08-15 09:37:42 -0700 | [diff] [blame^] | 23 | #ifdef CROW_ENABLE_SSL |
| 24 | std::string ssl_pem_file("server.pem"); |
Ed Tanous | 4d92cbf | 2017-06-22 15:41:02 -0700 | [diff] [blame] | 25 | std::cout << "Building SSL context\n"; |
Ed Tanous | 4758d5b | 2017-06-06 15:28:13 -0700 | [diff] [blame] | 26 | |
Ed Tanous | 911ac31 | 2017-08-15 09:37:42 -0700 | [diff] [blame^] | 27 | ensuressl::ensure_openssl_key_present_and_valid(ssl_pem_file); |
| 28 | std::cout << "SSL Enabled\n"; |
| 29 | auto ssl_context = ensuressl::get_ssl_context(ssl_pem_file); |
| 30 | app.ssl(std::move(ssl_context)); |
| 31 | #endif |
| 32 | // Static assets need to be initialized before Authorization, because auth |
| 33 | // needs to build the whitelist from the static routes |
| 34 | crow::webassets::request_routes(app); |
| 35 | crow::TokenAuthorization::request_routes(app); |
Ed Tanous | f0226cd | 2017-05-16 12:35:38 -0700 | [diff] [blame] | 36 | |
Ed Tanous | 911ac31 | 2017-08-15 09:37:42 -0700 | [diff] [blame^] | 37 | crow::kvm::request_routes(app); |
| 38 | crow::redfish::request_routes(app); |
| 39 | crow::dbus_monitor::request_routes(app); |
| 40 | crow::intel_oem::request_routes(app); |
| 41 | crow::openbmc_mapper::request_routes(app); |
| 42 | |
| 43 | crow::logger::setLogLevel(crow::LogLevel::INFO); |
| 44 | int port = 18080; |
Ed Tanous | 4d92cbf | 2017-06-22 15:41:02 -0700 | [diff] [blame] | 45 | std::cout << "Starting webserver on port " << port << "\n"; |
Ed Tanous | 4758d5b | 2017-06-06 15:28:13 -0700 | [diff] [blame] | 46 | app.port(port); |
Ed Tanous | 3dac749 | 2017-08-02 13:46:20 -0700 | [diff] [blame] | 47 | |
| 48 | // Start dbus connection |
Ed Tanous | 911ac31 | 2017-08-15 09:37:42 -0700 | [diff] [blame^] | 49 | crow::connections::system_bus = |
| 50 | std::make_shared<dbus::connection>(*io, dbus::bus::system); |
Ed Tanous | 3dac749 | 2017-08-02 13:46:20 -0700 | [diff] [blame] | 51 | |
Ed Tanous | 4758d5b | 2017-06-06 15:28:13 -0700 | [diff] [blame] | 52 | app.run(); |
Ed Tanous | 0fdddb1 | 2017-02-28 11:06:34 -0800 | [diff] [blame] | 53 | } |