Refaktoriere Anfrage- und Antworttypen in separate Datei, verbessere die Typen für Middleware und RouteCallback

This commit is contained in:
Flummi 2025-03-15 18:31:33 +01:00
parent f2cf3821f2
commit 9acd8f405b
3 changed files with 29 additions and 30 deletions

View File

@ -1,33 +1,13 @@
import http, { IncomingMessage, ServerResponse } from "node:http"; import http, { IncomingMessage, ServerResponse } from "node:http";
import { URL } from "node:url"; import { URL } from "node:url";
import { Buffer } from "node:buffer";
import querystring from "node:querystring"; import querystring from "node:querystring";
import Router from "./router.js"; import Router from "./router.js";
import Tpl from "./template.js"; import Tpl from "./template.js";
export { Router, Tpl, Request, Response, Middleware }; import { Request, Response, Middleware } from "./types.js";
type Middleware = (req: Request, res: Response, next: () => void) => void; export { Router, Tpl };
interface Request extends IncomingMessage {
parsedUrl: {
pathname: string;
split: string[];
searchParams: URLSearchParams;
qs: Record<string, string>;
};
cookies: Record<string, string>;
params?: Record<string, string>;
post?: Record<string, string>;
};
interface Response extends ServerResponse {
reply: (options: { code?: number; type?: string; body: string }) => void;
json: (body: string, code?: number) => void;
html: (body: string, code?: number) => void;
redirect: (target: string, code?: number) => void;
}
export default class Flummpress { export default class Flummpress {
private server?: http.Server; private server?: http.Server;
@ -74,7 +54,7 @@ export default class Flummpress {
this.server = http this.server = http
.createServer(async (request: IncomingMessage, response: ServerResponse) => { .createServer(async (request: IncomingMessage, response: ServerResponse) => {
const req = request as Request; const req = request as Request;
const res = this.createResponse(req, response); const res = this.createResponse(response);
const start = process.hrtime(); const start = process.hrtime();
try { try {
@ -173,10 +153,7 @@ export default class Flummpress {
}); });
} }
private createResponse( private createResponse(response: ServerResponse): Response {
req: Request,
response: ServerResponse
): Response {
const res = response as Response; const res = response as Response;
res.reply = ({ code = 200, type = "text/html", body }) => { res.reply = ({ code = 200, type = "text/html", body }) => {

View File

@ -2,10 +2,9 @@ import fs from "node:fs";
import path from "node:path"; import path from "node:path";
import Tpl from "./template.js"; import Tpl from "./template.js";
import { Request } from "./index.js"; import { RouteCallback } from "./types.js";
import { ServerResponse } from "node:http";
type RouteCallback = (req: Request, res: ServerResponse) => void;
export default class Router { export default class Router {
private routes: Map<RegExp | string, { [key: string]: RouteCallback | RouteCallback[] }>; private routes: Map<RegExp | string, { [key: string]: RouteCallback | RouteCallback[] }>;

23
src/types.d.ts vendored Normal file
View File

@ -0,0 +1,23 @@
import { IncomingMessage, ServerResponse } from "node:http";
export interface Request extends IncomingMessage {
parsedUrl: {
pathname: string;
split: string[];
searchParams: URLSearchParams;
qs: Record<string, string>;
};
cookies: Record<string, string>;
params?: Record<string, string>;
post?: Record<string, string>;
}
export interface Response extends ServerResponse {
reply: (options: { code?: number; type?: string; body: string }) => void;
json: (body: string, code?: number) => void;
html: (body: string, code?: number) => void;
redirect: (target: string, code?: number) => void;
}
export type Middleware = (req: Request, res: Response, next: () => void) => void;
export type RouteCallback = (req: Request, res: Response) => void;