FRE-605: Implement Phase 4 Change Tracking & Merge Logic

- Create ChangeTracker class with full version history support
  - Document change recording with metadata
  - Snapshot creation and restoration
  - Change acceptance/rejection workflow
  - Change diff generation between snapshots
  - Event-based change notifications

- Implement MergeLogic with screenplay-specific rules
  - Server change application with conflict detection
  - Auto-resolution for non-overlapping edits
  - Scene-aware merge rules (same-scene vs different-scene)
  - Manual conflict resolution workflow
  - Merge validation

- Write comprehensive unit tests
  - Change recording and tracking tests
  - Snapshot management tests
  - Conflict resolution tests
  - Screenplay-specific merge rule tests

- Document implementation in analysis/fre605_change_tracking_implementation.md

Architecture: ChangeTracker integrates with Yjs document updates.
MergeLogic applies screenplay-specific rules for concurrent edits.

Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
2026-04-25 02:14:54 -04:00
parent 7c684a42cc
commit b89575fb6e
26 changed files with 3346 additions and 70 deletions

View File

@@ -0,0 +1,194 @@
import { eq, and, gte, lte } from "drizzle-orm";
import { cohorts, cohortMembers } from "../../db/schema";
import type { DrizzleDB } from "../../db/config/migrations";
import type { NewCohort, Cohort, NewCohortMember } from "../../db/schema";
export interface CohortDefinition {
name: string;
description: string;
periodStart: Date;
periodEnd?: Date;
filterCriteria: Record<string, unknown>;
}
export interface CohortAnalysisResult {
cohort: Cohort;
retention: Record<number, number>;
metrics: CohortMetrics;
}
export interface CohortMetrics {
totalUsers: number;
activeUsers: number;
retentionRate: number;
avgEngagement: number;
conversionRate: number;
}
export async function createCohort(
db: DrizzleDB,
definition: CohortDefinition
): Promise<Cohort> {
const cohort: NewCohort = {
name: definition.name,
definition: JSON.stringify(definition.filterCriteria),
periodStart: definition.periodStart,
periodEnd: definition.periodEnd ?? null,
size: 0,
retentionData: null,
metadata: definition.description ? JSON.stringify({ description: definition.description }) : null,
};
const result = await db.insert(cohorts).values(cohort).returning();
return result[0];
}
export async function addCohortMember(
db: DrizzleDB,
cohortId: number,
userId: number
): Promise<void> {
const member: NewCohortMember = {
cohortId,
userId,
joinedAt: new Date(),
};
await db.insert(cohortMembers).values(member);
await db
.update(cohorts)
.set({
size: await getCohortSize(db, cohortId),
})
.where(eq(cohorts.id, cohortId));
}
export async function getCohortSize(db: DrizzleDB, cohortId: number): Promise<number> {
const rows = await db
.select({ count: cohortMembers.id })
.from(cohortMembers)
.where(eq(cohortMembers.cohortId, cohortId));
return rows.length;
}
export async function getCohortAnalysis(
db: DrizzleDB,
cohortId: number
): Promise<CohortAnalysisResult | null> {
const cohortRows = await db.select().from(cohorts).where(eq(cohorts.id, cohortId)).limit(1);
if (cohortRows.length === 0) return null;
const cohort = cohortRows[0];
const members = await db
.select()
.from(cohortMembers)
.where(eq(cohortMembers.cohortId, cohortId));
const totalUsers = members.length;
const activeUsers = members.filter((m) => {
const daysSinceJoin = (Date.now() - m.joinedAt.getTime()) / (1000 * 60 * 60 * 24);
return daysSinceJoin <= 30;
}).length;
const retentionRate = totalUsers > 0 ? activeUsers / totalUsers : 0;
const retention = computeRetentionCurve(members);
const metrics: CohortMetrics = {
totalUsers,
activeUsers,
retentionRate,
avgEngagement: 0,
conversionRate: 0,
};
return {
cohort,
retention,
metrics,
};
}
function computeRetentionCurve(members: typeof cohortMembers.$inferSelect[]): Record<number, number> {
const retention: Record<number, number> = {};
const now = new Date();
for (let week = 0; week <= 12; week++) {
const weekStart = new Date(now.getTime() - week * 7 * 24 * 60 * 60 * 1000);
const weekEnd = new Date(now.getTime() - (week - 1) * 7 * 24 * 60 * 60 * 1000);
const activeInWeek = members.filter((m) => {
return m.joinedAt >= weekStart && m.joinedAt < weekEnd;
}).length;
retention[week] = activeInWeek;
}
return retention;
}
export async function listCohorts(
db: DrizzleDB,
periodStart?: Date,
periodEnd?: Date
): Promise<Cohort[]> {
const conditions: import("drizzle-orm").SQL[] = [];
if (periodStart) {
conditions.push(gte(cohorts.periodStart, periodStart));
}
if (periodEnd) {
conditions.push(lte(cohorts.periodEnd ?? new Date(), periodEnd));
}
if (conditions.length === 0) {
return await db.select().from(cohorts);
}
return await db.select().from(cohorts).where(and(...conditions));
}
export function createMonthlyCohortTemplate(): CohortDefinition {
const now = new Date();
const monthStart = new Date(now.getFullYear(), now.getMonth(), 1);
return {
name: `Monthly Cohort - ${now.toLocaleDateString("en-US", { month: "long", year: "numeric" })}`,
description: `Users who joined in ${now.toLocaleDateString("en-US", { month: "long", year: "numeric" })}`,
periodStart: monthStart,
periodEnd: new Date(now.getFullYear(), now.getMonth() + 1, 0),
filterCriteria: {
type: "signup_date",
granularity: "month",
},
};
}
export function createWeeklyCohortTemplate(): CohortDefinition {
const now = new Date();
const weekStart = new Date(now);
weekStart.setDate(weekStart.getDate() - weekStart.getDay());
return {
name: `Weekly Cohort - Week of ${weekStart.toLocaleDateString()}`,
description: `Users who joined in the week of ${weekStart.toLocaleDateString()}`,
periodStart: weekStart,
periodEnd: new Date(weekStart.getTime() + 6 * 24 * 60 * 60 * 1000),
filterCriteria: {
type: "signup_date",
granularity: "week",
},
};
}
export function createFeatureCohortTemplate(featureName: string): CohortDefinition {
return {
name: `Feature Cohort - ${featureName}`,
description: `Users who have used the ${featureName} feature`,
periodStart: new Date(),
filterCriteria: {
type: "feature_usage",
feature: featureName,
},
};
}

