blob: cd4e21dccfd7e4dc7d9dd52a2bb6b85bafcb0c3d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
#pragma once
#include "../../plugin_interface.h"
#include <memory>
#include <string>
#include <unordered_map>
class Command;
class webbox_plugin: public webserver_plugin_interface
{
private:
std::unordered_map<std::string, std::shared_ptr<Command>> m_commands;
void registerCommand(std::shared_ptr<Command>);
public:
webbox_plugin();
~webbox_plugin();
std::string name() override;
std::string generate_page(
std::function<std::string(const std::string& key)>& GetServerParam,
std::function<std::string(const std::string& key)>& GetRequestParam, // request including body (POST...)
std::function<void(const std::string& key, const std::string& value)>& SetResponseHeader // to be added to result string
) override;
bool has_own_authentication() override;
};
extern "C" BOOST_SYMBOL_EXPORT webbox_plugin webserver_plugin;
webbox_plugin webserver_plugin;
|