import { serve } from "@hono/node-server"; import { Hono } from "hono"; import "dotenv/config"; import { zValidator } from "@hono/zod-validator"; import { Queue } from "@nerimity/mimiqueue"; import { createClient } from "redis"; import { logger } from "./logger.js"; import { type DeployJob, deployJobSchema } from "./schema.js"; import { deploy } from "./utils.js"; const app = new Hono(); const redisClient = createClient({ url: process.env.REDIS_URL, }); app.use(async (c, next) => { if (c.req.path === "/health") { return next(); } const authHeader = c.req.header("X-API-Key"); if (process.env.API_KEY !== authHeader) { return c.json({ message: "Invalid API Key" }, 403); } return next(); }); app.post("/deploy", zValidator("json", deployJobSchema), (c) => { const data = c.req.valid("json"); queue.add(data, { groupName: data.serverId }); return c.json( { message: "Deployment Added", }, 200, ); }); app.get("/health", async (c) => { return c.json({ status: "ok" }); }); const queue = new Queue({ name: "deployments", process: async (job: DeployJob) => { logger.info("Deploying job", job); return await deploy(job); }, redisClient, }); (async () => { await redisClient.connect(); await redisClient.flushAll(); logger.info("Redis Cleaned"); })(); const port = Number.parseInt(process.env.PORT || "3000"); logger.info("Starting Deployments Server ✅", port); serve({ fetch: app.fetch, port });