View File

@@ -0,0 +1,5 @@
export * from "./kpi-service";
export * from "./slack-alerts";
export * from "./report-generator";
export * from "./cohort-analysis";
export * from "./nps-service";

View File

@@ -0,0 +1,122 @@
import { eq, and, gte, lte, desc } from "drizzle-orm";
import { kpiSnapshots } from "../../db/schema";
import type { DrizzleDB } from "../../db/config/migrations";
import type { NewKPISnapshot, KPISnapshot } from "../../db/schema";
export type KPIKey =
| "mau"
| "paying_users"
| "mrr"
| "conversion_rate"
| "churn_rate"
| "cac"
| "ltv"
| "nps"
| "viral_coefficient";
export const KPI_THRESHOLDS: Record<KPIKey, { warning: number; critical: number; direction: "higher" | "lower" }> = {
mau: { warning: 1000, critical: 500, direction: "higher" },
paying_users: { warning: 100, critical: 50, direction: "higher" },
mrr: { warning: 5000, critical: 2000, direction: "higher" },
conversion_rate: { warning: 2, critical: 1, direction: "higher" },
churn_rate: { warning: 5, critical: 3, direction: "lower" },
cac: { warning: 12, critical: 15, direction: "lower" },
ltv: { warning: 100, critical: 80, direction: "higher" },
nps: { warning: 40, critical: 20, direction: "higher" },
viral_coefficient: { warning: 0.3, critical: 0.1, direction: "higher" },
};
export async function recordKPI(
db: DrizzleDB,
kpiKey: KPIKey,
value: number,
periodStart: Date,
periodEnd: Date,
metadata?: Record<string, unknown>
): Promise<KPISnapshot> {
const snapshot: NewKPISnapshot = {
kpiKey,
kpiValue: value,
periodStart,
periodEnd,
metadata: metadata ? JSON.stringify(metadata) : null,
};
const result = await db.insert(kpiSnapshots).values(snapshot).returning();
return result[0];
}
export async function getLatestKPI(
db: DrizzleDB,
kpiKey: KPIKey
): Promise<KPISnapshot | undefined> {
const rows = await db
.select()
.from(kpiSnapshots)
.where(eq(kpiSnapshots.kpiKey, kpiKey))
.orderBy(desc(kpiSnapshots.createdAt))
.limit(1);
return rows[0];
}
export async function getKPIHistory(
db: DrizzleDB,
kpiKey: KPIKey,
periodStart?: Date,
periodEnd?: Date
): Promise<KPISnapshot[]> {
const conditions: import("drizzle-orm").SQL[] = [eq(kpiSnapshots.kpiKey, kpiKey)];
if (periodStart) {
conditions.push(gte(kpiSnapshots.periodStart, periodStart));
}
if (periodEnd) {
conditions.push(lte(kpiSnapshots.periodEnd, periodEnd));
}
return await db
.select()
.from(kpiSnapshots)
.where(and(...conditions))
.orderBy(kpiSnapshots.periodStart);
}
export async function getAllLatestKPIs(db: DrizzleDB): Promise<Record<KPIKey, KPISnapshot | undefined>> {
const result: Record<KPIKey, KPISnapshot | undefined> = {} as Record<KPIKey, KPISnapshot | undefined>;
const keys = Object.keys(KPI_THRESHOLDS) as KPIKey[];
for (const key of keys) {
result[key] = await getLatestKPI(db, key);
}
return result;
}
export function checkKPIAgainstThreshold(
kpiKey: KPIKey,
value: number
): { breached: boolean; severity: "warning" | "critical" | null } {
const thresholds = KPI_THRESHOLDS[kpiKey];
if (!thresholds) return { breached: false, severity: null };
const { warning, critical, direction } = thresholds;
const isHigher = direction === "higher";
if (isHigher) {
if (value <= critical) return { breached: true, severity: "critical" };
if (value <= warning) return { breached: true, severity: "warning" };
} else {
if (value >= critical) return { breached: true, severity: "critical" };
if (value >= warning) return { breached: true, severity: "warning" };
}
return { breached: false, severity: null };
}
export function getKPIStatus(
kpiKey: KPIKey,
value: number
): "healthy" | "warning" | "critical" {
const { breached, severity } = checkKPIAgainstThreshold(kpiKey, value);
if (!breached) return "healthy";
return severity === "critical" ? "critical" : "warning";
}

