chahinebrini 335945fe2c feat(tier): plan limits Rev.2 + downgrade reconciliation + change-preview (Phase 2 backend)
- plan-features.ts: globalBlocklist 'curated'|'full' (curated = 30-domain stub,
  TODO real ~1-2k HaGeZi subset); maxAppDevices vs maxProtectedDevices split
  (legend maxProtectedDevices: 2); mail 1/3/Infinity
- limit-enforcement structured errors on mail/connect, custom-domains/add, devices/enroll
  ({ error:'plan_limit', resource, current, limit }); approved-own-submissions already
  excluded from custom-domain count (slot frees on approval)
- server/utils/downgrade-reconciliation.ts: founding-member exemption; re-upgrade
  reactivates paused mail + degraded devices; downgrade pauses newest-N mail accounts
  (isActive=false, pausedAt, pausedReason; pre-pause sets nextScanAt=now for a final
  sweep — real direct IMAP scan is TODO/stub); degrades excess device profiles
  (status='degraded', degradedAt); free → globalBlocklistGraceUntil = now+14d;
  custom domains grandfathered
- set-plan.post.ts + stripe/webhook.post.ts: run reconciliation on plan change;
  set-plan accepts { foundingMember } for testing
- GET /api/plan/change-preview?to=<plan>: gains/keeps/changes per resource (8 axes),
  founding-member → direction 'same'
- me.get.ts: + foundingMember, globalBlocklistGraceUntil, planLimits block
- blocklist + mail-scan honour globalBlocklistGraceUntil (grace → treat as 'full')
- db: countMailConnections/getMailConnections exclude paused; getAllMailConnections;
  getDeviceBlocklistMode (active|grace|passthrough|revoked)
- migration 20260511_tier_system_phase2 (profiles.founding_member +
  global_blocklist_grace_until; mail_connections.paused_at/paused_reason;
  protected_devices.degraded_at). prisma generate + build:backend clean.

TODOs (separate tickets): founding-member auto-counter on signup; real direct IMAP
final-scan (not just nextScanAt nudge); real curated blocklist data + wiring the
stub into the blocklist response for free users.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-11 16:23:02 +02:00

201 lines
7.2 KiB
TypeScript

