aboutsummaryrefslogtreecommitdiff
path: root/src/clog.c
blob: c2a7abba3148c3670a3663a3a7b6ea1c50e98e9b (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
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
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
#include <ctype.h>

#include <kore/kore.h>
#include <kore/http.h>
#include <kore/pgsql.h>
#include <kore/seccomp.h>

#include "../lib/md4c/src/entity.h"
#include "../lib/md4c/src/entity.c"
#include "../lib/md4c/src/md4c.h"
#include "../lib/md4c/src/md4c.c"
#include "../lib/md4c/src/md4c-html.h"
#include "../lib/md4c/src/md4c-html.c"

#include "assets.h"
// FIXME: Why does compilation fail if this is a .c file?
#include "queries.h"

KORE_SECCOMP_FILTER("clog",
    KORE_SYSCALL_ALLOW(bind),
    KORE_SYSCALL_ALLOW(getdents64),
    KORE_SYSCALL_ALLOW(newfstatat),
    KORE_SYSCALL_ALLOW(sendmmsg),
    KORE_SYSCALL_ALLOW(uname)
)

enum request_type { JSON, HTML };

struct post_request {
	struct http_request *req;
	const char *resource;
	enum request_type type;

	int resp_status;
	struct kore_buf *resp_buf;
};

static const char *accept_json = "application/json";
static const char *database = "db";

static const char * const error_msg[] = {
	[HTTP_STATUS_NOT_FOUND] = "Resource not found.",
	[HTTP_STATUS_INTERNAL_ERROR] = "There was an error processing the request.",
};

void post_request_init(struct post_request *post_req);
void post_request_cleanup(struct post_request *post_req);

int validate_uuid(const char *input);

int redirect(struct http_request *req);

int post(struct http_request *req);
int posts(struct http_request *req);

int render_posts(struct http_request *req, const char *resource);
int render_posts_query(struct post_request *post_req);

int toy(struct http_request *req);

static void process_md_output(const MD_CHAR *, MD_SIZE size, void *);
static int render_md(const char *, struct kore_buf *);

void
post_request_init(struct post_request *post_req) {
	post_req->req = NULL;
	post_req->resource = NULL;
	post_req->type = JSON;

	post_req->resp_status = HTTP_STATUS_OK;
	post_req->resp_buf = kore_buf_alloc(0);
}

void
post_request_cleanup(struct post_request *post_req) {
	if (post_req->resp_buf != NULL)
		kore_buf_free(post_req->resp_buf);
	post_req->resp_buf = NULL;
}

int
validate_uuid(const char *input) {
	int i = 0;
	const char *p = NULL;

	if (strlen(input) != 36)
		return KORE_RESULT_ERROR;

	for (i = 0, p = input; i <= 36; i++) {
		if ((i == 8) || (i == 13) || (i == 18) || (i == 23)) {
			if (p[i] != '-')
				return KORE_RESULT_ERROR;
			continue;
		}
		if (i == 36) {
			if (p[i] != '\0')
				return KORE_RESULT_ERROR;
			continue;
		}
		if (!isxdigit(p[i]))
			return KORE_RESULT_ERROR;
	}

	return KORE_RESULT_OK;
}

int
redirect(struct http_request *req) {
	http_response_header(req, "Location", "/");
	http_response(req, HTTP_STATUS_MOVED_PERMANENTLY, NULL, 0);

	return KORE_RESULT_OK;
}

int
post(struct http_request *req) {
	const char *resource = NULL;

	resource = req->path + strlen("/posts/");
	kore_log(LOG_DEBUG, "Resource /posts/%s", resource);

	return render_posts(req, resource);
}

int
posts(struct http_request *req) {
	return render_posts(req, NULL);
}

int
render_posts(struct http_request *req, const char *resource) {
	int err = 0;

	const char *accept = NULL;

	struct post_request post_req;

	post_request_init(&post_req);

	post_req.req = req;
	post_req.resource = resource;

	err = http_request_header(req, "accept", &accept);
	if (err == KORE_RESULT_OK) {
		kore_log(LOG_DEBUG, "Accept: %s", accept);
		if (strncmp(accept, accept_json, sizeof(*accept_json)) == 0)
			post_req.type = JSON;
		else
			post_req.type = HTML;
	}

	if (post_req.type == JSON) {
		http_response_header(post_req.req, "content-type", "application/json; charset=utf-8");

		(void) render_posts_query(&post_req);
		if (post_req.resp_status != HTTP_STATUS_OK) {
			kore_buf_appendf(
				post_req.resp_buf,
				(const char *) asset_error_json,
				error_msg[post_req.resp_status]
			);
		}

	} else {
		http_response_header(post_req.req, "content-type", "text/html; charset=utf-8");

		kore_buf_append(post_req.resp_buf, asset_index_begin_html, asset_len_index_begin_html);

		(void) render_posts_query(&post_req);
		if (post_req.resp_status != HTTP_STATUS_OK) {
			kore_buf_appendf(
				post_req.resp_buf,
				(const char *) asset_error_html,
				error_msg[post_req.resp_status]
			);
		}

		kore_buf_append(post_req.resp_buf, asset_index_end_html, asset_len_index_end_html);
	}

	http_response(
		post_req.req,
		post_req.resp_status,
		post_req.resp_buf->data,
		post_req.resp_buf->offset
	);

	post_request_cleanup(&post_req);

	return KORE_RESULT_OK;
}


int
render_posts_query(struct post_request *post_req) {
	int err = 0;

	int row = 0, rows = 0;

	const char *id = NULL;
	const char *title = NULL;
	const char *created_at = NULL;
	const char *body = NULL;

	const char *json = NULL;

	struct kore_pgsql sql;

	kore_pgsql_init(&sql);

	// TODO use kore validation here.
	if (post_req->resource) {
		// Check for valid resource ID/UUID
		err = validate_uuid(post_req->resource);
		if (err == KORE_RESULT_ERROR) {
			post_req->resp_status = HTTP_STATUS_NOT_FOUND;
			kore_log(LOG_ERR, "Invalid post UUID %s.", post_req->resource);
			goto out;
		}
	}

	// Initialize our kore_pgsql data structure with the database name
	// we want to connect to (note that we registered this earlier with
	// kore_pgsql_register()). We also say we will perform a synchronous
	// query (KORE_PGSQL_SYNC).
	err = kore_pgsql_setup(&sql, database, KORE_PGSQL_SYNC);
	if (err == KORE_RESULT_ERROR) {
		post_req->resp_status = HTTP_STATUS_INTERNAL_ERROR;
		kore_pgsql_logerror(&sql);
		goto out;
	}

	// Query for posts, check for error.
	if (post_req->resource != NULL) {
		// Query a post.
		err = kore_pgsql_query_params(
			&sql,
			post_req->type == HTML ? query_html_post : query_json_post,
			0,  // return string data
			1,  // param count
			KORE_PGSQL_PARAM_TEXT(post_req->resource)
		);
	} else {
		// Query all posts.
		err = kore_pgsql_query(
			&sql,
			post_req->type == HTML ? query_html_posts : query_json_posts
		);
	}

	if (err == KORE_RESULT_ERROR) {
		post_req->resp_status = HTTP_STATUS_INTERNAL_ERROR;
		kore_pgsql_logerror(&sql);
		goto out;
	}

	if (post_req->type == JSON) {
		// XXX Always tuples from the above Postgres queries, need to check the length for results.
		if (kore_pgsql_getlength(&sql, 0, 0) == 0) {
			post_req->resp_status = HTTP_STATUS_NOT_FOUND;
			goto out;
		}

		json = kore_pgsql_getvalue(&sql, 0, 0);
		kore_buf_append(
			post_req->resp_buf,
			json,
			strlen(json)
		);
	} else { // post_req->type == HTML
		rows = kore_pgsql_ntuples(&sql);
		// TODO: Add test for this; When database is empty, don't return 404 for base request.
		if (post_req->resource && rows == 0) {
			post_req->resp_status = HTTP_STATUS_NOT_FOUND;
			goto out;
		}

		// Iterate over posts and render them.
		for (row = 0; row < rows; row++) {
			id = kore_pgsql_getvalue(&sql, row, 0);
			title = kore_pgsql_getvalue(&sql, row, 1);
			created_at = kore_pgsql_getvalue(&sql, row, 2);
			body = kore_pgsql_getvalue(&sql, row, 3);
			kore_log(LOG_DEBUG, "id: '%s'; title '%s'", id, title);

			// Allocate a buffer to render the markdown as HTML into.
			struct kore_buf *html_buf = kore_buf_alloc(0);

			// Render MD.
			err = render_md(body, html_buf);
			if (err == KORE_RESULT_ERROR) {
				kore_log(LOG_ERR, "Error rendering markdown for entry %s.", id);
				kore_buf_free(html_buf);
				continue;
			}

			// Append rendered MD post.
			kore_buf_appendf(
				post_req->resp_buf,
				(const char *) asset_post_html,
				title,
				created_at,
				kore_buf_stringify(html_buf, NULL)
			);

			kore_buf_free(html_buf);
		}
	}

out: ;

	kore_pgsql_cleanup(&sql);

	return KORE_RESULT_OK;
}

int
toy(struct http_request *req) {
	int err = 0;

	int status = HTTP_STATUS_OK;

	struct kore_json_item *item = NULL;

	struct kore_json json;
	struct kore_pgsql sql;

	const char *json_str = "{\"id\": \"00000000-0000-0000-0000-000000000000\", "
	                       "\"title\": \"title\", \"body\": \"body\"}";

	// const char *q = "INSERT INTO posts (id, title, body) "
	//                 "VALUES ('00000000-0000-0000-0000-000000000000', 'title', 'body');";
	                      // 'af5bbaec-8d2b-11ed-9bf3-db5637a87ac5'

	const char *q = "INSERT INTO posts (id, title, body) "
	                "VALUES ($1, $2, $3);";

	kore_json_init(&json, json_str, strlen(json_str));

	kore_pgsql_init(&sql);

	if (!kore_json_parse(&json)) {
		status = HTTP_STATUS_INTERNAL_ERROR;
		kore_log(LOG_ERR, "error parsing json: %s\n", kore_json_strerror());
		goto out;
	}

	item = kore_json_find_string(json.root, "id");
	if (item != NULL) {
		kore_log(LOG_INFO, "id = '%s'\n", item->data.string);
	} else {
		status = HTTP_STATUS_INTERNAL_ERROR;
		kore_log(LOG_ERR, "error parsing id: %s\n", kore_json_strerror());
		goto out;
	}

	// Check for valid resource ID/UUID
	err = validate_uuid(item->data.string);
	if (err == KORE_RESULT_ERROR) {
		status = HTTP_STATUS_NOT_FOUND;
		kore_log(LOG_ERR, "Invalid post UUID %s.", item->data.string);
		goto out;
	}

	item = kore_json_find_string(json.root, "title");
	if (item != NULL) {
		kore_log(LOG_INFO, "title = '%s'\n", item->data.string);
	} else {
		status = HTTP_STATUS_INTERNAL_ERROR;
		kore_log(LOG_ERR, "error parsing title: %s\n", kore_json_strerror());
		goto out;
	}

	item = kore_json_find_string(json.root, "body");
	if (item != NULL) {
		kore_log(LOG_INFO, "body = '%s'\n", item->data.string);
	} else {
		status = HTTP_STATUS_INTERNAL_ERROR;
		kore_log(LOG_ERR, "error parsing body: %s\n", kore_json_strerror());
		goto out;
	}

	err = kore_pgsql_setup(&sql, database, KORE_PGSQL_SYNC);
	if (err == KORE_RESULT_ERROR) {
		status = HTTP_STATUS_INTERNAL_ERROR;
		kore_pgsql_logerror(&sql);
		goto out;
	}

	// Insert a post.
	// err = kore_pgsql_query(
	err = kore_pgsql_query_params(
		&sql,
		q,
		0,
		3,
		KORE_PGSQL_PARAM_TEXT("00000000-0000-0000-0000-000000000000"),
		KORE_PGSQL_PARAM_TEXT("title"),
		KORE_PGSQL_PARAM_TEXT("body")
	);

	if (err == KORE_RESULT_ERROR) {
		status = HTTP_STATUS_INTERNAL_ERROR;
		kore_pgsql_logerror(&sql);
		goto out;
	}

out: ;

	kore_pgsql_cleanup(&sql);
	kore_json_cleanup(&json);

	http_response(req, status, NULL, 0);

	return KORE_RESULT_OK;
}

static int
render_md(const char *in, struct kore_buf *out) {
	int err = 0;

	static unsigned parser_flags = 0;
	static unsigned renderer_flags = MD_HTML_FLAG_DEBUG;

	err = md_html(
		in,
		(MD_SIZE) strlen(in),
		process_md_output,
		(void*) out,
		parser_flags,
		renderer_flags
	);

	if(err != 0) {
		kore_log(LOG_ERR, "Parsing Markdown failed.");
		return KORE_RESULT_ERROR;
	}

	return KORE_RESULT_OK;
}

static void
process_md_output(const MD_CHAR *html, MD_SIZE size, void *buf) {
	kore_buf_append(
		(struct kore_buf *) buf,
		(const void *) html,
		(size_t) size
	);
}