mirror of
https://github.com/Relintai/wp_saver_rcpp_fw.git
synced 2024-11-10 00:52:12 +01:00
113 lines
2.2 KiB
C++
113 lines
2.2 KiB
C++
|
#include "wp_application.h"
|
||
|
|
||
|
#include "core/http/request.h"
|
||
|
|
||
|
#include <iostream>
|
||
|
|
||
|
#include "core/file_cache.h"
|
||
|
|
||
|
#include "core/http/handler_instance.h"
|
||
|
|
||
|
#include "core/database/database_manager.h"
|
||
|
|
||
|
#include "core/html/html_builder.h"
|
||
|
#include "core/http/http_session.h"
|
||
|
#include "core/http/session_manager.h"
|
||
|
|
||
|
void WPApplication::index(Object *instance, Request *request) {
|
||
|
|
||
|
request->body += "test";
|
||
|
request->compile_and_send_body();
|
||
|
}
|
||
|
|
||
|
void WPApplication::blog(Object *instance, Request *request) {
|
||
|
request->body += "test";
|
||
|
request->compile_and_send_body();
|
||
|
}
|
||
|
|
||
|
void WPApplication::routing_middleware(Object *instance, Request *request) {
|
||
|
std::string path = request->get_path_full();
|
||
|
|
||
|
WPApplication *app = Object::cast_to<WPApplication>(instance);
|
||
|
|
||
|
if (FileCache::get_singleton()->wwwroot_has_file(path)) {
|
||
|
app->send_file(path, request);
|
||
|
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
HandlerInstance handler_data;
|
||
|
handler_data.instance = instance;
|
||
|
|
||
|
if (request->get_path_segment_count() == 0) {
|
||
|
handler_data.handler_func = index;
|
||
|
} else {
|
||
|
const std::string main_route = request->get_current_path_segment();
|
||
|
|
||
|
request->push_path();
|
||
|
|
||
|
if (main_route == "blog") {
|
||
|
handler_data.handler_func = blog;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
if (!handler_data.handler_func) {
|
||
|
app->send_error(404, request);
|
||
|
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
request->handler_instance = handler_data;
|
||
|
request->next_stage();
|
||
|
}
|
||
|
|
||
|
void WPApplication::setup_routes() {
|
||
|
DWebApplication::setup_routes();
|
||
|
|
||
|
index_func = HandlerInstance(index);
|
||
|
}
|
||
|
|
||
|
void WPApplication::setup_middleware() {
|
||
|
middlewares.push_back(HandlerInstance(routing_middleware, this));
|
||
|
}
|
||
|
|
||
|
void WPApplication::migrate() {
|
||
|
}
|
||
|
|
||
|
void WPApplication::compile_menu() {
|
||
|
HTMLBuilder bh;
|
||
|
|
||
|
bh.meta()->charset_utf_8();
|
||
|
bh.meta()->name("description")->content("RPG browsergame");
|
||
|
bh.meta()->name("keywords")->content("RPG,browsergame,Mourne,game,play");
|
||
|
bh.title();
|
||
|
bh.w("Mourne");
|
||
|
bh.ctitle();
|
||
|
|
||
|
bh.link()->rel_stylesheet()->href("/css/base.css");
|
||
|
bh.link()->rel_stylesheet()->href("/css/menu.css");
|
||
|
bh.write_tag();
|
||
|
|
||
|
menu_head = bh.result;
|
||
|
|
||
|
HTMLBuilder bf;
|
||
|
|
||
|
bf.cdiv();
|
||
|
bf.footer();
|
||
|
bf.cfooter();
|
||
|
|
||
|
footer = bf.result;
|
||
|
}
|
||
|
|
||
|
WPApplication::WPApplication() :
|
||
|
DWebApplication() {
|
||
|
|
||
|
compile_menu();
|
||
|
}
|
||
|
|
||
|
WPApplication::~WPApplication() {
|
||
|
}
|
||
|
|
||
|
std::string WPApplication::menu_head = "";
|
||
|
std::string WPApplication::footer = "";
|