Batch commit of the pending working tree on security/audit-fixes-2026-07. Major areas: - Outbound webhooks / Zapier: schema + signed delivery with retries, public v1 API (REST-hook subscribe/unsubscribe), settings UI, cron drain. - Deploy hardening: email via SMTP2GO (Resend fully removed), verified DB TLS (DATABASE_SSL=require + DATABASE_CA), storage fails loud in production when Spaces is unconfigured instead of silently using ephemeral disk. - Integrations & features (concurrent work): accounting (QuickBooks/Xero), e-signature (DocuSign/Dropbox Sign), PayPal, geocoding/maps, onboarding, expanded legal pages. - DB migrations 0006–0009. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
61 lines
2.2 KiB
TypeScript
61 lines
2.2 KiB
TypeScript
"use server"
|
|
|
|
import { redirect } from "next/navigation"
|
|
import { revalidatePath } from "next/cache"
|
|
import { eq } from "drizzle-orm"
|
|
import { db } from "@/lib/db"
|
|
import { profiles } from "@/lib/db/schema"
|
|
import { getSessionUser } from "@/lib/session"
|
|
import { PLAN_LIMITS } from "@/lib/stripe/plans"
|
|
import { normalizeHexColor } from "@/lib/branding"
|
|
import type { Plan } from "@/types"
|
|
|
|
/**
|
|
* Saves the current user's white-label branding (brand name, logo, accent color,
|
|
* "Powered by" toggle). Only landlord/lifetime plans may edit branding — everyone
|
|
* else is redirected to billing. Values are validated before persisting.
|
|
*/
|
|
export async function updateBranding(formData: FormData) {
|
|
const user = await getSessionUser()
|
|
if (!user) redirect("/login")
|
|
|
|
// Plan gate: white-label is landlord/lifetime only.
|
|
const profile = await db.query.profiles.findFirst({
|
|
where: eq(profiles.id, user.id),
|
|
columns: { plan: true },
|
|
})
|
|
const plan = (profile?.plan ?? "starter") as Plan
|
|
if (!PLAN_LIMITS[plan]?.hasWhiteLabel) {
|
|
redirect("/settings/billing")
|
|
}
|
|
|
|
// ── Validate inputs ──────────────────────────────────────────────────────
|
|
const rawName = (formData.get("brand_name") as string | null)?.trim() ?? ""
|
|
const brandName = rawName ? rawName.slice(0, 60) : null
|
|
|
|
const rawLogo = (formData.get("brand_logo_url") as string | null)?.trim() ?? ""
|
|
// Only accept logo URLs served by our own gated files route.
|
|
const brandLogoUrl = rawLogo && rawLogo.startsWith("/api/files/") ? rawLogo : null
|
|
|
|
const rawColor = (formData.get("brand_color") as string | null) ?? ""
|
|
const brandColor = normalizeHexColor(rawColor)
|
|
// If a color was supplied but is malformed, reject rather than silently drop it.
|
|
if (rawColor.trim() && !brandColor) {
|
|
throw new Error("Accent color must be a hex value like #4f46e5")
|
|
}
|
|
|
|
const hidePoweredBy = formData.get("hide_powered_by") === "on"
|
|
|
|
await db
|
|
.update(profiles)
|
|
.set({
|
|
brand_name: brandName,
|
|
brand_logo_url: brandLogoUrl,
|
|
brand_color: brandColor,
|
|
hide_powered_by: hidePoweredBy,
|
|
})
|
|
.where(eq(profiles.id, user.id))
|
|
|
|
revalidatePath("/settings/branding")
|
|
}
|