45 lines
1.1 KiB
TypeScript
45 lines
1.1 KiB
TypeScript
import { FastifyReply } from "fastify";
|
|
|
|
export class CookieParser {
|
|
private rawCookies: string;
|
|
private cookies: Record<string, string>;
|
|
|
|
constructor(rawCookies: string) {
|
|
this.rawCookies = rawCookies;
|
|
this.cookies = {};
|
|
this.parse();
|
|
}
|
|
|
|
parse(): Record<string, string> {
|
|
return this.rawCookies.split("; ").reduce(
|
|
(acc, cookie) => {
|
|
const [key, value] = cookie.split("=");
|
|
acc[key] = decodeURIComponent(value);
|
|
return acc;
|
|
},
|
|
{} as Record<string, string>,
|
|
);
|
|
}
|
|
|
|
get(key: string, formatter?: Function): string | undefined {
|
|
const value = this.cookies[key];
|
|
|
|
if (formatter) return formatter(value);
|
|
return value;
|
|
}
|
|
|
|
set(reply: FastifyReply, key: string, value: string, daysDuration = 30): FastifyReply {
|
|
const options = {
|
|
path: "/",
|
|
httpOnly: true,
|
|
secure: process.env.NODE_ENV === "production",
|
|
expires: new Date(Date.now() + 60 * 60 * 24 * daysDuration * 1000),
|
|
};
|
|
|
|
reply.setCookie(key, value, options);
|
|
this.cookies[key] = value;
|
|
|
|
return reply;
|
|
}
|
|
}
|