mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-10 04:22:09 +10:00
66 lines
1.6 KiB
TypeScript
66 lines
1.6 KiB
TypeScript
import prisma from "../db/database";
|
|
import type { Session, SessionProvider } from "./types";
|
|
import cacheHandler from "../cache";
|
|
|
|
export default function createDBSessionHandler(): SessionProvider {
|
|
const cache = cacheHandler.createCache<Session>("DBSession");
|
|
|
|
return {
|
|
async setSession(token, session) {
|
|
await cache.set(token, session);
|
|
|
|
// const strData = JSON.stringify(data);
|
|
await prisma.session.upsert({
|
|
where: {
|
|
token,
|
|
},
|
|
create: {
|
|
token,
|
|
...session,
|
|
},
|
|
update: session,
|
|
});
|
|
return true;
|
|
},
|
|
async updateSession(token, data) {
|
|
return await this.setSession(token, data);
|
|
},
|
|
async getSession<T extends Session>(token: string) {
|
|
const cached = await cache.get(token);
|
|
if (cached !== null) return cached as T;
|
|
|
|
const result = await prisma.session.findUnique({
|
|
where: {
|
|
token,
|
|
},
|
|
});
|
|
if (result === null) return undefined;
|
|
|
|
// i hate casting
|
|
// need to cast to unknown since result.data can be an N deep json object technically
|
|
// ts doesn't like that be cast down to the more constraining session type
|
|
return result as unknown as T;
|
|
},
|
|
async removeSession(token) {
|
|
await cache.remove(token);
|
|
await prisma.session.delete({
|
|
where: {
|
|
token,
|
|
},
|
|
});
|
|
return true;
|
|
},
|
|
async cleanupSessions() {
|
|
const now = new Date();
|
|
|
|
await prisma.session.deleteMany({
|
|
where: {
|
|
expiresAt: {
|
|
lt: now,
|
|
},
|
|
},
|
|
});
|
|
},
|
|
};
|
|
}
|