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-13 04:16:33 +00:00
|
|
|
const util = @import("util");
|
|
|
|
|
2022-07-13 03:40:48 +00:00
|
|
|
const api = @import("./api.zig");
|
2022-07-13 04:16:33 +00:00
|
|
|
const Uuid = util.Uuid;
|
2022-07-13 07:57:21 +00:00
|
|
|
const c = @import("./controllers.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-13 07:57:21 +00:00
|
|
|
Route.new(.GET, "/healthcheck", c.healthcheck),
|
2022-07-16 18:41:09 +00:00
|
|
|
|
2022-07-22 06:53:05 +00:00
|
|
|
Route.new(.POST, "/auth/register", c.auth.register),
|
|
|
|
Route.new(.POST, "/auth/login", c.auth.login),
|
|
|
|
Route.new(.GET, "/auth/authenticate", c.auth.authenticate),
|
2022-07-17 23:21:03 +00:00
|
|
|
|
2022-07-22 06:53:05 +00:00
|
|
|
Route.new(.POST, "/notes", c.notes.create),
|
|
|
|
Route.new(.GET, "/notes/:id", c.notes.get),
|
2022-07-21 05:26:13 +00:00
|
|
|
|
2022-07-22 06:53:05 +00:00
|
|
|
Route.new(.GET, "/notes/:id/reacts", c.notes.reacts.list),
|
|
|
|
Route.new(.POST, "/notes/:id/reacts", c.notes.reacts.create),
|
|
|
|
|
|
|
|
Route.new(.GET, "/actors/:id", c.actors.get),
|
2022-07-10 05:05:01 +00:00
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2022-07-13 07:57:21 +00:00
|
|
|
pub const RequestServer = struct {
|
2022-07-10 05:05:01 +00:00
|
|
|
alloc: std.mem.Allocator,
|
2022-07-13 03:40:48 +00:00
|
|
|
api: api.ApiServer,
|
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-13 03:40:48 +00:00
|
|
|
.api = try api.ApiServer.init(alloc),
|
2022-07-10 05:05:01 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2022-07-18 07:37:10 +00:00
|
|
|
fn listenAndRun(self: *RequestServer, addr: std.net.Address) !void {
|
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) {
|
2022-07-21 05:26:13 +00:00
|
|
|
const buf = try self.alloc.alloc(u8, 1 << 28); // 4mb
|
|
|
|
defer self.alloc.free(buf);
|
|
|
|
var fba = std.heap.FixedBufferAllocator.init(buf);
|
2022-07-10 01:01:03 +00:00
|
|
|
const alloc = fba.allocator();
|
2022-04-02 20:23:18 +00:00
|
|
|
|
2022-07-18 07:37:10 +00:00
|
|
|
var ctx = try srv.accept(alloc);
|
2022-07-10 01:01:03 +00:00
|
|
|
defer ctx.close();
|
2022-04-21 09:34:04 +00:00
|
|
|
|
2022-07-11 00:48:54 +00:00
|
|
|
router.dispatch(self, &ctx, ctx.request.method, ctx.request.path) catch |err| switch (err) {
|
2022-07-13 07:57:21 +00:00
|
|
|
error.NotFound, error.RouteNotApplicable => c.notFound(self, &ctx),
|
2022-07-18 07:37:10 +00:00
|
|
|
else => return err,
|
2022-07-11 00:48:54 +00:00
|
|
|
};
|
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-18 07:37:10 +00:00
|
|
|
return srv.listenAndRun(std.net.Address.parseIp("0.0.0.0", 8080) catch unreachable);
|
2022-05-20 04:46:39 +00:00
|
|
|
}
|