-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtiktaktoe.cpp
193 lines (169 loc) · 6.93 KB
/
tiktaktoe.cpp
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
/*
* TikTakToe - a demo game using the snode.c framework
* Copyright (C) 2020, 2021, 2022, 2023 Volker Christian <me@vchrist.at>
* Copyright (C) 2021 Ertug Obalar, Jens Patzelt and Milad Tousi
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifdef LINK_SUBPROTOCOL_STATIC
#include "TikTakToeSubProtocolFactory.h"
#include "web/websocket/server/SubProtocolFactorySelector.h"
#endif
#if defined(LINK_WEBSOCKET_STATIC) || defined(LINK_SUBPROTOCOL_STATIC)
#include "web/websocket/server/SocketContextUpgradeFactory.h"
#endif
#include "config.h"
#include <core/SNodeC.h>
#include <express/legacy/in/WebApp.h>
#include <express/tls/in/WebApp.h>
#include <log/Logger.h>
#include <string>
int main(int argc, char* argv[]) {
#if defined(LINK_WEBSOCKET_STATIC) || defined(LINK_SUBPROTOCOL_STATIC)
web::websocket::server::SocketContextUpgradeFactory::link();
#endif
#ifdef LINK_SUBPROTOCOL_STATIC
web::websocket::server::SubProtocolFactorySelector::link("tiktaktoe", tiktaktoeServerSubProtocolFactory);
#endif
core::SNodeC::init(argc, argv);
const express::legacy::in::WebApp legacyApp("legacy");
legacyApp.get("/", [] APPLICATION(req, res) {
if (req->url == "/") {
req->url = "/index.html";
}
res->sendFile(CMAKE_SOURCE_DIR "public" + req->url, [&req](int ret) -> void {
if (ret != 0) {
PLOG(ERROR) << req->url;
}
});
});
legacyApp.get("/css", [] APPLICATION(req, res) {
res->sendFile(CMAKE_SOURCE_DIR "public" + req->url, [&req](int ret) -> void {
if (ret != 0) {
PLOG(ERROR) << req->url;
}
});
});
legacyApp.get("/js", [] APPLICATION(req, res) {
res->sendFile(CMAKE_SOURCE_DIR "public" + req->url, [&req](int ret) -> void {
if (ret != 0) {
PLOG(ERROR) << req->url;
}
});
});
legacyApp.get("/sfx", [] APPLICATION(req, res) {
res->sendFile(CMAKE_SOURCE_DIR "public" + req->url, [&req](int ret) -> void {
if (ret != 0) {
PLOG(ERROR) << req->url;
}
});
});
legacyApp.get("/ws", [] APPLICATION(req, res) {
if (req->get("sec-websocket-protocol").find("tiktaktoe") != std::string::npos) {
res->upgrade(req, [&subProtocolsRequested = req->get("upgrade"), res](const std::string& name) -> void {
if (!name.empty()) {
VLOG(1) << "Successful upgrade to '" << name << "' requested: " << subProtocolsRequested;
} else {
VLOG(1) << "Can not upgrade to any of '" << subProtocolsRequested << "'";
}
res->end();
});
} else {
res->sendStatus(404);
}
});
legacyApp.listen([instanceName = legacyApp.getConfig().getInstanceName()](
const net::in::SocketAddress& socketAddress,
const core::socket::State& state) -> void { // Listen on all bluetooth interfaces on channel 16{
switch (state) {
case core::socket::State::OK:
VLOG(1) << instanceName << ": listening on '" << socketAddress.toString() << "'";
break;
case core::socket::State::DISABLED:
VLOG(1) << instanceName << ": disabled";
break;
case core::socket::State::ERROR:
LOG(ERROR) << instanceName << ": " << socketAddress.toString() << ": " << state.what();
break;
case core::socket::State::FATAL:
LOG(FATAL) << instanceName << ": " << socketAddress.toString() << ": " << state.what();
break;
}
});
const express::tls::in::WebApp tlsApp("tls");
tlsApp.get("/", [] APPLICATION(req, res) {
if (req->url == "/") {
req->url = "/index.html";
}
res->sendFile(CMAKE_SOURCE_DIR "public" + req->url, [&req](int ret) -> void {
if (ret != 0) {
PLOG(ERROR) << req->url;
}
});
});
tlsApp.get("/css", [] APPLICATION(req, res) {
res->sendFile(CMAKE_SOURCE_DIR "public" + req->url, [&req](int ret) -> void {
if (ret != 0) {
PLOG(ERROR) << req->url;
}
});
});
tlsApp.get("/js", [] APPLICATION(req, res) {
res->sendFile(CMAKE_SOURCE_DIR "public" + req->url, [&req](int ret) -> void {
if (ret != 0) {
PLOG(ERROR) << req->url;
}
});
});
tlsApp.get("/sfx", [] APPLICATION(req, res) {
res->sendFile(CMAKE_SOURCE_DIR "public" + req->url, [&req](int ret) -> void {
if (ret != 0) {
PLOG(ERROR) << req->url;
}
});
});
tlsApp.get("/ws", [] APPLICATION(req, res) {
if (req->get("sec-websocket-protocol").find("tiktaktoe") != std::string::npos) {
res->upgrade(req, [&subProtocolsRequested = req->get("upgrade"), res](const std::string& name) -> void {
if (!name.empty()) {
VLOG(1) << "Successful upgrade to '" << name << "' requested: " << subProtocolsRequested;
} else {
VLOG(1) << "Can not upgrade to any of '" << subProtocolsRequested << "'";
}
res->end();
});
} else {
res->sendStatus(404);
}
});
tlsApp.listen([instanceName = tlsApp.getConfig().getInstanceName()](
const net::in::SocketAddress& socketAddress,
const core::socket::State& state) -> void { // Listen on all bluetooth interfaces on channel 16{
switch (state) {
case core::socket::State::OK:
VLOG(1) << instanceName << ": listening on '" << socketAddress.toString() << "'";
break;
case core::socket::State::DISABLED:
VLOG(1) << instanceName << ": disabled";
break;
case core::socket::State::ERROR:
LOG(ERROR) << instanceName << ": " << socketAddress.toString() << ": " << state.what();
break;
case core::socket::State::FATAL:
LOG(FATAL) << instanceName << ": " << socketAddress.toString() << ": " << state.what();
break;
}
});
return core::SNodeC::start();
}