mirror of
https://github.com/Relintai/crystal_cms_rcpp_fw.git
synced 2025-04-22 20:41:18 +02:00
74 lines
1.6 KiB
C++
74 lines
1.6 KiB
C++
#ifndef CCMS_ROOT_H
|
|
#define CCMS_ROOT_H
|
|
|
|
//#include "core/http/web_application.h"
|
|
#include "core/object.h"
|
|
#include "core/http/web_root.h"
|
|
|
|
#undef LOG_TRACE
|
|
#undef LOG_WARN
|
|
|
|
#include "modules/list_page/list_page.h"
|
|
#include "modules/message_page/message_page.h"
|
|
#include "modules/paged_article/paged_article.h"
|
|
#include "modules/paged_list/paged_list.h"
|
|
|
|
class AdminPanel;
|
|
class RBACController;
|
|
class RBACModel;
|
|
|
|
#define ENSURE_LOGIN(request) \
|
|
if (!is_logged_in(request)) { \
|
|
request->send_redirect("/user/login"); \
|
|
return; \
|
|
}
|
|
|
|
class CCMSRoot : public WebRoot {
|
|
public:
|
|
enum MenuEntries {
|
|
MENUENTRY_NEWS = 0,
|
|
MENUENTRY_MAIL,
|
|
MENUENTRY_HERO,
|
|
MENUENTRY_VILLAGE,
|
|
MENUENTRY_SELECT_VILLAGE,
|
|
MENUENTRY_ALLIANCE,
|
|
MENUENTRY_ALLIANCE_MENU,
|
|
MENUENTRY_FORUM,
|
|
MENUENTRY_CHANGELOG,
|
|
MENUENTRY_SETTINGS,
|
|
MENUENTRY_LOGOUT,
|
|
|
|
MENUENTRY_MAX,
|
|
};
|
|
|
|
public:
|
|
static bool is_logged_in(Request *request);
|
|
|
|
static void index(Object *instance, Request *request);
|
|
|
|
static void session_middleware_func(Object *instance, Request *request);
|
|
|
|
static void add_menu(Request *request, const MenuEntries index);
|
|
|
|
static void village_page_func(Object *instance, Request *request);
|
|
static void admin_page_func(Object *instance, Request *request);
|
|
static void user_page_func(Object *instance, Request *request);
|
|
|
|
virtual void setup_routes();
|
|
virtual void setup_middleware();
|
|
|
|
virtual void migrate();
|
|
|
|
void compile_menu();
|
|
|
|
CCMSRoot();
|
|
~CCMSRoot();
|
|
|
|
AdminPanel *_admin_panel;
|
|
RBACController *_rbac_controller;
|
|
|
|
static std::string menu_head;
|
|
static std::string footer;
|
|
};
|
|
|
|
#endif |