-
-
Save smeijer/7bbb87ec541435f3125000857337d280 to your computer and use it in GitHub Desktop.
next-runtime session middleware
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 characters
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); | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment