2021-11-14 11:45:34 +01:00
|
|
|
#include "village_controller.h"
|
|
|
|
|
|
|
|
#include "core/html/form_validator.h"
|
|
|
|
#include "core/html/html_builder.h"
|
|
|
|
#include "core/http/cookie.h"
|
|
|
|
#include "core/http/http_session.h"
|
|
|
|
#include "core/http/request.h"
|
|
|
|
#include "core/http/session_manager.h"
|
|
|
|
|
2021-11-14 13:59:02 +01:00
|
|
|
#include "village_model.h"
|
2021-11-14 11:45:34 +01:00
|
|
|
|
|
|
|
void VillageController::handle_request_default(Request *request) {
|
|
|
|
}
|
|
|
|
|
2021-11-14 13:59:02 +01:00
|
|
|
void VillageController::migrate() {
|
|
|
|
VillageModel::get_singleton()->migrate();
|
|
|
|
}
|
|
|
|
void VillageController::add_default_data() {
|
|
|
|
VillageModel::get_singleton()->add_default_data();
|
|
|
|
}
|
|
|
|
|
2021-11-14 11:45:34 +01:00
|
|
|
VillageController *VillageController::get_singleton() {
|
|
|
|
return _self;
|
|
|
|
}
|
|
|
|
|
|
|
|
VillageController::VillageController() :
|
|
|
|
Object() {
|
|
|
|
|
|
|
|
if (_self) {
|
|
|
|
printf("VillageController::VillageController(): Error! self is not null!/n");
|
|
|
|
}
|
|
|
|
|
|
|
|
_self = this;
|
|
|
|
}
|
|
|
|
|
|
|
|
VillageController::~VillageController() {
|
|
|
|
if (_self == this) {
|
|
|
|
_self = nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
VillageController *VillageController::_self = nullptr;
|