-
-
Save smeijer/7bbb87ec541435f3125000857337d280 to your computer and use it in GitHub Desktop.
Revisions
-
AndrewIngram created this gist
Feb 18, 2022 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,37 @@ import { json } from "next-runtime"; import jwt from "jsonwebtoken"; const SESSION_KEY = "some-secret"; export function readSession(cookies) { const sessionCookie = cookies.get("session"); let data = {}; if (sessionCookie) { data = jwt.verify(sessionCookie, SESSION_KEY); delete data.iat; } return data; } export function writeSession(cookies, data) { cookies.set("session", jwt.sign(data, SESSION_KEY)); } export const session = async (ctx, next) => { let data = readSession(ctx.cookies); ctx.session = data; try { await next(); return json({ session: ctx.session }); } catch (err) { throw err; } finally { // TODO dirty checks, to avoid unneccessary cookies writeSession(ctx.cookies, ctx.session); } };