Initial commit: PodcastYes — AI podcast platform

This commit is contained in:
Leon Serfaty
2026-06-07 03:58:32 -04:00
commit 155507f21a
151 changed files with 19826 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
"use client";
import { createAuthClient } from "better-auth/react";
import { adminClient, organizationClient } from "better-auth/client/plugins";
export const authClient = createAuthClient({
baseURL: process.env.NEXT_PUBLIC_APP_URL ?? undefined,
plugins: [adminClient(), organizationClient()],
});
export const { signIn, signUp, signOut, useSession, useActiveOrganization, organization } =
authClient;
+84
View File
@@ -0,0 +1,84 @@
import { betterAuth } from "better-auth";
import { prismaAdapter } from "better-auth/adapters/prisma";
import { admin, organization } from "better-auth/plugins";
import { nextCookies } from "better-auth/next-js";
import { prisma } from "@/lib/db";
import { sendEmail, emailLayout } from "@/lib/email";
const appUrl = process.env.NEXT_PUBLIC_APP_URL ?? "http://localhost:3000";
const googleConfigured = !!(process.env.GOOGLE_CLIENT_ID && process.env.GOOGLE_CLIENT_SECRET);
export const auth = betterAuth({
appName: "PodcastYes",
secret: process.env.BETTER_AUTH_SECRET,
baseURL: process.env.BETTER_AUTH_URL ?? appUrl,
database: prismaAdapter(prisma, { provider: "postgresql" }),
emailAndPassword: {
enabled: true,
// Flip on once email delivery is verified in prod.
requireEmailVerification: false,
minPasswordLength: 8,
async sendResetPassword({ user, url }) {
await sendEmail({
to: user.email,
subject: "Reset your PodcastYes password",
html: emailLayout(
"Reset your password",
"Click the button below to choose a new password.",
{ label: "Reset password", url }
),
text: `Reset your password: ${url}`,
});
},
},
emailVerification: {
sendOnSignUp: false,
async sendVerificationEmail({ user, url }) {
await sendEmail({
to: user.email,
subject: "Verify your email for PodcastYes",
html: emailLayout(
"Confirm your email",
"Confirm your email address to secure your account.",
{ label: "Verify email", url }
),
text: `Verify your email: ${url}`,
});
},
},
socialProviders: googleConfigured
? {
google: {
clientId: process.env.GOOGLE_CLIENT_ID!,
clientSecret: process.env.GOOGLE_CLIENT_SECRET!,
},
}
: undefined,
session: {
expiresIn: 60 * 60 * 24 * 30, // 30 days
updateAge: 60 * 60 * 24, // refresh daily
cookieCache: { enabled: true, maxAge: 5 * 60 },
},
account: {
accountLinking: { enabled: true, trustedProviders: ["google"] },
},
plugins: [
admin({ defaultRole: "user", adminRoles: ["admin"] }),
organization({
teams: { enabled: true, maximumTeams: 1 },
// Agency seat cap is enforced in app logic against the subscription's seat count.
membershipLimit: 5,
}),
// Must remain last: lets Server Actions / route handlers set auth cookies.
nextCookies(),
],
});
export type Session = typeof auth.$Infer.Session;
+35
View File
@@ -0,0 +1,35 @@
import "server-only";
import { headers } from "next/headers";
import { redirect, notFound } from "next/navigation";
import { auth } from "./auth";
/** Returns the current session (or null) using request headers. */
export async function getServerSession() {
return auth.api.getSession({ headers: await headers() });
}
/** Require a logged-in user; redirect to sign-in otherwise. */
export async function requireAuth(redirectTo?: string) {
const session = await getServerSession();
if (!session) {
const target = redirectTo ? `?redirect=${encodeURIComponent(redirectTo)}` : "";
redirect(`/sign-in${target}`);
}
return session;
}
/**
* Require a platform admin. Returns 404 (not 403) for non-admins so the admin
* surface isn't disclosed to ordinary users.
*/
export async function requireAdmin() {
const session = await getServerSession();
if (!session || session.user.role !== "admin") notFound();
return session;
}
/** Convenience: the active organization id from the session (if any). */
export async function getActiveOrgId() {
const session = await getServerSession();
return session?.session.activeOrganizationId ?? null;
}