umami/lib/cache.ts

76 lines
1.6 KiB
TypeScript
Raw Normal View History

2022-11-20 09:48:13 +01:00
import { User, Website } from '@prisma/client';
2022-12-27 06:51:16 +01:00
import redis from '@umami/redis-client';
2023-07-30 07:03:34 +02:00
import { getSession, getUserById, getWebsiteById } from '../queries';
const { fetchObject, storeObject, deleteObject } = redis;
2022-11-20 09:48:13 +01:00
async function fetchWebsite(id): Promise<Website> {
2023-07-30 07:03:34 +02:00
return fetchObject(`website:${id}`, () => getWebsiteById(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> {
2023-07-30 07:03:34 +02:00
return fetchObject(`user:${id}`, () => getUserById(id, { includePassword: true }));
}
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) {
2023-07-30 07:03:34 +02:00
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}`);
}
2023-05-16 05:41:12 +02:00
async function fetchUserBlock(userId: string) {
const key = `user:block:${userId}`;
return redis.get(key);
}
2023-06-01 20:54:24 +02:00
async function incrementUserBlock(userId: string) {
const key = `user:block:${userId}`;
return redis.incr(key);
}
export default {
fetchWebsite,
storeWebsite,
deleteWebsite,
fetchUser,
storeUser,
deleteUser,
fetchSession,
storeSession,
deleteSession,
2023-05-16 05:41:12 +02:00
fetchUserBlock,
2023-06-01 20:54:24 +02:00
incrementUserBlock,
enabled: redis.enabled,
};