2022-11-20 09:48:13 +01:00
|
|
|
import { User, Website } from '@prisma/client';
|
2022-12-01 19:58:50 +01:00
|
|
|
import redis from 'lib/redis';
|
2022-11-20 09:48:13 +01:00
|
|
|
import { getSession, getUser, getWebsite } from '../queries';
|
2022-11-08 07:35:51 +01:00
|
|
|
|
|
|
|
async function fetchObject(key, query) {
|
|
|
|
const obj = await redis.get(key);
|
|
|
|
|
|
|
|
if (!obj) {
|
|
|
|
return query().then(async data => {
|
|
|
|
if (data) {
|
|
|
|
await redis.set(key, data);
|
|
|
|
}
|
|
|
|
|
|
|
|
return data;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
return obj;
|
|
|
|
}
|
|
|
|
|
|
|
|
async function storeObject(key, data) {
|
|
|
|
return redis.set(key, data);
|
|
|
|
}
|
|
|
|
|
|
|
|
async function deleteObject(key) {
|
2022-12-01 19:58:50 +01:00
|
|
|
return redis.set(key, redis.DELETED);
|
2022-11-08 07:35:51 +01:00
|
|
|
}
|
|
|
|
|
2022-11-20 09:48:13 +01:00
|
|
|
async function fetchWebsite(id): Promise<Website> {
|
2022-11-08 07:35:51 +01:00
|
|
|
return fetchObject(`website:${id}`, () => getWebsite({ id }));
|
|
|
|
}
|
|
|
|
|
|
|
|
async function storeWebsite(data) {
|
|
|
|
const { id } = data;
|
|
|
|
const key = `website:${id}`;
|
|
|
|
|
|
|
|
return storeObject(key, data);
|
|
|
|
}
|
|
|
|
|
|
|
|
async function deleteWebsite(id) {
|
|
|
|
return deleteObject(`website:${id}`);
|
|
|
|
}
|
|
|
|
|
2022-11-20 09:48:13 +01:00
|
|
|
async function fetchUser(id): Promise<User> {
|
2022-11-19 03:49:58 +01:00
|
|
|
return fetchObject(`user:${id}`, () => getUser({ id }, true));
|
2022-11-08 07:35:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
async function storeUser(data) {
|
|
|
|
const { id } = data;
|
|
|
|
const key = `user:${id}`;
|
|
|
|
|
|
|
|
return storeObject(key, data);
|
|
|
|
}
|
|
|
|
|
|
|
|
async function deleteUser(id) {
|
|
|
|
return deleteObject(`user:${id}`);
|
|
|
|
}
|
|
|
|
|
|
|
|
async function fetchSession(id) {
|
|
|
|
return fetchObject(`session:${id}`, () => getSession({ id }));
|
|
|
|
}
|
|
|
|
|
|
|
|
async function storeSession(data) {
|
|
|
|
const { id } = data;
|
|
|
|
const key = `session:${id}`;
|
|
|
|
|
|
|
|
return storeObject(key, data);
|
|
|
|
}
|
|
|
|
|
|
|
|
async function deleteSession(id) {
|
|
|
|
return deleteObject(`session:${id}`);
|
|
|
|
}
|
|
|
|
|
|
|
|
export default {
|
|
|
|
fetchWebsite,
|
|
|
|
storeWebsite,
|
|
|
|
deleteWebsite,
|
|
|
|
fetchUser,
|
|
|
|
storeUser,
|
|
|
|
deleteUser,
|
|
|
|
fetchSession,
|
|
|
|
storeSession,
|
|
|
|
deleteSession,
|
|
|
|
enabled: redis.enabled,
|
|
|
|
};
|