93 lines
2.3 KiB
TypeScript
93 lines
2.3 KiB
TypeScript
import { gzipSync } from "bun";
|
|
|
|
const parseQueryParams = (ctx: any) => {
|
|
const pageHref = ctx.req.url;
|
|
const searchParams = new URLSearchParams(
|
|
pageHref.substring(pageHref.indexOf("?"))
|
|
);
|
|
const result: any = {};
|
|
searchParams.forEach((v, k) => {
|
|
result[k] = v;
|
|
});
|
|
|
|
return result as any;
|
|
};
|
|
export const apiContext = (ctx: any) => {
|
|
ctx.req.params = ctx.params;
|
|
ctx.req.query_parameters = parseQueryParams(ctx);
|
|
return {
|
|
req: ctx.req as Request & { params: any; query_parameters: any },
|
|
res: {
|
|
...ctx.res,
|
|
send: (body, cache_accept?: string) => {
|
|
ctx.res = createResponse(ctx.res, body, cache_accept);
|
|
},
|
|
sendStatus: (code: number) => {
|
|
ctx.res._status = code;
|
|
},
|
|
setHeader: (key: string, value: string) => {
|
|
ctx.res.headers.append(key, value);
|
|
},
|
|
} as Response & {
|
|
send: (body?: string | object, cache_accept?: string) => void;
|
|
setHeader: (key: string, value: string) => void;
|
|
sendStatus: (code: number) => void;
|
|
},
|
|
};
|
|
};
|
|
|
|
const cache = { gz: {} as Record<string, Uint8Array> };
|
|
|
|
export const createResponse = (
|
|
existingRes: any,
|
|
body: any,
|
|
cache_accept?: string
|
|
) => {
|
|
const status =
|
|
typeof existingRes._status === "number" ? existingRes._status : undefined;
|
|
|
|
let content: any = typeof body === "string" ? body : JSON.stringify(body);
|
|
const headers = {} as Record<string, string>;
|
|
if (cache_accept && cache_accept.toLowerCase().includes("gz")) {
|
|
const content_hash = simpleHash(content);
|
|
if (content_hash) {
|
|
content = cache.gz[content_hash];
|
|
} else {
|
|
cache.gz[content_hash] = gzipSync(content);
|
|
content = cache.gz[content_hash];
|
|
}
|
|
headers["content-encoding"] = "gz";
|
|
}
|
|
|
|
let res = new Response(
|
|
content,
|
|
status
|
|
? {
|
|
status,
|
|
}
|
|
: undefined
|
|
);
|
|
|
|
if (typeof body === "object") {
|
|
res.headers.append("content-type", "application/json");
|
|
}
|
|
for (const [k, v] of Object.entries(headers)) {
|
|
res.headers.append(k, v);
|
|
}
|
|
|
|
const cur = existingRes as Response;
|
|
cur.headers.forEach((value, key) => {
|
|
res.headers.append(key, value);
|
|
});
|
|
|
|
return res;
|
|
};
|
|
|
|
function simpleHash(str: string) {
|
|
let hash = 0;
|
|
for (let i = 0; i < str.length; i++) {
|
|
hash = ((hash << 5) - hash + str.charCodeAt(i)) | 0;
|
|
}
|
|
return (hash >>> 0).toString(36);
|
|
}
|