-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathserver.h
270 lines (191 loc) · 3.29 KB
/
server.h
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
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
/*++
Copyright (c) 2022 MobSlicer152
Module Name:
server.h
Abstract:
This module contains definitions for the server.
--*/
#pragma once
#include <assert.h>
#include <errno.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#ifdef _WIN32
// Not windows.h because mongoose redefines things
#define _AMD64_
#include <windef.h>
#include <WinBase.h>
#include <processthreadsapi.h>
#define strdup _strdup
#else
#include <unistd.h>
#include <pthread.h>
#endif
#include "cJSON.h"
#include "curl/curl.h"
#include "psa/crypto.h"
#include "mbedtls/sha256.h"
#include "mongoose.h"
#include "toml.h"
#undef snprintf
#include "types.h"
//
// Print a message
//
#define LOG(...) fprintf(stderr, "SERVER: " __VA_ARGS__);
//
// Format string arguments for errno errors
//
#define ERRNO_STRING() strerror(errno), errno
//
// Make a string
//
#define STRINGIZE(x) #x
#define STRINGIZE_EXPAND(x) STRINGIZE(x)
//
// Smaller of two values
//
#define MIN(a, b) ((a) < (b) ? (a) : (b))
//
// Larger of two values
//
#define MAX(a, b) ((a) > (b) ? (a) : (b))
//
// Clamp to range
//
#define CLAMP(Value, Min, Max) ((Value) < (Max) && (Value) > (Min) ? (Value) : (Value) > (Max) ? (Value) < (Min) ? (Min) : (Value) : (Max))
//
// Get the number of elements in an array
//
#define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
//
// Config file
//
#define CONFIG_FILE "config.toml"
//
// Root directory of files
//
#define ROOT_DIR "."
//
// Name of file to serve by default
//
#define STATIC_PAGE "index.html"
//
// Subdirectory where API is accessible
//
#define API_DIR "api"
//
// Make an endpoint string
//
#define MAKE_ENDPOINT(End) "/" API_DIR "/" End
//
// Test endpoint
//
#define TEST_ENDPOINT "test"
//
// Send a user's input to the Google Sheet
//
#define SEND_USER_ENDPOINT "send_user"
//
// Used for authentication
//
#define OAUTH_ENDPOINT "oauth_receive"
//
// Google Sheets spreadsheet ID to send user input to
//
extern PCHAR SpreadsheetId;
//
// Google OAuth2 Client JSON file
//
extern PCHAR GoogleOauth2ClientJson;
//
// Google OAuth2 authentication URI
//
extern PCHAR GoogleOauth2AuthUri;
//
// Google OAuth2 token URI
//
extern PCHAR GoogleOauth2TokenUri;
//
// Google OAuth2 client ID
//
extern PCHAR GoogleOauth2ClientId;
//
// Google OAuth2 client secret
//
extern PCHAR GoogleOauth2ClientSecret;
//
// Google OAuth2 token
//
extern PCHAR GoogleOauth2Token;
//
// TLS certificate path
//
extern PCHAR TlsCertPath;
//
// TLS private key file path
//
extern PCHAR TlsKeyPath;
//
// Port
//
extern UINT16 Port;
//
// Polling rate
//
extern INT PollRate;
//
// The email of the server owner, for Google authentication login_hint
//
extern PCHAR Email;
//
// Handle server events
//
VOID
HandleEvent(
IN struct mg_connection* Connection,
IN INT Event,
IN PVOID EventData,
IN PVOID Data
);
//
// Signal handler
//
VOID
HandleSignal(
IN INT Signal
);
//
// Send user input to a spreadsheet
//
VOID
SendUser(
IN PCCHAR Name,
IN INT NameLen,
IN PCCHAR Number,
IN INT NumberLen
);
//
// Authenticate with Google
//
BOOLEAN
AuthenticateGoogle(
IN PVOID Parameter
);
//
// Refresh Google token
//
BOOLEAN
RefreshGoogleToken(
VOID
);
//
// Main
//
INT
main(
IN INT argc,
IN PCHAR argv[]
);