View File

@@ -0,0 +1,194 @@
import { eq, and, gte, lte, desc, sql } from "drizzle-orm";
import { npsResponses } from "../../db/schema";
import type { DrizzleDB } from "../../db/config/migrations";
import type { NewNPSResponse, NPSResponse } from "../../db/schema";
export type NPSScore = 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10;
export interface NPSResult {
score: number;
promoters: number;
passives: number;
detractors: number;
totalResponses: number;
responseRate: number;
}
export function categorizeNPSScore(score: NPSScore): "detractor" | "passive" | "promoter" {
if (score <= 6) return "detractor";
if (score <= 8) return "passive";
return "promoter";
}
export async function submitNPSResponse(
db: DrizzleDB,
input: {
score: NPSScore;
userId?: number;
feedback?: string;
surveyId?: string;
respondentEmail?: string;
}
): Promise<NPSResponse> {
const category = categorizeNPSScore(input.score);
const response: NewNPSResponse = {
userId: input.userId ?? null,
score: input.score,
category,
feedback: input.feedback ?? null,
surveyId: input.surveyId ?? null,
respondentEmail: input.respondentEmail ?? null,
};
const result = await db.insert(npsResponses).values(response).returning();
return result[0];
}
export async function calculateNPS(
db: DrizzleDB,
periodStart?: Date,
periodEnd?: Date
): Promise<NPSResult> {
const conditions: import("drizzle-orm").SQL[] = [];
if (periodStart) {
conditions.push(gte(npsResponses.createdAt, periodStart));
}
if (periodEnd) {
conditions.push(lte(npsResponses.createdAt, periodEnd));
}
const whereClause = conditions.length > 0 ? and(...conditions) : undefined;
const responses = await db
.select()
.from(npsResponses)
.where(whereClause)
.orderBy(desc(npsResponses.createdAt));
const promoters = responses.filter((r) => r.category === "promoter").length;
const passives = responses.filter((r) => r.category === "passive").length;
const detractors = responses.filter((r) => r.category === "detractor").length;
const total = responses.length;
const npsScore = total > 0 ? Math.round(((promoters - detractors) / total) * 100) : 0;
return {
score: npsScore,
promoters,
passives,
detractors,
totalResponses: total,
responseRate: total > 0 ? promoters / total : 0,
};
}
export async function getNPSResponses(
db: DrizzleDB,
category?: "detractor" | "passive" | "promoter",
periodStart?: Date,
periodEnd?: Date,
limit = 50
): Promise<NPSResponse[]> {
const conditions: import("drizzle-orm").SQL[] = [];
if (category) {
conditions.push(eq(npsResponses.category, category));
}
if (periodStart) {
conditions.push(gte(npsResponses.createdAt, periodStart));
}
if (periodEnd) {
conditions.push(lte(npsResponses.createdAt, periodEnd));
}
const whereClause = conditions.length > 0 ? and(...conditions) : undefined;
const query = db.select().from(npsResponses).orderBy(desc(npsResponses.createdAt)).limit(limit);
return whereClause ? await query.where(whereClause) : await query;
}
export async function getNPSOverTime(
db: DrizzleDB,
granularity: "weekly" | "monthly" = "weekly"
): Promise<Record<string, NPSResult>> {
const responses = await db
.select()
.from(npsResponses)
.orderBy(npsResponses.createdAt);
const grouped: Record<string, NPSResponse[]> = {};
for (const response of responses) {
const date = response.created_at;
const key =
granularity === "weekly"
? getWeekKey(date)
: getMonthKey(date);
if (!grouped[key]) grouped[key] = [];
grouped[key].push(response);
}
const result: Record<string, NPSResult> = {};
for (const [period, periodResponses] of Object.entries(grouped)) {
const promoters = periodResponses.filter((r) => r.category === "promoter").length;
const passives = periodResponses.filter((r) => r.category === "passive").length;
const detractors = periodResponses.filter((r) => r.category === "detractor").length;
const total = periodResponses.length;
result[period] = {
score: total > 0 ? Math.round(((promoters - detractors) / total) * 100) : 0,
promoters,
passives,
detractors,
totalResponses: total,
responseRate: total > 0 ? promoters / total : 0,
};
}
return result;
}
export function generateNPSSurveyEmail(
surveyId: string,
recipientEmail: string,
surveyUrl: string
): string {
return `
Hello,
We'd love to hear about your experience with Scripter. How likely are you to recommend us to a friend or colleague?
Rate us 0-10: ${surveyUrl}?email=${encodeURIComponent(recipientEmail)}&survey_id=${surveyId}
0 = Not at all likely
10 = Extremely likely
You can also share optional feedback to help us improve.
Thank you,
The FrenoCorp Team
`.trim();
}
export function generateNPSSurveyInAppPrompt(): { question: string; scale: string; options: string[] } {
return {
question: "How likely are you to recommend Scripter to a friend or colleague?",
scale: "0-10",
options: Array.from({ length: 11 }, (_, i) => i.toString()),
};
}
function getWeekKey(date: Date): string {
const start = new Date(date);
start.setDate(start.getDate() - start.getDay());
return start.toISOString().split("T")[0];
}
function getMonthKey(date: Date): string {
return date.toISOString().slice(0, 7);
}

