mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-01 10:09:56 +00:00
Nutomic
32063a5794
* Set cache-control headers to reduce server load (fixes #412) * add missing file * remove old middleware folder * use let --------- Co-authored-by: SleeplessOne1917 <abias1122@gmail.com>
42 lines
1.2 KiB
TypeScript
42 lines
1.2 KiB
TypeScript
import type { NextFunction, Response } from "express";
|
|
import { UserService } from "../shared/services";
|
|
|
|
export function setDefaultCsp({
|
|
res,
|
|
next,
|
|
}: {
|
|
res: Response;
|
|
next: NextFunction;
|
|
}) {
|
|
res.setHeader(
|
|
"Content-Security-Policy",
|
|
`default-src 'self'; manifest-src *; connect-src *; img-src * data:; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; form-action 'self'; base-uri 'self'; frame-src *; media-src *`
|
|
);
|
|
|
|
next();
|
|
}
|
|
|
|
// Set cache-control headers. If user is logged in, set `private` to prevent storing data in
|
|
// shared caches (eg nginx) and leaking of private data. If user is not logged in, allow caching
|
|
// all responses for 60 seconds to reduce load on backend and database. The specific cache
|
|
// interval is rather arbitrary and could be set higher (less server load) or lower (fresher data).
|
|
//
|
|
// https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Cache-Control
|
|
export function setCacheControl({
|
|
res,
|
|
next,
|
|
}: {
|
|
res: Response;
|
|
next: NextFunction;
|
|
}) {
|
|
const user = UserService.Instance;
|
|
let caching;
|
|
if (user.auth()) {
|
|
caching = "private";
|
|
} else {
|
|
caching = "public, max-age=60";
|
|
}
|
|
res.setHeader("Cache-Control", caching);
|
|
|
|
next();
|
|
}
|