Files
route-commerce/src/lib/feature-flags.ts
T
openclaw 916ad39176
Deploy to route.crispygoat.com / deploy (push) Failing after 3m1s
feat(storage): MinIO object storage, Neon Auth, Supabase removal
- Add MinIO/S3-compatible storage client (src/lib/storage.ts) with uploadObject,
  deleteObject, presigned URL helpers, and BUCKETS constant
- Wire product images, brand logos, and water log photos to MinIO via the
  new storage client
- Migrate forgot-password to Neon Auth (remove Supabase /auth/v1/recover call)
- Migrate send-scheduled cron to direct Postgres + Resend (remove Supabase Edge
  Function proxy)
- Add logoUrl to email types (OrderReceipt, Welcome, PasswordReset) and pass
  brand_settings.logo_url from all call sites
- Update email templates to use dynamic logoUrl instead of hardcoded Supabase
  bucket URLs
- Remove hardcoded Supabase URLs from TuxedoVideoHero, TuxedoAboutPage,
  TimeTrackingFieldClient; use brand_settings props + local public/ fallback
- Download brand logos (3) and tuxedo-hero.mp4 (36MB) from Supabase bucket to
  public/ for local development
- Add MinIO env vars to .env.example (endpoint, access key, secret, buckets)
- Fix TimeTrackingFieldClient to destructure logoUrl and brandAccent props
- Fix admin/users.ts logoUrl type (null → undefined for optional string)
- Remove stale sb- cookie from wholesale-auth
- Migrate tuxedo/about page to remove supabase import and use pool query for
  wholesale_settings lookup
2026-06-09 12:23:37 -06:00

202 lines
6.6 KiB
TypeScript