View File

@@ -0,0 +1,257 @@
import { eq, and, gte, lte, desc } from "drizzle-orm";
import { scheduledReports, kpiSnapshots } from "../../db/schema";
import type { DrizzleDB } from "../../db/config/migrations";
import type { NewScheduledReport, ScheduledReport } from "../../db/schema";
import { getAllLatestKPIs, getKPIHistory, getKPIStatus, type KPIKey } from "./kpi-service";
export interface ReportData {
periodStart: Date;
periodEnd: Date;
kpis: Record<string, { value: number; status: "healthy" | "warning" | "critical"; change: number }>;
alerts: string[];
summary: string;
}
export async function generateWeeklyReport(db: DrizzleDB): Promise<ReportData> {
const now = new Date();
const weekAgo = new Date(now.getTime() - 7 * 24 * 60 * 60 * 1000);
const kpis = await getAllLatestKPIs(db);
const kpiData: ReportData["kpis"] = {};
for (const [key, snapshot] of Object.entries(kpis)) {
if (!snapshot) {
kpiData[key] = { value: 0, status: "warning", change: 0 };
continue;
}
const history = await getKPIHistory(db, key as KPIKey, weekAgo, now);
const previousValue = history.length > 1 ? history[history.length - 2]?.kpiValue ?? snapshot.kpiValue : snapshot.kpiValue;
const change = previousValue !== 0 ? ((snapshot.kpiValue - previousValue) / previousValue) * 100 : 0;
const status = getKPIStatus(key as KPIKey, snapshot.kpiValue);
kpiData[key] = { value: snapshot.kpiValue, status, change };
}
const alertMessages = Object.entries(kpiData)
.filter(([, data]) => data.status !== "healthy")
.map(([key, data]) => `⚠️ ${key}: ${data.value.toFixed(2)} (${data.status})`);
const healthyCount = Object.values(kpiData).filter((d) => d.status === "healthy").length;
const totalKPIs = Object.keys(kpiData).length;
const summary = `Weekly Report (${weekAgo.toISOString().split("T")[0]} - ${now.toISOString().split("T")[0]})\n${healthyCount}/${totalKPIs} KPIs healthy. ${alertMessages.length > 0 ? "Alerts: " + alertMessages.join(", ") : "No alerts."}`;
return {
periodStart: weekAgo,
periodEnd: now,
kpis: kpiData,
alerts: alertMessages,
summary,
};
}
export async function generateMonthlyReport(db: DrizzleDB): Promise<ReportData> {
const now = new Date();
const monthAgo = new Date(now.getTime() - 30 * 24 * 60 * 60 * 1000);
const kpis = await getAllLatestKPIs(db);
const kpiData: ReportData["kpis"] = {};
for (const [key, snapshot] of Object.entries(kpis)) {
if (!snapshot) {
kpiData[key] = { value: 0, status: "warning", change: 0 };
continue;
}
const history = await getKPIHistory(db, key as KPIKey, monthAgo, now);
const previousValue = history.length > 1 ? history[history.length - 2]?.kpiValue ?? snapshot.kpiValue : snapshot.kpiValue;
const change = previousValue !== 0 ? ((snapshot.kpiValue - previousValue) / previousValue) * 100 : 0;
const status = getKPIStatus(key as KPIKey, snapshot.kpiValue);
kpiData[key] = { value: snapshot.kpiValue, status, change };
}
const alertMessages = Object.entries(kpiData)
.filter(([, data]) => data.status !== "healthy")
.map(([key, data]) => `⚠️ ${key}: ${data.value.toFixed(2)} (${data.status})`);
const healthyCount = Object.values(kpiData).filter((d) => d.status === "healthy").length;
const totalKPIs = Object.keys(kpiData).length;
const summary = `Monthly Report (${monthAgo.toISOString().split("T")[0]} - ${now.toISOString().split("T")[0]})\n${healthyCount}/${totalKPIs} KPIs healthy.`;
return {
periodStart: monthAgo,
periodEnd: now,
kpis: kpiData,
alerts: alertMessages,
summary,
};
}
export async function formatReportMarkdown(report: ReportData): Promise<string> {
const lines: string[] = [];
lines.push(`# KPI Report`);
lines.push(``);
lines.push(`**Period:** ${report.periodStart.toISOString().split("T")[0]}${report.periodEnd.toISOString().split("T")[0]}`);
lines.push(``);
lines.push(`## Summary`);
lines.push(``);
lines.push(report.summary);
lines.push(``);
lines.push(`## KPI Details`);
lines.push(``);
lines.push(`| KPI | Value | Status | Change |`);
lines.push(`|-----|-------|--------|--------|`);
for (const [key, data] of Object.entries(report.kpis)) {
const statusIcon = data.status === "healthy" ? "✅" : data.status === "warning" ? "⚠️" : "🔴";
const changeStr = data.change >= 0 ? `+${data.change.toFixed(1)}%` : `${data.change.toFixed(1)}%`;
lines.push(`| ${key} | ${data.value.toFixed(2)} | ${statusIcon} ${data.status} | ${changeStr} |`);
}
if (report.alerts.length > 0) {
lines.push(``);
lines.push(`## Alerts`);
lines.push(``);
for (const alert of report.alerts) {
lines.push(`- ${alert}`);
}
}
return lines.join("\n");
}
export async function formatReportSlackBlocks(report: ReportData): Promise<unknown[]> {
const blocks: unknown[] = [
{
type: "header",
text: {
type: "plain_text",
text: `📊 KPI Report`,
emoji: true,
},
},
{
type: "section",
text: {
type: "mrkdwn",
text: `*Period:* ${report.periodStart.toISOString().split("T")[0]}${report.periodEnd.toISOString().split("T")[0]}`,
},
},
];
for (const [key, data] of Object.entries(report.kpis)) {
const statusIcon = data.status === "healthy" ? "✅" : data.status === "warning" ? "⚠️" : "🔴";
const changeStr = data.change >= 0 ? `+${data.change.toFixed(1)}%` : `${data.change.toFixed(1)}%`;
blocks.push({
type: "section",
fields: [
{
type: "mrkdwn",
text: `*${key}:*\n${data.value.toFixed(2)}`,
},
{
type: "mrkdwn",
text: `*Status:*\n${statusIcon} ${data.status}`,
},
{
type: "mrkdwn",
text: `*Change:*\n${changeStr}`,
},
],
});
}
return blocks;
}
export async function createScheduledReport(
db: DrizzleDB,
input: Omit<NewScheduledReport, "lastRunAt" | "nextRunAt">
): Promise<ScheduledReport> {
const result = await db.insert(scheduledReports).values({
...input,
lastRunAt: null,
nextRunAt: computeNextRun(input.schedule),
}).returning();
return result[0];
}
export async function getActiveScheduledReports(
db: DrizzleDB
): Promise<ScheduledReport[]> {
return await db
.select()
.from(scheduledReports)
.where(eq(scheduledReports.isActive, true))
.orderBy(scheduledReports.nextRunAt);
}
export async function runDueReports(db: DrizzleDB): Promise<ScheduledReport[]> {
const now = new Date();
const dueReports = await db
.select()
.from(scheduledReports)
.where(and(
eq(scheduledReports.isActive, true),
lte(scheduledReports.nextRunAt, now)
));
const runResults: ScheduledReport[] = [];
for (const report of dueReports) {
let reportData: ReportData;
switch (report.reportType) {
case "weekly_kpi":
reportData = await generateWeeklyReport(db);
break;
case "monthly_kpi":
reportData = await generateMonthlyReport(db);
break;
default:
reportData = await generateWeeklyReport(db);
}
await db
.update(scheduledReports)
.set({
lastRunAt: now,
nextRunAt: computeNextRun(report.schedule),
})
.where(eq(scheduledReports.id, report.id));
runResults.push(report);
}
return runResults;
}
function computeNextRun(schedule: string): Date {
const now = new Date();
switch (schedule) {
case "weekly":
const nextWeek = new Date(now);
nextWeek.setDate(nextWeek.getDate() + 7);
nextWeek.setHours(9, 0, 0, 0);
return nextWeek;
case "monthly":
const nextMonth = new Date(now);
nextMonth.setMonth(nextMonth.getMonth() + 1);
nextMonth.setDate(1);
nextMonth.setHours(9, 0, 0, 0);
return nextMonth;
case "daily":
const tomorrow = new Date(now);
tomorrow.setDate(tomorrow.getDate() + 1);
tomorrow.setHours(9, 0, 0, 0);
return tomorrow;
default:
return new Date(now.getTime() + 7 * 24 * 60 * 60 * 1000);
}
}

