mirror of
https://github.com/nicotsx/zerobyte.git
synced 2026-01-04 11:27:59 -05:00
* feat: increase server idle timeout and allow to modify it via env * chore(app): move auth middleware to individual controller To clean up de main app.ts file * chore: remove console.log
82 lines
2.6 KiB
TypeScript
82 lines
2.6 KiB
TypeScript
import { Scalar } from "@scalar/hono-api-reference";
|
|
import { Hono } from "hono";
|
|
import { logger as honoLogger } from "hono/logger";
|
|
import { secureHeaders } from "hono/secure-headers";
|
|
import { rateLimiter } from "hono-rate-limiter";
|
|
import { openAPIRouteHandler } from "hono-openapi";
|
|
import { authController } from "./modules/auth/auth.controller";
|
|
import { requireAuth } from "./modules/auth/auth.middleware";
|
|
import { repositoriesController } from "./modules/repositories/repositories.controller";
|
|
import { systemController } from "./modules/system/system.controller";
|
|
import { volumeController } from "./modules/volumes/volume.controller";
|
|
import { backupScheduleController } from "./modules/backups/backups.controller";
|
|
import { eventsController } from "./modules/events/events.controller";
|
|
import { notificationsController } from "./modules/notifications/notifications.controller";
|
|
import { handleServiceError } from "./utils/errors";
|
|
import { logger } from "./utils/logger";
|
|
import { config } from "./core/config";
|
|
|
|
export const generalDescriptor = (app: Hono) =>
|
|
openAPIRouteHandler(app, {
|
|
documentation: {
|
|
info: {
|
|
title: "Zerobyte API",
|
|
version: "1.0.0",
|
|
description: "API for managing volumes",
|
|
},
|
|
servers: [{ url: `http://${config.serverIp}:4096`, description: "Development Server" }],
|
|
},
|
|
});
|
|
|
|
export const scalarDescriptor = Scalar({
|
|
title: "Zerobyte API Docs",
|
|
pageTitle: "Zerobyte API Docs",
|
|
url: "/api/v1/openapi.json",
|
|
});
|
|
|
|
export const createApp = () => {
|
|
const app = new Hono();
|
|
|
|
if (config.environment !== "test") {
|
|
app.use(honoLogger());
|
|
}
|
|
|
|
app
|
|
.use(secureHeaders())
|
|
.use(
|
|
rateLimiter({
|
|
windowMs: 60 * 5 * 1000,
|
|
limit: 1000,
|
|
keyGenerator: (c) => c.req.header("x-forwarded-for") ?? "",
|
|
skip: () => {
|
|
return config.__prod__ === false;
|
|
},
|
|
}),
|
|
)
|
|
.get("healthcheck", (c) => c.json({ status: "ok" }))
|
|
.route("/api/v1/auth", authController)
|
|
.route("/api/v1/volumes", volumeController)
|
|
.route("/api/v1/repositories", repositoriesController)
|
|
.route("/api/v1/backups", backupScheduleController)
|
|
.route("/api/v1/notifications", notificationsController)
|
|
.route("/api/v1/system", systemController)
|
|
.route("/api/v1/events", eventsController);
|
|
|
|
app.get("/api/v1/openapi.json", generalDescriptor(app));
|
|
app.get("/api/v1/docs", requireAuth, scalarDescriptor);
|
|
|
|
app.onError((err, c) => {
|
|
logger.error(`${c.req.url}: ${err.message}`);
|
|
|
|
if (err.cause instanceof Error) {
|
|
logger.error(err.cause.message);
|
|
}
|
|
|
|
const { status, message } = handleServiceError(err);
|
|
|
|
return c.json({ message }, status);
|
|
});
|
|
|
|
return app;
|
|
};
|