view page-index.c @ 74:67b3d13a5035

pasterd: make own HTML code for good
author David Demelier <markand@malikania.fr>
date Wed, 15 Mar 2023 19:34:00 +0100
parents 6792975da9a0
children b12491ceabfd
line wrap: on
line source

/*
 * page-index.c -- page /
 *
 * Copyright (c) 2020-2023 David Demelier <markand@malikania.fr>
 *
 * Permission to use, copy, modify, and/or distribute this software for any
 * purpose with or without fee is hereby granted, provided that the above
 * copyright notice and this permission notice appear in all copies.
 *
 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 */

#include <assert.h>

#include "database.h"
#include "page-index.h"
#include "page.h"
#include "paste.h"
#include "util.h"

#include "html/index.h"

static void
get(struct kreq *r)
{
	struct paste pastes[10] = {0};
	size_t pastesz = NELEM(pastes);

	if (!database_recents(pastes, &pastesz))
		page_status(r, KHTTP_500);
	else {
		page_index_render(r, pastes, pastesz);

		for (size_t i = 0; i < pastesz; ++i)
			paste_finish(&pastes[i]);
	}
}

static inline json_t *
create_date(const struct paste *paste)
{
	return json_string(bstrftime("%c", localtime(&paste->timestamp)));
}

static inline json_t *
create_expiration(const struct paste *paste)
{
	return json_string(ttl(paste->timestamp, paste->duration));
}

static inline json_t *
create_pastes(const struct paste *pastes, size_t pastesz)
{
	json_t *array = json_array();
	const struct paste *paste;

	for (size_t i = 0; i < pastesz; ++i) {
		paste = &pastes[i];

		json_array_append_new(array, json_pack("{ss ss ss ss so so}",
			"id",           paste->id,
			"author",       paste->author,
			"title",        paste->title,
			"date",         create_date(paste),
			"expiration",   create_expiration(paste)
		));
	}

	return array;
}

static inline json_t *
create_doc(const struct paste *pastes, size_t pastesz)
{
	return json_pack("{ss so}",
		"pagetitle",    "sci -- recent pastes",
		"pastes",       create_pastes(pastes, pastesz)
	);
}

void
page_index_render(struct kreq *req, const struct paste *pastes, size_t pastesz)
{
	assert(req);
	assert(pastes);

	page(req, KHTTP_200, html_index, create_doc(pastes, pastesz));
}

void
page_index(struct kreq *req)
{
	assert(req);

	switch (req->method) {
	case KMETHOD_GET:
		get(req);
		break;
	default:
		page_status(req, KHTTP_400);
		break;
	}
}