- Add interactive setup wizard (scripts/setup-env.js) with SQLite/PostgreSQL
choice, AI provider config, email, MCP, admin account creation, and
auto-switch of Prisma schema provider
- Fix docker-compose.yml: remove duplicate environment entries that overrode
env_file values with empty strings (broke AI providers in Docker). Now only
DATABASE_URL, NODE_ENV, NEXT_TELEMETRY_DISABLED remain in environment:
- Fix revalidateTag('system-config', '/settings') crash: Next.js 16 interprets
the second arg as a cacheLife profile, not a path. Caused 500 on all admin
settings saves
- Fix Resend "from" field: was building noreply@localhost which Resend rejects.
Now uses SMTP_FROM from config, with localhost-aware fallback
- Add debug logging for auto-labeling background task
- Default DATABASE_URL changed from user:password to memento:memento
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
74 lines
2.0 KiB
TypeScript
74 lines
2.0 KiB
TypeScript
'use server'
|
|
|
|
import prisma from '@/lib/prisma'
|
|
import { auth } from '@/auth'
|
|
import { sendEmail } from '@/lib/mail'
|
|
import { revalidateTag } from 'next/cache'
|
|
|
|
async function checkAdmin() {
|
|
const session = await auth()
|
|
if (!session?.user?.id || (session.user as any).role !== 'ADMIN') {
|
|
throw new Error('Unauthorized: Admin access required')
|
|
}
|
|
return session
|
|
}
|
|
|
|
export async function testEmail(provider: 'resend' | 'smtp' = 'smtp') {
|
|
const session = await checkAdmin()
|
|
const email = session.user?.email
|
|
|
|
if (!email) throw new Error("No admin email found")
|
|
|
|
const subject = provider === 'resend'
|
|
? "Memento Resend Test"
|
|
: "Memento SMTP Test"
|
|
|
|
const html = provider === 'resend'
|
|
? "<p>This is a test email from your Memento instance. <strong>Resend is working!</strong></p>"
|
|
: "<p>This is a test email from your Memento instance. <strong>SMTP is working!</strong></p>"
|
|
|
|
const result = await sendEmail({
|
|
to: email,
|
|
subject,
|
|
html,
|
|
}, provider)
|
|
|
|
return result
|
|
}
|
|
|
|
export async function getSystemConfig() {
|
|
await checkAdmin()
|
|
// Reuse the cached version from lib/config
|
|
const { getSystemConfig: getCachedConfig } = await import('@/lib/config')
|
|
return getCachedConfig()
|
|
}
|
|
|
|
export async function updateSystemConfig(data: Record<string, string>) {
|
|
await checkAdmin()
|
|
|
|
try {
|
|
// Filter out empty values but keep 'false' as valid
|
|
const filteredData = Object.fromEntries(
|
|
Object.entries(data).filter(([key, value]) => value !== '' && value !== null && value !== undefined)
|
|
)
|
|
|
|
const operations = Object.entries(filteredData).map(([key, value]) =>
|
|
prisma.systemConfig.upsert({
|
|
where: { key },
|
|
update: { value },
|
|
create: { key, value }
|
|
})
|
|
)
|
|
|
|
await prisma.$transaction(operations)
|
|
|
|
// Invalidate cache after update
|
|
revalidateTag('system-config')
|
|
|
|
return { success: true }
|
|
} catch (error) {
|
|
console.error('Failed to update settings:', error)
|
|
return { error: 'Failed to update settings' }
|
|
}
|
|
}
|