371 lines
11 KiB
TypeScript
371 lines
11 KiB
TypeScript
import { NextResponse } from 'next/server';
|
|
import { getServerSession } from 'next-auth';
|
|
import { authOptions } from "@/app/api/auth/options";
|
|
import { prisma } from '@/lib/prisma';
|
|
import { N8nService } from '@/lib/services/n8n-service';
|
|
import { Prisma } from '@prisma/client';
|
|
import { s3Client } from '@/lib/s3';
|
|
import { CopyObjectCommand, DeleteObjectCommand } from '@aws-sdk/client-s3';
|
|
import { uploadMissionLogo, uploadMissionAttachment } from '@/lib/mission-uploads';
|
|
|
|
// Types
|
|
interface MissionCreateInput {
|
|
name: string;
|
|
oddScope: string[];
|
|
niveau?: string;
|
|
intention?: string;
|
|
missionType?: string;
|
|
donneurDOrdre?: string;
|
|
projection?: string;
|
|
services?: string[];
|
|
participation?: string;
|
|
profils?: string[];
|
|
guardians?: Record<string, string>;
|
|
volunteers?: string[];
|
|
creatorId?: string;
|
|
logo?: {
|
|
data: string;
|
|
name?: string;
|
|
type?: string;
|
|
} | null;
|
|
attachments?: Array<{
|
|
data: string;
|
|
name?: string;
|
|
type?: string;
|
|
}>;
|
|
leantimeProjectId?: string | null;
|
|
outlineCollectionId?: string | null;
|
|
rocketChatChannelId?: string | null;
|
|
giteaRepositoryUrl?: string | null;
|
|
penpotProjectId?: string | null;
|
|
}
|
|
|
|
interface MissionUserInput {
|
|
role: string;
|
|
userId: string;
|
|
missionId: string;
|
|
}
|
|
|
|
interface MissionResponse {
|
|
id: string;
|
|
name: string;
|
|
oddScope: string[];
|
|
niveau: string;
|
|
intention: string;
|
|
missionType: string;
|
|
donneurDOrdre: string;
|
|
projection: string;
|
|
services: string[];
|
|
profils: string[];
|
|
participation: string;
|
|
creatorId: string;
|
|
logo: string | null;
|
|
leantimeProjectId: string | null;
|
|
outlineCollectionId: string | null;
|
|
rocketChatChannelId: string | null;
|
|
giteaRepositoryUrl: string | null;
|
|
penpotProjectId: string | null;
|
|
createdAt: Date;
|
|
updatedAt: Date;
|
|
attachments?: Array<{
|
|
id: string;
|
|
filename: string;
|
|
filePath: string;
|
|
fileType: string;
|
|
fileSize: number;
|
|
createdAt: Date;
|
|
}>;
|
|
}
|
|
|
|
// Helper function to check authentication
|
|
async function checkAuth(request: Request) {
|
|
const session = await getServerSession(authOptions);
|
|
return {
|
|
authorized: !!session?.user,
|
|
userId: session?.user?.id
|
|
};
|
|
}
|
|
|
|
// GET endpoint to list missions
|
|
export async function GET(request: Request) {
|
|
try {
|
|
const { authorized, userId } = await checkAuth(request);
|
|
if (!authorized || !userId) {
|
|
return NextResponse.json({ error: 'Unauthorized' }, { status: 401 });
|
|
}
|
|
|
|
const { searchParams } = new URL(request.url);
|
|
const limit = Number(searchParams.get('limit') || '10');
|
|
const offset = Number(searchParams.get('offset') || '0');
|
|
const search = searchParams.get('search');
|
|
const name = searchParams.get('name');
|
|
|
|
const where: Prisma.MissionWhereInput = {};
|
|
|
|
if (search) {
|
|
where.OR = [
|
|
{ name: { contains: search, mode: 'insensitive' } },
|
|
{ intention: { contains: search, mode: 'insensitive' } }
|
|
];
|
|
}
|
|
|
|
if (name) {
|
|
where.name = name;
|
|
}
|
|
|
|
const missions = await prisma.mission.findMany({
|
|
where,
|
|
skip: offset,
|
|
take: limit,
|
|
orderBy: { createdAt: 'desc' },
|
|
include: {
|
|
creator: {
|
|
select: {
|
|
id: true,
|
|
email: true
|
|
}
|
|
},
|
|
missionUsers: {
|
|
include: {
|
|
user: {
|
|
select: {
|
|
id: true,
|
|
email: true
|
|
}
|
|
}
|
|
}
|
|
},
|
|
attachments: {
|
|
select: {
|
|
id: true,
|
|
filename: true,
|
|
filePath: true,
|
|
fileType: true,
|
|
fileSize: true,
|
|
createdAt: true
|
|
},
|
|
orderBy: { createdAt: 'desc' }
|
|
}
|
|
}
|
|
});
|
|
|
|
const totalCount = await prisma.mission.count({ where });
|
|
|
|
// Transform missions to include public URLs
|
|
const missionsWithUrls = missions.map(mission => {
|
|
console.log('Processing mission logo:', {
|
|
missionId: mission.id,
|
|
logo: mission.logo,
|
|
constructedUrl: mission.logo ? `/api/missions/image/${mission.logo}` : null
|
|
});
|
|
|
|
return {
|
|
...mission,
|
|
logoUrl: mission.logo ? `/api/missions/image/${mission.logo}` : null,
|
|
logo: mission.logo,
|
|
attachments: mission.attachments?.map(attachment => ({
|
|
...attachment,
|
|
publicUrl: `/api/missions/image/${attachment.filePath}`
|
|
})) || []
|
|
};
|
|
});
|
|
|
|
return NextResponse.json({
|
|
missions: missionsWithUrls,
|
|
pagination: {
|
|
total: totalCount,
|
|
offset,
|
|
limit
|
|
}
|
|
});
|
|
} catch (error) {
|
|
console.error('Error listing missions:', error);
|
|
return NextResponse.json({
|
|
error: 'Internal server error',
|
|
details: error instanceof Error ? error.message : String(error)
|
|
}, { status: 500 });
|
|
}
|
|
}
|
|
|
|
// POST endpoint to create a new mission
|
|
export async function POST(request: Request) {
|
|
let uploadedFiles: { type: 'logo' | 'attachment', path: string }[] = [];
|
|
|
|
try {
|
|
console.log('=== Mission Creation Started ===');
|
|
const { authorized, userId } = await checkAuth(request);
|
|
if (!authorized || !userId) {
|
|
return NextResponse.json({ error: 'Unauthorized' }, { status: 401 });
|
|
}
|
|
|
|
const body = await request.json();
|
|
console.log('Received request body:', JSON.stringify(body, null, 2));
|
|
|
|
// Simple validation
|
|
if (!body.name || !body.oddScope) {
|
|
return NextResponse.json({
|
|
error: 'Missing required fields',
|
|
missingFields: ['name', 'oddScope'].filter(field => !body[field])
|
|
}, { status: 400 });
|
|
}
|
|
|
|
// Step 1: Upload files to Minio if present
|
|
let logoPath = null;
|
|
if (body.logo?.data) {
|
|
try {
|
|
// Convert base64 to File object
|
|
const base64Data = body.logo.data.split(',')[1];
|
|
const buffer = Buffer.from(base64Data, 'base64');
|
|
const file = new File([buffer], body.logo.name || 'logo.png', { type: body.logo.type || 'image/png' });
|
|
|
|
// Upload logo
|
|
const { filePath } = await uploadMissionLogo(userId, 'temp', file);
|
|
logoPath = filePath;
|
|
uploadedFiles.push({ type: 'logo', path: filePath });
|
|
|
|
console.log('Logo uploaded successfully:', { logoPath });
|
|
} catch (uploadError) {
|
|
console.error('Error uploading logo:', uploadError);
|
|
throw new Error('Failed to upload logo');
|
|
}
|
|
}
|
|
|
|
// Upload attachments if present
|
|
const attachmentPaths = [];
|
|
if (body.attachments?.length > 0) {
|
|
for (const attachment of body.attachments) {
|
|
try {
|
|
const base64Data = attachment.data.split(',')[1];
|
|
const buffer = Buffer.from(base64Data, 'base64');
|
|
const file = new File([buffer], attachment.name, { type: attachment.type });
|
|
|
|
const result = await uploadMissionAttachment(userId, 'temp', file);
|
|
attachmentPaths.push(result.filePath);
|
|
uploadedFiles.push({ type: 'attachment', path: result.filePath });
|
|
|
|
console.log('Attachment uploaded successfully:', { path: result.filePath });
|
|
} catch (uploadError) {
|
|
console.error('Error uploading attachment:', uploadError);
|
|
throw new Error(`Failed to upload attachment: ${attachment.name}`);
|
|
}
|
|
}
|
|
}
|
|
|
|
// Step 2: Trigger n8n workflow
|
|
try {
|
|
console.log('=== Starting N8N Workflow ===');
|
|
const n8nService = new N8nService();
|
|
|
|
// Prepare data for n8n
|
|
const n8nData = {
|
|
...body,
|
|
creatorId: userId,
|
|
logoPath, // Add the uploaded logo path
|
|
attachmentPaths, // Add the uploaded attachment paths
|
|
config: {
|
|
N8N_API_KEY: process.env.N8N_API_KEY,
|
|
MISSION_API_URL: process.env.NEXT_PUBLIC_API_URL
|
|
}
|
|
};
|
|
console.log('Sending to N8N:', JSON.stringify(n8nData, null, 2));
|
|
|
|
// Trigger n8n workflow
|
|
const workflowResult = await n8nService.triggerMissionCreation(n8nData);
|
|
console.log('N8N Workflow Result:', JSON.stringify(workflowResult, null, 2));
|
|
|
|
if (!workflowResult.success) {
|
|
throw new Error(workflowResult.error || 'N8N workflow failed');
|
|
}
|
|
|
|
// Step 3: Create mission in database
|
|
try {
|
|
const missionData = {
|
|
name: body.name,
|
|
oddScope: body.oddScope,
|
|
niveau: body.niveau,
|
|
intention: body.intention,
|
|
missionType: body.missionType,
|
|
donneurDOrdre: body.donneurDOrdre,
|
|
projection: body.projection,
|
|
services: body.services,
|
|
profils: body.profils,
|
|
participation: body.participation,
|
|
creatorId: userId,
|
|
logo: logoPath,
|
|
leantimeProjectId: workflowResult.leantimeProjectId,
|
|
outlineCollectionId: workflowResult.outlineCollectionId,
|
|
rocketChatChannelId: workflowResult.rocketChatChannelId,
|
|
giteaRepositoryUrl: workflowResult.giteaRepositoryUrl,
|
|
penpotProjectId: workflowResult.penpotProjectId
|
|
};
|
|
|
|
console.log('Creating mission with data:', JSON.stringify(missionData, null, 2));
|
|
|
|
const mission = await prisma.mission.create({
|
|
data: missionData
|
|
});
|
|
|
|
console.log('Mission created successfully:', JSON.stringify(mission, null, 2));
|
|
|
|
// Move uploaded files to final location
|
|
if (logoPath) {
|
|
const finalLogoPath = logoPath.replace('temp', mission.id);
|
|
await s3Client.send(new CopyObjectCommand({
|
|
Bucket: 'missions',
|
|
CopySource: `missions/${logoPath}`,
|
|
Key: finalLogoPath.replace('missions/', '')
|
|
}));
|
|
await s3Client.send(new DeleteObjectCommand({
|
|
Bucket: 'missions',
|
|
Key: logoPath.replace('missions/', '')
|
|
}));
|
|
}
|
|
|
|
for (const attachmentPath of attachmentPaths) {
|
|
const finalAttachmentPath = attachmentPath.replace('temp', mission.id);
|
|
await s3Client.send(new CopyObjectCommand({
|
|
Bucket: 'missions',
|
|
CopySource: `missions/${attachmentPath}`,
|
|
Key: finalAttachmentPath.replace('missions/', '')
|
|
}));
|
|
await s3Client.send(new DeleteObjectCommand({
|
|
Bucket: 'missions',
|
|
Key: attachmentPath.replace('missions/', '')
|
|
}));
|
|
}
|
|
|
|
return NextResponse.json({
|
|
success: true,
|
|
mission,
|
|
message: 'Mission created successfully with all integrations'
|
|
});
|
|
} catch (dbError) {
|
|
console.error('Database error creating mission:', dbError);
|
|
throw new Error('Failed to create mission in database');
|
|
}
|
|
} catch (n8nError) {
|
|
console.error('Error with n8n service:', n8nError);
|
|
throw new Error('Failed to create mission resources');
|
|
}
|
|
} catch (error) {
|
|
console.error('Error in mission creation:', error);
|
|
|
|
// Cleanup: Delete any uploaded files
|
|
for (const file of uploadedFiles) {
|
|
try {
|
|
await s3Client.send(new DeleteObjectCommand({
|
|
Bucket: 'missions',
|
|
Key: file.path.replace('missions/', '')
|
|
}));
|
|
console.log('Cleaned up file:', file.path);
|
|
} catch (cleanupError) {
|
|
console.error('Error cleaning up file:', file.path, cleanupError);
|
|
}
|
|
}
|
|
|
|
return NextResponse.json({
|
|
error: 'Failed to create mission',
|
|
details: error instanceof Error ? error.message : String(error)
|
|
}, { status: 500 });
|
|
}
|
|
}
|