2021-12-18 11:23:59 +01:00
|
|
|
#ifndef WEATHER_CONTROLLER_H
|
|
|
|
#define WEATHER_CONTROLLER_H
|
|
|
|
|
|
|
|
#include "core/string.h"
|
|
|
|
#include "core/containers/vector.h"
|
|
|
|
|
2022-02-05 23:02:06 +01:00
|
|
|
#include "web_modules/admin_panel/admin_node.h"
|
2021-12-18 11:23:59 +01:00
|
|
|
|
|
|
|
#include "weather.h"
|
|
|
|
|
|
|
|
class Request;
|
|
|
|
class FormValidator;
|
|
|
|
|
2022-01-09 17:05:04 +01:00
|
|
|
class WeatherController : public AdminNode {
|
|
|
|
RCPP_OBJECT(WeatherController, AdminNode);
|
2021-12-18 11:23:59 +01:00
|
|
|
|
|
|
|
public:
|
|
|
|
void handle_request_default(Request *request);
|
|
|
|
|
|
|
|
void admin_handle_request_main(Request *request);
|
|
|
|
String admin_get_section_name();
|
|
|
|
void admin_add_section_links(Vector<AdminSectionLinkInfo> *links);
|
|
|
|
bool admin_full_render();
|
|
|
|
|
|
|
|
void admin_render_weather_list(Request *request);
|
|
|
|
void admin_render_weather(Request *request, Ref<Weather> weather);
|
|
|
|
|
2022-02-05 23:02:06 +01:00
|
|
|
void create_table();
|
|
|
|
void drop_table();
|
|
|
|
void create_default_entries();
|
2021-12-18 11:23:59 +01:00
|
|
|
|
|
|
|
static WeatherController *get_singleton();
|
|
|
|
|
|
|
|
WeatherController();
|
|
|
|
~WeatherController();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
static WeatherController *_self;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|