View File

@@ -0,0 +1,255 @@
import { eq, and, gte, desc } from "drizzle-orm";
import { alerts, alertRules } from "../../db/schema";
import type { DrizzleDB } from "../../db/config/migrations";
import type { NewAlert, Alert } from "../../db/schema";
import { checkKPIAgainstThreshold, type KPIKey } from "./kpi-service";
export interface SlackConfig {
webhookUrl: string;
defaultChannel?: string;
}
export interface AlertResult {
triggered: boolean;
alert?: Alert;
ruleName: string;
severity: "low" | "medium" | "high" | "critical";
}
export async function evaluateAlertRules(
db: DrizzleDB,
kpiKey: KPIKey,
currentValue: number
): Promise<AlertResult[]> {
const activeRules = await db
.select()
.from(alertRules)
.where(and(
eq(alertRules.kpiKey, kpiKey),
eq(alertRules.isActive, true)
));
const results: AlertResult[] = [];
for (const rule of activeRules) {
const triggered = isRuleTriggered(rule, currentValue);
if (!triggered) {
results.push({ triggered: false, ruleName: rule.name, severity: rule.severity });
continue;
}
const cooldownMs = rule.cooldownMinutes * 60 * 1000;
const cooldownCutoff = new Date(Date.now() - cooldownMs);
const recentAlert = await db
.select({ id: alerts.id })
.from(alerts)
.where(and(
eq(alerts.ruleId, rule.id),
gte(alerts.createdAt, cooldownCutoff)
))
.orderBy(desc(alerts.createdAt))
.limit(1);
if (recentAlert.length > 0) {
results.push({ triggered: false, ruleName: rule.name, severity: rule.severity });
continue;
}
const severity = mapSeverity(rule, currentValue, kpiKey);
const message = formatAlertMessage(rule, currentValue, kpiKey);
const newAlert: NewAlert = {
ruleId: rule.id,
kpiKey,
kpiValue: currentValue,
threshold: rule.threshold,
severity,
message,
wasSent: false,
};
const result = await db.insert(alerts).values(newAlert).returning();
const alert = result[0];
results.push({ triggered: true, alert, ruleName: rule.name, severity });
}
return results;
}
function isRuleTriggered(rule: typeof alertRules.$inferSelect, value: number): boolean {
switch (rule.condition) {
case "above":
return value > rule.threshold;
case "below":
return value < rule.threshold;
case "equals":
return value === rule.threshold;
case "increasing":
return value > rule.threshold;
case "decreasing":
return value < rule.threshold;
default:
return false;
}
}
function mapSeverity(
rule: typeof alertRules.$inferSelect,
_value: number,
kpiKey: KPIKey
): "low" | "medium" | "high" | "critical" {
const { severity: kpiSeverity } = checkKPIAgainstThreshold(kpiKey, _value);
if (kpiSeverity === "critical") return "critical";
if (kpiSeverity === "warning") return rule.severity === "critical" ? "high" : "medium";
return rule.severity;
}
export function formatAlertMessage(
rule: typeof alertRules.$inferSelect,
value: number,
kpiKey: KPIKey
): string {
const formattedValue = Number.isInteger(value) ? value.toString() : value.toFixed(2);
const formattedThreshold = Number.isInteger(rule.threshold)
? rule.threshold.toString()
: rule.threshold.toFixed(2);
return `${rule.name}: ${kpiKey} is ${formattedValue} (${rule.condition} ${formattedThreshold})`;
}
export async function sendSlackAlert(
config: SlackConfig,
alert: Alert,
overrideChannel?: string
): Promise<boolean> {
const channel = overrideChannel || config.defaultChannel || "#alerts";
const color = alertSeverityToSlackColor(alert.severity);
const blocks = [
{
type: "header",
text: {
type: "plain_text",
text: `🚨 KPI Alert: ${alert.kpi_key}`,
emoji: true,
},
},
{
type: "section",
fields: [
{
type: "mrkdwn",
text: `*Severity:*\n${alert.severity.toUpperCase()}`,
},
{
type: "mrkdwn",
text: `*Current Value:*\n${alert.kpi_value.toFixed(2)}`,
},
{
type: "mrkdwn",
text: `*Threshold:*\n${alert.threshold.toFixed(2)}`,
},
{
type: "mrkdwn",
text: `*Time:*\n${new Date(alert.created_at?.getTime() ?? Date.now()).toISOString()}`,
},
],
},
{
type: "section",
text: {
type: "mrkdwn",
text: alert.message,
},
},
];
const payload = {
channel,
blocks,
username: "FrenoCorp Alerts",
icon_emoji: ":warning:",
};
try {
const response = await fetch(config.webhookUrl, {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify(payload),
});
if (!response.ok) {
console.error(`Slack webhook error: ${response.status} ${response.statusText}`);
return false;
}
await markAlertSent(alert.id);
return true;
} catch (error) {
console.error("Failed to send Slack alert:", error);
return false;
}
}
async function markAlertSent(alertId: number): Promise<void> {
const db = await getDb();
if (db) {
await db
.update(alerts)
.set({ wasSent: true, sentAt: new Date() })
.where(eq(alerts.id, alertId));
}
}
async function getDb(): Promise<DrizzleDB | undefined> {
try {
const { createDatabaseManager } = await import("../../db/config/database");
const manager = createDatabaseManager();
return manager.getDb();
} catch {
return undefined;
}
}
function alertSeverityToSlackColor(
severity: "low" | "medium" | "high" | "critical"
): string {
switch (severity) {
case "critical":
return "#FF0000";
case "high":
return "#FFA500";
case "medium":
return "#FFFF00";
case "low":
return "#00FF00";
default:
return "#808080";
}
}
export async function acknowledgeAlert(
db: DrizzleDB,
alertId: number,
acknowledgedBy: number
): Promise<Alert | null> {
const result = await db
.update(alerts)
.set({ acknowledgedBy, acknowledgedAt: new Date() })
.where(eq(alerts.id, alertId))
.returning();
return result[0] ?? null;
}
export async function getUnsentAlerts(db: DrizzleDB): Promise<Alert[]> {
return await db
.select()
.from(alerts)
.where(eq(alerts.wasSent, false))
.orderBy(alerts.createdAt);
}