32 lines
802 B
TypeScript
32 lines
802 B
TypeScript
import type { Job } from 'bullmq';
|
|
|
|
import { eventBuffer, profileBuffer, sessionBuffer } from '@openpanel/db';
|
|
import type { CronQueuePayload } from '@openpanel/queue';
|
|
|
|
import { deleteProjects } from './cron.delete-projects';
|
|
import { ping } from './cron.ping';
|
|
import { salt } from './cron.salt';
|
|
|
|
export async function cronJob(job: Job<CronQueuePayload>) {
|
|
switch (job.data.type) {
|
|
case 'salt': {
|
|
return await salt();
|
|
}
|
|
case 'flushEvents': {
|
|
return await eventBuffer.tryFlush();
|
|
}
|
|
case 'flushProfiles': {
|
|
return await profileBuffer.tryFlush();
|
|
}
|
|
case 'flushSessions': {
|
|
return await sessionBuffer.tryFlush();
|
|
}
|
|
case 'ping': {
|
|
return await ping();
|
|
}
|
|
case 'deleteProjects': {
|
|
return await deleteProjects();
|
|
}
|
|
}
|
|
}
|