mirror of
https://github.com/Litlyx/litlyx
synced 2025-12-11 00:08:37 +01:00
29 lines
945 B
TypeScript
29 lines
945 B
TypeScript
import { VisitModel } from "@schema/metrics/VisitSchema";
|
|
import { Redis } from "~/server/services/CacheService";
|
|
import { executeTimelineAggregation, fillAndMergeTimelineAggregationV2 } from "~/server/services/TimelineService";
|
|
|
|
export default defineEventHandler(async event => {
|
|
|
|
const data = await getRequestData(event, { requireSchema: false, requireSlice: true });
|
|
if (!data) return;
|
|
|
|
const { pid, from, to, slice, project_id } = data;
|
|
|
|
const cacheKey = `timeline:visits:${pid}:${slice}:${from}:${to}`;
|
|
const cacheExp = 60;
|
|
|
|
return await Redis.useCacheV2(cacheKey, cacheExp, async () => {
|
|
const timelineData = await executeTimelineAggregation({
|
|
projectId: project_id,
|
|
model: VisitModel,
|
|
from, to, slice,
|
|
});
|
|
const timelineFilledMerged = fillAndMergeTimelineAggregationV2(timelineData, slice, from, to);
|
|
return timelineFilledMerged;
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
}); |