2022-04-02 20:23:18 +00:00
|
|
|
const std = @import("std");
|
2022-07-10 22:19:21 +00:00
|
|
|
const builtin = @import("builtin");
|
2022-07-09 22:07:51 +00:00
|
|
|
const http = @import("http");
|
2022-07-10 23:53:17 +00:00
|
|
|
const db = @import("./db.zig");
|
2022-07-10 05:05:01 +00:00
|
|
|
|
|
|
|
// this thing is overcomplicated and weird. stop this
|
|
|
|
const Router = http.Router(*RequestServer);
|
|
|
|
const Route = Router.Route;
|
|
|
|
const RouteArgs = http.RouteArgs;
|
|
|
|
const router = Router{
|
|
|
|
.routes = &[_]Route{
|
2022-07-10 22:19:21 +00:00
|
|
|
Route.new(.GET, "/healthcheck", healthcheck),
|
2022-07-11 00:40:17 +00:00
|
|
|
Route.new(.GET, "/:id", getNote),
|
2022-07-10 05:05:01 +00:00
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2022-07-10 22:19:21 +00:00
|
|
|
const json_options = if (builtin.mode == .Debug)
|
|
|
|
.{
|
|
|
|
.whitespace = .{
|
|
|
|
.indent = .{ .Space = 2 },
|
|
|
|
.separator = true,
|
|
|
|
},
|
|
|
|
} else .{
|
|
|
|
.whitespace = .{
|
|
|
|
.indent = .None,
|
|
|
|
.separator = false,
|
|
|
|
},
|
|
|
|
};
|
2022-07-10 05:05:01 +00:00
|
|
|
|
2022-07-11 00:01:36 +00:00
|
|
|
// Responds to a request with a json value
|
|
|
|
fn respondJson(ctx: *http.server.Context, value: anytype, alloc: std.mem.Allocator) !void {
|
|
|
|
var headers = http.Headers.init(alloc);
|
|
|
|
defer headers.deinit();
|
2022-07-10 23:53:17 +00:00
|
|
|
|
2022-07-11 00:01:36 +00:00
|
|
|
// Don't need to free this k/v pair because they aren't dynamically allocated
|
|
|
|
try headers.put("Content-Type", "application/json");
|
2022-07-10 23:53:17 +00:00
|
|
|
|
|
|
|
var stream = try ctx.openResponse(&headers, .ok);
|
|
|
|
defer stream.close();
|
|
|
|
|
|
|
|
const writer = stream.writer();
|
2022-07-11 00:01:36 +00:00
|
|
|
try std.json.stringify(value, json_options, writer);
|
2022-07-10 23:53:17 +00:00
|
|
|
|
|
|
|
try stream.finish();
|
|
|
|
}
|
|
|
|
|
2022-07-11 00:40:17 +00:00
|
|
|
fn getNote(srv: *RequestServer, ctx: *http.server.Context, args: RouteArgs) !void {
|
|
|
|
const id = args.get("id").?;
|
|
|
|
const note = try srv.db.getNote(id, srv.alloc);
|
2022-07-11 00:01:36 +00:00
|
|
|
defer db.free(srv.alloc, note);
|
2022-07-10 05:05:01 +00:00
|
|
|
|
2022-07-11 00:01:36 +00:00
|
|
|
try respondJson(ctx, note, srv.alloc);
|
|
|
|
}
|
2022-07-10 05:05:01 +00:00
|
|
|
|
2022-07-11 00:01:36 +00:00
|
|
|
fn healthcheck(srv: *RequestServer, ctx: *http.server.Context, _: RouteArgs) !void {
|
|
|
|
try respondJson(ctx, .{ .status = "ok" }, srv.alloc);
|
2022-07-10 05:05:01 +00:00
|
|
|
}
|
2022-04-23 07:11:40 +00:00
|
|
|
|
2022-07-10 01:01:03 +00:00
|
|
|
const RequestServer = struct {
|
2022-07-10 05:05:01 +00:00
|
|
|
alloc: std.mem.Allocator,
|
2022-07-11 00:07:15 +00:00
|
|
|
db: db.Database,
|
2022-07-10 05:05:01 +00:00
|
|
|
|
2022-07-11 00:12:52 +00:00
|
|
|
fn init(alloc: std.mem.Allocator) !RequestServer {
|
2022-07-10 05:05:01 +00:00
|
|
|
return RequestServer{
|
|
|
|
.alloc = alloc,
|
2022-07-11 00:12:52 +00:00
|
|
|
.db = try db.Database.init(alloc),
|
2022-07-10 05:05:01 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
fn listenAndRun(self: *RequestServer, addr: std.net.Address) noreturn {
|
2022-07-10 01:01:03 +00:00
|
|
|
var srv = http.Server.listen(addr) catch unreachable;
|
|
|
|
defer srv.shutdown();
|
2022-04-04 03:36:32 +00:00
|
|
|
|
2022-07-10 01:01:03 +00:00
|
|
|
while (true) {
|
|
|
|
var buf: [1 << 20]u8 = undefined;
|
|
|
|
var fba = std.heap.FixedBufferAllocator.init(&buf);
|
|
|
|
const alloc = fba.allocator();
|
2022-04-02 20:23:18 +00:00
|
|
|
|
2022-07-10 01:01:03 +00:00
|
|
|
var ctx = srv.accept(alloc) catch unreachable;
|
|
|
|
defer ctx.close();
|
2022-04-21 09:34:04 +00:00
|
|
|
|
2022-07-10 05:05:01 +00:00
|
|
|
router.dispatch(self, &ctx, ctx.request.method, ctx.request.path) catch unreachable;
|
2022-07-10 01:01:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
pub fn main() anyerror!void {
|
2022-07-10 05:05:01 +00:00
|
|
|
var gpa = std.heap.GeneralPurposeAllocator(.{}){};
|
2022-07-11 00:12:52 +00:00
|
|
|
var srv = try RequestServer.init(gpa.allocator());
|
2022-07-10 01:01:03 +00:00
|
|
|
srv.listenAndRun(std.net.Address.parseIp("0.0.0.0", 8080) catch unreachable);
|
2022-05-20 04:46:39 +00:00
|
|
|
}
|