/**
* Feature flags / add-on licensing system for Route Commerce platform.
*
* Add-ons can be enabled per brand via the `brand_features` table or
* via environment-variable defaults for self-hosted/white-label deployments.
*
* To add a new add-on:
* 1. Add the feature key to BrandFeatureKey
* 2. Add a display entry to ADDON_CATALOG
* 3. Use isFeatureEnabled(brandId, "key") to gate UI elements
*/
import { withBrand } from "@/db/client";
import { brandSettings } from "@/db/schema";
import { eq } from "drizzle-orm";
export type BrandFeatureKey =
| "harvest_reach"
| "wholesale_portal"
| "water_log"
| "ai_tools"
| "square_sync"
| "sms_campaigns"
| "route_trace";
export type FeatureTier = "core" | "add-on" | "enterprise";
export type BrandFeature = {
key: BrandFeatureKey;
name: string;
description: string;
tier: FeatureTier;
icon: string;
badge?: string;
badgeVariant?: "default" | "blue" | "violet" | "amber";
adminRoute: string;
addOnPrice?: string;
};
// Add-on catalog — used to render upgrade prompts and settings UI
export const ADDON_CATALOG: Record<BrandFeatureKey, BrandFeature> = {
harvest_reach: {
key: "harvest_reach",
name: "Harvest Reach",
description: "Email and SMS marketing campaigns, audience segments, stop blast messaging, and automated customer outreach.",
tier: "add-on",
icon: "📧",
badge: "Popular",
badgeVariant: "violet",
adminRoute: "/admin/communications",
},
wholesale_portal: {
key: "wholesale_portal",
name: "Wholesale Portal",
description: "Standalone B2B ordering portal for approved wholesale buyers with custom pricing, credit limits, and net-30 billing.",
tier: "add-on",
icon: "🏪",
badge: "B2B",
badgeVariant: "blue",
adminRoute: "/admin/wholesale",
addOnPrice: "Contact us",
},
water_log: {
key: "water_log",
name: "Water Log",
description: "Irrigation tracking, headgate measurements, and water usage reporting for agricultural operations.",
tier: "add-on",
icon: "💧",
badge: "Ag",
badgeVariant: "blue",
adminRoute: "/admin/water-log",
addOnPrice: "Contact us",
},
ai_tools: {
key: "ai_tools",
name: "AI Intelligence Pack",
description: "AI-powered campaign writer, product copywriter, report explainer, pricing advisor, customer insights, demand forecasting, and route optimization.",
tier: "add-on",
icon: "🤖",
badge: "AI",
badgeVariant: "violet",
adminRoute: "/admin/settings/ai",
addOnPrice: "OpenAI API required",
},
square_sync: {
key: "square_sync",
name: "Square Inventory Sync",
description: "Two-way sync between Route Commerce and Square Point of Sale. Import products and sync inventory counts automatically.",
tier: "add-on",
icon: "◼️",
adminRoute: "/admin/settings/square-sync",
addOnPrice: "Square account required",
},
sms_campaigns: {
key: "sms_campaigns",
name: "SMS Campaigns",
description: "Text message marketing and transactional SMS alerts via Twilio. Requires Harvest Reach.",
tier: "add-on",
icon: "💬",
adminRoute: "/admin/communications",
addOnPrice: "Twilio account required",
},
route_trace: {
key: "route_trace",
name: "Route Trace",
description: "Full supply chain traceability with lot tracking, QR-enabled thermal stickers, and one-up/one-down compliance reporting.",
tier: "add-on",
icon: "🌱",
badge: "Compliance",
badgeVariant: "default",
adminRoute: "/admin/route-trace",
addOnPrice: "$49/mo",
},
};
// Core features that cannot be disabled
export const CORE_FEATURES: BrandFeatureKey[] = [
// Core platform features (always enabled)
// These are not add-ons — the platform doesn't function without them
];
// Environment variable fallback for self-hosted / white-label deployments
// Format: NEXT_PUBLIC_ENABLED_ADDONS=harvest_reach,wholesale_portal,water_log,ai_tools
function getEnvEnabledAddons(): BrandFeatureKey[] {
if (typeof window === "undefined") {
const env = process.env.NEXT_PUBLIC_ENABLED_ADDONS ?? "";
if (!env) return [];
return env.split(",").filter(Boolean) as BrandFeatureKey[];
}
return [];
}
// Cache for brand feature lookup (server-side only, 5-min TTL)
const brandFeatureCache = new Map<string, { promise: Promise<Record<BrandFeatureKey, boolean>>; ts: number }>();
const CACHE_TTL_MS = 5 * 60 * 1000;
/**
* Check if a brand has a specific add-on feature enabled.
* Falls back to env-var defaults if no per-brand setting exists.
*
* Usage in server components:
* const { isFeatureEnabled } = await import("@/lib/feature-flags");
* const enabled = await isFeatureEnabled(brandId, "harvest_reach");
*
* Usage in client components (reads from props/context):
* Pass `enabledFeatures` from server component as prop.
*/
export async function isFeatureEnabled(
brandId: string,
feature: BrandFeatureKey
): Promise<boolean> {
// Check env-var override first (white-label / self-hosted)
const envEnabled = getEnvEnabledAddons();
if (envEnabled.includes(feature)) return true;
// Per-brand check via RPC (5-min cache)
const cacheKey = brandId;
const now = Date.now();
const cached = brandFeatureCache.get(cacheKey);
if (cached && now - cached.ts < CACHE_TTL_MS) {
const features = await cached.promise;
return features[feature] ?? false;
}
brandFeatureCache.set(
cacheKey,
{ promise: fetchBrandFeatures(brandId).then((f) => (f ?? {} as Record<BrandFeatureKey, boolean>)), ts: now }
);
const features = await brandFeatureCache.get(cacheKey)!.promise;
return features[feature] ?? false;
}
async function fetchBrandFeatures(
brandId: string
): Promise<Record<BrandFeatureKey, boolean> | null> {
try {
const rows = await withBrand(brandId, (db) =>
db
.select({ featureFlags: brandSettings.featureFlags })
.from(brandSettings)
.where(eq(brandSettings.brandId, brandId))
.limit(1)
);
const flags = rows[0]?.featureFlags as Record<string, unknown> | null | undefined;
if (!flags || typeof flags !== "object") return null;
// Coerce to boolean (JSONB may store as boolean, string, or number)
const result = {} as Record<BrandFeatureKey, boolean>;
for (const key of Object.keys(ADDON_CATALOG) as BrandFeatureKey[]) {
const v = (flags as Record<string, unknown>)[key];
result[key] = v === true || v === "true" || v === 1 || v === "1";
}
return result;
} catch {
return null;
}
}
/**
* Invalidate cached features for a brand (call after feature toggle).
*/
export function invalidateBrandFeatureCache(brandId: string): void {
brandFeatureCache.delete(brandId);
}