mirror of
https://github.com/Litlyx/litlyx
synced 2025-12-10 07:48:37 +01:00
26 lines
1004 B
TypeScript
26 lines
1004 B
TypeScript
import { EventModel } from "@schema/metrics/EventSchema";
|
|
import { Redis, TIMELINE_EXPIRE_TIME } from "~/server/services/CacheService";
|
|
import { executeAdvancedTimelineAggregation } from "~/server/services/TimelineService";
|
|
|
|
export default defineEventHandler(async event => {
|
|
|
|
const data = await getRequestDataOld(event, { requireSchema: false, requireSlice: true });
|
|
if (!data) return;
|
|
|
|
const { from, to, slice, project_id, timeOffset } = data;
|
|
|
|
return await Redis.useCache({ key: `timeline:events_stacked:${project_id}:${slice}:${from || 'none'}:${to || 'none'}`, exp: TIMELINE_EXPIRE_TIME }, async () => {
|
|
|
|
const timelineStackedEvents = await executeAdvancedTimelineAggregation<{ name: String }>({
|
|
model: EventModel,
|
|
projectId: project_id,
|
|
from, to, slice,
|
|
customProjection: { name: "$_id.name" },
|
|
customIdGroup: { name: '$name' },
|
|
timeOffset
|
|
})
|
|
|
|
return timelineStackedEvents;
|
|
});
|
|
|
|
}); |