blob: 4838ea6c7ef42fd5723e489727aa9fbbd999502d (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
#pragma once
#include <string>
#include <unordered_map>
#include <vector>
enum PathType
{
Files, // serve files
Plugin // delegate to plugin
};
struct Path
{
std::string requested; // the requested path
PathType type;
std::unordered_map<std::string, std::string> params; // what to serve, e.g. which filesystem path, or which plugin
};
struct Site
{
std::string name;
std::string host;
std::vector<Path> paths;
};
enum SocketProtocol
{
HTTP,
HTTPS
};
struct Socket
{
std::string address;
std::string port;
SocketProtocol protocol;
};
class Config
{
const std::string default_filename{"/etc/webserver.conf"};
void readConfigfile(std::string filename);
std::string m_user;
std::string m_group;
std::vector<std::string> m_plugin_directories;
std::vector<Site> m_sites;
std::vector<Socket> m_sockets;
public:
Config(const std::string& filename);
// Data getters
std::string User() const;
std::string Group() const;
const std::vector<std::string>& PluginDirectories() const;
const std::vector<Site>& Sites() const;
const std::vector<Socket>& Sockets() const;
void dump() const;
};
|