Lindenii Project Forge
Login
Commit info
ID478f73b93c37e5e32ce33eb1de963eeb23a5cc40
AuthorRunxi Yu<me@runxiyu.org>
Author dateThu, 13 Mar 2025 12:18:53 +0800
CommitterRunxi Yu<me@runxiyu.org>
Committer dateThu, 13 Mar 2025 12:18:53 +0800
Actions
Get patch
Add basic template rendering
/forge
/templates.ha
forge: main.ha
	hare build -o $@ $^
forge: main.ha templates.ha
	hare build -o $@ .

templates.ha: templates/*.htmpl
	htmplgen -o $@ $^
// SPDX-License-Identifier: AGPL-3.0-only
// SPDX-FileCopyrightText: Copyright (c) 2025 Runxi Yu <https://runxiyu.org>
// Adapted from template by Willow Barraco <contact@willowbarraco.fr>

use getopt;
use htmpl;
use log;
use net;
use net::ip;
use net::http;
use net::dial;
use os;
use memio;
use io;
use fmt;
use bufio;
use strings;

const usage: [_]getopt::help = [
	"HTTP server",
	('a', "address", "listened address")
];

export fn main() void = {
	const cmd = getopt::parse(os::args, usage...);
	defer getopt::finish(&cmd);

	let port: u16 = 8080;
	let ip_addr: ip::addr4 = [127, 0, 0, 1];

	for (let opt .. cmd.opts) {
		switch (opt.0) {
		case 'a' =>
			match (dial::splitaddr(opt.1, "")) {
			case let value: (str, u16) =>
				ip_addr = ip::parsev4(value.0)!;
				port = value.1;
			case dial::invalid_address =>
				abort("invalid address");
			};
		case => abort(); // unreachable
		};
	};

	const server = match (http::listen(ip_addr, port)) {
	case let this: *http::server =>
		yield this;
	case net::error => abort("failure while listening");
	};
	defer http::server_finish(server);

	for (true) {
		const serv_req = match (http::serve(server)) {
		case let this: *http::server_request =>
			yield this;
		case net::error => abort("failure while serving");
		};
		defer http::serve_finish(serv_req);

		match (handlereq(serv_req.socket, &serv_req.request)) {
		case void => yield;
		case io::error => log::println("error while handling request");
		};
	};
};

export fn handlereq(conn: io::handle, request: *http::request) (void | io::error | nomem)  = {
	htmpl::write(conn, "HTTP/1.1 200 OK\r\n")?;
	htmpl::write(conn, "Content-Type: text/html\r\n\r\n")?;
	htmpl::write(conn, "<!DOCTYPE html><html><body><h1>")?;
	htmpl::write_escape_html(conn, "Hey there <3")?;
	htmpl::write(conn, "</h1></body></html>")?;
	tp_index(conn)?;
};
{{ define _tp_head_common(handle: io::handle, title: str = "Untitled") (void | io::error | nomem) }}
<title>{{ title }}</title>
{{ end }}
{{ define tp_index(handle: io::handle) (void | io::error | nomem) }}
{!
	let title: str = "Test";
!}
<!DOCTYPE html>
<html lang="en">
<head>
{{ render _tp_head_common(handle, title) }}
</head>
<body>
<h1>{{ title }}</h1>
</body>
</html>
{{ end }}