907b52160a
add: sql files embedded in exe
68 lines
1.4 KiB
C++
68 lines
1.4 KiB
C++
#include <drogon/drogon.h>
|
|
#include <sqlite3.h>
|
|
|
|
#include <models/controller_dbo.h>
|
|
#include <csignal>
|
|
|
|
#include "globals.h"
|
|
#include "config.h"
|
|
|
|
static void
|
|
add_cors_headers(const drogon::HttpRequestPtr &requestPtr, const drogon::HttpResponsePtr &responsePtr)
|
|
{
|
|
responsePtr->addHeader("Access-Control-Allow-Origin", "*");
|
|
}
|
|
|
|
static void
|
|
terminate(int signum)
|
|
{
|
|
LOG_INFO << "Terminating Server (" << signum << ")";
|
|
|
|
sqlite3_close(globals::db);
|
|
|
|
quick_exit(signum);
|
|
}
|
|
|
|
/*static void test()
|
|
{
|
|
LOG_DEBUG << "LOOP";
|
|
}*/
|
|
|
|
int
|
|
main()
|
|
{
|
|
signal(SIGINT, terminate);
|
|
signal(SIGABRT, terminate);
|
|
signal(SIGTERM, terminate);
|
|
signal(SIGKILL, terminate);
|
|
|
|
int rc;
|
|
|
|
/* Open database */
|
|
rc = sqlite3_open("core.sqlite", &globals::db);
|
|
|
|
if( rc ) {
|
|
LOG_FATAL << "Can't open database: " << sqlite3_errmsg(globals::db);
|
|
return 1;
|
|
}
|
|
|
|
if(!helpers::migrate_sql())
|
|
{
|
|
terminate(1);
|
|
}
|
|
|
|
//Load config file
|
|
drogon::app().loadConfigFile("config.json");
|
|
|
|
drogon::app().registerPostHandlingAdvice(add_cors_headers);
|
|
drogon::app().instance().setCustom404Page(drogon::HttpResponse::newFileResponse("./static/index.html", "", drogon::CT_TEXT_HTML));
|
|
|
|
//drogon::app().getLoop()->runEvery(1, &test);
|
|
|
|
//Run HTTP framework,the method will block in the internal event loop
|
|
|
|
LOG_INFO << "Starting Emgauwa Core (" << config::version << ")";
|
|
|
|
drogon::app().run();
|
|
return 0;
|
|
}
|