export type Plan = "free" | "pro" | "legend";
export type VoiceProvider = "elevenlabs" | "openai" | "google" | "cartesia" | "azure";
export interface VoiceConfig {
/** TTS-Provider für diesen Plan */
provider: VoiceProvider;
/** Provider-spezifische Model-ID (optional) */
model?: string;
/** Provider-spezifische Voice-ID (optional — fällt auf provider-default zurück) */
voiceId?: string;
/** Tages-Quota in Sekunden. 0 = unlimited */
dailyQuotaSeconds: number;
}
export interface PlanLimits {
// ─── Custom Domains ──────────────────────────────────────────────────────
/** Max. eigene Domains (Infinity = unbegrenzt) */
customDomains: number;
/** Freigeschaltete Domain-Slots füllen sich wieder auf (Community-Promotion) */
domainRefill: boolean;
// ─── Mail-Accounts ───────────────────────────────────────────────────────
/** Max. aktive Mail-Agenten (Infinity = unbegrenzt) */
mailAgents: number;
/** Erlaubte Scan-Intervalle in Stunden */
mailIntervalOptions: number[];
// ─── Globale Blocklist ───────────────────────────────────────────────────
/**
* 'curated' = kleiner Stub der bekanntesten Casino-Domains (Free).
* 'full' = vollständige HaGeZi/ReBreak-Liste (~208k).
*
* Der Stub selbst ist in server/utils/curated-blocklist.ts definiert.
* Die echte ~1-2k HaGeZi-Subset-Liste ist ein separates Daten-Ticket.
*/
globalBlocklist: "curated" | "full";
// ─── Community ───────────────────────────────────────────────────────────
/** Darf in der Community posten */
canPost: boolean;
/** Darf Gruppen gründen */
canCreateGroup: boolean;
/** Darf Domains direkt zur ReBreak Blocklist hinzufügen */
canAddToBlocklist: boolean;
// ─── Geräte (zwei getrennte Konzepte!) ───────────────────────────────────
/**
* Max. parallel eingeloggte App-Geräte pro Account (Anti-Account-Sharing).
* Bezieht sich auf UserDevice (iOS/Android-App-Instanzen).
*/
maxAppDevices: number;
/**
* Max. zusätzliche Geräte (Mac/Windows) die per DNS-Profil geschützt werden.
* Bezieht sich auf ProtectedDevice (Legend-only Feature).
* 0 = Feature nicht verfügbar.
*/
maxProtectedDevices: number;
// ─── AI-Coach ────────────────────────────────────────────────────────────
/** Primäres OpenRouter/Groq-Modell für KI-Coach */
aiModel: string;
/** Fallback-Modelle (werden der Reihe nach versucht wenn primary fehlschlägt) */
aiModelFallbacks: Array<{ provider: "groq" | "openrouter"; model: string }>;
/** AI-Provider: groq (Free/Pro) oder openrouter (Legend/Claude) */
aiProvider: "groq" | "openrouter";
// ─── TTS ─────────────────────────────────────────────────────────────────
/**
* Voice-Config: welcher TTS-Provider + Quota.
*
* Provider-Mapping (Cost-Reference 2026-05):
* Free → Google TTS Neural2 (~$4/1M chars, 60s/day cap)
* Pro → Cartesia Sonic-2 (~$4/1M chars, 300s/day cap, ~75ms first-byte)
* Legend → ElevenLabs Turbo v2.5 (~$30/1M chars, unlimited)
*/
voice: VoiceConfig;
}
export const PLAN_LIMITS: Record<Plan, PlanLimits> = {
free: {
customDomains: 5,
domainRefill: false,
mailAgents: 1,
mailIntervalOptions: [4],
globalBlocklist: "curated",
canPost: true,
canCreateGroup: false,
canAddToBlocklist: false,
maxAppDevices: 1,
maxProtectedDevices: 0,
aiModel: "llama-3.1-8b-instant",
aiModelFallbacks: [
{ provider: "groq", model: "llama-3.3-70b-versatile" },
{ provider: "groq", model: "gemma2-9b-it" },
{ provider: "openrouter", model: "meta-llama/llama-3.1-8b-instruct" },
],
aiProvider: "groq",
voice: {
provider: "google",
model: "de-DE-Neural2-F", // Google Cloud TTS Neural2 — natural, ~$4/1M chars
dailyQuotaSeconds: 60, // 1 Minute/Tag
},
},
pro: {
customDomains: 5,
domainRefill: true,
mailAgents: 3,
mailIntervalOptions: [1, 4, 8],
globalBlocklist: "full",
canPost: true,
canCreateGroup: false,
canAddToBlocklist: false,
maxAppDevices: 1,
maxProtectedDevices: 0,
aiModel: "llama-3.3-70b-versatile",
aiModelFallbacks: [
{ provider: "groq", model: "llama-3.1-8b-instant" },
{ provider: "openrouter", model: "meta-llama/llama-3.3-70b-instruct" },
],
aiProvider: "groq",
voice: {
provider: "cartesia",
model: "sonic-2", // Cartesia Sonic-2 — ~75ms TTFT, native German, ~$4/1M chars
dailyQuotaSeconds: 300, // 5 Minuten/Tag
},
},
legend: {
customDomains: 10,
domainRefill: true,
mailAgents: Infinity,
mailIntervalOptions: [1, 4, 8],
globalBlocklist: "full",
canPost: true,
canCreateGroup: true,
canAddToBlocklist: true,
maxAppDevices: 3,
maxProtectedDevices: 2, // "+2 weitere Geräte" (§0.5)
aiModel: "anthropic/claude-3.5-haiku",
aiModelFallbacks: [
{ provider: "openrouter", model: "anthropic/claude-3-haiku" },
{ provider: "groq", model: "llama-3.3-70b-versatile" },
],
aiProvider: "openrouter",
voice: {
provider: "elevenlabs",
model: "eleven_turbo_v2_5", // ElevenLabs Turbo v2.5 — premium, ~$30/1M chars
dailyQuotaSeconds: 0, // 0 = unlimited
},
},
};
export function getPlanLimits(plan: string): PlanLimits {
// Legacy-Pläne auf neue Namen mappen
if (plan === "premium") return PLAN_LIMITS.legend;
if (plan === "standard") return PLAN_LIMITS.pro;
return PLAN_LIMITS[(plan as Plan) ?? "free"] ?? PLAN_LIMITS.free;
}
/**
* Kuratierter Stub der bekanntesten Glücksspiel-Domains für Free-User.
* Diese Liste ist der Mechanismus — der echte ~1-2k HaGeZi-Subset
* ist ein separates Daten-Ticket (TODO: Daten-Ticket anlegen).
*
* Wird in DNS-Blocklist-Endpoints und scan-internal verwendet wenn
* limits.globalBlocklist === 'curated'.
*/
export const CURATED_BLOCKLIST_STUB: string[] = [
// DE / Offshore-Klassiker (Top-Tier-Traffic)
"betway.com",
"bet365.com",
"888casino.com",
"pokerstars.com",
"williamhill.com",
"bwin.com",
"unibet.com",
"partypoker.com",
"casinoclub.com",
"interwetten.com",
"tipico.de",
"betsson.com",
"casumo.com",
"leovegas.com",
"mr-green.com",
"jackpot.de",
"sunmaker.com",
"stargames.com",
"mybet.com",
"winner.com",
"ladbrokes.com",
"coral.co.uk",
"paddypower.com",
"betfair.com",
"mrvegas.com",
"slotsmillion.com",
"casinoeuropa.com",
"netbet.com",
"platincasino.com",
"euslot.com",
];