mirror of
https://github.com/eliasstepanik/core.git
synced 2026-01-11 22:08:27 +00:00
* Feat: add mcp oauth2.1 support * Fix: integration mcp is not loading * Feat: add slack integration --------- Co-authored-by: Manoj K <saimanoj58@gmail.com>
53 lines
1.7 KiB
TypeScript
53 lines
1.7 KiB
TypeScript
import { createCookieSessionStorage } from "@remix-run/node";
|
|
import { createThemeSessionResolver } from "remix-themes";
|
|
import { env } from "~/env.server";
|
|
import { type AuthUser } from "./authUser";
|
|
|
|
let SESSION_KEY = "user";
|
|
|
|
export const sessionStorage = createCookieSessionStorage<{
|
|
[SESSION_KEY]: AuthUser;
|
|
}>({
|
|
cookie: {
|
|
name: "__session__core", // use any name you want here
|
|
sameSite: "lax", // this helps with CSRF
|
|
path: "/", // remember to add this so the cookie will work in all routes
|
|
httpOnly: true, // for security reasons, make this cookie http only
|
|
secrets: [env.SESSION_SECRET],
|
|
secure: env.NODE_ENV === "production", // enable this in prod only
|
|
maxAge: 60 * 60 * 24 * 365, // 7 days
|
|
},
|
|
});
|
|
|
|
export const themeStorage = createCookieSessionStorage({
|
|
cookie: {
|
|
name: "__theme",
|
|
sameSite: "lax",
|
|
path: "/",
|
|
httpOnly: true,
|
|
secrets: [env.SESSION_SECRET],
|
|
secure: env.NODE_ENV === "production",
|
|
maxAge: 60 * 60 * 24 * 365, // 1 year
|
|
},
|
|
});
|
|
|
|
export const getSessionFromStore = async (request: Request) => {
|
|
return await sessionStorage.getSession(request.headers.get("Cookie"));
|
|
};
|
|
|
|
export const saveSession = async (request: Request, user: AuthUser) => {
|
|
const session = await getSessionFromStore(request);
|
|
session.set(SESSION_KEY, user);
|
|
return new Headers({
|
|
"Set-Cookie": await sessionStorage.commitSession(session),
|
|
});
|
|
};
|
|
|
|
export const themeSessionResolver = createThemeSessionResolver(sessionStorage);
|
|
|
|
export function getUserSession(request: Request) {
|
|
return sessionStorage.getSession(request.headers.get("Cookie"));
|
|
}
|
|
|
|
export const { getSession, commitSession, destroySession } = sessionStorage;
|