Files
n8n-enterprise-unlocked/packages/cli/src/modules/insights/insights.controller.ts
T

74 lines
2.5 KiB
TypeScript

import { InsightsDateFilterDto, ListInsightsWorkflowQueryDto } from '@n8n/api-types';
import type { InsightsSummary, InsightsByTime, InsightsByWorkflow } from '@n8n/api-types';
import { Get, GlobalScope, Licensed, Query, RestController } from '@n8n/decorators';
import type { UserError } from 'n8n-workflow';
import { ForbiddenError } from '@/errors/response-errors/forbidden.error';
import { AuthenticatedRequest } from '@/requests';
import { InsightsService } from './insights.service';
@RestController('/insights')
export class InsightsController {
constructor(private readonly insightsService: InsightsService) {}
/**
* This method is used to transform the date range from the request payload into a maximum age in days.
* It throws a ForbiddenError if the date range does not match the license insights max history
*/
private getMaxAgeInDaysAndGranularity(payload: InsightsDateFilterDto) {
try {
return this.insightsService.getMaxAgeInDaysAndGranularity(payload.dateRange ?? 'week');
} catch (error: unknown) {
throw new ForbiddenError((error as UserError).message);
}
}
@Get('/summary')
@GlobalScope('insights:list')
async getInsightsSummary(
_req: AuthenticatedRequest,
_res: Response,
@Query payload: InsightsDateFilterDto = { dateRange: 'week' },
): Promise<InsightsSummary> {
const dateRangeAndMaxAgeInDays = this.getMaxAgeInDaysAndGranularity(payload);
return await this.insightsService.getInsightsSummary({
periodLengthInDays: dateRangeAndMaxAgeInDays.maxAgeInDays,
});
}
@Get('/by-workflow')
@GlobalScope('insights:list')
@Licensed('feat:insights:viewDashboard')
async getInsightsByWorkflow(
_req: AuthenticatedRequest,
_res: Response,
@Query payload: ListInsightsWorkflowQueryDto,
): Promise<InsightsByWorkflow> {
const dateRangeAndMaxAgeInDays = this.getMaxAgeInDaysAndGranularity({
dateRange: payload.dateRange ?? 'week',
});
return await this.insightsService.getInsightsByWorkflow({
maxAgeInDays: dateRangeAndMaxAgeInDays.maxAgeInDays,
skip: payload.skip,
take: payload.take,
sortBy: payload.sortBy,
});
}
@Get('/by-time')
@GlobalScope('insights:list')
@Licensed('feat:insights:viewDashboard')
async getInsightsByTime(
_req: AuthenticatedRequest,
_res: Response,
@Query payload: InsightsDateFilterDto,
): Promise<InsightsByTime[]> {
const dateRangeAndMaxAgeInDays = this.getMaxAgeInDaysAndGranularity(payload);
return await this.insightsService.getInsightsByTime({
maxAgeInDays: dateRangeAndMaxAgeInDays.maxAgeInDays,
periodUnit: dateRangeAndMaxAgeInDays.granularity,
});
}
}