courrier multi account restore compose

This commit is contained in:
alma 2025-04-28 14:27:08 +02:00
parent 093125df23
commit 99cb4e96f4
2 changed files with 54 additions and 5 deletions

View File

@ -1,6 +1,6 @@
import { NextResponse } from 'next/server'; import { NextResponse } from 'next/server';
import { getServerSession } from 'next-auth'; import { getServerSession } from 'next-auth';
import { authOptions } from '@/lib/auth'; import { authOptions } from '@/app/api/auth/[...nextauth]/route';
import { getMailboxes } from '@/lib/services/email-service'; import { getMailboxes } from '@/lib/services/email-service';
import { getRedisClient } from '@/lib/redis'; import { getRedisClient } from '@/lib/redis';
import { getImapConnection } from '@/lib/services/email-service'; import { getImapConnection } from '@/lib/services/email-service';

View File

@ -1,5 +1,19 @@
import { NextAuthOptions } from 'next-auth'; import { NextAuthOptions } from 'next-auth';
import CredentialsProvider from 'next-auth/providers/credentials'; import CredentialsProvider from 'next-auth/providers/credentials';
import { prisma } from '@/lib/prisma';
// Extend the built-in User type
declare module "next-auth" {
interface User {
id: string;
email: string;
name?: string;
}
interface Session {
user: User;
}
}
export const authOptions: NextAuthOptions = { export const authOptions: NextAuthOptions = {
providers: [ providers: [
@ -14,19 +28,54 @@ export const authOptions: NextAuthOptions = {
return null; return null;
} }
// TODO: Implement actual authentication logic const user = await prisma.user.findUnique({
where: { email: credentials.email },
select: {
id: true,
email: true,
password: true
}
});
if (!user) {
return null;
}
// In production, you should use proper password hashing
if (user.password !== credentials.password) {
return null;
}
return { return {
id: '1', id: user.id,
email: credentials.email, email: user.email,
name: credentials.email.split('@')[0], name: user.email.split('@')[0]
}; };
} }
}) })
], ],
session: { session: {
strategy: 'jwt', strategy: 'jwt',
maxAge: 30 * 24 * 60 * 60, // 30 days
},
jwt: {
maxAge: 30 * 24 * 60 * 60, // 30 days
}, },
pages: { pages: {
signIn: '/login', signIn: '/login',
}, },
callbacks: {
async jwt({ token, user }) {
if (user) {
token.id = user.id;
}
return token;
},
async session({ session, token }) {
if (session.user) {
session.user.id = token.id as string;
}
return session;
}
}
}; };