aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
blob: 98f19c5f6dda9c0ea02e84083ebcbb64dd6b843b (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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
#include "ContentManager.hpp"
#include "EventManager.hpp"
#include "Filesystem.hpp"
#include "TemplateManager.hpp"

#include "content/blog/Blog.hpp"

#include <event2/buffer.h>

#include <inja/inja.hpp>
#include <iostream>

static void example_inja_render(struct evhttp_request * const req, EvUserData ud)
{
    (void)ud;

    inja::Environment env;
    nlohmann::json data;
    data["name"] = "Peter";
    data["city"] = "Brunswick";
    data["age"] = 29;
    data["names"] = {"Jeff", "Seb"};
    data["brother"]["name"] = "Chris";
    data["brother"]["daughters"] = {"Maria", "Helen"};
    data["brother"]["daughter0"] = {{"name", "Maria"}};
    data["is_happy"] = true;
    data["is_sad"] = false;
    data["relatives"]["mother"] = "Maria";
    data["relatives"]["brother"] = "Chris";
    data["relatives"]["sister"] = "Jenny";
    data["vars"] = {2, 3, 4, 0, -1, -2, -3};

    auto reply = env.render(
        "<html><body>\n"
        "Hello {{ name }}! I come from {{ city }}.<br>\n"
        "Hello {{ names.1 }}!<br>\n"
        "Hello {{ brother.name }}!<br>\n"
        "Hello {{ brother.daughter0.name }}!<br>\n"
        "{{ \"{{ no_value }}\" }}<br>\n"
        "Hello{# This is a comment #}!<br>\n"
        "{# --- #Todo --- #}<br>\n"
        "{% for name in names %}a{% endfor %}<br>\n"
        "Hello {% for name in names %}{{ name }} {% endfor %}!<br>\n"
        "Hello {% for name in names %}{{ loop.index }}: {{ name }}, {% "
        "endfor %}!<br>\n"
        "{% for type, name in relatives %}{{ type }}: {{ name }}, {% endfor "
        "%}<br>\n"
        "{% for v in vars %}{% if v > 0 %}+{% endif %}{% endfor %}<br>\n"
        "{% for name in names %}{{ loop.index }}: {{ name }}{% if not "
        "loop.is_last %}, {% endif %}{% endfor %}!<br>\n"
        "{% for name in names %}{{ loop.index }}: {{ name }}{% if "
        "loop.is_last == false %}, {% endif %}{% endfor %}!<br>\n"
        "{% for name in names %}a{% endfor %}<br>\n"
        "</body></html>\n",
        data);

    evhttp_add_header(evhttp_request_get_output_headers(req), "Content-Type", "text/html");

    struct evbuffer * const output = evbuffer_new();
    if (output != nullptr)
    {
        evbuffer_add(output, reply.c_str(), reply.size());
        evhttp_send_reply(req, 200, "OK", output);
        evbuffer_free(output);
    }
}

int main(int argc, char ** argv)
{
    char const * host = "127.0.0.1";
    uint16_t port = 9000;

    if (argc <= 1 || argc > 5)
    {
        std::cout << "usage: cpp-web [HOST] [PORT] [STATIC-WWWROOT] [DYNAMIC-WWWROOT]" << std::endl;
        if (argc > 5)
        {
            return 1;
        }
    }

    if (argc > 1)
    {
        host = argv[1];
    }
    if (argc > 2)
    {
        port = atoi(argv[2]);
    }

    std::shared_ptr<Filesystem> static_fs = std::make_shared<Filesystem>();
    if (argc > 3)
    {
        if (static_fs->Scan(argv[3]) != true)
        {
            return 1;
        }
    }
    static_fs->Scan("./wwwroot", {"html", "tmpl"}, true);

    Filesystem dynamic_fs;
    if (argc > 4)
    {
        if (dynamic_fs.Scan(argv[4]) != true)
        {
            return 1;
        }
    }
    dynamic_fs.Scan("./wwwroot", {"html", "tmpl"}, false);

    std::shared_ptr<TemplateManager> tmgr = std::make_shared<TemplateManager>();
    tmgr->ParseTemplates(dynamic_fs);

    std::shared_ptr<ContentManager> ctmgr = std::make_shared<ContentManager>();
    ctmgr->SetStaticFilesystem(static_fs);
    ctmgr->SetTemplateSystem(tmgr);
    ctmgr->RegisterModule(std::make_shared<Blog>("/blog", "index.html"));

    if (ctmgr->InitAll() == false)
    {
        std::cout << "InitAll() failed." << std::endl;
        return 1;
    }

    EventManager evmgr(ctmgr);
    // evmgr.SetDefaultCallback(example_inja_render, {});
    evmgr.AddCallback("/bla", example_inja_render, {});
    evmgr.Init(host, port);

    // ctmgr.ShutdownAll();
}